diff --git a/lerna.json b/lerna.json index ce585141df..8e66afc076 100644 --- a/lerna.json +++ b/lerna.json @@ -21,12 +21,9 @@ "packages/schema", "packages/themes", "packages/themes/bmf", - "packages/themes/bzst", "packages/themes/default", "packages/themes/ecl", "packages/themes/itzbund", - "packages/themes/mfm", - "packages/themes/zoll", "packages/tools/kolibri-cli", "packages/tools/visual-tests" ], diff --git a/packages/components/src/components/kolibri/readme.md b/packages/components/src/components/kolibri/readme.md index f0ad5393e7..505c65fc26 100644 --- a/packages/components/src/components/kolibri/readme.md +++ b/packages/components/src/components/kolibri/readme.md @@ -21,10 +21,9 @@ Diese Komponente implementiert das Logo von KoliBri. ## Properties -| Property | Attribute | Description | Type | Default | -| ---------- | ---------- | ------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -| `_animate` | `_animate` | Gibt an, ob das Bild-Logo farblich animiert werden soll. | `boolean \| undefined` | `false` | -| `_color` | `_color` | Gibt an, in welcher Farbe das Bild-Logo initial dargestellt werden soll. | `string \| undefined \| { backgroundColor: string; color: string; } \| { backgroundColor: string; foregroundColor: Stringified; }` | `'#003c78'` | -| `_labeled` | `_labeled` | Defines whether the component has a label. | `boolean \| undefined` | `undefined` | +| Property | Attribute | Description | Type | Default | +| ---------- | ---------- | ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| `_color` | `_color` | Defines the color of the logo and label. | `string \| undefined \| { backgroundColor: string; color: string; } \| { backgroundColor: string; foregroundColor: Stringified; }` | `'#003c78'` | +| `_labeled` | `_labeled` | Defines whether the component has a label. | `boolean \| undefined` | `undefined` | --- diff --git a/packages/designer/src/solid.main.tsx b/packages/designer/src/solid.main.tsx index b8f3ec3bd3..5ce4507f82 100644 --- a/packages/designer/src/solid.main.tsx +++ b/packages/designer/src/solid.main.tsx @@ -1,12 +1,12 @@ import { render } from 'solid-js/web'; import { defineCustomElements } from '@public-ui/components/dist/loader'; -import { ITZBund, BAMF, BMF, BZSt, DEFAULT, DESYv1, DESYv2, ECL_EC, ECL_EU, MAPZ, ZOLLv2 } from '@public-ui/themes'; +import { BMF, DEFAULT, ECL_EC, ECL_EU, ITZBund } from '@public-ui/themes'; import { TH } from '@public-oss/kolibri-themes'; import { AppComponent } from './components/app/component.solid'; import { register } from '@public-ui/components'; -register([BAMF, BMF, BZSt, DEFAULT, DESYv1, DESYv2, ECL_EC, ECL_EU, ITZBund, MAPZ, TH, ZOLLv2], defineCustomElements, { +register([BMF, DEFAULT, ECL_EC, ECL_EU, ITZBund, TH], defineCustomElements, { theme: { detect: 'auto', }, diff --git a/packages/samples/react/src/App.tsx b/packages/samples/react/src/App.tsx index 4e652d1b44..bfb6356e18 100644 --- a/packages/samples/react/src/App.tsx +++ b/packages/samples/react/src/App.tsx @@ -43,19 +43,19 @@ const getRouteTree = (routes: MyRoutes): ReturnType[] => { path={`${path}/all`} element={
- {THEME_OPTIONS.filter( - (theme) => ['bmf', 'default', 'ecl-ec', 'ecl-eu', 'itzbund', 'mapz', 'zoll-v2'].indexOf((theme as Option).value) >= 0, - ).map((theme) => ( -
).value} data-theme={(theme as Option).value}> -
- {theme.label} + {THEME_OPTIONS.filter((theme) => ['bmf', 'default', 'ecl-ec', 'ecl-eu', 'itzbund'].indexOf((theme as Option).value) >= 0).map( + (theme) => ( +
).value} data-theme={(theme as Option).value}> +
+ {theme.label} +
+
+ +
+
-
- -
- -
- ))} + ), + )}
} />, diff --git a/packages/samples/react/src/react.main.tsx b/packages/samples/react/src/react.main.tsx index 905d5d0446..c5578c6853 100644 --- a/packages/samples/react/src/react.main.tsx +++ b/packages/samples/react/src/react.main.tsx @@ -5,7 +5,7 @@ import { HashRouter as Router } from 'react-router-dom'; import { TH } from '@public-oss/kolibri-themes'; import { register } from '@public-ui/components'; import { defineCustomElements } from '@public-ui/components/dist/loader'; -import { BAMF, BMF, BZSt, DEFAULT, DESYv1, DESYv2, ECL_EC, ECL_EU, ITZBund, MAPZ, ZOLLv2 } from '@public-ui/themes'; +import { BMF, DEFAULT, ECL_EC, ECL_EU, ITZBund } from '@public-ui/themes'; import type { Generic } from 'adopted-style-sheets'; import { App } from './App'; @@ -23,7 +23,7 @@ void (async () => { } else { /* Regular mode: Register all known themes. */ try { - await register([BAMF, BMF, DEFAULT, BZSt, DESYv1, DESYv2, ECL_EC, ECL_EU, ITZBund, MAPZ, ZOLLv2, TH], defineCustomElements, { + await register([BMF, DEFAULT, ECL_EC, ECL_EU, ITZBund, TH], defineCustomElements, { theme: { detect: 'auto', }, diff --git a/packages/samples/react/src/shares/theme.ts b/packages/samples/react/src/shares/theme.ts index 74b14d1423..64aeaac60b 100644 --- a/packages/samples/react/src/shares/theme.ts +++ b/packages/samples/react/src/shares/theme.ts @@ -1,6 +1,6 @@ import { SelectOption } from '@public-ui/components'; -export type Theme = 'bmf' | 'default' | 'ecl-ec' | 'ecl-eu' | 'itzbund' | 'mapz' | 'th' | 'unstyled' | 'zoll-v2'; +export type Theme = 'bmf' | 'default' | 'ecl-ec' | 'ecl-eu' | 'itzbund' | 'th' | 'unstyled'; const drafts: Theme[] = ['ecl-ec', 'ecl-eu', 'itzbund', 'th']; @@ -9,15 +9,7 @@ export const isDraftTheme = (theme: Theme) => drafts.includes(theme); export const isTheme = (value: unknown) => { return ( typeof value === 'string' && - (value === 'unstyled' || - value === 'bmf' || - value === 'default' || - value === 'ecl-ec' || - value === 'ecl-eu' || - value === 'itzbund' || - value === 'mapz' || - value === 'th' || - value === 'zoll-v2') + (value === 'bmf' || value === 'default' || value === 'ecl-ec' || value === 'ecl-eu' || value === 'itzbund' || value === 'th' || value === 'unstyled') ); }; @@ -28,39 +20,31 @@ export type Store = { export const THEME_OPTIONS: SelectOption[] = [ { - label: 'Unstyled', + label: 'Unstyled (Uncolored)', value: 'unstyled', }, { - label: 'Bundesministerium der Finanzen', + label: 'Bundesministerium der Finanzen (Tested)', value: 'bmf', }, { - label: 'Default', + label: 'Default (Tested)', value: 'default', }, { - label: 'European Commission (ECL)', + label: 'European Commission (Draft)', value: 'ecl-ec', }, { - label: 'European Union (ECL)', + label: 'European Union (Draft)', value: 'ecl-eu', }, { - label: 'Informationstechnikzentrum Bund', + label: 'Informationstechnikzentrum Bund (Draft)', value: 'itzbund', }, { - label: '.', - value: 'mapz', - }, - { - label: 'Freistaat Thüringen', + label: 'Freistaat Thüringen (Draft)', value: 'th', }, - { - label: '..', - value: 'zoll-v2', - }, ]; diff --git a/packages/storybook/src/998-changelog.stories.mdx b/packages/storybook/src/998-changelog.stories.mdx index cb7d2bc521..d2147bfad3 100644 --- a/packages/storybook/src/998-changelog.stories.mdx +++ b/packages/storybook/src/998-changelog.stories.mdx @@ -646,7 +646,6 @@ _data="[{'symbol':'🌟','desc':'Neue Funktion'},{'symbol':'🚹','desc':'Barrie
  • 👩‍🎨 Input-Text: Icons links oder/und rechts im Eingabefeld
  • 👩‍🎨 Input-Text: Redesign, Label, Input und Fehler beliebige Reihenfolge
  • 🔧 Tabs: Event-Callbacks Typo verbessert
  • -
  • 👩‍🎨 Style: MAPZoll Theme vollständig überarbeitet
  • 🔥 Property _nested ersatzlos entfernt
  • 🌟 Pagination: Erweiterung der Properties um _variant, _customClass und tooltopAlign.
  • 🔥 Global KoliBri-Style aus der Lib und Demo entfernt, weil diese Datei nicht erforderlich ist. (kolibri.css)
  • diff --git a/packages/storybook/src/components/bik-bitv-test.tsx b/packages/storybook/src/components/bik-bitv-test.tsx index 9407721157..eeea7f2158 100644 --- a/packages/storybook/src/components/bik-bitv-test.tsx +++ b/packages/storybook/src/components/bik-bitv-test.tsx @@ -117,26 +117,14 @@ export class BikBitvTest extends Component { label: 'Neutral', value: '', }, - { - label: 'BAMF-Styleguide', - value: 'bamf', - }, { label: 'BMF-Styleguide', value: 'default', }, - { - label: 'BZSt-Styleguide', - value: 'bzst', - }, { label: 'ITZBund-Styleguide', value: 'itzbund', }, - { - label: 'MAPZoll-Styleguide', - value: 'default', - }, ]} _on={{ onChange: (_event, value) => { diff --git a/packages/themes/README.md b/packages/themes/README.md index fb6de4a4ea..bfed52e72b 100644 --- a/packages/themes/README.md +++ b/packages/themes/README.md @@ -12,14 +12,6 @@ Mehr zum **Projekt** kann in der [README](https://public-ui.github.io/docs) nach We use **pnpm** as package manager and there is a tiny typing issue with the default typescript setup. -**What happens?** - -We got a type annotation error in TypeScript. - -```bash -The inferred type of 'THEME' cannot be named without a reference to '.pnpm/@a11y-ui+core@***/node_modules/@a11y-ui/core/types/theming'. This is likely not portable. A type annotation is necessary.ts(2742) -``` - **What does we know?** This seems to be a general issue: diff --git a/packages/themes/bzst/assets/fontawesome-free/LICENSE.txt b/packages/themes/bzst/assets/fontawesome-free/LICENSE.txt deleted file mode 100644 index cc557ece45..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/LICENSE.txt +++ /dev/null @@ -1,165 +0,0 @@ -Fonticons, Inc. (https://fontawesome.com) - --------------------------------------------------------------------------------- - -Font Awesome Free License - -Font Awesome Free is free, open source, and GPL friendly. You can use it for -commercial projects, open source projects, or really almost whatever you want. -Full Font Awesome Free license: https://fontawesome.com/license/free. - --------------------------------------------------------------------------------- - -# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) - -The Font Awesome Free download is licensed under a Creative Commons -Attribution 4.0 International License and applies to all icons packaged -as SVG and JS file types. - --------------------------------------------------------------------------------- - -# Fonts: SIL OFL 1.1 License - -In the Font Awesome Free download, the SIL OFL license applies to all icons -packaged as web and desktop font files. - -Copyright (c) 2022 Fonticons, Inc. (https://fontawesome.com) -with Reserved Font Name: "Font Awesome". - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - -SIL OPEN FONT LICENSE -Version 1.1 - 26 February 2007 - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting — in part or in whole — any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - --------------------------------------------------------------------------------- - -# Code: MIT License (https://opensource.org/licenses/MIT) - -In the Font Awesome Free download, the MIT license applies to all non-font and -non-icon files. - -Copyright 2022 Fonticons, Inc. - -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. - --------------------------------------------------------------------------------- - -# Attribution - -Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font -Awesome Free files already contain embedded comments with sufficient -attribution, so you shouldn't need to do anything additional when using these -files normally. - -We've kept attribution comments terse, so we ask that you do not actively work -to remove them from files, especially code. They're a great way for folks to -learn about Font Awesome. - --------------------------------------------------------------------------------- - -# Brand Icons - -All brand icons are trademarks of their respective owners. The use of these -trademarks does not indicate endorsement of the trademark holder by Font -Awesome, nor vice versa. **Please do not use brand logos for any purpose except -to represent the company, product, or service to which they refer.** diff --git a/packages/themes/bzst/assets/fontawesome-free/css/all.css b/packages/themes/bzst/assets/fontawesome-free/css/all.css deleted file mode 100644 index 9c2adee7ef..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/all.css +++ /dev/null @@ -1,7831 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa, -.fas, -.fa-solid, -.far, -.fa-regular, -.fal, -.fa-light, -.fat, -.fa-thin, -.fad, -.fa-duotone, -.fab, -.fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-a::before { - content: "\41"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-at::before { - content: "\40"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-award::before { - content: "\f559"; } - -.fa-b::before { - content: "\42"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-box::before { - content: "\f466"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-c::before { - content: "\43"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-code::before { - content: "\f121"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-d::before { - content: "\44"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-display::before { - content: "\e163"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-download::before { - content: "\f019"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-e::before { - content: "\45"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-f::before { - content: "\46"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-file-circle-check::before { - content: "\e493"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-file-circle-plus::before { - content: "\e4ee"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-file-circle-xmark::before { - content: "\e494"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-film::before { - content: "\f008"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-font::before { - content: "\f031"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-g::before { - content: "\47"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-h::before { - content: "\48"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-2::before { - content: "\f254"; } - -.fa-hourglass-half::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f252"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-i::before { - content: "\49"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-images::before { - content: "\f302"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-info::before { - content: "\f129"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-j::before { - content: "\4a"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-k::before { - content: "\4b"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-key::before { - content: "\f084"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-l::before { - content: "\4c"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-m::before { - content: "\4d"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-map::before { - content: "\f279"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-music::before { - content: "\f001"; } - -.fa-n::before { - content: "\4e"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-o::before { - content: "\4f"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-om::before { - content: "\f679"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-p::before { - content: "\50"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-person-through-window::before { - content: "\e433"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-plant-wilt::before { - content: "\e43b"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-q::before { - content: "\51"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-question::before { - content: "\3f"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-r::before { - content: "\52"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-road::before { - content: "\f018"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-s::before { - content: "\53"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-school::before { - content: "\f549"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-section::before { - content: "\e447"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-server::before { - content: "\f233"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-share::before { - content: "\f064"; } - -.fa-arrow-turn-right::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-star::before { - content: "\f005"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-t::before { - content: "\54"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-train::before { - content: "\f238"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-train-tram::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-u::before { - content: "\55"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-user::before { - content: "\f007"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-v::before { - content: "\56"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-w::before { - content: "\57"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-water::before { - content: "\f773"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-x::before { - content: "\58"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-y::before { - content: "\59"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-z::before { - content: "\5a"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } -:root, :host { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-node:before { - content: "\f419"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-php:before { - content: "\f457"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-square-font-awesome:before { - content: "\f425"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-zhihu:before { - content: "\f63f"; } -:root, :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; } -@font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/all.min.css b/packages/themes/bzst/assets/fontawesome-free/css/all.min.css deleted file mode 100644 index 9b2ac090a2..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/all.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-a:before{content:"\41"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-anchor:before{content:"\f13d"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-anchor-lock:before{content:"\e4ad"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-ankh:before{content:"\f644"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-archway:before{content:"\f557"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-arrow-trend-down:before{content:"\e097"}.fa-arrow-trend-up:before{content:"\e098"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-arrows-spin:before{content:"\e4bb"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-asterisk:before{content:"\2a"}.fa-at:before{content:"\40"}.fa-atom:before{content:"\f5d2"}.fa-audio-description:before{content:"\f29e"}.fa-austral-sign:before{content:"\e0a9"}.fa-award:before{content:"\f559"}.fa-b:before{content:"\42"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-backward:before{content:"\f04a"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-bahai:before{content:"\f666"}.fa-baht-sign:before{content:"\e0ac"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-barcode:before{content:"\f02a"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-bell:before{content:"\f0f3"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blog:before{content:"\f781"}.fa-bold:before{content:"\f032"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-book-bookmark:before{content:"\e0bb"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-bookmark:before{content:"\f02e"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-bore-hole:before{content:"\e4c3"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-bottle-water:before{content:"\e4c5"}.fa-bowl-food:before{content:"\e4c6"}.fa-bowl-rice:before{content:"\e2eb"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes-packing:before{content:"\e4c7"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-bread-slice:before{content:"\f7ec"}.fa-bridge:before{content:"\e4c8"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-bridge-water:before{content:"\e4ce"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broom:before{content:"\f51a"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-brush:before{content:"\f55d"}.fa-bucket:before{content:"\e4cf"}.fa-bug:before{content:"\f188"}.fa-bug-slash:before{content:"\e490"}.fa-bugs:before{content:"\e4d0"}.fa-building:before{content:"\f1ad"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-building-circle-check:before{content:"\e4d2"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-building-flag:before{content:"\e4d5"}.fa-building-lock:before{content:"\e4d6"}.fa-building-ngo:before{content:"\e4d7"}.fa-building-shield:before{content:"\e4d8"}.fa-building-un:before{content:"\e4d9"}.fa-building-user:before{content:"\e4da"}.fa-building-wheat:before{content:"\e4db"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-burst:before{content:"\e4dc"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-c:before{content:"\43"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-week:before{content:"\f784"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-camera-rotate:before{content:"\e0d8"}.fa-campground:before{content:"\f6bb"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-car-on:before{content:"\e4dd"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-car-side:before{content:"\f5e4"}.fa-car-tunnel:before{content:"\e4de"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-cart-plus:before{content:"\f217"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cedi-sign:before{content:"\e0df"}.fa-cent-sign:before{content:"\e3f5"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-charging-station:before{content:"\f5e7"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-chart-column:before{content:"\e0e3"}.fa-chart-gantt:before{content:"\e0e4"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-chart-simple:before{content:"\e473"}.fa-check:before{content:"\f00c"}.fa-check-double:before{content:"\f560"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-child-dress:before{content:"\e59c"}.fa-child-reaching:before{content:"\e59d"}.fa-child-rifle:before{content:"\e4e0"}.fa-children:before{content:"\e4e1"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-circle-nodes:before{content:"\e4e2"}.fa-circle-notch:before{content:"\f1ce"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-city:before{content:"\f64f"}.fa-clapperboard:before{content:"\e131"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-question:before{content:"\e4e3"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-clover:before{content:"\e139"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-compare:before{content:"\e13a"}.fa-code-fork:before{content:"\e13b"}.fa-code-merge:before{content:"\f387"}.fa-code-pull-request:before{content:"\e13c"}.fa-coins:before{content:"\f51e"}.fa-colon-sign:before{content:"\e140"}.fa-comment:before{content:"\f075"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-compress:before{content:"\f066"}.fa-computer:before{content:"\e4e5"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-d:before{content:"\44"}.fa-database:before{content:"\f1c0"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-democrat:before{content:"\f747"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-dharmachakra:before{content:"\f655"}.fa-diagram-next:before{content:"\e476"}.fa-diagram-predecessor:before{content:"\e477"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-diagram-successor:before{content:"\e47a"}.fa-diamond:before{content:"\f219"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-disease:before{content:"\f7fa"}.fa-display:before{content:"\e163"}.fa-divide:before{content:"\f529"}.fa-dna:before{content:"\f471"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-dong-sign:before{content:"\e169"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dove:before{content:"\f4ba"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-download:before{content:"\f019"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-e:before{content:"\45"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elevator:before{content:"\e16d"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-equals:before{content:"\3d"}.fa-eraser:before{content:"\f12d"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-exclamation:before{content:"\21"}.fa-expand:before{content:"\f065"}.fa-explosion:before{content:"\e4e9"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-eye-slash:before{content:"\f070"}.fa-f:before{content:"\46"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-fan:before{content:"\f863"}.fa-faucet:before{content:"\e005"}.fa-faucet-drip:before{content:"\e006"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-ferry:before{content:"\e4ea"}.fa-file:before{content:"\f15b"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-file-audio:before{content:"\f1c7"}.fa-file-circle-check:before{content:"\e493"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-file-circle-plus:before{content:"\e4ee"}.fa-file-circle-question:before{content:"\e4ef"}.fa-file-circle-xmark:before{content:"\e494"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-excel:before{content:"\f1c3"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-file-medical:before{content:"\f477"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-shield:before{content:"\e4f0"}.fa-file-signature:before{content:"\f573"}.fa-file-video:before{content:"\f1c8"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-file-word:before{content:"\f1c2"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-burner:before{content:"\e4f1"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-fish:before{content:"\f578"}.fa-fish-fins:before{content:"\e4f2"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flask-vial:before{content:"\e4f3"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-florin-sign:before{content:"\e184"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-folder-closed:before{content:"\e185"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-tree:before{content:"\f802"}.fa-font:before{content:"\f031"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-franc-sign:before{content:"\e18f"}.fa-frog:before{content:"\f52e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-g:before{content:"\47"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-glass-water:before{content:"\e4f4"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-glasses:before{content:"\f530"}.fa-globe:before{content:"\f0ac"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-greater-than:before{content:"\3e"}.fa-greater-than-equal:before{content:"\f532"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-guarani-sign:before{content:"\e19a"}.fa-guitar:before{content:"\f7a6"}.fa-gun:before{content:"\e19b"}.fa-h:before{content:"\48"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-handcuffs:before{content:"\e4f8"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-hands-bound:before{content:"\e4f9"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-hands-clapping:before{content:"\e1a8"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-handshake:before{content:"\f2b5"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-hashtag:before{content:"\23"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-heart-circle-plus:before{content:"\e500"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helicopter-symbol:before{content:"\e502"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-helmet-un:before{content:"\e503"}.fa-highlighter:before{content:"\f591"}.fa-hill-avalanche:before{content:"\e507"}.fa-hill-rockslide:before{content:"\e508"}.fa-hippo:before{content:"\f6ed"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hourglass-2:before,.fa-hourglass-half:before,.fa-hourglass:before{content:"\f254"}.fa-hourglass-empty:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-house-chimney-user:before{content:"\e065"}.fa-house-chimney-window:before{content:"\e00d"}.fa-house-circle-check:before{content:"\e509"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-house-crack:before{content:"\e3b1"}.fa-house-fire:before{content:"\e50c"}.fa-house-flag:before{content:"\e50d"}.fa-house-flood-water:before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-house-lock:before{content:"\e510"}.fa-house-medical:before{content:"\e3b2"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-house-medical-flag:before{content:"\e514"}.fa-house-signal:before{content:"\e012"}.fa-house-tsunami:before{content:"\e515"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-hurricane:before{content:"\f751"}.fa-i:before{content:"\49"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-images:before{content:"\f302"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-italic:before{content:"\f033"}.fa-j:before{content:"\4a"}.fa-jar:before{content:"\e516"}.fa-jar-wheat:before{content:"\e517"}.fa-jedi:before{content:"\f669"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-jet-fighter-up:before{content:"\e518"}.fa-joint:before{content:"\f595"}.fa-jug-detergent:before{content:"\e519"}.fa-k:before{content:"\4b"}.fa-kaaba:before{content:"\f66b"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-khanda:before{content:"\f66d"}.fa-kip-sign:before{content:"\e1c4"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-kitchen-set:before{content:"\e51a"}.fa-kiwi-bird:before{content:"\f535"}.fa-l:before{content:"\4c"}.fa-land-mine-on:before{content:"\e51b"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-landmark-flag:before{content:"\e51c"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-file:before{content:"\e51d"}.fa-laptop-medical:before{content:"\f812"}.fa-lari-sign:before{content:"\e1c8"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-lemon:before{content:"\f094"}.fa-less-than:before{content:"\3c"}.fa-less-than-equal:before{content:"\f537"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lines-leaning:before{content:"\e51e"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-lira-sign:before{content:"\f195"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-location-arrow:before{content:"\f124"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-location-pin-lock:before{content:"\e51f"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-locust:before{content:"\e520"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-m:before{content:"\4d"}.fa-magnet:before{content:"\f076"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-manat-sign:before{content:"\e1d5"}.fa-map:before{content:"\f279"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-pin:before{content:"\f276"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-and-venus:before{content:"\f224"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-mask:before{content:"\f6fa"}.fa-mask-face:before{content:"\e1d7"}.fa-mask-ventilator:before{content:"\e524"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-mattress-pillow:before{content:"\e525"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-medal:before{content:"\f5a2"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-mill-sign:before{content:"\e1ed"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-mitten:before{content:"\f7b5"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-mobile-button:before{content:"\f10b"}.fa-mobile-retro:before{content:"\e527"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-money-bills:before{content:"\e1f3"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-mosquito-net:before{content:"\e52c"}.fa-motorcycle:before{content:"\f21c"}.fa-mound:before{content:"\e52d"}.fa-mountain:before{content:"\f6fc"}.fa-mountain-city:before{content:"\e52e"}.fa-mountain-sun:before{content:"\e52f"}.fa-mug-hot:before{content:"\f7b6"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-music:before{content:"\f001"}.fa-n:before{content:"\4e"}.fa-naira-sign:before{content:"\e1f6"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-not-equal:before{content:"\f53e"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-notes-medical:before{content:"\f481"}.fa-o:before{content:"\4f"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-oil-can:before{content:"\f613"}.fa-oil-well:before{content:"\e532"}.fa-om:before{content:"\f679"}.fa-otter:before{content:"\f700"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-p:before{content:"\50"}.fa-pager:before{content:"\f815"}.fa-paint-roller:before{content:"\f5aa"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-palette:before{content:"\f53f"}.fa-pallet:before{content:"\f482"}.fa-panorama:before{content:"\e209"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-passport:before{content:"\f5ab"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-pause:before{content:"\f04c"}.fa-paw:before{content:"\f1b0"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-people-group:before{content:"\e533"}.fa-people-line:before{content:"\e534"}.fa-people-pulling:before{content:"\e535"}.fa-people-robbery:before{content:"\e536"}.fa-people-roof:before{content:"\e537"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-person-booth:before{content:"\f756"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-person-burst:before{content:"\e53b"}.fa-person-cane:before{content:"\e53c"}.fa-person-chalkboard:before{content:"\e53d"}.fa-person-circle-check:before{content:"\e53e"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-person-circle-minus:before{content:"\e540"}.fa-person-circle-plus:before{content:"\e541"}.fa-person-circle-question:before{content:"\e542"}.fa-person-circle-xmark:before{content:"\e543"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-person-dress-burst:before{content:"\e544"}.fa-person-drowning:before{content:"\e545"}.fa-person-falling:before{content:"\e546"}.fa-person-falling-burst:before{content:"\e547"}.fa-person-half-dress:before{content:"\e548"}.fa-person-harassing:before{content:"\e549"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-person-military-pointing:before{content:"\e54a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-person-military-to-person:before{content:"\e54c"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-person-pregnant:before{content:"\e31e"}.fa-person-rays:before{content:"\e54d"}.fa-person-rifle:before{content:"\e54e"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-person-shelter:before{content:"\e54f"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-person-through-window:before{content:"\e433"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-person-walking-luggage:before{content:"\e554"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-peseta-sign:before{content:"\e221"}.fa-peso-sign:before{content:"\e222"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-circle-check:before{content:"\e555"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-lock:before{content:"\e558"}.fa-plane-slash:before{content:"\e069"}.fa-plane-up:before{content:"\e22d"}.fa-plant-wilt:before{content:"\e43b"}.fa-plate-wheat:before{content:"\e55a"}.fa-play:before{content:"\f04b"}.fa-plug:before{content:"\f1e6"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-plug-circle-check:before{content:"\e55c"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-plus-minus:before{content:"\e43c"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-puzzle-piece:before{content:"\f12e"}.fa-q:before{content:"\51"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\3f"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-r:before{content:"\52"}.fa-radiation:before{content:"\f7b9"}.fa-radio:before{content:"\f8d7"}.fa-rainbow:before{content:"\f75b"}.fa-ranking-star:before{content:"\e561"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-recycle:before{content:"\f1b8"}.fa-registered:before{content:"\f25d"}.fa-repeat:before{content:"\f363"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-republican:before{content:"\f75e"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-road-barrier:before{content:"\e562"}.fa-road-bridge:before{content:"\e563"}.fa-road-circle-check:before{content:"\e564"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-road-circle-xmark:before{content:"\e566"}.fa-road-lock:before{content:"\e567"}.fa-road-spikes:before{content:"\e568"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-route:before{content:"\f4d7"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-rug:before{content:"\e569"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-rupiah-sign:before{content:"\e23d"}.fa-s:before{content:"\53"}.fa-sack-dollar:before{content:"\f81d"}.fa-sack-xmark:before{content:"\e56a"}.fa-sailboat:before{content:"\e445"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-school:before{content:"\f549"}.fa-school-circle-check:before{content:"\e56b"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-school-flag:before{content:"\e56e"}.fa-school-lock:before{content:"\e56f"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-screwdriver:before{content:"\f54a"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-scroll:before{content:"\f70e"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-sd-card:before{content:"\f7c2"}.fa-section:before{content:"\e447"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-server:before{content:"\f233"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-sheet-plastic:before{content:"\e571"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-shield-cat:before{content:"\e572"}.fa-shield-dog:before{content:"\e573"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-shield-heart:before{content:"\e574"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-shoe-prints:before{content:"\f54b"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-shop-lock:before{content:"\e4a5"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-shower:before{content:"\f2cc"}.fa-shrimp:before{content:"\e448"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-sim-card:before{content:"\f7c4"}.fa-sink:before{content:"\e06d"}.fa-sitemap:before{content:"\f0e8"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-spa:before{content:"\f5bb"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-spray-can:before{content:"\f5bd"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-square:before{content:"\f0c8"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-square-full:before{content:"\f45c"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-square-nfi:before{content:"\e576"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-square-person-confined:before{content:"\e577"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-square-virus:before{content:"\e578"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-stairs:before{content:"\e289"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-stethoscope:before{content:"\f0f1"}.fa-stop:before{content:"\f04d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-slash:before{content:"\e071"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stroopwafel:before{content:"\f551"}.fa-subscript:before{content:"\f12c"}.fa-suitcase:before{content:"\f0f2"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-superscript:before{content:"\f12b"}.fa-swatchbook:before{content:"\f5c3"}.fa-synagogue:before{content:"\f69b"}.fa-syringe:before{content:"\f48e"}.fa-t:before{content:"\54"}.fa-table:before{content:"\f0ce"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-tablet-button:before{content:"\f10a"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tarp:before{content:"\e57b"}.fa-tarp-droplet:before{content:"\e57c"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-tent:before{content:"\e57d"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tent-arrows-down:before{content:"\e581"}.fa-tents:before{content:"\e582"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-text-width:before{content:"\f035"}.fa-thermometer:before{content:"\f491"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-timeline:before{content:"\e29c"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toilet-portable:before{content:"\e583"}.fa-toilets-portable:before{content:"\e584"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-tower-cell:before{content:"\e585"}.fa-tower-observation:before{content:"\e586"}.fa-tractor:before{content:"\f722"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-train-tram:before,.fa-tram:before{content:"\f7da"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-tree-city:before{content:"\e587"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-trophy:before{content:"\f091"}.fa-trowel:before{content:"\e589"}.fa-trowel-bricks:before{content:"\e58a"}.fa-truck:before{content:"\f0d1"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-truck-droplet:before{content:"\e58c"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-truck-field:before{content:"\e58d"}.fa-truck-field-un:before{content:"\e58e"}.fa-truck-front:before{content:"\e2b7"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plane:before{content:"\e58f"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-u:before{content:"\55"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-universal-access:before{content:"\f29a"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-upload:before{content:"\f093"}.fa-user:before{content:"\f007"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-clock:before{content:"\f4fd"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-user-graduate:before{content:"\f501"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-user-injured:before{content:"\f728"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-user-lock:before{content:"\f502"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-between-lines:before{content:"\e591"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-users-line:before{content:"\e592"}.fa-users-rays:before{content:"\e593"}.fa-users-rectangle:before{content:"\e594"}.fa-users-slash:before{content:"\e073"}.fa-users-viewfinder:before{content:"\e595"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-v:before{content:"\56"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-vault:before{content:"\e2c5"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-vial:before{content:"\f492"}.fa-vial-circle-check:before{content:"\e596"}.fa-vial-virus:before{content:"\e597"}.fa-vials:before{content:"\f493"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-virus:before{content:"\e074"}.fa-virus-covid:before{content:"\e4a8"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-voicemail:before{content:"\f897"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-vr-cardboard:before{content:"\f729"}.fa-w:before{content:"\57"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-wallet:before{content:"\f555"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-wand-sparkles:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-wave-square:before{content:"\f83e"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-wheelchair:before{content:"\f193"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-wind:before{content:"\f72e"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-worm:before{content:"\e599"}.fa-wrench:before{content:"\f0ad"}.fa-x:before{content:"\58"}.fa-x-ray:before{content:"\f497"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-xmarks-lines:before{content:"\e59a"}.fa-y:before{content:"\59"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-z:before{content:"\5a"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-square:before{content:"\f2ad"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-font-awesome:before{content:"\f425"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400}:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f250,u+f252,u+f27a} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/brands.css b/packages/themes/bzst/assets/fontawesome-free/css/brands.css deleted file mode 100644 index e83ed42ac1..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/brands.css +++ /dev/null @@ -1,1432 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-node:before { - content: "\f419"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-php:before { - content: "\f457"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-square-font-awesome:before { - content: "\f425"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-zhihu:before { - content: "\f63f"; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/brands.min.css b/packages/themes/bzst/assets/fontawesome-free/css/brands.min.css deleted file mode 100644 index 714509e6f9..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/brands.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-square:before{content:"\f2ad"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-font-awesome:before{content:"\f425"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/fontawesome.css b/packages/themes/bzst/assets/fontawesome-free/css/fontawesome.css deleted file mode 100644 index e7eb5fe411..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/fontawesome.css +++ /dev/null @@ -1,6338 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa, -.fas, -.fa-solid, -.far, -.fa-regular, -.fal, -.fa-light, -.fat, -.fa-thin, -.fad, -.fa-duotone, -.fab, -.fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-a::before { - content: "\41"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-at::before { - content: "\40"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-award::before { - content: "\f559"; } - -.fa-b::before { - content: "\42"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-box::before { - content: "\f466"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-c::before { - content: "\43"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-code::before { - content: "\f121"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-d::before { - content: "\44"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-display::before { - content: "\e163"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-download::before { - content: "\f019"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-e::before { - content: "\45"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-f::before { - content: "\46"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-file-circle-check::before { - content: "\e493"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-file-circle-plus::before { - content: "\e4ee"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-file-circle-xmark::before { - content: "\e494"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-film::before { - content: "\f008"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-font::before { - content: "\f031"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-g::before { - content: "\47"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-h::before { - content: "\48"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-2::before { - content: "\f254"; } - -.fa-hourglass-half::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f252"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-i::before { - content: "\49"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-images::before { - content: "\f302"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-info::before { - content: "\f129"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-j::before { - content: "\4a"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-k::before { - content: "\4b"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-key::before { - content: "\f084"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-l::before { - content: "\4c"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-m::before { - content: "\4d"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-map::before { - content: "\f279"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-music::before { - content: "\f001"; } - -.fa-n::before { - content: "\4e"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-o::before { - content: "\4f"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-om::before { - content: "\f679"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-p::before { - content: "\50"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-person-through-window::before { - content: "\e433"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-plant-wilt::before { - content: "\e43b"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-q::before { - content: "\51"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-question::before { - content: "\3f"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-r::before { - content: "\52"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-road::before { - content: "\f018"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-s::before { - content: "\53"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-school::before { - content: "\f549"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-section::before { - content: "\e447"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-server::before { - content: "\f233"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-share::before { - content: "\f064"; } - -.fa-arrow-turn-right::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-star::before { - content: "\f005"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-t::before { - content: "\54"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-train::before { - content: "\f238"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-train-tram::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-u::before { - content: "\55"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-user::before { - content: "\f007"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-v::before { - content: "\56"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-w::before { - content: "\57"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-water::before { - content: "\f773"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-x::before { - content: "\58"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-y::before { - content: "\59"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-z::before { - content: "\5a"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/fontawesome.min.css b/packages/themes/bzst/assets/fontawesome-free/css/fontawesome.min.css deleted file mode 100644 index b16f0a06aa..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/fontawesome.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-a:before{content:"\41"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-anchor:before{content:"\f13d"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-anchor-lock:before{content:"\e4ad"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-ankh:before{content:"\f644"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-archway:before{content:"\f557"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-arrow-trend-down:before{content:"\e097"}.fa-arrow-trend-up:before{content:"\e098"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-arrows-spin:before{content:"\e4bb"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-asterisk:before{content:"\2a"}.fa-at:before{content:"\40"}.fa-atom:before{content:"\f5d2"}.fa-audio-description:before{content:"\f29e"}.fa-austral-sign:before{content:"\e0a9"}.fa-award:before{content:"\f559"}.fa-b:before{content:"\42"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-backward:before{content:"\f04a"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-bahai:before{content:"\f666"}.fa-baht-sign:before{content:"\e0ac"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-barcode:before{content:"\f02a"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-bell:before{content:"\f0f3"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blog:before{content:"\f781"}.fa-bold:before{content:"\f032"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-book-bookmark:before{content:"\e0bb"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-bookmark:before{content:"\f02e"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-bore-hole:before{content:"\e4c3"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-bottle-water:before{content:"\e4c5"}.fa-bowl-food:before{content:"\e4c6"}.fa-bowl-rice:before{content:"\e2eb"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes-packing:before{content:"\e4c7"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-bread-slice:before{content:"\f7ec"}.fa-bridge:before{content:"\e4c8"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-bridge-water:before{content:"\e4ce"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broom:before{content:"\f51a"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-brush:before{content:"\f55d"}.fa-bucket:before{content:"\e4cf"}.fa-bug:before{content:"\f188"}.fa-bug-slash:before{content:"\e490"}.fa-bugs:before{content:"\e4d0"}.fa-building:before{content:"\f1ad"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-building-circle-check:before{content:"\e4d2"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-building-flag:before{content:"\e4d5"}.fa-building-lock:before{content:"\e4d6"}.fa-building-ngo:before{content:"\e4d7"}.fa-building-shield:before{content:"\e4d8"}.fa-building-un:before{content:"\e4d9"}.fa-building-user:before{content:"\e4da"}.fa-building-wheat:before{content:"\e4db"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-burst:before{content:"\e4dc"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-c:before{content:"\43"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-week:before{content:"\f784"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-camera-rotate:before{content:"\e0d8"}.fa-campground:before{content:"\f6bb"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-car-on:before{content:"\e4dd"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-car-side:before{content:"\f5e4"}.fa-car-tunnel:before{content:"\e4de"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-cart-plus:before{content:"\f217"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cedi-sign:before{content:"\e0df"}.fa-cent-sign:before{content:"\e3f5"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-charging-station:before{content:"\f5e7"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-chart-column:before{content:"\e0e3"}.fa-chart-gantt:before{content:"\e0e4"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-chart-simple:before{content:"\e473"}.fa-check:before{content:"\f00c"}.fa-check-double:before{content:"\f560"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-child-dress:before{content:"\e59c"}.fa-child-reaching:before{content:"\e59d"}.fa-child-rifle:before{content:"\e4e0"}.fa-children:before{content:"\e4e1"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-circle-nodes:before{content:"\e4e2"}.fa-circle-notch:before{content:"\f1ce"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-city:before{content:"\f64f"}.fa-clapperboard:before{content:"\e131"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-question:before{content:"\e4e3"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-clover:before{content:"\e139"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-compare:before{content:"\e13a"}.fa-code-fork:before{content:"\e13b"}.fa-code-merge:before{content:"\f387"}.fa-code-pull-request:before{content:"\e13c"}.fa-coins:before{content:"\f51e"}.fa-colon-sign:before{content:"\e140"}.fa-comment:before{content:"\f075"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-compress:before{content:"\f066"}.fa-computer:before{content:"\e4e5"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-d:before{content:"\44"}.fa-database:before{content:"\f1c0"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-democrat:before{content:"\f747"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-dharmachakra:before{content:"\f655"}.fa-diagram-next:before{content:"\e476"}.fa-diagram-predecessor:before{content:"\e477"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-diagram-successor:before{content:"\e47a"}.fa-diamond:before{content:"\f219"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-disease:before{content:"\f7fa"}.fa-display:before{content:"\e163"}.fa-divide:before{content:"\f529"}.fa-dna:before{content:"\f471"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-dong-sign:before{content:"\e169"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dove:before{content:"\f4ba"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-download:before{content:"\f019"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-e:before{content:"\45"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elevator:before{content:"\e16d"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-equals:before{content:"\3d"}.fa-eraser:before{content:"\f12d"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-exclamation:before{content:"\21"}.fa-expand:before{content:"\f065"}.fa-explosion:before{content:"\e4e9"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-eye-slash:before{content:"\f070"}.fa-f:before{content:"\46"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-fan:before{content:"\f863"}.fa-faucet:before{content:"\e005"}.fa-faucet-drip:before{content:"\e006"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-ferry:before{content:"\e4ea"}.fa-file:before{content:"\f15b"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-file-audio:before{content:"\f1c7"}.fa-file-circle-check:before{content:"\e493"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-file-circle-plus:before{content:"\e4ee"}.fa-file-circle-question:before{content:"\e4ef"}.fa-file-circle-xmark:before{content:"\e494"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-excel:before{content:"\f1c3"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-file-medical:before{content:"\f477"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-shield:before{content:"\e4f0"}.fa-file-signature:before{content:"\f573"}.fa-file-video:before{content:"\f1c8"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-file-word:before{content:"\f1c2"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-burner:before{content:"\e4f1"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-fish:before{content:"\f578"}.fa-fish-fins:before{content:"\e4f2"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flask-vial:before{content:"\e4f3"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-florin-sign:before{content:"\e184"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-folder-closed:before{content:"\e185"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-tree:before{content:"\f802"}.fa-font:before{content:"\f031"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-franc-sign:before{content:"\e18f"}.fa-frog:before{content:"\f52e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-g:before{content:"\47"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-glass-water:before{content:"\e4f4"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-glasses:before{content:"\f530"}.fa-globe:before{content:"\f0ac"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-greater-than:before{content:"\3e"}.fa-greater-than-equal:before{content:"\f532"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-guarani-sign:before{content:"\e19a"}.fa-guitar:before{content:"\f7a6"}.fa-gun:before{content:"\e19b"}.fa-h:before{content:"\48"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-handcuffs:before{content:"\e4f8"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-hands-bound:before{content:"\e4f9"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-hands-clapping:before{content:"\e1a8"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-handshake:before{content:"\f2b5"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-hashtag:before{content:"\23"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-heart-circle-plus:before{content:"\e500"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helicopter-symbol:before{content:"\e502"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-helmet-un:before{content:"\e503"}.fa-highlighter:before{content:"\f591"}.fa-hill-avalanche:before{content:"\e507"}.fa-hill-rockslide:before{content:"\e508"}.fa-hippo:before{content:"\f6ed"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hourglass-2:before,.fa-hourglass-half:before,.fa-hourglass:before{content:"\f254"}.fa-hourglass-empty:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-house-chimney-user:before{content:"\e065"}.fa-house-chimney-window:before{content:"\e00d"}.fa-house-circle-check:before{content:"\e509"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-house-crack:before{content:"\e3b1"}.fa-house-fire:before{content:"\e50c"}.fa-house-flag:before{content:"\e50d"}.fa-house-flood-water:before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-house-lock:before{content:"\e510"}.fa-house-medical:before{content:"\e3b2"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-house-medical-flag:before{content:"\e514"}.fa-house-signal:before{content:"\e012"}.fa-house-tsunami:before{content:"\e515"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-hurricane:before{content:"\f751"}.fa-i:before{content:"\49"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-images:before{content:"\f302"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-italic:before{content:"\f033"}.fa-j:before{content:"\4a"}.fa-jar:before{content:"\e516"}.fa-jar-wheat:before{content:"\e517"}.fa-jedi:before{content:"\f669"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-jet-fighter-up:before{content:"\e518"}.fa-joint:before{content:"\f595"}.fa-jug-detergent:before{content:"\e519"}.fa-k:before{content:"\4b"}.fa-kaaba:before{content:"\f66b"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-khanda:before{content:"\f66d"}.fa-kip-sign:before{content:"\e1c4"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-kitchen-set:before{content:"\e51a"}.fa-kiwi-bird:before{content:"\f535"}.fa-l:before{content:"\4c"}.fa-land-mine-on:before{content:"\e51b"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-landmark-flag:before{content:"\e51c"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-file:before{content:"\e51d"}.fa-laptop-medical:before{content:"\f812"}.fa-lari-sign:before{content:"\e1c8"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-lemon:before{content:"\f094"}.fa-less-than:before{content:"\3c"}.fa-less-than-equal:before{content:"\f537"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lines-leaning:before{content:"\e51e"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-lira-sign:before{content:"\f195"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-location-arrow:before{content:"\f124"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-location-pin-lock:before{content:"\e51f"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-locust:before{content:"\e520"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-m:before{content:"\4d"}.fa-magnet:before{content:"\f076"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-manat-sign:before{content:"\e1d5"}.fa-map:before{content:"\f279"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-pin:before{content:"\f276"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-and-venus:before{content:"\f224"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-mask:before{content:"\f6fa"}.fa-mask-face:before{content:"\e1d7"}.fa-mask-ventilator:before{content:"\e524"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-mattress-pillow:before{content:"\e525"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-medal:before{content:"\f5a2"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-mill-sign:before{content:"\e1ed"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-mitten:before{content:"\f7b5"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-mobile-button:before{content:"\f10b"}.fa-mobile-retro:before{content:"\e527"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-money-bills:before{content:"\e1f3"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-mosquito-net:before{content:"\e52c"}.fa-motorcycle:before{content:"\f21c"}.fa-mound:before{content:"\e52d"}.fa-mountain:before{content:"\f6fc"}.fa-mountain-city:before{content:"\e52e"}.fa-mountain-sun:before{content:"\e52f"}.fa-mug-hot:before{content:"\f7b6"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-music:before{content:"\f001"}.fa-n:before{content:"\4e"}.fa-naira-sign:before{content:"\e1f6"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-not-equal:before{content:"\f53e"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-notes-medical:before{content:"\f481"}.fa-o:before{content:"\4f"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-oil-can:before{content:"\f613"}.fa-oil-well:before{content:"\e532"}.fa-om:before{content:"\f679"}.fa-otter:before{content:"\f700"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-p:before{content:"\50"}.fa-pager:before{content:"\f815"}.fa-paint-roller:before{content:"\f5aa"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-palette:before{content:"\f53f"}.fa-pallet:before{content:"\f482"}.fa-panorama:before{content:"\e209"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-passport:before{content:"\f5ab"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-pause:before{content:"\f04c"}.fa-paw:before{content:"\f1b0"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-people-group:before{content:"\e533"}.fa-people-line:before{content:"\e534"}.fa-people-pulling:before{content:"\e535"}.fa-people-robbery:before{content:"\e536"}.fa-people-roof:before{content:"\e537"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-person-booth:before{content:"\f756"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-person-burst:before{content:"\e53b"}.fa-person-cane:before{content:"\e53c"}.fa-person-chalkboard:before{content:"\e53d"}.fa-person-circle-check:before{content:"\e53e"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-person-circle-minus:before{content:"\e540"}.fa-person-circle-plus:before{content:"\e541"}.fa-person-circle-question:before{content:"\e542"}.fa-person-circle-xmark:before{content:"\e543"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-person-dress-burst:before{content:"\e544"}.fa-person-drowning:before{content:"\e545"}.fa-person-falling:before{content:"\e546"}.fa-person-falling-burst:before{content:"\e547"}.fa-person-half-dress:before{content:"\e548"}.fa-person-harassing:before{content:"\e549"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-person-military-pointing:before{content:"\e54a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-person-military-to-person:before{content:"\e54c"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-person-pregnant:before{content:"\e31e"}.fa-person-rays:before{content:"\e54d"}.fa-person-rifle:before{content:"\e54e"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-person-shelter:before{content:"\e54f"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-person-through-window:before{content:"\e433"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-person-walking-luggage:before{content:"\e554"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-peseta-sign:before{content:"\e221"}.fa-peso-sign:before{content:"\e222"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-circle-check:before{content:"\e555"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-lock:before{content:"\e558"}.fa-plane-slash:before{content:"\e069"}.fa-plane-up:before{content:"\e22d"}.fa-plant-wilt:before{content:"\e43b"}.fa-plate-wheat:before{content:"\e55a"}.fa-play:before{content:"\f04b"}.fa-plug:before{content:"\f1e6"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-plug-circle-check:before{content:"\e55c"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-plus-minus:before{content:"\e43c"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-puzzle-piece:before{content:"\f12e"}.fa-q:before{content:"\51"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\3f"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-r:before{content:"\52"}.fa-radiation:before{content:"\f7b9"}.fa-radio:before{content:"\f8d7"}.fa-rainbow:before{content:"\f75b"}.fa-ranking-star:before{content:"\e561"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-recycle:before{content:"\f1b8"}.fa-registered:before{content:"\f25d"}.fa-repeat:before{content:"\f363"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-republican:before{content:"\f75e"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-road-barrier:before{content:"\e562"}.fa-road-bridge:before{content:"\e563"}.fa-road-circle-check:before{content:"\e564"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-road-circle-xmark:before{content:"\e566"}.fa-road-lock:before{content:"\e567"}.fa-road-spikes:before{content:"\e568"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-route:before{content:"\f4d7"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-rug:before{content:"\e569"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-rupiah-sign:before{content:"\e23d"}.fa-s:before{content:"\53"}.fa-sack-dollar:before{content:"\f81d"}.fa-sack-xmark:before{content:"\e56a"}.fa-sailboat:before{content:"\e445"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-school:before{content:"\f549"}.fa-school-circle-check:before{content:"\e56b"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-school-flag:before{content:"\e56e"}.fa-school-lock:before{content:"\e56f"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-screwdriver:before{content:"\f54a"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-scroll:before{content:"\f70e"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-sd-card:before{content:"\f7c2"}.fa-section:before{content:"\e447"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-server:before{content:"\f233"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-sheet-plastic:before{content:"\e571"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-shield-cat:before{content:"\e572"}.fa-shield-dog:before{content:"\e573"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-shield-heart:before{content:"\e574"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-shoe-prints:before{content:"\f54b"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-shop-lock:before{content:"\e4a5"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-shower:before{content:"\f2cc"}.fa-shrimp:before{content:"\e448"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-sim-card:before{content:"\f7c4"}.fa-sink:before{content:"\e06d"}.fa-sitemap:before{content:"\f0e8"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-spa:before{content:"\f5bb"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-spray-can:before{content:"\f5bd"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-square:before{content:"\f0c8"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-square-full:before{content:"\f45c"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-square-nfi:before{content:"\e576"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-square-person-confined:before{content:"\e577"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-square-virus:before{content:"\e578"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-stairs:before{content:"\e289"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-stethoscope:before{content:"\f0f1"}.fa-stop:before{content:"\f04d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-slash:before{content:"\e071"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stroopwafel:before{content:"\f551"}.fa-subscript:before{content:"\f12c"}.fa-suitcase:before{content:"\f0f2"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-superscript:before{content:"\f12b"}.fa-swatchbook:before{content:"\f5c3"}.fa-synagogue:before{content:"\f69b"}.fa-syringe:before{content:"\f48e"}.fa-t:before{content:"\54"}.fa-table:before{content:"\f0ce"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-tablet-button:before{content:"\f10a"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tarp:before{content:"\e57b"}.fa-tarp-droplet:before{content:"\e57c"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-tent:before{content:"\e57d"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tent-arrows-down:before{content:"\e581"}.fa-tents:before{content:"\e582"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-text-width:before{content:"\f035"}.fa-thermometer:before{content:"\f491"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-timeline:before{content:"\e29c"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toilet-portable:before{content:"\e583"}.fa-toilets-portable:before{content:"\e584"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-tower-cell:before{content:"\e585"}.fa-tower-observation:before{content:"\e586"}.fa-tractor:before{content:"\f722"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-train-tram:before,.fa-tram:before{content:"\f7da"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-tree-city:before{content:"\e587"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-trophy:before{content:"\f091"}.fa-trowel:before{content:"\e589"}.fa-trowel-bricks:before{content:"\e58a"}.fa-truck:before{content:"\f0d1"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-truck-droplet:before{content:"\e58c"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-truck-field:before{content:"\e58d"}.fa-truck-field-un:before{content:"\e58e"}.fa-truck-front:before{content:"\e2b7"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plane:before{content:"\e58f"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-u:before{content:"\55"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-universal-access:before{content:"\f29a"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-upload:before{content:"\f093"}.fa-user:before{content:"\f007"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-clock:before{content:"\f4fd"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-user-graduate:before{content:"\f501"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-user-injured:before{content:"\f728"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-user-lock:before{content:"\f502"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-between-lines:before{content:"\e591"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-users-line:before{content:"\e592"}.fa-users-rays:before{content:"\e593"}.fa-users-rectangle:before{content:"\e594"}.fa-users-slash:before{content:"\e073"}.fa-users-viewfinder:before{content:"\e595"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-v:before{content:"\56"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-vault:before{content:"\e2c5"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-vial:before{content:"\f492"}.fa-vial-circle-check:before{content:"\e596"}.fa-vial-virus:before{content:"\e597"}.fa-vials:before{content:"\f493"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-virus:before{content:"\e074"}.fa-virus-covid:before{content:"\e4a8"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-voicemail:before{content:"\f897"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-vr-cardboard:before{content:"\f729"}.fa-w:before{content:"\57"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-wallet:before{content:"\f555"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-wand-sparkles:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-wave-square:before{content:"\f83e"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-wheelchair:before{content:"\f193"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-wind:before{content:"\f72e"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-worm:before{content:"\e599"}.fa-wrench:before{content:"\f0ad"}.fa-x:before{content:"\58"}.fa-x-ray:before{content:"\f497"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-xmarks-lines:before{content:"\e59a"}.fa-y:before{content:"\59"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-z:before{content:"\5a"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/regular.css b/packages/themes/bzst/assets/fontawesome-free/css/regular.css deleted file mode 100644 index ed7304da35..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/regular.css +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/regular.min.css b/packages/themes/bzst/assets/fontawesome-free/css/regular.min.css deleted file mode 100644 index f98b44af6c..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/regular.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/solid.css b/packages/themes/bzst/assets/fontawesome-free/css/solid.css deleted file mode 100644 index 85f9b8503d..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/solid.css +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/solid.min.css b/packages/themes/bzst/assets/fontawesome-free/css/solid.min.css deleted file mode 100644 index 793fd43738..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/solid.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/svg-with-js.css b/packages/themes/bzst/assets/fontawesome-free/css/svg-with-js.css deleted file mode 100644 index 0f96c4860c..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/svg-with-js.css +++ /dev/null @@ -1,634 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid"; - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular"; - --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light"; - --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin"; - --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone"; - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa { - overflow: visible; - box-sizing: content-box; } - -.svg-inline--fa { - display: var(--fa-display, inline-block); - height: 1em; - overflow: visible; - vertical-align: -.125em; } - .svg-inline--fa.fa-2xs { - vertical-align: 0.1em; } - .svg-inline--fa.fa-xs { - vertical-align: 0em; } - .svg-inline--fa.fa-sm { - vertical-align: -0.07143em; } - .svg-inline--fa.fa-lg { - vertical-align: -0.2em; } - .svg-inline--fa.fa-xl { - vertical-align: -0.25em; } - .svg-inline--fa.fa-2xl { - vertical-align: -0.3125em; } - .svg-inline--fa.fa-pull-left { - margin-right: var(--fa-pull-margin, 0.3em); - width: auto; } - .svg-inline--fa.fa-pull-right { - margin-left: var(--fa-pull-margin, 0.3em); - width: auto; } - .svg-inline--fa.fa-li { - width: var(--fa-li-width, 2em); - top: 0.25em; } - .svg-inline--fa.fa-fw { - width: var(--fa-fw-width, 1.25em); } - -.fa-layers svg.svg-inline--fa { - bottom: 0; - left: 0; - margin: auto; - position: absolute; - right: 0; - top: 0; } - -.fa-layers-text, .fa-layers-counter { - display: inline-block; - position: absolute; - text-align: center; } - -.fa-layers { - display: inline-block; - height: 1em; - position: relative; - text-align: center; - vertical-align: -.125em; - width: 1em; } - .fa-layers svg.svg-inline--fa { - -webkit-transform-origin: center center; - transform-origin: center center; } - -.fa-layers-text { - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - -webkit-transform-origin: center center; - transform-origin: center center; } - -.fa-layers-counter { - background-color: var(--fa-counter-background-color, #ff253a); - border-radius: var(--fa-counter-border-radius, 1em); - box-sizing: border-box; - color: var(--fa-inverse, #fff); - line-height: var(--fa-counter-line-height, 1); - max-width: var(--fa-counter-max-width, 5em); - min-width: var(--fa-counter-min-width, 1.5em); - overflow: hidden; - padding: var(--fa-counter-padding, 0.25em 0.5em); - right: var(--fa-right, 0); - text-overflow: ellipsis; - top: var(--fa-top, 0); - -webkit-transform: scale(var(--fa-counter-scale, 0.25)); - transform: scale(var(--fa-counter-scale, 0.25)); - -webkit-transform-origin: top right; - transform-origin: top right; } - -.fa-layers-bottom-right { - bottom: var(--fa-bottom, 0); - right: var(--fa-right, 0); - top: auto; - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: bottom right; - transform-origin: bottom right; } - -.fa-layers-bottom-left { - bottom: var(--fa-bottom, 0); - left: var(--fa-left, 0); - right: auto; - top: auto; - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: bottom left; - transform-origin: bottom left; } - -.fa-layers-top-right { - top: var(--fa-top, 0); - right: var(--fa-right, 0); - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: top right; - transform-origin: top right; } - -.fa-layers-top-left { - left: var(--fa-left, 0); - right: auto; - top: var(--fa-top, 0); - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: top left; - transform-origin: top left; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - vertical-align: middle; - height: 2em; - position: relative; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - bottom: 0; - left: 0; - margin: auto; - position: absolute; - right: 0; - top: 0; - z-index: var(--fa-stack-z-index, auto); } - -.svg-inline--fa.fa-stack-1x { - height: 1em; - width: 1.25em; } - -.svg-inline--fa.fa-stack-2x { - height: 2em; - width: 2.5em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.svg-inline--fa .fa-primary { - fill: var(--fa-primary-color, currentColor); - opacity: var(--fa-primary-opacity, 1); } - -.svg-inline--fa .fa-secondary { - fill: var(--fa-secondary-color, currentColor); - opacity: var(--fa-secondary-opacity, 0.4); } - -.svg-inline--fa.fa-swap-opacity .fa-primary { - opacity: var(--fa-secondary-opacity, 0.4); } - -.svg-inline--fa.fa-swap-opacity .fa-secondary { - opacity: var(--fa-primary-opacity, 1); } - -.svg-inline--fa mask .fa-primary, -.svg-inline--fa mask .fa-secondary { - fill: black; } - -.fad.fa-inverse, -.fa-duotone.fa-inverse { - color: var(--fa-inverse, #fff); } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/svg-with-js.min.css b/packages/themes/bzst/assets/fontawesome-free/css/svg-with-js.min.css deleted file mode 100644 index 1e5aa4699f..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/svg-with-js.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";--fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";--fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";--fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display,inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0}.svg-inline--fa.fa-sm{vertical-align:-.07143em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width,2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--fa-fw-width,1.25em)}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-text{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter{background-color:var(--fa-counter-background-color,#ff253a);border-radius:var(--fa-counter-border-radius,1em);box-sizing:border-box;color:var(--fa-inverse,#fff);line-height:var(--fa-counter-line-height,1);max-width:var(--fa-counter-max-width,5em);min-width:var(--fa-counter-min-width,1.5em);overflow:hidden;padding:var(--fa-counter-padding,.25em .5em);right:var(--fa-right,0);text-overflow:ellipsis;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-counter-scale,.25));transform:scale(var(--fa-counter-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom,0);right:var(--fa-right,0);top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom,0);left:var(--fa-left,0);right:auto;top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top,0);right:var(--fa-right,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:var(--fa-left,0);right:auto;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top left;transform-origin:top left}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/v4-font-face.css b/packages/themes/bzst/assets/fontawesome-free/css/v4-font-face.css deleted file mode 100644 index cd93511aaa..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/v4-font-face.css +++ /dev/null @@ -1,26 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/v4-font-face.min.css b/packages/themes/bzst/assets/fontawesome-free/css/v4-font-face.min.css deleted file mode 100644 index aa10b8ccf8..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/v4-font-face.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f250,u+f252,u+f27a} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/v4-shims.css b/packages/themes/bzst/assets/fontawesome-free/css/v4-shims.css deleted file mode 100644 index 2080c37875..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/v4-shims.css +++ /dev/null @@ -1,2146 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa.fa-glass:before { - content: "\f000"; } - -.fa.fa-envelope-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-envelope-o:before { - content: "\f0e0"; } - -.fa.fa-star-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-o:before { - content: "\f005"; } - -.fa.fa-remove:before { - content: "\f00d"; } - -.fa.fa-close:before { - content: "\f00d"; } - -.fa.fa-gear:before { - content: "\f013"; } - -.fa.fa-trash-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-trash-o:before { - content: "\f2ed"; } - -.fa.fa-home:before { - content: "\f015"; } - -.fa.fa-file-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-o:before { - content: "\f15b"; } - -.fa.fa-clock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-clock-o:before { - content: "\f017"; } - -.fa.fa-arrow-circle-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-down:before { - content: "\f358"; } - -.fa.fa-arrow-circle-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-up:before { - content: "\f35b"; } - -.fa.fa-play-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-play-circle-o:before { - content: "\f144"; } - -.fa.fa-repeat:before { - content: "\f01e"; } - -.fa.fa-rotate-right:before { - content: "\f01e"; } - -.fa.fa-refresh:before { - content: "\f021"; } - -.fa.fa-list-alt { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-list-alt:before { - content: "\f022"; } - -.fa.fa-dedent:before { - content: "\f03b"; } - -.fa.fa-video-camera:before { - content: "\f03d"; } - -.fa.fa-picture-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-picture-o:before { - content: "\f03e"; } - -.fa.fa-photo { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-photo:before { - content: "\f03e"; } - -.fa.fa-image { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-image:before { - content: "\f03e"; } - -.fa.fa-map-marker:before { - content: "\f3c5"; } - -.fa.fa-pencil-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-pencil-square-o:before { - content: "\f044"; } - -.fa.fa-edit { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-edit:before { - content: "\f044"; } - -.fa.fa-share-square-o:before { - content: "\f14d"; } - -.fa.fa-check-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-check-square-o:before { - content: "\f14a"; } - -.fa.fa-arrows:before { - content: "\f0b2"; } - -.fa.fa-times-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-circle-o:before { - content: "\f057"; } - -.fa.fa-check-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-check-circle-o:before { - content: "\f058"; } - -.fa.fa-mail-forward:before { - content: "\f064"; } - -.fa.fa-expand:before { - content: "\f424"; } - -.fa.fa-compress:before { - content: "\f422"; } - -.fa.fa-eye { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-eye-slash { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-warning:before { - content: "\f071"; } - -.fa.fa-calendar:before { - content: "\f073"; } - -.fa.fa-arrows-v:before { - content: "\f338"; } - -.fa.fa-arrows-h:before { - content: "\f337"; } - -.fa.fa-bar-chart:before { - content: "\e0e3"; } - -.fa.fa-bar-chart-o:before { - content: "\e0e3"; } - -.fa.fa-twitter-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gears:before { - content: "\f085"; } - -.fa.fa-thumbs-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-thumbs-o-up:before { - content: "\f164"; } - -.fa.fa-thumbs-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-thumbs-o-down:before { - content: "\f165"; } - -.fa.fa-heart-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-heart-o:before { - content: "\f004"; } - -.fa.fa-sign-out:before { - content: "\f2f5"; } - -.fa.fa-linkedin-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linkedin-square:before { - content: "\f08c"; } - -.fa.fa-thumb-tack:before { - content: "\f08d"; } - -.fa.fa-external-link:before { - content: "\f35d"; } - -.fa.fa-sign-in:before { - content: "\f2f6"; } - -.fa.fa-github-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-lemon-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-lemon-o:before { - content: "\f094"; } - -.fa.fa-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-square-o:before { - content: "\f0c8"; } - -.fa.fa-bookmark-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bookmark-o:before { - content: "\f02e"; } - -.fa.fa-twitter { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook:before { - content: "\f39e"; } - -.fa.fa-facebook-f { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-f:before { - content: "\f39e"; } - -.fa.fa-github { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-credit-card { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-feed:before { - content: "\f09e"; } - -.fa.fa-hdd-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hdd-o:before { - content: "\f0a0"; } - -.fa.fa-hand-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-right:before { - content: "\f0a4"; } - -.fa.fa-hand-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-left:before { - content: "\f0a5"; } - -.fa.fa-hand-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-up:before { - content: "\f0a6"; } - -.fa.fa-hand-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-down:before { - content: "\f0a7"; } - -.fa.fa-globe:before { - content: "\f57d"; } - -.fa.fa-tasks:before { - content: "\f828"; } - -.fa.fa-arrows-alt:before { - content: "\f31e"; } - -.fa.fa-group:before { - content: "\f0c0"; } - -.fa.fa-chain:before { - content: "\f0c1"; } - -.fa.fa-cut:before { - content: "\f0c4"; } - -.fa.fa-files-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-files-o:before { - content: "\f0c5"; } - -.fa.fa-floppy-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-floppy-o:before { - content: "\f0c7"; } - -.fa.fa-save { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-save:before { - content: "\f0c7"; } - -.fa.fa-navicon:before { - content: "\f0c9"; } - -.fa.fa-reorder:before { - content: "\f0c9"; } - -.fa.fa-magic:before { - content: "\e2ca"; } - -.fa.fa-pinterest { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pinterest-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus:before { - content: "\f0d5"; } - -.fa.fa-money:before { - content: "\f3d1"; } - -.fa.fa-unsorted:before { - content: "\f0dc"; } - -.fa.fa-sort-desc:before { - content: "\f0dd"; } - -.fa.fa-sort-asc:before { - content: "\f0de"; } - -.fa.fa-linkedin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linkedin:before { - content: "\f0e1"; } - -.fa.fa-rotate-left:before { - content: "\f0e2"; } - -.fa.fa-legal:before { - content: "\f0e3"; } - -.fa.fa-tachometer:before { - content: "\f625"; } - -.fa.fa-dashboard:before { - content: "\f625"; } - -.fa.fa-comment-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-comment-o:before { - content: "\f075"; } - -.fa.fa-comments-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-comments-o:before { - content: "\f086"; } - -.fa.fa-flash:before { - content: "\f0e7"; } - -.fa.fa-clipboard:before { - content: "\f0ea"; } - -.fa.fa-lightbulb-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-lightbulb-o:before { - content: "\f0eb"; } - -.fa.fa-exchange:before { - content: "\f362"; } - -.fa.fa-cloud-download:before { - content: "\f0ed"; } - -.fa.fa-cloud-upload:before { - content: "\f0ee"; } - -.fa.fa-bell-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bell-o:before { - content: "\f0f3"; } - -.fa.fa-cutlery:before { - content: "\f2e7"; } - -.fa.fa-file-text-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-text-o:before { - content: "\f15c"; } - -.fa.fa-building-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-building-o:before { - content: "\f1ad"; } - -.fa.fa-hospital-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hospital-o:before { - content: "\f0f8"; } - -.fa.fa-tablet:before { - content: "\f3fa"; } - -.fa.fa-mobile:before { - content: "\f3cd"; } - -.fa.fa-mobile-phone:before { - content: "\f3cd"; } - -.fa.fa-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-circle-o:before { - content: "\f111"; } - -.fa.fa-mail-reply:before { - content: "\f3e5"; } - -.fa.fa-github-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-folder-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-folder-o:before { - content: "\f07b"; } - -.fa.fa-folder-open-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-folder-open-o:before { - content: "\f07c"; } - -.fa.fa-smile-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-smile-o:before { - content: "\f118"; } - -.fa.fa-frown-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-frown-o:before { - content: "\f119"; } - -.fa.fa-meh-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-meh-o:before { - content: "\f11a"; } - -.fa.fa-keyboard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-keyboard-o:before { - content: "\f11c"; } - -.fa.fa-flag-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-flag-o:before { - content: "\f024"; } - -.fa.fa-mail-reply-all:before { - content: "\f122"; } - -.fa.fa-star-half-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-o:before { - content: "\f5c0"; } - -.fa.fa-star-half-empty { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-empty:before { - content: "\f5c0"; } - -.fa.fa-star-half-full { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-full:before { - content: "\f5c0"; } - -.fa.fa-code-fork:before { - content: "\f126"; } - -.fa.fa-chain-broken:before { - content: "\f127"; } - -.fa.fa-unlink:before { - content: "\f127"; } - -.fa.fa-calendar-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-o:before { - content: "\f133"; } - -.fa.fa-maxcdn { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-html5 { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-css3 { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-unlock-alt:before { - content: "\f09c"; } - -.fa.fa-minus-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-minus-square-o:before { - content: "\f146"; } - -.fa.fa-level-up:before { - content: "\f3bf"; } - -.fa.fa-level-down:before { - content: "\f3be"; } - -.fa.fa-pencil-square:before { - content: "\f14b"; } - -.fa.fa-external-link-square:before { - content: "\f360"; } - -.fa.fa-compass { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-down:before { - content: "\f150"; } - -.fa.fa-toggle-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-down:before { - content: "\f150"; } - -.fa.fa-caret-square-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-up:before { - content: "\f151"; } - -.fa.fa-toggle-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-up:before { - content: "\f151"; } - -.fa.fa-caret-square-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-right:before { - content: "\f152"; } - -.fa.fa-toggle-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-right:before { - content: "\f152"; } - -.fa.fa-eur:before { - content: "\f153"; } - -.fa.fa-euro:before { - content: "\f153"; } - -.fa.fa-gbp:before { - content: "\f154"; } - -.fa.fa-usd:before { - content: "\24"; } - -.fa.fa-dollar:before { - content: "\24"; } - -.fa.fa-inr:before { - content: "\e1bc"; } - -.fa.fa-rupee:before { - content: "\e1bc"; } - -.fa.fa-jpy:before { - content: "\f157"; } - -.fa.fa-cny:before { - content: "\f157"; } - -.fa.fa-rmb:before { - content: "\f157"; } - -.fa.fa-yen:before { - content: "\f157"; } - -.fa.fa-rub:before { - content: "\f158"; } - -.fa.fa-ruble:before { - content: "\f158"; } - -.fa.fa-rouble:before { - content: "\f158"; } - -.fa.fa-krw:before { - content: "\f159"; } - -.fa.fa-won:before { - content: "\f159"; } - -.fa.fa-btc { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitcoin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitcoin:before { - content: "\f15a"; } - -.fa.fa-file-text:before { - content: "\f15c"; } - -.fa.fa-sort-alpha-asc:before { - content: "\f15d"; } - -.fa.fa-sort-alpha-desc:before { - content: "\f881"; } - -.fa.fa-sort-amount-asc:before { - content: "\f884"; } - -.fa.fa-sort-amount-desc:before { - content: "\f160"; } - -.fa.fa-sort-numeric-asc:before { - content: "\f162"; } - -.fa.fa-sort-numeric-desc:before { - content: "\f886"; } - -.fa.fa-youtube-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-xing { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-xing-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube-play { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube-play:before { - content: "\f167"; } - -.fa.fa-dropbox { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stack-overflow { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-instagram { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-flickr { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-adn { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket-square:before { - content: "\f171"; } - -.fa.fa-tumblr { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-tumblr-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-long-arrow-down:before { - content: "\f309"; } - -.fa.fa-long-arrow-up:before { - content: "\f30c"; } - -.fa.fa-long-arrow-left:before { - content: "\f30a"; } - -.fa.fa-long-arrow-right:before { - content: "\f30b"; } - -.fa.fa-apple { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-windows { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-android { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linux { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-dribbble { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-skype { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-foursquare { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-trello { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gratipay { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gittip { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gittip:before { - content: "\f184"; } - -.fa.fa-sun-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sun-o:before { - content: "\f185"; } - -.fa.fa-moon-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-moon-o:before { - content: "\f186"; } - -.fa.fa-vk { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-weibo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-renren { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pagelines { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stack-exchange { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-right:before { - content: "\f35a"; } - -.fa.fa-arrow-circle-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-left:before { - content: "\f359"; } - -.fa.fa-caret-square-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-left:before { - content: "\f191"; } - -.fa.fa-toggle-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-left:before { - content: "\f191"; } - -.fa.fa-dot-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-dot-circle-o:before { - content: "\f192"; } - -.fa.fa-vimeo-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-try:before { - content: "\e2bb"; } - -.fa.fa-turkish-lira:before { - content: "\e2bb"; } - -.fa.fa-plus-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-plus-square-o:before { - content: "\f0fe"; } - -.fa.fa-slack { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wordpress { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-openid { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-institution:before { - content: "\f19c"; } - -.fa.fa-bank:before { - content: "\f19c"; } - -.fa.fa-mortar-board:before { - content: "\f19d"; } - -.fa.fa-yahoo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stumbleupon-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stumbleupon { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-delicious { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-digg { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper-pp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-drupal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-joomla { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-behance { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-behance-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-steam { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-steam-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-automobile:before { - content: "\f1b9"; } - -.fa.fa-cab:before { - content: "\f1ba"; } - -.fa.fa-spotify { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-deviantart { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-soundcloud { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-file-pdf-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-pdf-o:before { - content: "\f1c1"; } - -.fa.fa-file-word-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-word-o:before { - content: "\f1c2"; } - -.fa.fa-file-excel-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-excel-o:before { - content: "\f1c3"; } - -.fa.fa-file-powerpoint-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-powerpoint-o:before { - content: "\f1c4"; } - -.fa.fa-file-image-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-image-o:before { - content: "\f1c5"; } - -.fa.fa-file-photo-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-photo-o:before { - content: "\f1c5"; } - -.fa.fa-file-picture-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-picture-o:before { - content: "\f1c5"; } - -.fa.fa-file-archive-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-archive-o:before { - content: "\f1c6"; } - -.fa.fa-file-zip-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-zip-o:before { - content: "\f1c6"; } - -.fa.fa-file-audio-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-audio-o:before { - content: "\f1c7"; } - -.fa.fa-file-sound-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-sound-o:before { - content: "\f1c7"; } - -.fa.fa-file-video-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-video-o:before { - content: "\f1c8"; } - -.fa.fa-file-movie-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-movie-o:before { - content: "\f1c8"; } - -.fa.fa-file-code-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-code-o:before { - content: "\f1c9"; } - -.fa.fa-vine { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-codepen { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-jsfiddle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-life-bouy:before { - content: "\f1cd"; } - -.fa.fa-life-buoy:before { - content: "\f1cd"; } - -.fa.fa-life-saver:before { - content: "\f1cd"; } - -.fa.fa-support:before { - content: "\f1cd"; } - -.fa.fa-circle-o-notch:before { - content: "\f1ce"; } - -.fa.fa-rebel { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ra { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ra:before { - content: "\f1d0"; } - -.fa.fa-resistance { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-resistance:before { - content: "\f1d0"; } - -.fa.fa-empire { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ge { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ge:before { - content: "\f1d1"; } - -.fa.fa-git-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-git { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-hacker-news { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator-square:before { - content: "\f1d4"; } - -.fa.fa-yc-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc-square:before { - content: "\f1d4"; } - -.fa.fa-tencent-weibo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-qq { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-weixin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wechat { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wechat:before { - content: "\f1d7"; } - -.fa.fa-send:before { - content: "\f1d8"; } - -.fa.fa-paper-plane-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-paper-plane-o:before { - content: "\f1d8"; } - -.fa.fa-send-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-send-o:before { - content: "\f1d8"; } - -.fa.fa-circle-thin { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-circle-thin:before { - content: "\f111"; } - -.fa.fa-header:before { - content: "\f1dc"; } - -.fa.fa-futbol-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-futbol-o:before { - content: "\f1e3"; } - -.fa.fa-soccer-ball-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-soccer-ball-o:before { - content: "\f1e3"; } - -.fa.fa-slideshare { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-twitch { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yelp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-newspaper-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-newspaper-o:before { - content: "\f1ea"; } - -.fa.fa-paypal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-wallet { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-visa { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-mastercard { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-discover { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-amex { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-paypal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-stripe { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bell-slash-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bell-slash-o:before { - content: "\f1f6"; } - -.fa.fa-trash:before { - content: "\f2ed"; } - -.fa.fa-copyright { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-eyedropper:before { - content: "\f1fb"; } - -.fa.fa-area-chart:before { - content: "\f1fe"; } - -.fa.fa-pie-chart:before { - content: "\f200"; } - -.fa.fa-line-chart:before { - content: "\f201"; } - -.fa.fa-lastfm { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-lastfm-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ioxhost { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-angellist { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-cc:before { - content: "\f20a"; } - -.fa.fa-ils:before { - content: "\f20b"; } - -.fa.fa-shekel:before { - content: "\f20b"; } - -.fa.fa-sheqel:before { - content: "\f20b"; } - -.fa.fa-buysellads { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-connectdevelop { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-dashcube { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-forumbee { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-leanpub { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-sellsy { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-shirtsinbulk { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-simplybuilt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-skyatlas { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-diamond { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-diamond:before { - content: "\f3a5"; } - -.fa.fa-transgender:before { - content: "\f224"; } - -.fa.fa-intersex:before { - content: "\f224"; } - -.fa.fa-transgender-alt:before { - content: "\f225"; } - -.fa.fa-facebook-official { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-official:before { - content: "\f09a"; } - -.fa.fa-pinterest-p { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-whatsapp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-hotel:before { - content: "\f236"; } - -.fa.fa-viacoin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-medium { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc:before { - content: "\f23b"; } - -.fa.fa-optin-monster { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-opencart { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-expeditedssl { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-battery-4:before { - content: "\f240"; } - -.fa.fa-battery:before { - content: "\f240"; } - -.fa.fa-battery-3:before { - content: "\f241"; } - -.fa.fa-battery-2:before { - content: "\f242"; } - -.fa.fa-battery-1:before { - content: "\f243"; } - -.fa.fa-battery-0:before { - content: "\f244"; } - -.fa.fa-object-group { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-object-ungroup { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sticky-note-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sticky-note-o:before { - content: "\f249"; } - -.fa.fa-cc-jcb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-diners-club { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-clone { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hourglass-o:before { - content: "\f252"; } - -.fa.fa-hourglass-1:before { - content: "\f251"; } - -.fa.fa-hourglass-half:before { - content: "\f254"; } - -.fa.fa-hourglass-2:before { - content: "\f254"; } - -.fa.fa-hourglass-3:before { - content: "\f253"; } - -.fa.fa-hand-rock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-rock-o:before { - content: "\f255"; } - -.fa.fa-hand-grab-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-grab-o:before { - content: "\f255"; } - -.fa.fa-hand-paper-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-paper-o:before { - content: "\f256"; } - -.fa.fa-hand-stop-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-stop-o:before { - content: "\f256"; } - -.fa.fa-hand-scissors-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-scissors-o:before { - content: "\f257"; } - -.fa.fa-hand-lizard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-lizard-o:before { - content: "\f258"; } - -.fa.fa-hand-spock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-spock-o:before { - content: "\f259"; } - -.fa.fa-hand-pointer-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-pointer-o:before { - content: "\f25a"; } - -.fa.fa-hand-peace-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-peace-o:before { - content: "\f25b"; } - -.fa.fa-registered { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-creative-commons { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gg { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gg-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-odnoklassniki { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-odnoklassniki-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-get-pocket { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wikipedia-w { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-safari { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-chrome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-firefox { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-opera { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-internet-explorer { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-television:before { - content: "\f26c"; } - -.fa.fa-contao { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-500px { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-amazon { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-calendar-plus-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-plus-o:before { - content: "\f271"; } - -.fa.fa-calendar-minus-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-minus-o:before { - content: "\f272"; } - -.fa.fa-calendar-times-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-times-o:before { - content: "\f273"; } - -.fa.fa-calendar-check-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-check-o:before { - content: "\f274"; } - -.fa.fa-map-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-map-o:before { - content: "\f279"; } - -.fa.fa-commenting:before { - content: "\f4ad"; } - -.fa.fa-commenting-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-commenting-o:before { - content: "\f4ad"; } - -.fa.fa-houzz { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-vimeo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-vimeo:before { - content: "\f27d"; } - -.fa.fa-black-tie { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fonticons { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit-alien { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-edge { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-credit-card-alt:before { - content: "\f09d"; } - -.fa.fa-codiepie { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-modx { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fort-awesome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-usb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-product-hunt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-mixcloud { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-scribd { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pause-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-pause-circle-o:before { - content: "\f28b"; } - -.fa.fa-stop-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-stop-circle-o:before { - content: "\f28d"; } - -.fa.fa-bluetooth { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bluetooth-b { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gitlab { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpbeginner { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpforms { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-envira { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wheelchair-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wheelchair-alt:before { - content: "\f368"; } - -.fa.fa-question-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-question-circle-o:before { - content: "\f059"; } - -.fa.fa-volume-control-phone:before { - content: "\f2a0"; } - -.fa.fa-asl-interpreting:before { - content: "\f2a3"; } - -.fa.fa-deafness:before { - content: "\f2a4"; } - -.fa.fa-hard-of-hearing:before { - content: "\f2a4"; } - -.fa.fa-glide { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-glide-g { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-signing:before { - content: "\f2a7"; } - -.fa.fa-viadeo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-viadeo-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat-ghost { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa.fa-snapchat-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-first-order { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yoast { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-themeisle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-official { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-official:before { - content: "\f2b3"; } - -.fa.fa-google-plus-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-circle:before { - content: "\f2b3"; } - -.fa.fa-font-awesome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fa { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fa:before { - content: "\f2b4"; } - -.fa.fa-handshake-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-handshake-o:before { - content: "\f2b5"; } - -.fa.fa-envelope-open-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-envelope-open-o:before { - content: "\f2b6"; } - -.fa.fa-linode { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-address-book-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-address-book-o:before { - content: "\f2b9"; } - -.fa.fa-vcard:before { - content: "\f2bb"; } - -.fa.fa-address-card-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-address-card-o:before { - content: "\f2bb"; } - -.fa.fa-vcard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-vcard-o:before { - content: "\f2bb"; } - -.fa.fa-user-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-user-circle-o:before { - content: "\f2bd"; } - -.fa.fa-user-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-user-o:before { - content: "\f007"; } - -.fa.fa-id-badge { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-drivers-license:before { - content: "\f2c2"; } - -.fa.fa-id-card-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-id-card-o:before { - content: "\f2c2"; } - -.fa.fa-drivers-license-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-drivers-license-o:before { - content: "\f2c2"; } - -.fa.fa-quora { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-free-code-camp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-telegram { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-thermometer-4:before { - content: "\f2c7"; } - -.fa.fa-thermometer:before { - content: "\f2c7"; } - -.fa.fa-thermometer-3:before { - content: "\f2c8"; } - -.fa.fa-thermometer-2:before { - content: "\f2c9"; } - -.fa.fa-thermometer-1:before { - content: "\f2ca"; } - -.fa.fa-thermometer-0:before { - content: "\f2cb"; } - -.fa.fa-bathtub:before { - content: "\f2cd"; } - -.fa.fa-s15:before { - content: "\f2cd"; } - -.fa.fa-window-maximize { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-window-restore { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-rectangle:before { - content: "\f410"; } - -.fa.fa-window-close-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-window-close-o:before { - content: "\f410"; } - -.fa.fa-times-rectangle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-rectangle-o:before { - content: "\f410"; } - -.fa.fa-bandcamp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-grav { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-etsy { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-imdb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ravelry { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-eercast { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-eercast:before { - content: "\f2da"; } - -.fa.fa-snowflake-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-snowflake-o:before { - content: "\f2dc"; } - -.fa.fa-superpowers { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpexplorer { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-meetup { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/v4-shims.min.css b/packages/themes/bzst/assets/fontawesome-free/css/v4-shims.min.css deleted file mode 100644 index f742adcbe9..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/v4-shims.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-steam,.fa.fa-steam-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f252"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before,.fa.fa-hourglass-half:before{content:"\f254"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/css/v5-font-face.css b/packages/themes/bzst/assets/fontawesome-free/css/v5-font-face.css deleted file mode 100644 index 9bb8bf4523..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/v5-font-face.css +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } diff --git a/packages/themes/bzst/assets/fontawesome-free/css/v5-font-face.min.css b/packages/themes/bzst/assets/fontawesome-free/css/v5-font-face.min.css deleted file mode 100644 index 7d67a7836a..0000000000 --- a/packages/themes/bzst/assets/fontawesome-free/css/v5-font-face.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} \ No newline at end of file diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-brands-400.ttf b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-brands-400.ttf deleted file mode 100644 index 430a02edc6..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-brands-400.ttf and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-brands-400.woff2 b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-brands-400.woff2 deleted file mode 100644 index 4d904aab4f..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-brands-400.woff2 and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-regular-400.ttf b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-regular-400.ttf deleted file mode 100644 index 23e3febe0d..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-regular-400.ttf and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-regular-400.woff2 b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-regular-400.woff2 deleted file mode 100644 index 80e3b1247c..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-regular-400.woff2 and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-solid-900.ttf b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-solid-900.ttf deleted file mode 100644 index da9082420e..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-solid-900.ttf and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-solid-900.woff2 b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-solid-900.woff2 deleted file mode 100644 index 360ba11557..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-solid-900.woff2 and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf deleted file mode 100644 index e9545ed579..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf and /dev/null differ diff --git a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 b/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 deleted file mode 100644 index db5b0b9973..0000000000 Binary files a/packages/themes/bzst/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 and /dev/null differ diff --git a/packages/themes/bzst/package.json b/packages/themes/bzst/package.json deleted file mode 100644 index 99e1806b1c..0000000000 --- a/packages/themes/bzst/package.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "@public-ui-/theme-bzst", - "version": "1.7.8", - "private": true, - "scripts": { - "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*", - "format": "prettier --check src", - "lint": "eslint src && tsc --noemit", - "xtest": "THEME_MODULE=src/index THEME_EXPORT=BZSt kolibri-visual-test theme-snapshots.spec.js", - "test-update": "THEME_MODULE=src/index THEME_EXPORT=BZSt kolibri-visual-test --update-snapshots theme-snapshots.spec.js" - }, - "devDependencies": { - "@public-ui/schema": "1.7.8", - "@public-ui/visual-tests": "1.7.8", - "@types/node": "ts5.3", - "typescript": "5.3.3" - }, - "peerDependencies": { - "@public-ui/components": "1.7.8" - } -} diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-abbr-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-abbr-basic-firefox-linux.png deleted file mode 100644 index 4fb3e5a567..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-abbr-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-basic-firefox-linux.png deleted file mode 100644 index dcb72ed350..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-header-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-header-firefox-linux.png deleted file mode 100644 index 6f594e8799..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-header-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-headlines-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-headlines-firefox-linux.png deleted file mode 100644 index 6c11c7be98..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-headlines-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-list-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-list-firefox-linux.png deleted file mode 100644 index bc348f3bae..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-accordion-list-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-basic-firefox-linux.png deleted file mode 100644 index 85735eafd7..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-card-msg-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-card-msg-firefox-linux.png deleted file mode 100644 index e8bb105b98..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-card-msg-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-html-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-html-firefox-linux.png deleted file mode 100644 index b9a3071985..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-alert-html-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-avatar-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-avatar-basic-firefox-linux.png deleted file mode 100644 index 49fa87170f..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-avatar-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-badge-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-badge-basic-firefox-linux.png deleted file mode 100644 index 1ac2206fe0..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-badge-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-badge-button-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-badge-button-firefox-linux.png deleted file mode 100644 index f5c7205d33..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-badge-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-breadcrumb-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-breadcrumb-basic-firefox-linux.png deleted file mode 100644 index dd4574d579..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-breadcrumb-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-basic-firefox-linux.png deleted file mode 100644 index 23a559070f..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-group-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-group-basic-firefox-linux.png deleted file mode 100644 index 29f8aaad49..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-hide-label-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-hide-label-firefox-linux.png deleted file mode 100644 index 03acee1198..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-hide-label-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-icons-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-icons-firefox-linux.png deleted file mode 100644 index b02197e5c5..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-basic-firefox-linux.png deleted file mode 100644 index 79a1ecc3e6..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-icons-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-icons-firefox-linux.png deleted file mode 100644 index abcd8ee249..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-image-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-image-firefox-linux.png deleted file mode 100644 index d986ca4735..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-width-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-width-firefox-linux.png deleted file mode 100644 index d4365a4fec..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-button-width-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-basic-firefox-linux.png deleted file mode 100644 index 3ebdee9d67..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-confirm-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-confirm-firefox-linux.png deleted file mode 100644 index 3076b53081..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-confirm-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-flex-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-flex-firefox-linux.png deleted file mode 100644 index f9a184d54f..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-flex-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-selection-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-selection-firefox-linux.png deleted file mode 100644 index 9f8ec1d3dd..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-card-selection-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-details-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-details-basic-firefox-linux.png deleted file mode 100644 index 04d63920f9..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-details-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-handout-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-handout-basic-firefox-linux.png deleted file mode 100644 index 4f9869af03..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-handout-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-badge-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-badge-firefox-linux.png deleted file mode 100644 index 888c5538d3..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-badge-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-basic-firefox-linux.png deleted file mode 100644 index fb59bdfb47..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-paragraph-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-paragraph-firefox-linux.png deleted file mode 100644 index 2f7137cec2..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-heading-paragraph-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-icon-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-icon-basic-firefox-linux.png deleted file mode 100644 index c92d08db32..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-icon-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-image-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-image-basic-firefox-linux.png deleted file mode 100644 index 30c52682c4..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-image-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-indented-text-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-indented-text-basic-firefox-linux.png deleted file mode 100644 index 8fca05f3aa..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-indented-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-basic-firefox-linux.png deleted file mode 100644 index be881204dc..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-button-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-button-firefox-linux.png deleted file mode 100644 index f808a5f07b..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-switch-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-switch-firefox-linux.png deleted file mode 100644 index e2cf4d368e..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-checkbox-switch-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-color-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-color-basic-firefox-linux.png deleted file mode 100644 index f6367cea2e..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-color-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-date-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-date-basic-firefox-linux.png deleted file mode 100644 index 801ffdc18f..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-date-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-email-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-email-basic-firefox-linux.png deleted file mode 100644 index db3e43e60a..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-email-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-file-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-file-basic-firefox-linux.png deleted file mode 100644 index ad33e520d5..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-file-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-number-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-number-basic-firefox-linux.png deleted file mode 100644 index 78a4af2824..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-number-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-password-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-password-basic-firefox-linux.png deleted file mode 100644 index faff90e3ef..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-password-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-password-show-password-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-password-show-password-firefox-linux.png deleted file mode 100644 index d420c42a90..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-password-show-password-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-basic-firefox-linux.png deleted file mode 100644 index 28b9f333c2..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-horizontal-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-horizontal-firefox-linux.png deleted file mode 100644 index a3cd732849..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-select-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-select-firefox-linux.png deleted file mode 100644 index 5edc9bc6bd..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-radio-select-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-range-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-range-basic-firefox-linux.png deleted file mode 100644 index b9ecb3b251..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-range-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-basic-firefox-linux.png deleted file mode 100644 index 757c6080b1..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-blur-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-blur-firefox-linux.png deleted file mode 100644 index 0b5761b3f3..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-blur-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-focus-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-focus-firefox-linux.png deleted file mode 100644 index 067d9a2ed5..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-input-text-focus-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-kolibri-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-kolibri-basic-firefox-linux.png deleted file mode 100644 index 8fd8e7db19..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-kolibri-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-basic-firefox-linux.png deleted file mode 100644 index c354c18e62..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-button-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-button-basic-firefox-linux.png deleted file mode 100644 index b2c75d5e83..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-group-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-group-basic-firefox-linux.png deleted file mode 100644 index bb1ef30df7..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-group-horizontal-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-group-horizontal-firefox-linux.png deleted file mode 100644 index 6260d2bfbb..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-group-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-icons-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-icons-firefox-linux.png deleted file mode 100644 index ea92cadfd6..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-image-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-image-firefox-linux.png deleted file mode 100644 index 18325df5af..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-target-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-target-firefox-linux.png deleted file mode 100644 index 37a2104be0..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-link-target-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-logo-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-logo-basic-firefox-linux.png deleted file mode 100644 index 761e3db7aa..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-logo-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-modal-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-modal-basic-firefox-linux.png deleted file mode 100644 index d77f820da1..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-modal-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-active-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-active-firefox-linux.png deleted file mode 100644 index 14327436d0..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-active-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-aria-current-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-aria-current-firefox-linux.png deleted file mode 100644 index a68fe58b64..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-aria-current-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-basic-firefox-linux.png deleted file mode 100644 index 9fa3a17ea4..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-horizontal-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-horizontal-firefox-linux.png deleted file mode 100644 index 911546969f..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-nav-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-pagination-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-pagination-basic-firefox-linux.png deleted file mode 100644 index 67af585871..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-pagination-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-progress-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-progress-basic-firefox-linux.png deleted file mode 100644 index ba90712b6d..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-progress-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-quote-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-quote-basic-firefox-linux.png deleted file mode 100644 index c5903621a7..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-quote-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-quote-block-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-quote-block-firefox-linux.png deleted file mode 100644 index 538ece2b4c..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-quote-block-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-select-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-select-basic-firefox-linux.png deleted file mode 100644 index fbaa7c9aa5..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-select-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-skip-nav-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-skip-nav-basic-firefox-linux.png deleted file mode 100644 index ca776aa250..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-skip-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-basic-firefox-linux.png deleted file mode 100644 index 09c6bcfdf2..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-custom-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-custom-firefox-linux.png deleted file mode 100644 index 97f795d6a7..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-custom-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-cycle-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-cycle-firefox-linux.png deleted file mode 100644 index 16cdf547f1..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-spin-cycle-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-split-button-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-split-button-basic-firefox-linux.png deleted file mode 100644 index b16aab7e29..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-split-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-table-render-cell-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-table-render-cell-firefox-linux.png deleted file mode 100644 index c0d5c3479a..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-table-render-cell-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-table-sort-data-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-table-sort-data-firefox-linux.png deleted file mode 100644 index eefe6002c4..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-table-sort-data-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-tabs-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-tabs-basic-firefox-linux.png deleted file mode 100644 index 21a68f24a1..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-tabs-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-tabs-icons-only-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-tabs-icons-only-firefox-linux.png deleted file mode 100644 index 3f4b1b80b3..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-tabs-icons-only-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-adjust-height-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-adjust-height-firefox-linux.png deleted file mode 100644 index 96ce411933..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-adjust-height-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-basic-firefox-linux.png deleted file mode 100644 index e6bb5bb829..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-disabled-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-disabled-firefox-linux.png deleted file mode 100644 index 6d1fb9a245..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-disabled-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-placeholder-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-placeholder-firefox-linux.png deleted file mode 100644 index 252ef518fc..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-placeholder-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-readonly-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-readonly-firefox-linux.png deleted file mode 100644 index ff805ea41e..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-readonly-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-resize-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-resize-firefox-linux.png deleted file mode 100644 index 07f6045e1d..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-resize-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-rows-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-rows-firefox-linux.png deleted file mode 100644 index 23a2e7119b..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-rows-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-with-counter-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-with-counter-firefox-linux.png deleted file mode 100644 index 5de26c85e4..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-textarea-with-counter-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-toast-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-toast-basic-firefox-linux.png deleted file mode 100644 index badbb17e69..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-toast-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-version-basic-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-version-basic-firefox-linux.png deleted file mode 100644 index f3cc854650..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-version-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-version-context-firefox-linux.png b/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-version-context-firefox-linux.png deleted file mode 100644 index 5422dce02e..0000000000 Binary files a/packages/themes/bzst/snapshots/theme-bzst/snapshot-for-version-context-firefox-linux.png and /dev/null differ diff --git a/packages/themes/bzst/src/index.ts b/packages/themes/bzst/src/index.ts deleted file mode 100644 index c10f2e21ab..0000000000 --- a/packages/themes/bzst/src/index.ts +++ /dev/null @@ -1,2688 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -// Bundeszentralamt für Steuern -export const BZSt = KoliBri.createTheme('bzst', { - GLOBAL: `/* NOTE: Alle ':root' CSS properties sollten in KoliBri zu ':host' kopiert werden und umgekehrt. Damit vereinheitlicht man alle Variablen auf beiden Seiten und kann diese dann individuell nutzen.*/ /* colors */ - :root, - :host { - /* token */ - --color-bleached-silk: #f2f2f2; - --color-carbon: #333; - --color-chilled-lemonade: #ffe695; - --color-green: #4d7f6f; - --color-green-light: #a7c0b8; - --color-green-dark: #23614e; - --color-heroic-blue: #126dff; - --color-mercury: #ebebeb; - --color-red-epiphyllum: #d00000; - --color-speedwell: #595f73; - --color-tropic-sea: #007194; - --color-white: #fff; /* template */ /* general */ - --colorDark: var(--color-carbon); - --colorLight: var(--color-white); /* primary color */ - --colorPrimary: var(--color-green-dark); - --colorPrimaryFront: var(--color-white); - --colorPrimarySuccess: var(--color-green); - --colorPrimarySuccessFront: var(--color-white); - --colorPrimaryActive: var(--color-green-light); - --colorPrimaryActiveFront: var(--color-carbon); /* secondary color */ - --colorSecondary: var(--color-white); - --colorSecondaryFront: var(--color-carbon); - --colorSecondarySuccess: var(--color-bleached-silk); - --colorSecondarySuccessFront: var(--color-carbon); - --colorSecondaryActive: var(--color-mercury); - --colorSecondaryActiveFront: var(--color-carbon); /* text */ - --colorText: var(--color-carbon); - --colorTextBg: var(--color-white); - --colorTextLight: var(--color-white); - --colorTextLightBg: var(--color-carbon); - --colorTextDisabled: var(--color-speedwell); - --colorTextDisabledBg: var(--color-mercury); - --colorTextActive: var(--color-green-dark); - --colorTextActiveBg: var(--color-white); /* signal */ - --colorSignal: var(--color-tropic-sea); - --colorSignalFront: var( - --color-white - ); /* colorSignalFocus hat keine Frontfarbe */ - --colorSignalFocus: var(--color-heroic-blue); - --colorSignalSuccess: var(--color-green); - --colorSignalSuccessFront: var(--color-white); - --colorSignalWarn: var(--color-chilled-lemonade); - --colorSignalWarnFront: var(--color-carbon); - --colorSignalError: var(--color-red-epiphyllum); - --colorSignalErrorFront: var(--color-white); /* disabled */ - --colorDisabled: var(--color-mercury); - } /* font, headline, text */ - :root, - :host { - /* token */ - --font-family: "BundesSans Web", system-ui, -apple-system, BlinkMacSystemFont, - "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", - sans-serif; /* Basis-Größe: html, rem */ - --font-size: 100%; - --line-height: 1.6875rem; /* template */ /* h1 */ - --headline1FontSize: 2.5rem; - --headline1LineHeight: 2.8125rem; /* h2 */ - --headline2FontSize: 2rem; - --headline2LineHeight: 2.5rem; /* h3 */ - --headline3FontSize: 1.3125rem; - --headline3LineHeight: 1.6875rem; /* h4 */ - --headline4FontSize: 1rem; - --headline4LineHeight: 1.6875rem; /* text */ - --textFont: var(--font-family); - --textFontColor: var(--colorText); - --textFontSerif: "BundesSerif Web", var(--textFont); - --textFontSize: 1rem; - --textFontLineHeight: 1.6875rem; - --textFontWeight: normal; - } /* Abstände */ - :root, - :host { - /* template */ - --gap: 2rem; - --gapDouble: calc(var(--gap) * 2); - --gapSmall: 1.25rem; /* TODO: benötigt nur außerhalb KoliBri Komponenten? */ - --gapSmallest: 0.625rem; - --gapLarge: 2.5rem; - } /* formular */ - :root, - :host { - /* template */ - --formBorderWidthAndStyle: 1px solid; /* TODO: eigentlich --color-green sein, aber im Styleguide ist der Wert: #23614E */ - --formBorder: var(--formBorderWidthAndStyle) var(--colorPrimarySuccess); - --formBorderHover: var(--formBorderWidthAndStyle) var(--colorPrimaryActive); - --formBorderDisabled: var(--formBorderWidthAndStyle) var(--colorDisabled); - --formBorderInvalid: var(--formBorderWidthAndStyle) var(--colorSignalError); - --focusOutline: var(--colorSignalFocus) solid 2px; - --formFieldBackground: var(--colorLight); /*Select option */ - --formFieldBackgroundHover: var(--colorPrimary); /* Select options */ - --formFieldBackgroundEven: var(--formFieldBackground); /* Select options */ - --formFieldBackgroundOdd: var(--colorSecondaryActive); - --formFieldBackgroundDisabled: var(--colorSecondarySuccess); - --formFieldTextColorDisabled: var(--colorTextDisabled); - } /* ********************************* */ /* ********************************* */ /* ********************************* */ /* ********************************* */ - :host { - /* Primärfarbe und Abstufungen */ - --color-gruen-dunkel: var(--colorPrimary); - --color-gruen: var(--colorPrimarySuccess); - --color-gruen-hell: var(--colorPrimaryActive); /* Sekundärfarben */ - --color-weiss: var(--colorSecondary); - --color-grau-dunkel: var(--colorSecondaryFront); - --color-grau-hell: var(--colorSecondaryActive); - --color-grau-weiss: var(--colorSecondarySuccess); /* Textfarben */ - --color-graublau: var(--colorTextDisabled); /* Signalfarben */ - --color-blau: var(--colorSignalFocus); - --color-blau-dunkel: var(--colorSignal); - --color-gelb: var(--colorSignalWarn); - --color-rot: var(--colorSignalError); - --color-disabled: var(--colorTextDisabled); - --text-size: var(--textFontSize); - --color-focus: var(--color-blau); - --spacing: 4px; - --color-text: var(--color-grau-dunkel); - } - :host { - color: var(--color-black); - font-family: var(--font-family); - } - :host * { - box-sizing: border-box; - } - h1, - h2, - h3, - h4, - h5, - h6 { - font-family: var(--textFontSerif); - } - h1, - h2 { - font-weight: var(--textFontWeight); - } - h1 { - font-size: var(--headline1FontSize); - line-height: var(--headline1LineHeight); - } - h2 { - font-size: var(--headline2FontSize); - line-height: var(--headline2LineHeight); - } - h3 { - font-size: var(--headline3FontSize); - line-height: var(--headline3LineHeight); - } - h4, - h5, - h6 { - font-size: var(--headline4FontSize); - line-height: var(--headline4LineHeight); - } - a, - button, - input, - option, - select, - summary, - textarea { - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; - letter-spacing: inherit; - display: block; - } /* a,button,caption,input,option,select,summary,table,textarea {font-size: 1rem;} */ - *[tabindex]:focus, - kol-input:not(.checkbox, .radio) .input:focus-within, - kol-input:is(.checkbox, .radio) input:focus, - summary:focus { - outline: var(--focusOutline); - outline-offset: 2px; - transition: outline-offset 0.2s linear; - } - @keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } - } - kol-tooltip .area { - background-color: var(--colorDark); - color: var(--colorLight); - } - kol-tooltip kol-span-wc { - line-height: 1.5em; - padding: 0.5rem 0.75rem; - } - kol-span-wc, - kol-span-wc > span { - gap: 0.5em; - } - kol-span-wc, - kol-span-wc > span { - gap: 0.3em; - }`, - 'KOL-BUTTON': `:host { - --background-color: var(--color-gruen-dunkel); - --border-color: var(--color-gruen-dunkel); - --border-size: 1px; - --min-size: 2.75rem; - display: inline-block; - } - button { - border-width: var(--border-size); - border-style: solid; - min-width: var(--min-size); - min-height: var(--min-size); - display: grid; - gap: 0.25em; - line-height: 1.5; - font-family: var(--font-family); - cursor: pointer; - font-size: var(--text-size); - align-items: center; - padding: 0.5rem 0.875rem !important; - justify-content: center; - font-style: normal; - text-align: center; - text-transform: uppercase; - width: inherit; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - button:hover:enabled { - text-decoration: underline; - } - button:focus { - outline: var(--color-focus) solid 2px; - } - button.primary, - button.primary:active, - button.primary:hover { - background-color: var(--background-color); - border-color: var(--border-color); - color: var(--color-weiss); - } - button.secondary, - button.danger, - button.normal, - button.ghost { - background-color: var(--color-weiss); - border-color: var(--color-gruen-hell); - color: var(--color-grau-dunkel); - } - button.ghost { - background-color: transparent; - color: inherit; - border: calc(var(--border-size) * 2) solid transparent; - } - button.secondary:active, - button.secondary:hover { - background-color: var(--background-color); - border-color: var(--background-color); - border-width: var(--border-size); - color: var(--color-weiss); - } - button:disabled, - button:disabled:hover { - background-color: var(--color-weiss); - border-color: var(--color-grau-hell); - color: var(--color-disabled); - cursor: not-allowed; - } - button > span { - display: flex; - gap: 0.5em; - margin: auto; - align-items: center; - justify-content: center; - } - button.icon-only { - padding: 0.5rem; - } - button.icon-only kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - button.loading kol-icon { - animation: spin 5s infinite linear; - }`, - 'KOL-INPUT-TEXT': `kol-input { - gap: 0.4em; - } - kol-input .error { - order: 3; - } - kol-input label { - font-weight: 700; - order: 1; - } - kol-input .input { - order: 2; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - .input { - border-color: var(--color-grey); - border-style: solid; - border-width: 1px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-gruen-hell); - } - input:not([type="color"]):read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-rot); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-rot) !important; - } - kol-input.error kol-alert.error { - color: var(--color-rot); - font-weight: 700; - } - .disabled { - opacity: 0.33; - } - label { - color: var(--color-text); - line-height: 1.5; - } - .input { - font-size: var(--text-size); - line-height: 1.5; - color: var(--colorText); - border-color: var(--color-gruen); - border-style: solid; - width: 100%; - } - input:not([type="range"]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grau-dunkel); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - }`, - 'KOL-INPUT-PASSWORD': `kol-input { - display: grid; - padding: 0; - margin: 0; - } - input:focus, - input:hover, - select:focus, - select:hover, - textarea:focus, - textarea:hover { - border-color: black; - } - kol-input > label { - order: 1; - margin-bottom: 0.25em; - } - kol-input > label > span { - color: black; - font-size: 0.875rem; - line-height: 1.5rem; - } - kol-input > div.input { - background-color: white; - display: block; - order: 2; - } - kol-input > kol-alert.error { - margin-top: 0.25em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - line-height: 1.5em; - color: black; - border-color: var(--color-grau-dunkel); - border-width: 1px; - border-style: solid; - padding: 0.5em 0.75em; - overflow: hidden; - width: 100%; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--color-grau-dunkel); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -33px; - } - kol-button-wc button { - border: 1px solid var(--color-grau-dunkel); - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - color: white; - }`, - 'KOL-INPUT-NUMBER': `kol-input { - display: grid; - padding: 0; - margin: 0; - } - input:focus, - input:hover, - select:focus, - select:hover, - textarea:focus, - textarea:hover { - border-color: black; - } - input:focus-within, - select:focus-within, - textarea:focus-within { - outline: var(--color-focus) solid 2px; - } - kol-input label { - font-weight: 700; - order: 1; - margin-bottom: var(--gapSmallest); - } - kol-input label > span { - color: black; - font-size: 0.875rem; - line-height: 1.5rem; - } - kol-input > div.input { - background-color: white; - display: block; - order: 2; - } - kol-input > kol-alert.error { - margin-top: 0.25em; - order: 3; - } - input, - select, - textarea { - font-family: var(--textFont); - background-color: transparent; - box-sizing: border-box; - font-size: var(--textFontSize); - display: inline-flex; - line-height: 1.5; - color: black; - border-color: var(--color-gruen); - border-width: 1px; - border-style: solid; - padding: 0.5em; - overflow: hidden; - width: 100%; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--color-grau-dunkel); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-button-wc { - position: relative; - float: right; - z-index: 1; - margin-top: -33px; - } - kol-button-wc button { - border: 1px solid var(--color-grau-dunkel); - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-ocean); - color: white; - }`, - 'KOL-INPUT-DATE': `kol-input label { - font-weight: 700; - margin-bottom: var(--gapSmallest); - } - input { - border: var(--formBorder); - } - input:hover { - border: var(--formBorderHover); - }`, - 'KOL-INPUT-EMAIL': `kol-input { - display: grid; - padding: 0; - margin: 0; - } - input:focus, - input:hover, - select:focus, - select:hover, - textarea:focus, - textarea:hover { - border-color: black; - } - kol-input > label { - order: 1; - margin-bottom: 0.25em; - } - kol-input > label > span { - color: black; - font-size: 0.875rem; - line-height: 1.5rem; - } - kol-input > div.input { - background-color: white; - display: block; - order: 2; - } - kol-input > kol-alert.error { - margin-top: 0.25em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - line-height: 1.5em; - color: black; - border-color: var(--color-grau-dunkel); - border-width: 1px; - border-style: solid; - padding: 0.5em 0.75em; - overflow: hidden; - width: 100%; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--color-grau-dunkel); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -33px; - } - kol-button-wc button { - border: 1px solid var(--color-grau-dunkel); - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - color: white; - }`, - 'KOL-INPUT-FILE': `kol-input { - display: grid; - padding: 0; - margin: 0; - } - input:focus, - input:hover, - select:focus, - select:hover, - textarea:focus, - textarea:hover { - border-color: black; - } - kol-input > label { - order: 1; - margin-bottom: 0.25em; - } - kol-input > label > span { - color: black; - font-size: 0.875rem; - line-height: 1.5rem; - } - kol-input > div.input { - background-color: white; - display: block; - order: 2; - } - kol-input > kol-alert.error { - margin-top: 0.25em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - line-height: 1.5em; - color: black; - border-color: var(--color-grau-dunkel); - border-width: 1px; - border-style: solid; - padding: 0.5em 0.75em; - overflow: hidden; - width: 100%; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--color-grau-dunkel); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -33px; - } - kol-button-wc button { - border: 1px solid var(--color-grau-dunkel); - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - color: white; - }`, - 'KOL-TEXTAREA': `kol-input { - gap: 0.4em; - } - kol-input .error { - order: 3; - } - kol-input label { - font-weight: 700; - order: 1; - } - kol-input .input { - order: 2; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input, - select, - textarea { - border: none; - } - .input { - color: var(--colorText); - border: var(--formBorder); - font-size: var(--textFontSize); - line-height: 1.5; - padding: 0 0.5em; - width: 100%; - } - .input > kol-icon { - width: 1.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-gruen-hell); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-rot); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-rot) !important; - } - kol-input.error kol-alert.error { - color: var(--color-rot); - font-weight: 700; - } - .disabled { - opacity: 0.33; - } - label { - color: var(--color-text); - line-height: 1.5; - } - .input { - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - }`, - 'KOL-ALERT': `:host > div { - background-color: white; - border-width: 2px; - border-style: solid; - border-radius: 0.25rem; - display: flex; - overflow: unset; - } - :host > div.default { - border-color: var(--color-grau-dunkel); - } - :host > div.default > .icon { - background-color: var(--color-grau-dunkel); - } - :host > div.error { - border-color: var(--color-rot); - } - :host > div.error > .icon { - background-color: var(--color-rot); - } - :host > div.info { - border-color: var(--color-blau); - } - :host > div.info > .icon { - background-color: var(--color-blau); - } - :host > div.success { - border-color: var(--color-gruen); - } - :host > div.success > .icon { - background-color: var(--color-gruen); - } - :host > div.warning { - border-color: var(--color-gelb); - } - :host > div.warning > .icon { - background-color: var(--color-gelb); - } - :host > div.msg > .icon { - color: white; - padding: 0.5em; - align-items: center; - display: inline-flex; - } - :host > div.msg.warning > .icon { - color: black; - } - :host > div.card.default .heading .icon { - background-color: var(--color-grau-dunkel); - } - :host > div.card.error .heading .icon { - background-color: var(--color-rot); - } - :host > div.card.info .heading .icon { - background-color: var(--color-blau); - } - :host > div.card.success .heading .icon { - background-color: var(--color-gruen); - } - :host > div.card.warning .heading .icon { - background-color: var(--color-gelb); - } - :host > div.card .heading .icon { - color: white; - padding: 0.5em; - align-items: center; - display: inline-flex; - } - :host > div.card.warning .heading .icon { - color: black; - } - :host > div kol-heading-wc .icon { - margin-right: 0.5em; - } - :host > div.card .heading .icon { - border-radius: 0 0 0.25rem 0; - } - :host > div.msg > div { - padding: 0.25em; - } - :host > div.msg > div > .heading { - padding: 0.25em; - display: inline-block; - } - :host > div .content { - padding: 0.25em; - } - :host > div > div { - display: grid; - grid-template-columns: 1fr auto; - } - :host > div > div > .content { - grid-row: 2; - grid-column: 1; - } - :host > div > div > .close { - grid-row: 1 / span 2; - display: flex; - } - :host > div.msg > div > .close > * { - margin: auto; - } - :host > div.msg.default .close .icon { - color: var(--color-grau-dunkel); - } - :host > div.msg.error .close .icon { - color: var(--color-rot); - } - :host > div.msg.info .close .icon { - color: var(--color-blau); - } - :host > div.msg.success .close .icon { - color: var(--color-gruen); - } - :host > div.msg.warning .close .icon { - color: var(--color-gelb); - } - :host > div.card > div > .heading { - width: 100%; - } - .close > button { - min-width: 44px; - min-height: 44px; - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-family: var(--font-family); - font-weight: 700; - cursor: pointer; - border-radius: 1.5em; - border-style: solid; - border-width: 2px; - font-size: 1rem; - align-items: center; - padding: 8px 14px; - justify-content: center; - font-style: normal; - text-align: center; - text-transform: uppercase; - width: inherit; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - background-color: rgba(0, 0, 0, 0); - border-color: rgba(0, 0, 0, 0); - } - .close > button.icon-only { - padding: 8px; - } - .close > button.icon-only kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - .close > button:active { - box-shadow: none; - outline: none; - } - .close kol-icon::part(icon)::before { - content: "\\f00d"; - }`, - 'KOL-HEADING': `.headline { - margin-top: 0; - }`, - 'KOL-BADGE': `:host { - display: inline-block; - } - kol-span-wc { - align-items: center; - border-radius: 0.3125rem; - display: grid; - gap: 0.5rem; - line-height: 1.25rem; - padding: 0.25rem 0.75rem; - } - kol-span-wc span { - display: flex; - gap: 0.25rem; - }`, - 'KOL-BUTTON-GROUP': `div { - display: flex; - flex-wrap: wrap; - gap: 0.5em; - }`, - 'KOL-INDENTED-TEXT': `:host > div { - width: 100%; - padding: 15px; - background: var(--color-grau-weiss); - box-shadow: -4px 0px 0px var(--color-gruen); - }`, - 'KOL-LINK': `:is(a, button) { - /* color: var(--color-midnight); */ - color: var(--external-link-color, var(--color-gruen)); - font-style: normal; - font-weight: 400; - padding: var(--external-link-padding, 0); - text-decoration-line: none; - } - :is(a, button):focus { - /* outline: var(--color-focus) solid 2px; */ - outline: none; - } - :is(a, button):hover { - /* text-decoration-thickness: 0.25em; */ - box-shadow: inset 0 -1px 0 0 var(--external-link-color, var(--color-gruen)); - } - .hidden { - display: none; - visibility: hidden; - } /*************************/ /* kol-link-wc {display: inline-block;} */ /* kol-icon {padding: 0 0.25rem;} */ - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - } - .icon-only { - padding-bottom: 0.2rem; - } - :is(a) kol-span-wc > span { - gap: var(--gapSmallest); - }`, - 'KOL-DETAILS': `details { - display: grid; - width: 100%; - } - summary { - cursor: pointer; - display: flow-root; - margin: 0; - padding: 0; - } - summary span { - margin-left: 0.25rem; - text-decoration: underline; - } - summary span:hover { - text-decoration-thickness: 0.25em; - } - details > kol-indented-text { - margin: 0.25em 0 0 0.6em; - }`, - 'KOL-SPIN': `.spin { - display: inline-block; - height: 1rem; - position: relative; - width: 3rem; - } - .spin span { - animation-timing-function: cubic-bezier(0, 1, 1, 0); - border: 0.1rem solid rgb(255, 255, 255); - border-radius: 50%; - height: 0.8rem; - width: 0.8rem; - top: 0.1rem; - position: absolute; - } - .spin span:nth-child(1) { - background-color: #fc0; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin1; - left: 0.1rem; - } - .spin span:nth-child(2) { - background-color: #f00; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 0.1rem; - } - .spin span:nth-child(3) { - background-color: #000; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 1.1rem; - } - .spin span:nth-child(4) { - background-color: #666; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin3; - left: 2.1rem; - } - @keyframes spin1 { - 0% { - transform: scale(0); - } - 100% { - transform: scale(1); - } - } - @keyframes spin2 { - 0% { - transform: translate(0px, 0px); - } - 100% { - transform: translate(1rem, 0px); - } - } - @keyframes spin3 { - 0% { - transform: scale(1); - } - 100% { - transform: scale(0); - } - }`, - 'KOL-PROGRESS': `:host progress, - :host span { - display: block; - height: 0px; - overflow: hidden; - width: 0px; - } - svg line:first-child, - svg circle:first-child { - fill: transparent; - stroke: var(--color-ice); - } - svg line:last-child, - svg circle:last-child { - stroke: var(--color-midnight); - fill: transparent; - } - progress { - display: none; - }`, - 'KOL-SELECT': `:host { - --color: var(--colorText); /* --color: blue; */ - } - kol-input { - color: var(--color); - font-size: var(--textFontSize); - gap: var(--gapSmallest); - } - label { - font-weight: 700; - order: 1; - } - .input { - order: 2; - } - kol-alert.error { - color: var(--colorSignalError); - order: 3; - } - select { - background-color: var(--colorLight); - line-height: 1.5; - color: var(--color); - border: var(--formBorder); - padding: 0.5em 0.75em; - } - select:hover, - select:focus { - border-color: var(--colorPrimaryActive); - } - select:disabled { - cursor: not-allowed; - } - select[multiple] { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } /* kol-input.error select:invalid { */ - kol-input.error select { - border-color: var(--colorSignalError); - } /* option:active:not(:disabled),option:focus:not(:disabled),option:hover:not(:disabled) {color: white;} */`, - 'KOL-INPUT-COLOR': `kol-input { - display: grid; - padding: 0; - margin: 0; - } - input:focus, - input:hover, - select:focus, - select:hover, - textarea:focus, - textarea:hover { - border-color: black; - } - kol-input > label { - order: 1; - margin-bottom: 0.25em; - } - kol-input > label > span { - color: black; - font-size: 0.875rem; - line-height: 1.5rem; - } - kol-input > div.input { - background-color: white; - display: block; - order: 2; - } - kol-input > kol-alert.error { - margin-top: 0.25em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - line-height: 1.5em; - color: black; - border-color: var(--color-grau-dunkel); - border-width: 1px; - border-style: solid; - padding: 0.5em 0.75em; - overflow: hidden; - width: 100%; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--color-grau-dunkel); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -33px; - } - kol-button-wc button { - border: 1px solid var(--color-grau-dunkel); - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - color: white; - }`, - 'KOL-ACCORDION': `:host > div { - font-family: var(--font-family); - padding: 0 0.5rem 0 0; - } - :host > div > kol-heading-wc { - font-weight: 700; - font-size: 1.25rem; - line-height: 1.75rem; - } - :host > div > kol-heading-wc button { - cursor: pointer; - width: 100%; - margin: 0; - display: flex; - gap: 0.5em; - border: 0; - align-items: center; - overflow: hidden; - font-size: inherit; - line-height: 1.5em; - background-color: transparent; - padding: 0.5em; - padding-left: 0; - } - :host > div[part*="open"] > kol-heading-wc button { - padding: 0.5em; - padding-left: 0; - } - :host > div > kol-heading-wc button kol-icon::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - color: var(--color-midnight); - } - .accordion > kol-heading-wc button kol-icon::part(icon)::before { - content: "\\2b"; - } - .accordion.open > kol-heading-wc button kol-icon::part(icon)::before { - content: "\\f068"; - } - .accordion { - width: 100%; - height: 100%; - display: grid; - } - .accordion[part*="open"] div[part="header"] { - padding-left: 2em; - } - .accordion[part*="open"] div[part="content"] { - padding-top: 1rem; - } - button { - font-weight: inherit; - font-size: inherit; - line-height: inherit; - } - .accordion { - background: var(--color-white); - } - .accordion[part*="open"] { - padding-bottom: 1em; - } /* .accordion > [part="header"] {height: 0;} */ - h1, - h2, - h3, - h4, - h5, - h6 { - margin: 0; - }`, - 'KOL-TABLE': `:host * { - hyphens: var(--hyphens); - line-height: var(--textFontLineHeight); - } - :host > div:first-child { - overflow-x: auto; - overflow-y: hidden; - } - table { - border-collapse: collapse; - } - caption { - height: auto; - text-align: left; - } /* visuell verstecken */ - caption { - clip: rect(1px, 1px, 1px, 1px); - clip-path: inset(50%); - height: 1px; - width: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - } - table, - tr, - th, - td { - border: 0 solid var(--color-weiss); - } - tr { - border-top-width: 2px; - } - th { - background-color: var(--color-gruen); - color: var(--color-weiss); - font-weight: normal; - } - tbody > tr:nth-child(odd) { - background-color: #f2f2f2; - } - tbody > tr:hover { - background-color: var(--color-gruen-dunkel); - color: var(--color-weiss); - } - th, - td { - border-right-width: 2px; - padding: 0.25em 0.5em; - } - th > div { - display: grid; - grid-template-columns: 1fr auto; - align-items: center; - gap: 0.25em; - } - .pagination { - padding: 0.5em; - font-size: var(--textFontSize); - gap: 1rem; - } - th kol-button button { - padding: 0.5rem; - } /* default: [aria-sort="none"] */ - [data-sort] kol-button::part(icon)::before { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - content: "\\f0dc"; - } - [data-sort="sort-ASC"] kol-button::part(icon)::before { - content: "\\f0de"; - } - [data-sort="sort-DESC"] kol-button::part(icon)::before { - content: "\\f0dd"; - }`, - 'KOL-NAV': `ul { - list-style: none; - } - a { - color: var(--colorText); - display: block; - padding: 0.3rem 0.5rem; - text-decoration: none; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - a:hover { - background-color: var(--colorPrimarySuccess); - color: var(--colorLight); - } - a:focus, - button:focus { - outline: var(--focusOutline); - outline-offset: 2px; - transition: outline-offset 0.2s linear; - } - .list[data-deep="0"] { - font-family: var(--textFontSerif); - } - .horizontal { - gap: var(--gap); - }`, - 'KOL-CARD': `:host > div { - --card-padding: var(--gap); - border-color: var(--color-gruen); - border-style: solid; - border-width: 1px; - border-radius: 0.25rem; - box-shadow: 0px 0px 1.875rem 0px rgba(0, 0, 0, 0.3); - display: grid; - width: 100%; - height: 100%; - background-color: white; - grid-template-rows: min-content 2fr min-content; - padding-bottom: var(--gapLarge); - } - :host kol-heading-wc { - display: inline-flex; - font-style: normal; - } - :host kol-heading-wc h1, - :host kol-heading-wc h2 { - font-family: var(--textFontSerif); - font-weight: var(--textFontWeight); - margin: 0; - } - :host kol-heading-wc h1 { - font-size: var(--headline1FontSize); - line-height: var(--headline1LineHeight); - } - :host kol-heading-wc h2 { - font-size: var(--headline2FontSize); - line-height: var(--headline2LineHeight); - } - :host kol-heading-wc h3 { - font-size: var(--headline3FontSize); - line-height: var(--headline3LineHeight); - } - :host kol-heading-wc h4 { - font-size: var(--headline4FontSize); - line-height: var(--headline4LineHeight); - } - :host div.header { - border-bottom: 1px solid var(--color-gruen); - padding: var(--card-padding); - align-items: flex-start; - display: flex; - gap: 0 var(--gapSmall); - justify-content: space-between; - } - :host div.content { - padding: var(--card-padding) var(--card-padding) 0; - } - :host div.footer { - margin-top: 3rem; - padding: 0 var(--card-padding); - }`, - 'KOL-INPUT-CHECKBOX': `:host { - --border-width: 1px; - --spacing: 0.25rem; - } - label { - cursor: pointer; - } - input { - color: black; - border-color: var(--color-grau-dunkel); - border-width: var(--border-width); - border-style: solid; - line-height: 24px; - font-size: 16px; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - input:hover { - border-color: var(--color-blau); - } /* NEU */ - kol-input { - display: grid; - align-items: center; - justify-items: left; - width: 100%; - } - kol-input.checkbox { - grid-template-columns: calc(6 * var(--spacing)) auto; - } - kol-input.switch { - grid-template-columns: calc(13 * var(--spacing)) auto; - } - kol-input > div.input { - display: inline-flex; - order: 1; - } - kol-input > div.input input { - margin: 0px; - } - kol-input > label { - order: 2; - padding-left: calc(2 * var(--spacing)); - } - kol-input > kol-alert.error { - order: 3; - padding-top: 0.25em; - grid-column: span 2 / auto; - } /* CHECKBOX */ - input[type="checkbox"] { - appearance: none; - background-color: white; - cursor: pointer; - transition: 0.5s; - } - input[type="checkbox"].kol-disabled:before { - cursor: not-allowed; - } - input[type="checkbox"]:before { - content: ""; - cursor: pointer; - } - input[type="checkbox"]:checked { - background-color: var(--color-blau); - border-color: var(--color-blau); - } - .checkbox input[type="checkbox"] { - height: calc(6 * var(--spacing)); - min-width: calc(6 * var(--spacing)); - width: calc(6 * var(--spacing)); - } - .checkbox input[type="checkbox"]:before { - background-color: transparent; - display: block; - height: calc(6 * var(--spacing)); - position: relative; - width: calc(6 * var(--spacing)); - } - .checkbox input[type="checkbox"]:checked:before { - border-right-width: 3px; - border-bottom-width: 3px; - left: calc(1.5 * var(--spacing) - var(--border-width)); - top: calc(2.85 * var(--spacing) - var(--border-width)); - transform: rotate(40deg) translate(-50%, -50%); - background-color: transparent; - border-width: 0px 3px 3px 0px; - border-color: white; - border-style: solid; - height: calc(3 * var(--spacing)); - width: calc(1.5 * var(--spacing)); - } - .checkbox input[type="checkbox"]:indeterminate:before { - background-color: var(--color-grau-dunkel); - height: 0.375rem; - top: 0.5rem; - left: 0.2rem; - width: calc(4 * var(--spacing)); - } - .switch input[type="checkbox"] { - min-width: 3.2em; - width: 3.2em; - height: 1.7em; - display: inline-block; - position: relative; - } - .switch input[type="checkbox"]:before { - -webkit-transition: 0.5s; - -moz-transition: 0.5s; - -ms-transition: 0.5s; - transition: 0.5; - width: 1.2em; - height: 1.2em; - left: calc(0.25em - var(--border-width)); - top: calc(0.25em - var(--border-width)); - background-color: black; - position: absolute; - } - .switch input[type="checkbox"]:checked:before { - -webkit-transform: translateX(1.5em); - -moz-transform: translateX(1.5em); - -ms-transform: translateX(1.5em); - transform: translateX(1.5em); - background-color: white; - } - .switch input[type="checkbox"]:indeterminate:before { - -webkit-transform: translateX(0.75em); - -moz-transform: translateX(0.75em); - -ms-transform: translateX(0.75em); - transform: translateX(0.75em); - background-color: var(--color-blau); - } - .disabled { - opacity: 0.33; - } - .button:focus-within { - outline: var(--focusOutline); - outline-offset: 2px; - }`, - 'KOL-INPUT-RADIO': `:host { - --border-width: 1px; - --input-color: var(--color-gruen-dunkel); - --input-inner-position: calc(var(--spacing) + var(--border-width)); - --input-inner-size: calc(var(--spacing) * 3); - --input-outer-size: calc(var(--spacing) * 6); - } - div[slot="input"] { - align-items: center; - display: flex; - gap: calc(var(--spacing) * 2); - } - fieldset { - border: 0; - margin: 0; - padding: 0; - } - fieldset.horizontal { - display: flex; - flex-wrap: wrap; - align-items: center; - gap: 0.5rem 32px; - } - input { - cursor: pointer; - display: grid; - align-self: center; - border: var(--border-width) solid var(--input-color); - appearance: none; - border-radius: 100%; - height: var(--input-outer-size); - width: var(--input-outer-size); - margin: 0; - } - input:hover { - --border-width: 2px; - } - input:focus:hover { - box-shadow: none; - } - input:disabled { - --input-color: var(--color-disabled); - } - input:disabled:hover { - --border-width: 1px; - } - input:disabled + label { - color: var(--color-disabled); - } - input::before { - content: ""; - cursor: pointer; /* left: var(--input-inner-position);top: var(--input-inner-position); */ - position: relative; - border-radius: 100%; - display: inline-block; - height: var(--input-inner-size); - width: var(--input-inner-size); - } - input:hover::before { - --input-inner-position: var(--spacing); - } - input:checked::before { - background-color: var(--input-color); - } - kol-input { - display: grid; - } - kol-input { - margin-bottom: 1rem; - } - kol-input.error input { - border-color: var(--color-rot); - padding-left: 1em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - outline: var(--color-focus) solid 2px !important; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - order: 1; - } - kol-input.error kol-alert.error { - color: var(--color-rot); - font-weight: 700; - } - label { - color: var(--color-text); - cursor: pointer; - display: grid; - font-size: var(--text-size); /* order: 2; */ - font-weight: 700; - } - legend { - font-size: var(--text-size); - margin-bottom: var(--text-size); - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - }`, - 'KOL-TOAST': `:host > div { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 0; - z-index: 200; - } - :host > div > kol-alert { - display: block; - margin: auto; - padding: 1rem; - max-width: 750px; - } - :host > div > kol-button-wc { - top: 0; - position: relative; - display: block; - margin: auto; - width: 1em; - }`, - 'KOL-TABS': `button:disabled { - opacity: 0.5; - cursor: not-allowed; - } - :host { - font-family: var(--font-family); - } - :host > div { - display: block; - width: 100%; - } - :host kol-button-group-wc { - display: inline-block; - border-radius: 0.25rem 0.25rem 0 0; - background-color: var(--kolibri-color-normal); - } - :host kol-button-group-wc > div { - display: inline-flex; - } - :host kol-button-group-wc > div + div { - margin-left: 0.25em; - } - :host > div > div { - padding: 0.25em; - border: 1px solid var(--kolibri-border-color); - border-radius: 0 0 0.25rem 0.25rem; - } - button { - box-sizing: border-box; - font-size: inherit; - line-height: 1.25em; - cursor: pointer; - border-width: 2px; - box-shadow: 0 0 0.25em gray; - font-family: var(--kolibri-font-family); - width: inherit; - border-radius: var(--kolibri-border-radius); - border-style: solid; - padding: calc(2 * var(--kolibri-spacing)); - display: grid; - gap: 0.25em; - align-items: center; - justify-content: center; - text-align: center; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - kol-button-wc[aria-selected="true"] button { - border-bottom-width: 0.25em !important; - border-bottom-style: solid; - border-bottom-color: var(--kolibri-color-accent) !important; - } - button > kol-span-wc span { - display: flex; - gap: 0.25em; - align-items: center; - justify-content: center; - } - button:disabled { - cursor: not-allowed; - opacity: 0.5; - } - button.primary, - button.primary:disabled:hover { - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-color-primary); - color: white; - } - button.primary:hover, - button.primary:focus { - color: var(--kolibri-color-primary); - } - button.secondary, - button.secondary:disabled:hover { - background-color: var(--kolibri-color-secondary); - border-color: var(--kolibri-color-secondary); - color: white; - } - button.secondary:hover, - button.secondary:focus { - color: var(--kolibri-color-secondary); - } - button.normal, - button.normal:disabled:hover { - background-color: var(--kolibri-color-normal); - border-color: var(--kolibri-color-normal); - color: white; - } - button.normal:hover, - button.normal:focus { - color: var(--kolibri-color-normal); - } - button.danger, - button.danger:disabled:hover { - background-color: var(--kolibri-color-danger); - border-color: var(--kolibri-color-danger); - color: white; - } - button.danger:hover, - button.danger:focus { - color: var(--kolibri-color-danger); - } - button.ghost, - button.ghost:disabled:hover { - background-color: white; - border-color: var(--kolibri-color-ghost); - color: var(--kolibri-color-ghost); - } - button.ghost:hover, - button.ghost:focus { - background-color: var(--kolibri-color-ghost); - color: white; - } - button:hover, - button:focus { - background-color: white; - box-shadow: 0 0 0.25em black; - } - button:active { - outline: 0 !important; - box-shadow: none !important; - } - .close-button { - font-size: 25%; - height: fit-content; - width: 0; - } - .close-button button { - width: 1rem; - position: relative; - height: 1rem; - left: -4.25em; - top: 0.25em; - } - :host > div { - display: grid; - } - :host > div.tabs-align-left { - grid-template-columns: auto 1fr; - } - :host > div.tabs-align-right { - grid-template-columns: 1fr auto; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-bottom kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - order: 1; - } - :host > div.tabs-align-left kol-button-group-wc > div, - :host > div.tabs-align-left kol-button-group-wc > div > div, - :host > div.tabs-align-right kol-button-group-wc > div, - :host > div.tabs-align-right kol-button-group-wc > div > div { - display: grid; - } - :host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc, - :host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc { - width: 100%; - } - :host > div.tabs-align-bottom kol-button-group-wc div, - :host > div.tabs-align-top kol-button-group-wc div { - display: flex; - flex-wrap: wrap; - } - :host > div.tabs-align-bottom > kol-button-group-wc { - border-radius: 0 0 0.25rem 0.25rem; - } - :host > div.tabs-align-bottom > div { - border-radius: 0.25rem 0.25rem 0 0; - } - :host > div.tabs-align-top > kol-button-group-wc { - border-radius: 0.25rem 0.25rem 0 0; - } - :host > div.tabs-align-top > div { - border-radius: 0 0 0.25rem 0.25rem; - } - :host > div.tabs-align-left > kol-button-group-wc { - border-radius: 0.25rem 0 0 0.25rem; - } - :host > div.tabs-align-left > div { - border-radius: 0 0.25rem 0.25rem 0; - } - :host > div.tabs-align-right > kol-button-group-wc { - border-radius: 0 0.25rem 0.25rem 0; - } - :host > div.tabs-align-right > div { - border-radius: 0.25rem 0 0 0.25rem; - }`, - 'KOL-PAGINATION': `:host { - align-items: center; - display: flex; - gap: 1rem; - } - .navigation-list { - align-items: center; - display: inline-flex; - flex-wrap: wrap; - gap: 0.5rem; - justify-content: center; - margin: 0; - padding: 0; - } - .navigation-list > li { - min-width: var(--a11y-min-size); - text-align: center; - } - .selected button { - cursor: not-allowed; - font-weight: 700; - border-radius: 1.5em; - border: none; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - color: var(--color-midnight); - } - kol-button::part(icon)::before { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - } - kol-button.first::part(icon)::before { - content: "\\f100"; - } - kol-button.previous::part(icon)::before { - content: "\\f104"; - } - kol-button.next::part(icon)::before { - content: "\\f105"; - } - kol-button.last::part(icon)::before { - content: "\\f101"; - }`, - 'KOL-INPUT-RANGE': `/* https://www.cssportal.com/style-input-range/ */ - kol-input { - display: grid; - } - kol-input label { - display: grid; - order: 2; - margin-bottom: 0.4em; - } - kol-input div.input { - box-sizing: border-box; - order: 3; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - order: 1; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - line-height: 1.5em; - border-color: var(--color-grey); - border-width: 2px; - border-style: solid; - padding: 0.625em 0.875em; - border-radius: 0.3125rem; - overflow: hidden; - width: calc(100% - 4em); - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required #label::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.725em 0.875em; - box-sizing: border-box; - border-color: transparent; - border-width: 2px; - border-style: solid; - } - .icon-left input, - .icon-left select { - padding-left: calc(0.875em + 1em + 0.5em); - } - .icon-right input, - .icon-right select { - padding-right: calc(0.875em + 1em + 0.5em); - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -33px; - } - kol-button-wc button { - border: 1px solid var(--color-grey); - border-radius: 0.25rem; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - .icon-left input, - .icon-left select { - margin-left: 2em; - } - .icon-right input, - .icon-right select { - margin-right: 2em; - } - input[type="range"] { - appearance: none; - -webkit-appearance: none; - -moz-appearance: none; - } - input[type="range"] { - overflow: visible; - background-color: var(--color-ice); - border: 0; - height: 0.5rem; - padding: 0; - padding-bottom: 0; - margin-bottom: 0; - } - input[type="range"]::-webkit-slider-thumb { - box-sizing: border-box; - background-color: var(--color-midnight); - height: 20px; - width: 20px; - border-radius: 20px; - cursor: pointer; - -webkit-appearance: none; - }`, - 'KOL-LINK-BUTTON': `:host { - display: inline-block; - } /*-----------*/ - a { - border-width: 1px; - border-style: solid; - min-width: 44px; - min-height: 44px; - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-family: var(--font-family); - font-weight: 700; - cursor: pointer; - align-items: center; - padding: 8px 14px; - justify-content: center; - font-style: normal; - text-align: center; - text-transform: uppercase; - width: inherit; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - a:hover:enabled { - text-decoration: underline; - } - .primary a, - .primary a:active, - .primary a:hover { - background-color: var(--color-gruen-dunkel); - border-color: var(--color-gruen-dunkel); - color: var(--color-weiss); - } - .secondary a, - .danger a, - .normal a, - .ghost a { - background-color: var(--color-weiss); - border-color: var(--color-gruen-hell); - color: var(--color-grau-dunkel); - } - .secondary a:active, - .secondary a:hover { - background-color: var(--color-gruen-dunkel); - border-color: var(--color-gruen-dunkel); - border-width: 1px; - color: var(--color-weiss); - } - a:disabled, - a:disabled:hover { - background-color: var(--color-weiss); - border-color: var(--color-grau-hell); - color: var(--color-graublau); - cursor: not-allowed; - } - a > span { - display: flex; - gap: 0.5em; - margin: auto; - align-items: center; - justify-content: center; - } - a.icon-only { - padding: 8px; - } - a.icon-only kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - a.loading kol-icon { - animation: spin 5s infinite linear; - }`, - 'KOL-BUTTON-LINK': `button { - background-color: transparent; - border: 0; - cursor: pointer; - } - kol-link-button-wc { - display: inline-block; - } - button { - color: var(--textFontColorblau); - font-style: normal; - font-weight: 400; - display: inline-flex; - line-height: 1.5em; - text-decoration-line: none !important; - outline: none !important; - } - button:focus-within, - button:hover { - box-shadow: inset 0 -1px 0 0 currentColor; - } - kol-icon { - padding: 0 0.25em; - display: inline-block; - }`, - 'KOL-ABBR': `abbr { - text-decoration: none; - border-bottom: dotted var(--color-metal) 1px; - }`, - 'KOL-BREADCRUMB': `nav { - width: 100%; - } - ul { - margin: 0; - padding: 0; - list-style: none; - display: flex; - flex-wrap: wrap; - align-items: center; - } - kol-link { - display: inline; - } - :host kol-icon[exportparts*="separator"] { - padding: 0 0.5rem; - } - :host kol-icon::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - font-size: 0.875rem !important; - } - :host kol-icon::part(icon)::before { - color: currentColor; - font-family: "Font Awesome 6 Free"; - } - :host ul > li:not(:first-child) kol-icon::part(icon)::before { - content: "\\f105"; - } - :host li > kol-link > kol-link-wc > a { - color: red !important; - }`, - 'KOL-MODAL': `:host .overlay .modal { - max-height: calc(100% - 32px); - }`, - 'KOL-ICON': `:host { - color: inherit; - } /*! * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2022 Fonticons, Inc. */ - .fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); - } - .fa, - .fas, - .fa-solid, - .far, - .fa-regular, - .fal, - .fa-light, - .fat, - .fa-thin, - .fad, - .fa-duotone, - .fab, - .fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; - } - [class*="fa-"] { - font-style: 0.8rem; - } /************************************************************/ - .fa-arrow-right::before { - content: "\\f061"; - } - .fa-arrow-right-from-bracket::before { - content: "\\f08b"; - } - .fa-clock::before { - content: "\\f017"; - } - .fa-home::before { - content: "\\f015"; - } - .fa-times-circle::before { - content: "\\f057"; - } - .fa-exclamation-triangle::before { - content: "\\f071"; - } /************************************************************/ - .fa-chevron-left::before { - content: "\\f053"; - } - .fa-chevron-right::before { - content: "\\f054"; - } - .fa-download::before { - content: "\\f019"; - } - fa-exclamation-triangle::before { - content: "\\f071"; - } - .fa-file::before { - content: "\\f15b"; - } - .fa-house::before { - content: "\\f015"; - } - .fa-link::before { - content: "\\f0c1"; - } - .fa-plus::before { - content: "\\2b"; - } - .fa-search::before { - content: "\\f002"; - } - .fa-times-circle::before { - content: "\\f057"; - } - .fa-arrow-up-right-from-square::before { - content: "\\f08e"; - } - .fa-user::before { - content: "\\f007"; - } - .fa-xmark::before { - content: "\\f00d"; - } /************************************************************/ - :root, - :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; - } - @font-face { - font-family: "Font Awesome 6 Free"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), - url("../webfonts/fa-regular-400.ttf") format("truetype"); - } - .far, - .fa-regular { - font-family: "Font Awesome 6 Free"; - font-weight: 400; - } - :root, - :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; - } - @font-face { - font-family: "Font Awesome 6 Free"; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), - url("../webfonts/fa-solid-900.ttf") format("truetype"); - } - .fas, - .fa-solid { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - } - @font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), - url("../webfonts/fa-brands-400.ttf") format("truetype"); - } - @font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), - url("../webfonts/fa-solid-900.ttf") format("truetype"); - } - @font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), - url("../webfonts/fa-regular-400.ttf") format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), - url("../webfonts/fa-solid-900.ttf") format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), - url("../webfonts/fa-brands-400.ttf") format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), - url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, - U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, - U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, - U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, - U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, - U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, - U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, - U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, - U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC; - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), - url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, - U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, - U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, - U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252, - U+F27A; - }`, - 'KOL-SKIP-NAV': `kol-link-wc > a > kol-span-wc { - border-radius: var(--a11y-min-size); - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - padding: 8px 14px; - background-color: var(--color-ocean); - border-color: var(--color-ocean); - color: var(--color-white); - cursor: pointer; - }`, - 'KOL-LINK-GROUP': `ul { - list-style: none; - margin: 0px; - padding: 0px; - } - nav.horizontal ul { - display: flex; - flex-wrap: wrap; - } - nav.horizontal li { - list-style: none; - margin-left: 1.25rem; - margin-right: 0.25rem; - } - nav.horizontal li:first-child { - margin-left: 0; - } - nav.horizontal li:last-child { - margin-right: 0; - } - nav.vertical li { - margin-left: 1.75rem; - margin-right: 0.5rem; - } - li.list-none { - list-style-type: none !important; - margin-left: 0; - }`, - 'KOL-TOOLTIP': `:host { - --kolibri-font-size: var(--textFontSize); - }`, -}); diff --git a/packages/themes/mfm/assets/fontawesome-free/LICENSE.txt b/packages/themes/mfm/assets/fontawesome-free/LICENSE.txt deleted file mode 100644 index cc557ece45..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/LICENSE.txt +++ /dev/null @@ -1,165 +0,0 @@ -Fonticons, Inc. (https://fontawesome.com) - --------------------------------------------------------------------------------- - -Font Awesome Free License - -Font Awesome Free is free, open source, and GPL friendly. You can use it for -commercial projects, open source projects, or really almost whatever you want. -Full Font Awesome Free license: https://fontawesome.com/license/free. - --------------------------------------------------------------------------------- - -# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) - -The Font Awesome Free download is licensed under a Creative Commons -Attribution 4.0 International License and applies to all icons packaged -as SVG and JS file types. - --------------------------------------------------------------------------------- - -# Fonts: SIL OFL 1.1 License - -In the Font Awesome Free download, the SIL OFL license applies to all icons -packaged as web and desktop font files. - -Copyright (c) 2022 Fonticons, Inc. (https://fontawesome.com) -with Reserved Font Name: "Font Awesome". - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - -SIL OPEN FONT LICENSE -Version 1.1 - 26 February 2007 - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting — in part or in whole — any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - --------------------------------------------------------------------------------- - -# Code: MIT License (https://opensource.org/licenses/MIT) - -In the Font Awesome Free download, the MIT license applies to all non-font and -non-icon files. - -Copyright 2022 Fonticons, Inc. - -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. - --------------------------------------------------------------------------------- - -# Attribution - -Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font -Awesome Free files already contain embedded comments with sufficient -attribution, so you shouldn't need to do anything additional when using these -files normally. - -We've kept attribution comments terse, so we ask that you do not actively work -to remove them from files, especially code. They're a great way for folks to -learn about Font Awesome. - --------------------------------------------------------------------------------- - -# Brand Icons - -All brand icons are trademarks of their respective owners. The use of these -trademarks does not indicate endorsement of the trademark holder by Font -Awesome, nor vice versa. **Please do not use brand logos for any purpose except -to represent the company, product, or service to which they refer.** diff --git a/packages/themes/mfm/assets/fontawesome-free/css/all.css b/packages/themes/mfm/assets/fontawesome-free/css/all.css deleted file mode 100644 index 9c2adee7ef..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/all.css +++ /dev/null @@ -1,7831 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa, -.fas, -.fa-solid, -.far, -.fa-regular, -.fal, -.fa-light, -.fat, -.fa-thin, -.fad, -.fa-duotone, -.fab, -.fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-a::before { - content: "\41"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-at::before { - content: "\40"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-award::before { - content: "\f559"; } - -.fa-b::before { - content: "\42"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-box::before { - content: "\f466"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-c::before { - content: "\43"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-code::before { - content: "\f121"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-d::before { - content: "\44"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-display::before { - content: "\e163"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-download::before { - content: "\f019"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-e::before { - content: "\45"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-f::before { - content: "\46"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-file-circle-check::before { - content: "\e493"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-file-circle-plus::before { - content: "\e4ee"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-file-circle-xmark::before { - content: "\e494"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-film::before { - content: "\f008"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-font::before { - content: "\f031"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-g::before { - content: "\47"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-h::before { - content: "\48"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-2::before { - content: "\f254"; } - -.fa-hourglass-half::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f252"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-i::before { - content: "\49"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-images::before { - content: "\f302"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-info::before { - content: "\f129"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-j::before { - content: "\4a"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-k::before { - content: "\4b"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-key::before { - content: "\f084"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-l::before { - content: "\4c"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-m::before { - content: "\4d"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-map::before { - content: "\f279"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-music::before { - content: "\f001"; } - -.fa-n::before { - content: "\4e"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-o::before { - content: "\4f"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-om::before { - content: "\f679"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-p::before { - content: "\50"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-person-through-window::before { - content: "\e433"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-plant-wilt::before { - content: "\e43b"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-q::before { - content: "\51"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-question::before { - content: "\3f"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-r::before { - content: "\52"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-road::before { - content: "\f018"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-s::before { - content: "\53"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-school::before { - content: "\f549"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-section::before { - content: "\e447"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-server::before { - content: "\f233"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-share::before { - content: "\f064"; } - -.fa-arrow-turn-right::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-star::before { - content: "\f005"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-t::before { - content: "\54"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-train::before { - content: "\f238"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-train-tram::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-u::before { - content: "\55"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-user::before { - content: "\f007"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-v::before { - content: "\56"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-w::before { - content: "\57"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-water::before { - content: "\f773"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-x::before { - content: "\58"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-y::before { - content: "\59"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-z::before { - content: "\5a"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } -:root, :host { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-node:before { - content: "\f419"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-php:before { - content: "\f457"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-square-font-awesome:before { - content: "\f425"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-zhihu:before { - content: "\f63f"; } -:root, :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; } -@font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/all.min.css b/packages/themes/mfm/assets/fontawesome-free/css/all.min.css deleted file mode 100644 index 9b2ac090a2..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/all.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-a:before{content:"\41"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-anchor:before{content:"\f13d"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-anchor-lock:before{content:"\e4ad"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-ankh:before{content:"\f644"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-archway:before{content:"\f557"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-arrow-trend-down:before{content:"\e097"}.fa-arrow-trend-up:before{content:"\e098"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-arrows-spin:before{content:"\e4bb"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-asterisk:before{content:"\2a"}.fa-at:before{content:"\40"}.fa-atom:before{content:"\f5d2"}.fa-audio-description:before{content:"\f29e"}.fa-austral-sign:before{content:"\e0a9"}.fa-award:before{content:"\f559"}.fa-b:before{content:"\42"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-backward:before{content:"\f04a"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-bahai:before{content:"\f666"}.fa-baht-sign:before{content:"\e0ac"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-barcode:before{content:"\f02a"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-bell:before{content:"\f0f3"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blog:before{content:"\f781"}.fa-bold:before{content:"\f032"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-book-bookmark:before{content:"\e0bb"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-bookmark:before{content:"\f02e"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-bore-hole:before{content:"\e4c3"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-bottle-water:before{content:"\e4c5"}.fa-bowl-food:before{content:"\e4c6"}.fa-bowl-rice:before{content:"\e2eb"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes-packing:before{content:"\e4c7"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-bread-slice:before{content:"\f7ec"}.fa-bridge:before{content:"\e4c8"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-bridge-water:before{content:"\e4ce"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broom:before{content:"\f51a"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-brush:before{content:"\f55d"}.fa-bucket:before{content:"\e4cf"}.fa-bug:before{content:"\f188"}.fa-bug-slash:before{content:"\e490"}.fa-bugs:before{content:"\e4d0"}.fa-building:before{content:"\f1ad"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-building-circle-check:before{content:"\e4d2"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-building-flag:before{content:"\e4d5"}.fa-building-lock:before{content:"\e4d6"}.fa-building-ngo:before{content:"\e4d7"}.fa-building-shield:before{content:"\e4d8"}.fa-building-un:before{content:"\e4d9"}.fa-building-user:before{content:"\e4da"}.fa-building-wheat:before{content:"\e4db"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-burst:before{content:"\e4dc"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-c:before{content:"\43"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-week:before{content:"\f784"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-camera-rotate:before{content:"\e0d8"}.fa-campground:before{content:"\f6bb"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-car-on:before{content:"\e4dd"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-car-side:before{content:"\f5e4"}.fa-car-tunnel:before{content:"\e4de"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-cart-plus:before{content:"\f217"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cedi-sign:before{content:"\e0df"}.fa-cent-sign:before{content:"\e3f5"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-charging-station:before{content:"\f5e7"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-chart-column:before{content:"\e0e3"}.fa-chart-gantt:before{content:"\e0e4"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-chart-simple:before{content:"\e473"}.fa-check:before{content:"\f00c"}.fa-check-double:before{content:"\f560"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-child-dress:before{content:"\e59c"}.fa-child-reaching:before{content:"\e59d"}.fa-child-rifle:before{content:"\e4e0"}.fa-children:before{content:"\e4e1"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-circle-nodes:before{content:"\e4e2"}.fa-circle-notch:before{content:"\f1ce"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-city:before{content:"\f64f"}.fa-clapperboard:before{content:"\e131"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-question:before{content:"\e4e3"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-clover:before{content:"\e139"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-compare:before{content:"\e13a"}.fa-code-fork:before{content:"\e13b"}.fa-code-merge:before{content:"\f387"}.fa-code-pull-request:before{content:"\e13c"}.fa-coins:before{content:"\f51e"}.fa-colon-sign:before{content:"\e140"}.fa-comment:before{content:"\f075"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-compress:before{content:"\f066"}.fa-computer:before{content:"\e4e5"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-d:before{content:"\44"}.fa-database:before{content:"\f1c0"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-democrat:before{content:"\f747"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-dharmachakra:before{content:"\f655"}.fa-diagram-next:before{content:"\e476"}.fa-diagram-predecessor:before{content:"\e477"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-diagram-successor:before{content:"\e47a"}.fa-diamond:before{content:"\f219"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-disease:before{content:"\f7fa"}.fa-display:before{content:"\e163"}.fa-divide:before{content:"\f529"}.fa-dna:before{content:"\f471"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-dong-sign:before{content:"\e169"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dove:before{content:"\f4ba"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-download:before{content:"\f019"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-e:before{content:"\45"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elevator:before{content:"\e16d"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-equals:before{content:"\3d"}.fa-eraser:before{content:"\f12d"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-exclamation:before{content:"\21"}.fa-expand:before{content:"\f065"}.fa-explosion:before{content:"\e4e9"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-eye-slash:before{content:"\f070"}.fa-f:before{content:"\46"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-fan:before{content:"\f863"}.fa-faucet:before{content:"\e005"}.fa-faucet-drip:before{content:"\e006"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-ferry:before{content:"\e4ea"}.fa-file:before{content:"\f15b"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-file-audio:before{content:"\f1c7"}.fa-file-circle-check:before{content:"\e493"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-file-circle-plus:before{content:"\e4ee"}.fa-file-circle-question:before{content:"\e4ef"}.fa-file-circle-xmark:before{content:"\e494"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-excel:before{content:"\f1c3"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-file-medical:before{content:"\f477"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-shield:before{content:"\e4f0"}.fa-file-signature:before{content:"\f573"}.fa-file-video:before{content:"\f1c8"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-file-word:before{content:"\f1c2"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-burner:before{content:"\e4f1"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-fish:before{content:"\f578"}.fa-fish-fins:before{content:"\e4f2"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flask-vial:before{content:"\e4f3"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-florin-sign:before{content:"\e184"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-folder-closed:before{content:"\e185"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-tree:before{content:"\f802"}.fa-font:before{content:"\f031"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-franc-sign:before{content:"\e18f"}.fa-frog:before{content:"\f52e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-g:before{content:"\47"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-glass-water:before{content:"\e4f4"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-glasses:before{content:"\f530"}.fa-globe:before{content:"\f0ac"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-greater-than:before{content:"\3e"}.fa-greater-than-equal:before{content:"\f532"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-guarani-sign:before{content:"\e19a"}.fa-guitar:before{content:"\f7a6"}.fa-gun:before{content:"\e19b"}.fa-h:before{content:"\48"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-handcuffs:before{content:"\e4f8"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-hands-bound:before{content:"\e4f9"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-hands-clapping:before{content:"\e1a8"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-handshake:before{content:"\f2b5"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-hashtag:before{content:"\23"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-heart-circle-plus:before{content:"\e500"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helicopter-symbol:before{content:"\e502"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-helmet-un:before{content:"\e503"}.fa-highlighter:before{content:"\f591"}.fa-hill-avalanche:before{content:"\e507"}.fa-hill-rockslide:before{content:"\e508"}.fa-hippo:before{content:"\f6ed"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hourglass-2:before,.fa-hourglass-half:before,.fa-hourglass:before{content:"\f254"}.fa-hourglass-empty:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-house-chimney-user:before{content:"\e065"}.fa-house-chimney-window:before{content:"\e00d"}.fa-house-circle-check:before{content:"\e509"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-house-crack:before{content:"\e3b1"}.fa-house-fire:before{content:"\e50c"}.fa-house-flag:before{content:"\e50d"}.fa-house-flood-water:before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-house-lock:before{content:"\e510"}.fa-house-medical:before{content:"\e3b2"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-house-medical-flag:before{content:"\e514"}.fa-house-signal:before{content:"\e012"}.fa-house-tsunami:before{content:"\e515"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-hurricane:before{content:"\f751"}.fa-i:before{content:"\49"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-images:before{content:"\f302"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-italic:before{content:"\f033"}.fa-j:before{content:"\4a"}.fa-jar:before{content:"\e516"}.fa-jar-wheat:before{content:"\e517"}.fa-jedi:before{content:"\f669"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-jet-fighter-up:before{content:"\e518"}.fa-joint:before{content:"\f595"}.fa-jug-detergent:before{content:"\e519"}.fa-k:before{content:"\4b"}.fa-kaaba:before{content:"\f66b"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-khanda:before{content:"\f66d"}.fa-kip-sign:before{content:"\e1c4"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-kitchen-set:before{content:"\e51a"}.fa-kiwi-bird:before{content:"\f535"}.fa-l:before{content:"\4c"}.fa-land-mine-on:before{content:"\e51b"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-landmark-flag:before{content:"\e51c"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-file:before{content:"\e51d"}.fa-laptop-medical:before{content:"\f812"}.fa-lari-sign:before{content:"\e1c8"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-lemon:before{content:"\f094"}.fa-less-than:before{content:"\3c"}.fa-less-than-equal:before{content:"\f537"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lines-leaning:before{content:"\e51e"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-lira-sign:before{content:"\f195"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-location-arrow:before{content:"\f124"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-location-pin-lock:before{content:"\e51f"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-locust:before{content:"\e520"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-m:before{content:"\4d"}.fa-magnet:before{content:"\f076"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-manat-sign:before{content:"\e1d5"}.fa-map:before{content:"\f279"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-pin:before{content:"\f276"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-and-venus:before{content:"\f224"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-mask:before{content:"\f6fa"}.fa-mask-face:before{content:"\e1d7"}.fa-mask-ventilator:before{content:"\e524"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-mattress-pillow:before{content:"\e525"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-medal:before{content:"\f5a2"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-mill-sign:before{content:"\e1ed"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-mitten:before{content:"\f7b5"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-mobile-button:before{content:"\f10b"}.fa-mobile-retro:before{content:"\e527"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-money-bills:before{content:"\e1f3"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-mosquito-net:before{content:"\e52c"}.fa-motorcycle:before{content:"\f21c"}.fa-mound:before{content:"\e52d"}.fa-mountain:before{content:"\f6fc"}.fa-mountain-city:before{content:"\e52e"}.fa-mountain-sun:before{content:"\e52f"}.fa-mug-hot:before{content:"\f7b6"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-music:before{content:"\f001"}.fa-n:before{content:"\4e"}.fa-naira-sign:before{content:"\e1f6"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-not-equal:before{content:"\f53e"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-notes-medical:before{content:"\f481"}.fa-o:before{content:"\4f"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-oil-can:before{content:"\f613"}.fa-oil-well:before{content:"\e532"}.fa-om:before{content:"\f679"}.fa-otter:before{content:"\f700"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-p:before{content:"\50"}.fa-pager:before{content:"\f815"}.fa-paint-roller:before{content:"\f5aa"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-palette:before{content:"\f53f"}.fa-pallet:before{content:"\f482"}.fa-panorama:before{content:"\e209"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-passport:before{content:"\f5ab"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-pause:before{content:"\f04c"}.fa-paw:before{content:"\f1b0"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-people-group:before{content:"\e533"}.fa-people-line:before{content:"\e534"}.fa-people-pulling:before{content:"\e535"}.fa-people-robbery:before{content:"\e536"}.fa-people-roof:before{content:"\e537"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-person-booth:before{content:"\f756"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-person-burst:before{content:"\e53b"}.fa-person-cane:before{content:"\e53c"}.fa-person-chalkboard:before{content:"\e53d"}.fa-person-circle-check:before{content:"\e53e"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-person-circle-minus:before{content:"\e540"}.fa-person-circle-plus:before{content:"\e541"}.fa-person-circle-question:before{content:"\e542"}.fa-person-circle-xmark:before{content:"\e543"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-person-dress-burst:before{content:"\e544"}.fa-person-drowning:before{content:"\e545"}.fa-person-falling:before{content:"\e546"}.fa-person-falling-burst:before{content:"\e547"}.fa-person-half-dress:before{content:"\e548"}.fa-person-harassing:before{content:"\e549"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-person-military-pointing:before{content:"\e54a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-person-military-to-person:before{content:"\e54c"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-person-pregnant:before{content:"\e31e"}.fa-person-rays:before{content:"\e54d"}.fa-person-rifle:before{content:"\e54e"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-person-shelter:before{content:"\e54f"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-person-through-window:before{content:"\e433"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-person-walking-luggage:before{content:"\e554"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-peseta-sign:before{content:"\e221"}.fa-peso-sign:before{content:"\e222"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-circle-check:before{content:"\e555"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-lock:before{content:"\e558"}.fa-plane-slash:before{content:"\e069"}.fa-plane-up:before{content:"\e22d"}.fa-plant-wilt:before{content:"\e43b"}.fa-plate-wheat:before{content:"\e55a"}.fa-play:before{content:"\f04b"}.fa-plug:before{content:"\f1e6"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-plug-circle-check:before{content:"\e55c"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-plus-minus:before{content:"\e43c"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-puzzle-piece:before{content:"\f12e"}.fa-q:before{content:"\51"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\3f"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-r:before{content:"\52"}.fa-radiation:before{content:"\f7b9"}.fa-radio:before{content:"\f8d7"}.fa-rainbow:before{content:"\f75b"}.fa-ranking-star:before{content:"\e561"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-recycle:before{content:"\f1b8"}.fa-registered:before{content:"\f25d"}.fa-repeat:before{content:"\f363"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-republican:before{content:"\f75e"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-road-barrier:before{content:"\e562"}.fa-road-bridge:before{content:"\e563"}.fa-road-circle-check:before{content:"\e564"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-road-circle-xmark:before{content:"\e566"}.fa-road-lock:before{content:"\e567"}.fa-road-spikes:before{content:"\e568"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-route:before{content:"\f4d7"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-rug:before{content:"\e569"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-rupiah-sign:before{content:"\e23d"}.fa-s:before{content:"\53"}.fa-sack-dollar:before{content:"\f81d"}.fa-sack-xmark:before{content:"\e56a"}.fa-sailboat:before{content:"\e445"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-school:before{content:"\f549"}.fa-school-circle-check:before{content:"\e56b"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-school-flag:before{content:"\e56e"}.fa-school-lock:before{content:"\e56f"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-screwdriver:before{content:"\f54a"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-scroll:before{content:"\f70e"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-sd-card:before{content:"\f7c2"}.fa-section:before{content:"\e447"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-server:before{content:"\f233"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-sheet-plastic:before{content:"\e571"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-shield-cat:before{content:"\e572"}.fa-shield-dog:before{content:"\e573"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-shield-heart:before{content:"\e574"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-shoe-prints:before{content:"\f54b"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-shop-lock:before{content:"\e4a5"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-shower:before{content:"\f2cc"}.fa-shrimp:before{content:"\e448"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-sim-card:before{content:"\f7c4"}.fa-sink:before{content:"\e06d"}.fa-sitemap:before{content:"\f0e8"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-spa:before{content:"\f5bb"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-spray-can:before{content:"\f5bd"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-square:before{content:"\f0c8"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-square-full:before{content:"\f45c"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-square-nfi:before{content:"\e576"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-square-person-confined:before{content:"\e577"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-square-virus:before{content:"\e578"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-stairs:before{content:"\e289"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-stethoscope:before{content:"\f0f1"}.fa-stop:before{content:"\f04d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-slash:before{content:"\e071"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stroopwafel:before{content:"\f551"}.fa-subscript:before{content:"\f12c"}.fa-suitcase:before{content:"\f0f2"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-superscript:before{content:"\f12b"}.fa-swatchbook:before{content:"\f5c3"}.fa-synagogue:before{content:"\f69b"}.fa-syringe:before{content:"\f48e"}.fa-t:before{content:"\54"}.fa-table:before{content:"\f0ce"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-tablet-button:before{content:"\f10a"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tarp:before{content:"\e57b"}.fa-tarp-droplet:before{content:"\e57c"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-tent:before{content:"\e57d"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tent-arrows-down:before{content:"\e581"}.fa-tents:before{content:"\e582"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-text-width:before{content:"\f035"}.fa-thermometer:before{content:"\f491"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-timeline:before{content:"\e29c"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toilet-portable:before{content:"\e583"}.fa-toilets-portable:before{content:"\e584"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-tower-cell:before{content:"\e585"}.fa-tower-observation:before{content:"\e586"}.fa-tractor:before{content:"\f722"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-train-tram:before,.fa-tram:before{content:"\f7da"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-tree-city:before{content:"\e587"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-trophy:before{content:"\f091"}.fa-trowel:before{content:"\e589"}.fa-trowel-bricks:before{content:"\e58a"}.fa-truck:before{content:"\f0d1"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-truck-droplet:before{content:"\e58c"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-truck-field:before{content:"\e58d"}.fa-truck-field-un:before{content:"\e58e"}.fa-truck-front:before{content:"\e2b7"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plane:before{content:"\e58f"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-u:before{content:"\55"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-universal-access:before{content:"\f29a"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-upload:before{content:"\f093"}.fa-user:before{content:"\f007"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-clock:before{content:"\f4fd"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-user-graduate:before{content:"\f501"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-user-injured:before{content:"\f728"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-user-lock:before{content:"\f502"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-between-lines:before{content:"\e591"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-users-line:before{content:"\e592"}.fa-users-rays:before{content:"\e593"}.fa-users-rectangle:before{content:"\e594"}.fa-users-slash:before{content:"\e073"}.fa-users-viewfinder:before{content:"\e595"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-v:before{content:"\56"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-vault:before{content:"\e2c5"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-vial:before{content:"\f492"}.fa-vial-circle-check:before{content:"\e596"}.fa-vial-virus:before{content:"\e597"}.fa-vials:before{content:"\f493"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-virus:before{content:"\e074"}.fa-virus-covid:before{content:"\e4a8"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-voicemail:before{content:"\f897"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-vr-cardboard:before{content:"\f729"}.fa-w:before{content:"\57"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-wallet:before{content:"\f555"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-wand-sparkles:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-wave-square:before{content:"\f83e"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-wheelchair:before{content:"\f193"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-wind:before{content:"\f72e"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-worm:before{content:"\e599"}.fa-wrench:before{content:"\f0ad"}.fa-x:before{content:"\58"}.fa-x-ray:before{content:"\f497"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-xmarks-lines:before{content:"\e59a"}.fa-y:before{content:"\59"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-z:before{content:"\5a"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-square:before{content:"\f2ad"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-font-awesome:before{content:"\f425"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400}:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f250,u+f252,u+f27a} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/brands.css b/packages/themes/mfm/assets/fontawesome-free/css/brands.css deleted file mode 100644 index e83ed42ac1..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/brands.css +++ /dev/null @@ -1,1432 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-node:before { - content: "\f419"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-php:before { - content: "\f457"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-square-font-awesome:before { - content: "\f425"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-zhihu:before { - content: "\f63f"; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/brands.min.css b/packages/themes/mfm/assets/fontawesome-free/css/brands.min.css deleted file mode 100644 index 714509e6f9..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/brands.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-square:before{content:"\f2ad"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-font-awesome:before{content:"\f425"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/fontawesome.css b/packages/themes/mfm/assets/fontawesome-free/css/fontawesome.css deleted file mode 100644 index e7eb5fe411..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/fontawesome.css +++ /dev/null @@ -1,6338 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa, -.fas, -.fa-solid, -.far, -.fa-regular, -.fal, -.fa-light, -.fat, -.fa-thin, -.fad, -.fa-duotone, -.fab, -.fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-a::before { - content: "\41"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-at::before { - content: "\40"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-award::before { - content: "\f559"; } - -.fa-b::before { - content: "\42"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-box::before { - content: "\f466"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-c::before { - content: "\43"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-code::before { - content: "\f121"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-d::before { - content: "\44"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-display::before { - content: "\e163"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-download::before { - content: "\f019"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-e::before { - content: "\45"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-f::before { - content: "\46"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-file-circle-check::before { - content: "\e493"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-file-circle-plus::before { - content: "\e4ee"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-file-circle-xmark::before { - content: "\e494"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-film::before { - content: "\f008"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-font::before { - content: "\f031"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-g::before { - content: "\47"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-h::before { - content: "\48"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-2::before { - content: "\f254"; } - -.fa-hourglass-half::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f252"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-i::before { - content: "\49"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-images::before { - content: "\f302"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-info::before { - content: "\f129"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-j::before { - content: "\4a"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-k::before { - content: "\4b"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-key::before { - content: "\f084"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-l::before { - content: "\4c"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-m::before { - content: "\4d"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-map::before { - content: "\f279"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-music::before { - content: "\f001"; } - -.fa-n::before { - content: "\4e"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-o::before { - content: "\4f"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-om::before { - content: "\f679"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-p::before { - content: "\50"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-person-through-window::before { - content: "\e433"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-plant-wilt::before { - content: "\e43b"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-q::before { - content: "\51"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-question::before { - content: "\3f"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-r::before { - content: "\52"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-road::before { - content: "\f018"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-s::before { - content: "\53"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-school::before { - content: "\f549"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-section::before { - content: "\e447"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-server::before { - content: "\f233"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-share::before { - content: "\f064"; } - -.fa-arrow-turn-right::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-star::before { - content: "\f005"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-t::before { - content: "\54"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-train::before { - content: "\f238"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-train-tram::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-u::before { - content: "\55"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-user::before { - content: "\f007"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-v::before { - content: "\56"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-w::before { - content: "\57"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-water::before { - content: "\f773"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-x::before { - content: "\58"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-y::before { - content: "\59"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-z::before { - content: "\5a"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/fontawesome.min.css b/packages/themes/mfm/assets/fontawesome-free/css/fontawesome.min.css deleted file mode 100644 index b16f0a06aa..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/fontawesome.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-a:before{content:"\41"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-anchor:before{content:"\f13d"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-anchor-lock:before{content:"\e4ad"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-ankh:before{content:"\f644"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-archway:before{content:"\f557"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-arrow-trend-down:before{content:"\e097"}.fa-arrow-trend-up:before{content:"\e098"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-arrows-spin:before{content:"\e4bb"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-asterisk:before{content:"\2a"}.fa-at:before{content:"\40"}.fa-atom:before{content:"\f5d2"}.fa-audio-description:before{content:"\f29e"}.fa-austral-sign:before{content:"\e0a9"}.fa-award:before{content:"\f559"}.fa-b:before{content:"\42"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-backward:before{content:"\f04a"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-bahai:before{content:"\f666"}.fa-baht-sign:before{content:"\e0ac"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-barcode:before{content:"\f02a"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-bell:before{content:"\f0f3"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blog:before{content:"\f781"}.fa-bold:before{content:"\f032"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-book-bookmark:before{content:"\e0bb"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-bookmark:before{content:"\f02e"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-bore-hole:before{content:"\e4c3"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-bottle-water:before{content:"\e4c5"}.fa-bowl-food:before{content:"\e4c6"}.fa-bowl-rice:before{content:"\e2eb"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes-packing:before{content:"\e4c7"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-bread-slice:before{content:"\f7ec"}.fa-bridge:before{content:"\e4c8"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-bridge-water:before{content:"\e4ce"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broom:before{content:"\f51a"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-brush:before{content:"\f55d"}.fa-bucket:before{content:"\e4cf"}.fa-bug:before{content:"\f188"}.fa-bug-slash:before{content:"\e490"}.fa-bugs:before{content:"\e4d0"}.fa-building:before{content:"\f1ad"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-building-circle-check:before{content:"\e4d2"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-building-flag:before{content:"\e4d5"}.fa-building-lock:before{content:"\e4d6"}.fa-building-ngo:before{content:"\e4d7"}.fa-building-shield:before{content:"\e4d8"}.fa-building-un:before{content:"\e4d9"}.fa-building-user:before{content:"\e4da"}.fa-building-wheat:before{content:"\e4db"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-burst:before{content:"\e4dc"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-c:before{content:"\43"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-week:before{content:"\f784"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-camera-rotate:before{content:"\e0d8"}.fa-campground:before{content:"\f6bb"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-car-on:before{content:"\e4dd"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-car-side:before{content:"\f5e4"}.fa-car-tunnel:before{content:"\e4de"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-cart-plus:before{content:"\f217"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cedi-sign:before{content:"\e0df"}.fa-cent-sign:before{content:"\e3f5"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-charging-station:before{content:"\f5e7"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-chart-column:before{content:"\e0e3"}.fa-chart-gantt:before{content:"\e0e4"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-chart-simple:before{content:"\e473"}.fa-check:before{content:"\f00c"}.fa-check-double:before{content:"\f560"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-child-dress:before{content:"\e59c"}.fa-child-reaching:before{content:"\e59d"}.fa-child-rifle:before{content:"\e4e0"}.fa-children:before{content:"\e4e1"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-circle-nodes:before{content:"\e4e2"}.fa-circle-notch:before{content:"\f1ce"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-city:before{content:"\f64f"}.fa-clapperboard:before{content:"\e131"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-question:before{content:"\e4e3"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-clover:before{content:"\e139"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-compare:before{content:"\e13a"}.fa-code-fork:before{content:"\e13b"}.fa-code-merge:before{content:"\f387"}.fa-code-pull-request:before{content:"\e13c"}.fa-coins:before{content:"\f51e"}.fa-colon-sign:before{content:"\e140"}.fa-comment:before{content:"\f075"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-compress:before{content:"\f066"}.fa-computer:before{content:"\e4e5"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-d:before{content:"\44"}.fa-database:before{content:"\f1c0"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-democrat:before{content:"\f747"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-dharmachakra:before{content:"\f655"}.fa-diagram-next:before{content:"\e476"}.fa-diagram-predecessor:before{content:"\e477"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-diagram-successor:before{content:"\e47a"}.fa-diamond:before{content:"\f219"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-disease:before{content:"\f7fa"}.fa-display:before{content:"\e163"}.fa-divide:before{content:"\f529"}.fa-dna:before{content:"\f471"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-dong-sign:before{content:"\e169"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dove:before{content:"\f4ba"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-download:before{content:"\f019"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-e:before{content:"\45"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elevator:before{content:"\e16d"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-equals:before{content:"\3d"}.fa-eraser:before{content:"\f12d"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-exclamation:before{content:"\21"}.fa-expand:before{content:"\f065"}.fa-explosion:before{content:"\e4e9"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-eye-slash:before{content:"\f070"}.fa-f:before{content:"\46"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-fan:before{content:"\f863"}.fa-faucet:before{content:"\e005"}.fa-faucet-drip:before{content:"\e006"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-ferry:before{content:"\e4ea"}.fa-file:before{content:"\f15b"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-file-audio:before{content:"\f1c7"}.fa-file-circle-check:before{content:"\e493"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-file-circle-plus:before{content:"\e4ee"}.fa-file-circle-question:before{content:"\e4ef"}.fa-file-circle-xmark:before{content:"\e494"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-excel:before{content:"\f1c3"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-file-medical:before{content:"\f477"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-shield:before{content:"\e4f0"}.fa-file-signature:before{content:"\f573"}.fa-file-video:before{content:"\f1c8"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-file-word:before{content:"\f1c2"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-burner:before{content:"\e4f1"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-fish:before{content:"\f578"}.fa-fish-fins:before{content:"\e4f2"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flask-vial:before{content:"\e4f3"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-florin-sign:before{content:"\e184"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-folder-closed:before{content:"\e185"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-tree:before{content:"\f802"}.fa-font:before{content:"\f031"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-franc-sign:before{content:"\e18f"}.fa-frog:before{content:"\f52e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-g:before{content:"\47"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-glass-water:before{content:"\e4f4"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-glasses:before{content:"\f530"}.fa-globe:before{content:"\f0ac"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-greater-than:before{content:"\3e"}.fa-greater-than-equal:before{content:"\f532"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-guarani-sign:before{content:"\e19a"}.fa-guitar:before{content:"\f7a6"}.fa-gun:before{content:"\e19b"}.fa-h:before{content:"\48"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-handcuffs:before{content:"\e4f8"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-hands-bound:before{content:"\e4f9"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-hands-clapping:before{content:"\e1a8"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-handshake:before{content:"\f2b5"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-hashtag:before{content:"\23"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-heart-circle-plus:before{content:"\e500"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helicopter-symbol:before{content:"\e502"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-helmet-un:before{content:"\e503"}.fa-highlighter:before{content:"\f591"}.fa-hill-avalanche:before{content:"\e507"}.fa-hill-rockslide:before{content:"\e508"}.fa-hippo:before{content:"\f6ed"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hourglass-2:before,.fa-hourglass-half:before,.fa-hourglass:before{content:"\f254"}.fa-hourglass-empty:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-house-chimney-user:before{content:"\e065"}.fa-house-chimney-window:before{content:"\e00d"}.fa-house-circle-check:before{content:"\e509"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-house-crack:before{content:"\e3b1"}.fa-house-fire:before{content:"\e50c"}.fa-house-flag:before{content:"\e50d"}.fa-house-flood-water:before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-house-lock:before{content:"\e510"}.fa-house-medical:before{content:"\e3b2"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-house-medical-flag:before{content:"\e514"}.fa-house-signal:before{content:"\e012"}.fa-house-tsunami:before{content:"\e515"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-hurricane:before{content:"\f751"}.fa-i:before{content:"\49"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-images:before{content:"\f302"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-italic:before{content:"\f033"}.fa-j:before{content:"\4a"}.fa-jar:before{content:"\e516"}.fa-jar-wheat:before{content:"\e517"}.fa-jedi:before{content:"\f669"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-jet-fighter-up:before{content:"\e518"}.fa-joint:before{content:"\f595"}.fa-jug-detergent:before{content:"\e519"}.fa-k:before{content:"\4b"}.fa-kaaba:before{content:"\f66b"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-khanda:before{content:"\f66d"}.fa-kip-sign:before{content:"\e1c4"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-kitchen-set:before{content:"\e51a"}.fa-kiwi-bird:before{content:"\f535"}.fa-l:before{content:"\4c"}.fa-land-mine-on:before{content:"\e51b"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-landmark-flag:before{content:"\e51c"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-file:before{content:"\e51d"}.fa-laptop-medical:before{content:"\f812"}.fa-lari-sign:before{content:"\e1c8"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-lemon:before{content:"\f094"}.fa-less-than:before{content:"\3c"}.fa-less-than-equal:before{content:"\f537"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lines-leaning:before{content:"\e51e"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-lira-sign:before{content:"\f195"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-location-arrow:before{content:"\f124"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-location-pin-lock:before{content:"\e51f"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-locust:before{content:"\e520"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-m:before{content:"\4d"}.fa-magnet:before{content:"\f076"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-manat-sign:before{content:"\e1d5"}.fa-map:before{content:"\f279"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-pin:before{content:"\f276"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-and-venus:before{content:"\f224"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-mask:before{content:"\f6fa"}.fa-mask-face:before{content:"\e1d7"}.fa-mask-ventilator:before{content:"\e524"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-mattress-pillow:before{content:"\e525"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-medal:before{content:"\f5a2"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-mill-sign:before{content:"\e1ed"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-mitten:before{content:"\f7b5"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-mobile-button:before{content:"\f10b"}.fa-mobile-retro:before{content:"\e527"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-money-bills:before{content:"\e1f3"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-mosquito-net:before{content:"\e52c"}.fa-motorcycle:before{content:"\f21c"}.fa-mound:before{content:"\e52d"}.fa-mountain:before{content:"\f6fc"}.fa-mountain-city:before{content:"\e52e"}.fa-mountain-sun:before{content:"\e52f"}.fa-mug-hot:before{content:"\f7b6"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-music:before{content:"\f001"}.fa-n:before{content:"\4e"}.fa-naira-sign:before{content:"\e1f6"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-not-equal:before{content:"\f53e"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-notes-medical:before{content:"\f481"}.fa-o:before{content:"\4f"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-oil-can:before{content:"\f613"}.fa-oil-well:before{content:"\e532"}.fa-om:before{content:"\f679"}.fa-otter:before{content:"\f700"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-p:before{content:"\50"}.fa-pager:before{content:"\f815"}.fa-paint-roller:before{content:"\f5aa"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-palette:before{content:"\f53f"}.fa-pallet:before{content:"\f482"}.fa-panorama:before{content:"\e209"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-passport:before{content:"\f5ab"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-pause:before{content:"\f04c"}.fa-paw:before{content:"\f1b0"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-people-group:before{content:"\e533"}.fa-people-line:before{content:"\e534"}.fa-people-pulling:before{content:"\e535"}.fa-people-robbery:before{content:"\e536"}.fa-people-roof:before{content:"\e537"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-person-booth:before{content:"\f756"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-person-burst:before{content:"\e53b"}.fa-person-cane:before{content:"\e53c"}.fa-person-chalkboard:before{content:"\e53d"}.fa-person-circle-check:before{content:"\e53e"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-person-circle-minus:before{content:"\e540"}.fa-person-circle-plus:before{content:"\e541"}.fa-person-circle-question:before{content:"\e542"}.fa-person-circle-xmark:before{content:"\e543"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-person-dress-burst:before{content:"\e544"}.fa-person-drowning:before{content:"\e545"}.fa-person-falling:before{content:"\e546"}.fa-person-falling-burst:before{content:"\e547"}.fa-person-half-dress:before{content:"\e548"}.fa-person-harassing:before{content:"\e549"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-person-military-pointing:before{content:"\e54a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-person-military-to-person:before{content:"\e54c"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-person-pregnant:before{content:"\e31e"}.fa-person-rays:before{content:"\e54d"}.fa-person-rifle:before{content:"\e54e"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-person-shelter:before{content:"\e54f"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-person-through-window:before{content:"\e433"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-person-walking-luggage:before{content:"\e554"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-peseta-sign:before{content:"\e221"}.fa-peso-sign:before{content:"\e222"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-circle-check:before{content:"\e555"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-lock:before{content:"\e558"}.fa-plane-slash:before{content:"\e069"}.fa-plane-up:before{content:"\e22d"}.fa-plant-wilt:before{content:"\e43b"}.fa-plate-wheat:before{content:"\e55a"}.fa-play:before{content:"\f04b"}.fa-plug:before{content:"\f1e6"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-plug-circle-check:before{content:"\e55c"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-plus-minus:before{content:"\e43c"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-puzzle-piece:before{content:"\f12e"}.fa-q:before{content:"\51"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\3f"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-r:before{content:"\52"}.fa-radiation:before{content:"\f7b9"}.fa-radio:before{content:"\f8d7"}.fa-rainbow:before{content:"\f75b"}.fa-ranking-star:before{content:"\e561"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-recycle:before{content:"\f1b8"}.fa-registered:before{content:"\f25d"}.fa-repeat:before{content:"\f363"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-republican:before{content:"\f75e"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-road-barrier:before{content:"\e562"}.fa-road-bridge:before{content:"\e563"}.fa-road-circle-check:before{content:"\e564"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-road-circle-xmark:before{content:"\e566"}.fa-road-lock:before{content:"\e567"}.fa-road-spikes:before{content:"\e568"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-route:before{content:"\f4d7"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-rug:before{content:"\e569"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-rupiah-sign:before{content:"\e23d"}.fa-s:before{content:"\53"}.fa-sack-dollar:before{content:"\f81d"}.fa-sack-xmark:before{content:"\e56a"}.fa-sailboat:before{content:"\e445"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-school:before{content:"\f549"}.fa-school-circle-check:before{content:"\e56b"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-school-flag:before{content:"\e56e"}.fa-school-lock:before{content:"\e56f"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-screwdriver:before{content:"\f54a"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-scroll:before{content:"\f70e"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-sd-card:before{content:"\f7c2"}.fa-section:before{content:"\e447"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-server:before{content:"\f233"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-sheet-plastic:before{content:"\e571"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-shield-cat:before{content:"\e572"}.fa-shield-dog:before{content:"\e573"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-shield-heart:before{content:"\e574"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-shoe-prints:before{content:"\f54b"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-shop-lock:before{content:"\e4a5"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-shower:before{content:"\f2cc"}.fa-shrimp:before{content:"\e448"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-sim-card:before{content:"\f7c4"}.fa-sink:before{content:"\e06d"}.fa-sitemap:before{content:"\f0e8"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-spa:before{content:"\f5bb"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-spray-can:before{content:"\f5bd"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-square:before{content:"\f0c8"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-square-full:before{content:"\f45c"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-square-nfi:before{content:"\e576"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-square-person-confined:before{content:"\e577"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-square-virus:before{content:"\e578"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-stairs:before{content:"\e289"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-stethoscope:before{content:"\f0f1"}.fa-stop:before{content:"\f04d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-slash:before{content:"\e071"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stroopwafel:before{content:"\f551"}.fa-subscript:before{content:"\f12c"}.fa-suitcase:before{content:"\f0f2"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-superscript:before{content:"\f12b"}.fa-swatchbook:before{content:"\f5c3"}.fa-synagogue:before{content:"\f69b"}.fa-syringe:before{content:"\f48e"}.fa-t:before{content:"\54"}.fa-table:before{content:"\f0ce"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-tablet-button:before{content:"\f10a"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tarp:before{content:"\e57b"}.fa-tarp-droplet:before{content:"\e57c"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-tent:before{content:"\e57d"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tent-arrows-down:before{content:"\e581"}.fa-tents:before{content:"\e582"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-text-width:before{content:"\f035"}.fa-thermometer:before{content:"\f491"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-timeline:before{content:"\e29c"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toilet-portable:before{content:"\e583"}.fa-toilets-portable:before{content:"\e584"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-tower-cell:before{content:"\e585"}.fa-tower-observation:before{content:"\e586"}.fa-tractor:before{content:"\f722"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-train-tram:before,.fa-tram:before{content:"\f7da"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-tree-city:before{content:"\e587"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-trophy:before{content:"\f091"}.fa-trowel:before{content:"\e589"}.fa-trowel-bricks:before{content:"\e58a"}.fa-truck:before{content:"\f0d1"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-truck-droplet:before{content:"\e58c"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-truck-field:before{content:"\e58d"}.fa-truck-field-un:before{content:"\e58e"}.fa-truck-front:before{content:"\e2b7"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plane:before{content:"\e58f"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-u:before{content:"\55"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-universal-access:before{content:"\f29a"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-upload:before{content:"\f093"}.fa-user:before{content:"\f007"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-clock:before{content:"\f4fd"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-user-graduate:before{content:"\f501"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-user-injured:before{content:"\f728"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-user-lock:before{content:"\f502"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-between-lines:before{content:"\e591"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-users-line:before{content:"\e592"}.fa-users-rays:before{content:"\e593"}.fa-users-rectangle:before{content:"\e594"}.fa-users-slash:before{content:"\e073"}.fa-users-viewfinder:before{content:"\e595"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-v:before{content:"\56"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-vault:before{content:"\e2c5"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-vial:before{content:"\f492"}.fa-vial-circle-check:before{content:"\e596"}.fa-vial-virus:before{content:"\e597"}.fa-vials:before{content:"\f493"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-virus:before{content:"\e074"}.fa-virus-covid:before{content:"\e4a8"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-voicemail:before{content:"\f897"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-vr-cardboard:before{content:"\f729"}.fa-w:before{content:"\57"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-wallet:before{content:"\f555"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-wand-sparkles:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-wave-square:before{content:"\f83e"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-wheelchair:before{content:"\f193"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-wind:before{content:"\f72e"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-worm:before{content:"\e599"}.fa-wrench:before{content:"\f0ad"}.fa-x:before{content:"\58"}.fa-x-ray:before{content:"\f497"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-xmarks-lines:before{content:"\e59a"}.fa-y:before{content:"\59"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-z:before{content:"\5a"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/regular.css b/packages/themes/mfm/assets/fontawesome-free/css/regular.css deleted file mode 100644 index ed7304da35..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/regular.css +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/regular.min.css b/packages/themes/mfm/assets/fontawesome-free/css/regular.min.css deleted file mode 100644 index f98b44af6c..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/regular.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/solid.css b/packages/themes/mfm/assets/fontawesome-free/css/solid.css deleted file mode 100644 index 85f9b8503d..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/solid.css +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/solid.min.css b/packages/themes/mfm/assets/fontawesome-free/css/solid.min.css deleted file mode 100644 index 793fd43738..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/solid.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/svg-with-js.css b/packages/themes/mfm/assets/fontawesome-free/css/svg-with-js.css deleted file mode 100644 index 0f96c4860c..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/svg-with-js.css +++ /dev/null @@ -1,634 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid"; - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular"; - --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light"; - --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin"; - --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone"; - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa { - overflow: visible; - box-sizing: content-box; } - -.svg-inline--fa { - display: var(--fa-display, inline-block); - height: 1em; - overflow: visible; - vertical-align: -.125em; } - .svg-inline--fa.fa-2xs { - vertical-align: 0.1em; } - .svg-inline--fa.fa-xs { - vertical-align: 0em; } - .svg-inline--fa.fa-sm { - vertical-align: -0.07143em; } - .svg-inline--fa.fa-lg { - vertical-align: -0.2em; } - .svg-inline--fa.fa-xl { - vertical-align: -0.25em; } - .svg-inline--fa.fa-2xl { - vertical-align: -0.3125em; } - .svg-inline--fa.fa-pull-left { - margin-right: var(--fa-pull-margin, 0.3em); - width: auto; } - .svg-inline--fa.fa-pull-right { - margin-left: var(--fa-pull-margin, 0.3em); - width: auto; } - .svg-inline--fa.fa-li { - width: var(--fa-li-width, 2em); - top: 0.25em; } - .svg-inline--fa.fa-fw { - width: var(--fa-fw-width, 1.25em); } - -.fa-layers svg.svg-inline--fa { - bottom: 0; - left: 0; - margin: auto; - position: absolute; - right: 0; - top: 0; } - -.fa-layers-text, .fa-layers-counter { - display: inline-block; - position: absolute; - text-align: center; } - -.fa-layers { - display: inline-block; - height: 1em; - position: relative; - text-align: center; - vertical-align: -.125em; - width: 1em; } - .fa-layers svg.svg-inline--fa { - -webkit-transform-origin: center center; - transform-origin: center center; } - -.fa-layers-text { - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - -webkit-transform-origin: center center; - transform-origin: center center; } - -.fa-layers-counter { - background-color: var(--fa-counter-background-color, #ff253a); - border-radius: var(--fa-counter-border-radius, 1em); - box-sizing: border-box; - color: var(--fa-inverse, #fff); - line-height: var(--fa-counter-line-height, 1); - max-width: var(--fa-counter-max-width, 5em); - min-width: var(--fa-counter-min-width, 1.5em); - overflow: hidden; - padding: var(--fa-counter-padding, 0.25em 0.5em); - right: var(--fa-right, 0); - text-overflow: ellipsis; - top: var(--fa-top, 0); - -webkit-transform: scale(var(--fa-counter-scale, 0.25)); - transform: scale(var(--fa-counter-scale, 0.25)); - -webkit-transform-origin: top right; - transform-origin: top right; } - -.fa-layers-bottom-right { - bottom: var(--fa-bottom, 0); - right: var(--fa-right, 0); - top: auto; - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: bottom right; - transform-origin: bottom right; } - -.fa-layers-bottom-left { - bottom: var(--fa-bottom, 0); - left: var(--fa-left, 0); - right: auto; - top: auto; - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: bottom left; - transform-origin: bottom left; } - -.fa-layers-top-right { - top: var(--fa-top, 0); - right: var(--fa-right, 0); - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: top right; - transform-origin: top right; } - -.fa-layers-top-left { - left: var(--fa-left, 0); - right: auto; - top: var(--fa-top, 0); - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: top left; - transform-origin: top left; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - vertical-align: middle; - height: 2em; - position: relative; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - bottom: 0; - left: 0; - margin: auto; - position: absolute; - right: 0; - top: 0; - z-index: var(--fa-stack-z-index, auto); } - -.svg-inline--fa.fa-stack-1x { - height: 1em; - width: 1.25em; } - -.svg-inline--fa.fa-stack-2x { - height: 2em; - width: 2.5em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.svg-inline--fa .fa-primary { - fill: var(--fa-primary-color, currentColor); - opacity: var(--fa-primary-opacity, 1); } - -.svg-inline--fa .fa-secondary { - fill: var(--fa-secondary-color, currentColor); - opacity: var(--fa-secondary-opacity, 0.4); } - -.svg-inline--fa.fa-swap-opacity .fa-primary { - opacity: var(--fa-secondary-opacity, 0.4); } - -.svg-inline--fa.fa-swap-opacity .fa-secondary { - opacity: var(--fa-primary-opacity, 1); } - -.svg-inline--fa mask .fa-primary, -.svg-inline--fa mask .fa-secondary { - fill: black; } - -.fad.fa-inverse, -.fa-duotone.fa-inverse { - color: var(--fa-inverse, #fff); } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/svg-with-js.min.css b/packages/themes/mfm/assets/fontawesome-free/css/svg-with-js.min.css deleted file mode 100644 index 1e5aa4699f..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/svg-with-js.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";--fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";--fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";--fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display,inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0}.svg-inline--fa.fa-sm{vertical-align:-.07143em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width,2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--fa-fw-width,1.25em)}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-text{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter{background-color:var(--fa-counter-background-color,#ff253a);border-radius:var(--fa-counter-border-radius,1em);box-sizing:border-box;color:var(--fa-inverse,#fff);line-height:var(--fa-counter-line-height,1);max-width:var(--fa-counter-max-width,5em);min-width:var(--fa-counter-min-width,1.5em);overflow:hidden;padding:var(--fa-counter-padding,.25em .5em);right:var(--fa-right,0);text-overflow:ellipsis;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-counter-scale,.25));transform:scale(var(--fa-counter-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom,0);right:var(--fa-right,0);top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom,0);left:var(--fa-left,0);right:auto;top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top,0);right:var(--fa-right,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:var(--fa-left,0);right:auto;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top left;transform-origin:top left}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/v4-font-face.css b/packages/themes/mfm/assets/fontawesome-free/css/v4-font-face.css deleted file mode 100644 index cd93511aaa..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/v4-font-face.css +++ /dev/null @@ -1,26 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/v4-font-face.min.css b/packages/themes/mfm/assets/fontawesome-free/css/v4-font-face.min.css deleted file mode 100644 index aa10b8ccf8..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/v4-font-face.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f250,u+f252,u+f27a} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/v4-shims.css b/packages/themes/mfm/assets/fontawesome-free/css/v4-shims.css deleted file mode 100644 index 2080c37875..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/v4-shims.css +++ /dev/null @@ -1,2146 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa.fa-glass:before { - content: "\f000"; } - -.fa.fa-envelope-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-envelope-o:before { - content: "\f0e0"; } - -.fa.fa-star-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-o:before { - content: "\f005"; } - -.fa.fa-remove:before { - content: "\f00d"; } - -.fa.fa-close:before { - content: "\f00d"; } - -.fa.fa-gear:before { - content: "\f013"; } - -.fa.fa-trash-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-trash-o:before { - content: "\f2ed"; } - -.fa.fa-home:before { - content: "\f015"; } - -.fa.fa-file-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-o:before { - content: "\f15b"; } - -.fa.fa-clock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-clock-o:before { - content: "\f017"; } - -.fa.fa-arrow-circle-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-down:before { - content: "\f358"; } - -.fa.fa-arrow-circle-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-up:before { - content: "\f35b"; } - -.fa.fa-play-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-play-circle-o:before { - content: "\f144"; } - -.fa.fa-repeat:before { - content: "\f01e"; } - -.fa.fa-rotate-right:before { - content: "\f01e"; } - -.fa.fa-refresh:before { - content: "\f021"; } - -.fa.fa-list-alt { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-list-alt:before { - content: "\f022"; } - -.fa.fa-dedent:before { - content: "\f03b"; } - -.fa.fa-video-camera:before { - content: "\f03d"; } - -.fa.fa-picture-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-picture-o:before { - content: "\f03e"; } - -.fa.fa-photo { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-photo:before { - content: "\f03e"; } - -.fa.fa-image { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-image:before { - content: "\f03e"; } - -.fa.fa-map-marker:before { - content: "\f3c5"; } - -.fa.fa-pencil-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-pencil-square-o:before { - content: "\f044"; } - -.fa.fa-edit { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-edit:before { - content: "\f044"; } - -.fa.fa-share-square-o:before { - content: "\f14d"; } - -.fa.fa-check-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-check-square-o:before { - content: "\f14a"; } - -.fa.fa-arrows:before { - content: "\f0b2"; } - -.fa.fa-times-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-circle-o:before { - content: "\f057"; } - -.fa.fa-check-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-check-circle-o:before { - content: "\f058"; } - -.fa.fa-mail-forward:before { - content: "\f064"; } - -.fa.fa-expand:before { - content: "\f424"; } - -.fa.fa-compress:before { - content: "\f422"; } - -.fa.fa-eye { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-eye-slash { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-warning:before { - content: "\f071"; } - -.fa.fa-calendar:before { - content: "\f073"; } - -.fa.fa-arrows-v:before { - content: "\f338"; } - -.fa.fa-arrows-h:before { - content: "\f337"; } - -.fa.fa-bar-chart:before { - content: "\e0e3"; } - -.fa.fa-bar-chart-o:before { - content: "\e0e3"; } - -.fa.fa-twitter-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gears:before { - content: "\f085"; } - -.fa.fa-thumbs-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-thumbs-o-up:before { - content: "\f164"; } - -.fa.fa-thumbs-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-thumbs-o-down:before { - content: "\f165"; } - -.fa.fa-heart-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-heart-o:before { - content: "\f004"; } - -.fa.fa-sign-out:before { - content: "\f2f5"; } - -.fa.fa-linkedin-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linkedin-square:before { - content: "\f08c"; } - -.fa.fa-thumb-tack:before { - content: "\f08d"; } - -.fa.fa-external-link:before { - content: "\f35d"; } - -.fa.fa-sign-in:before { - content: "\f2f6"; } - -.fa.fa-github-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-lemon-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-lemon-o:before { - content: "\f094"; } - -.fa.fa-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-square-o:before { - content: "\f0c8"; } - -.fa.fa-bookmark-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bookmark-o:before { - content: "\f02e"; } - -.fa.fa-twitter { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook:before { - content: "\f39e"; } - -.fa.fa-facebook-f { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-f:before { - content: "\f39e"; } - -.fa.fa-github { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-credit-card { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-feed:before { - content: "\f09e"; } - -.fa.fa-hdd-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hdd-o:before { - content: "\f0a0"; } - -.fa.fa-hand-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-right:before { - content: "\f0a4"; } - -.fa.fa-hand-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-left:before { - content: "\f0a5"; } - -.fa.fa-hand-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-up:before { - content: "\f0a6"; } - -.fa.fa-hand-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-down:before { - content: "\f0a7"; } - -.fa.fa-globe:before { - content: "\f57d"; } - -.fa.fa-tasks:before { - content: "\f828"; } - -.fa.fa-arrows-alt:before { - content: "\f31e"; } - -.fa.fa-group:before { - content: "\f0c0"; } - -.fa.fa-chain:before { - content: "\f0c1"; } - -.fa.fa-cut:before { - content: "\f0c4"; } - -.fa.fa-files-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-files-o:before { - content: "\f0c5"; } - -.fa.fa-floppy-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-floppy-o:before { - content: "\f0c7"; } - -.fa.fa-save { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-save:before { - content: "\f0c7"; } - -.fa.fa-navicon:before { - content: "\f0c9"; } - -.fa.fa-reorder:before { - content: "\f0c9"; } - -.fa.fa-magic:before { - content: "\e2ca"; } - -.fa.fa-pinterest { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pinterest-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus:before { - content: "\f0d5"; } - -.fa.fa-money:before { - content: "\f3d1"; } - -.fa.fa-unsorted:before { - content: "\f0dc"; } - -.fa.fa-sort-desc:before { - content: "\f0dd"; } - -.fa.fa-sort-asc:before { - content: "\f0de"; } - -.fa.fa-linkedin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linkedin:before { - content: "\f0e1"; } - -.fa.fa-rotate-left:before { - content: "\f0e2"; } - -.fa.fa-legal:before { - content: "\f0e3"; } - -.fa.fa-tachometer:before { - content: "\f625"; } - -.fa.fa-dashboard:before { - content: "\f625"; } - -.fa.fa-comment-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-comment-o:before { - content: "\f075"; } - -.fa.fa-comments-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-comments-o:before { - content: "\f086"; } - -.fa.fa-flash:before { - content: "\f0e7"; } - -.fa.fa-clipboard:before { - content: "\f0ea"; } - -.fa.fa-lightbulb-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-lightbulb-o:before { - content: "\f0eb"; } - -.fa.fa-exchange:before { - content: "\f362"; } - -.fa.fa-cloud-download:before { - content: "\f0ed"; } - -.fa.fa-cloud-upload:before { - content: "\f0ee"; } - -.fa.fa-bell-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bell-o:before { - content: "\f0f3"; } - -.fa.fa-cutlery:before { - content: "\f2e7"; } - -.fa.fa-file-text-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-text-o:before { - content: "\f15c"; } - -.fa.fa-building-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-building-o:before { - content: "\f1ad"; } - -.fa.fa-hospital-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hospital-o:before { - content: "\f0f8"; } - -.fa.fa-tablet:before { - content: "\f3fa"; } - -.fa.fa-mobile:before { - content: "\f3cd"; } - -.fa.fa-mobile-phone:before { - content: "\f3cd"; } - -.fa.fa-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-circle-o:before { - content: "\f111"; } - -.fa.fa-mail-reply:before { - content: "\f3e5"; } - -.fa.fa-github-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-folder-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-folder-o:before { - content: "\f07b"; } - -.fa.fa-folder-open-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-folder-open-o:before { - content: "\f07c"; } - -.fa.fa-smile-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-smile-o:before { - content: "\f118"; } - -.fa.fa-frown-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-frown-o:before { - content: "\f119"; } - -.fa.fa-meh-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-meh-o:before { - content: "\f11a"; } - -.fa.fa-keyboard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-keyboard-o:before { - content: "\f11c"; } - -.fa.fa-flag-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-flag-o:before { - content: "\f024"; } - -.fa.fa-mail-reply-all:before { - content: "\f122"; } - -.fa.fa-star-half-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-o:before { - content: "\f5c0"; } - -.fa.fa-star-half-empty { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-empty:before { - content: "\f5c0"; } - -.fa.fa-star-half-full { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-full:before { - content: "\f5c0"; } - -.fa.fa-code-fork:before { - content: "\f126"; } - -.fa.fa-chain-broken:before { - content: "\f127"; } - -.fa.fa-unlink:before { - content: "\f127"; } - -.fa.fa-calendar-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-o:before { - content: "\f133"; } - -.fa.fa-maxcdn { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-html5 { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-css3 { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-unlock-alt:before { - content: "\f09c"; } - -.fa.fa-minus-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-minus-square-o:before { - content: "\f146"; } - -.fa.fa-level-up:before { - content: "\f3bf"; } - -.fa.fa-level-down:before { - content: "\f3be"; } - -.fa.fa-pencil-square:before { - content: "\f14b"; } - -.fa.fa-external-link-square:before { - content: "\f360"; } - -.fa.fa-compass { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-down:before { - content: "\f150"; } - -.fa.fa-toggle-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-down:before { - content: "\f150"; } - -.fa.fa-caret-square-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-up:before { - content: "\f151"; } - -.fa.fa-toggle-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-up:before { - content: "\f151"; } - -.fa.fa-caret-square-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-right:before { - content: "\f152"; } - -.fa.fa-toggle-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-right:before { - content: "\f152"; } - -.fa.fa-eur:before { - content: "\f153"; } - -.fa.fa-euro:before { - content: "\f153"; } - -.fa.fa-gbp:before { - content: "\f154"; } - -.fa.fa-usd:before { - content: "\24"; } - -.fa.fa-dollar:before { - content: "\24"; } - -.fa.fa-inr:before { - content: "\e1bc"; } - -.fa.fa-rupee:before { - content: "\e1bc"; } - -.fa.fa-jpy:before { - content: "\f157"; } - -.fa.fa-cny:before { - content: "\f157"; } - -.fa.fa-rmb:before { - content: "\f157"; } - -.fa.fa-yen:before { - content: "\f157"; } - -.fa.fa-rub:before { - content: "\f158"; } - -.fa.fa-ruble:before { - content: "\f158"; } - -.fa.fa-rouble:before { - content: "\f158"; } - -.fa.fa-krw:before { - content: "\f159"; } - -.fa.fa-won:before { - content: "\f159"; } - -.fa.fa-btc { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitcoin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitcoin:before { - content: "\f15a"; } - -.fa.fa-file-text:before { - content: "\f15c"; } - -.fa.fa-sort-alpha-asc:before { - content: "\f15d"; } - -.fa.fa-sort-alpha-desc:before { - content: "\f881"; } - -.fa.fa-sort-amount-asc:before { - content: "\f884"; } - -.fa.fa-sort-amount-desc:before { - content: "\f160"; } - -.fa.fa-sort-numeric-asc:before { - content: "\f162"; } - -.fa.fa-sort-numeric-desc:before { - content: "\f886"; } - -.fa.fa-youtube-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-xing { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-xing-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube-play { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube-play:before { - content: "\f167"; } - -.fa.fa-dropbox { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stack-overflow { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-instagram { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-flickr { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-adn { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket-square:before { - content: "\f171"; } - -.fa.fa-tumblr { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-tumblr-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-long-arrow-down:before { - content: "\f309"; } - -.fa.fa-long-arrow-up:before { - content: "\f30c"; } - -.fa.fa-long-arrow-left:before { - content: "\f30a"; } - -.fa.fa-long-arrow-right:before { - content: "\f30b"; } - -.fa.fa-apple { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-windows { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-android { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linux { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-dribbble { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-skype { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-foursquare { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-trello { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gratipay { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gittip { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gittip:before { - content: "\f184"; } - -.fa.fa-sun-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sun-o:before { - content: "\f185"; } - -.fa.fa-moon-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-moon-o:before { - content: "\f186"; } - -.fa.fa-vk { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-weibo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-renren { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pagelines { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stack-exchange { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-right:before { - content: "\f35a"; } - -.fa.fa-arrow-circle-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-left:before { - content: "\f359"; } - -.fa.fa-caret-square-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-left:before { - content: "\f191"; } - -.fa.fa-toggle-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-left:before { - content: "\f191"; } - -.fa.fa-dot-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-dot-circle-o:before { - content: "\f192"; } - -.fa.fa-vimeo-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-try:before { - content: "\e2bb"; } - -.fa.fa-turkish-lira:before { - content: "\e2bb"; } - -.fa.fa-plus-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-plus-square-o:before { - content: "\f0fe"; } - -.fa.fa-slack { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wordpress { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-openid { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-institution:before { - content: "\f19c"; } - -.fa.fa-bank:before { - content: "\f19c"; } - -.fa.fa-mortar-board:before { - content: "\f19d"; } - -.fa.fa-yahoo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stumbleupon-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stumbleupon { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-delicious { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-digg { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper-pp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-drupal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-joomla { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-behance { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-behance-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-steam { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-steam-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-automobile:before { - content: "\f1b9"; } - -.fa.fa-cab:before { - content: "\f1ba"; } - -.fa.fa-spotify { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-deviantart { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-soundcloud { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-file-pdf-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-pdf-o:before { - content: "\f1c1"; } - -.fa.fa-file-word-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-word-o:before { - content: "\f1c2"; } - -.fa.fa-file-excel-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-excel-o:before { - content: "\f1c3"; } - -.fa.fa-file-powerpoint-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-powerpoint-o:before { - content: "\f1c4"; } - -.fa.fa-file-image-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-image-o:before { - content: "\f1c5"; } - -.fa.fa-file-photo-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-photo-o:before { - content: "\f1c5"; } - -.fa.fa-file-picture-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-picture-o:before { - content: "\f1c5"; } - -.fa.fa-file-archive-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-archive-o:before { - content: "\f1c6"; } - -.fa.fa-file-zip-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-zip-o:before { - content: "\f1c6"; } - -.fa.fa-file-audio-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-audio-o:before { - content: "\f1c7"; } - -.fa.fa-file-sound-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-sound-o:before { - content: "\f1c7"; } - -.fa.fa-file-video-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-video-o:before { - content: "\f1c8"; } - -.fa.fa-file-movie-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-movie-o:before { - content: "\f1c8"; } - -.fa.fa-file-code-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-code-o:before { - content: "\f1c9"; } - -.fa.fa-vine { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-codepen { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-jsfiddle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-life-bouy:before { - content: "\f1cd"; } - -.fa.fa-life-buoy:before { - content: "\f1cd"; } - -.fa.fa-life-saver:before { - content: "\f1cd"; } - -.fa.fa-support:before { - content: "\f1cd"; } - -.fa.fa-circle-o-notch:before { - content: "\f1ce"; } - -.fa.fa-rebel { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ra { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ra:before { - content: "\f1d0"; } - -.fa.fa-resistance { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-resistance:before { - content: "\f1d0"; } - -.fa.fa-empire { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ge { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ge:before { - content: "\f1d1"; } - -.fa.fa-git-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-git { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-hacker-news { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator-square:before { - content: "\f1d4"; } - -.fa.fa-yc-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc-square:before { - content: "\f1d4"; } - -.fa.fa-tencent-weibo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-qq { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-weixin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wechat { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wechat:before { - content: "\f1d7"; } - -.fa.fa-send:before { - content: "\f1d8"; } - -.fa.fa-paper-plane-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-paper-plane-o:before { - content: "\f1d8"; } - -.fa.fa-send-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-send-o:before { - content: "\f1d8"; } - -.fa.fa-circle-thin { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-circle-thin:before { - content: "\f111"; } - -.fa.fa-header:before { - content: "\f1dc"; } - -.fa.fa-futbol-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-futbol-o:before { - content: "\f1e3"; } - -.fa.fa-soccer-ball-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-soccer-ball-o:before { - content: "\f1e3"; } - -.fa.fa-slideshare { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-twitch { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yelp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-newspaper-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-newspaper-o:before { - content: "\f1ea"; } - -.fa.fa-paypal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-wallet { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-visa { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-mastercard { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-discover { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-amex { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-paypal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-stripe { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bell-slash-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bell-slash-o:before { - content: "\f1f6"; } - -.fa.fa-trash:before { - content: "\f2ed"; } - -.fa.fa-copyright { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-eyedropper:before { - content: "\f1fb"; } - -.fa.fa-area-chart:before { - content: "\f1fe"; } - -.fa.fa-pie-chart:before { - content: "\f200"; } - -.fa.fa-line-chart:before { - content: "\f201"; } - -.fa.fa-lastfm { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-lastfm-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ioxhost { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-angellist { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-cc:before { - content: "\f20a"; } - -.fa.fa-ils:before { - content: "\f20b"; } - -.fa.fa-shekel:before { - content: "\f20b"; } - -.fa.fa-sheqel:before { - content: "\f20b"; } - -.fa.fa-buysellads { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-connectdevelop { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-dashcube { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-forumbee { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-leanpub { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-sellsy { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-shirtsinbulk { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-simplybuilt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-skyatlas { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-diamond { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-diamond:before { - content: "\f3a5"; } - -.fa.fa-transgender:before { - content: "\f224"; } - -.fa.fa-intersex:before { - content: "\f224"; } - -.fa.fa-transgender-alt:before { - content: "\f225"; } - -.fa.fa-facebook-official { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-official:before { - content: "\f09a"; } - -.fa.fa-pinterest-p { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-whatsapp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-hotel:before { - content: "\f236"; } - -.fa.fa-viacoin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-medium { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc:before { - content: "\f23b"; } - -.fa.fa-optin-monster { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-opencart { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-expeditedssl { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-battery-4:before { - content: "\f240"; } - -.fa.fa-battery:before { - content: "\f240"; } - -.fa.fa-battery-3:before { - content: "\f241"; } - -.fa.fa-battery-2:before { - content: "\f242"; } - -.fa.fa-battery-1:before { - content: "\f243"; } - -.fa.fa-battery-0:before { - content: "\f244"; } - -.fa.fa-object-group { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-object-ungroup { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sticky-note-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sticky-note-o:before { - content: "\f249"; } - -.fa.fa-cc-jcb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-diners-club { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-clone { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hourglass-o:before { - content: "\f252"; } - -.fa.fa-hourglass-1:before { - content: "\f251"; } - -.fa.fa-hourglass-half:before { - content: "\f254"; } - -.fa.fa-hourglass-2:before { - content: "\f254"; } - -.fa.fa-hourglass-3:before { - content: "\f253"; } - -.fa.fa-hand-rock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-rock-o:before { - content: "\f255"; } - -.fa.fa-hand-grab-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-grab-o:before { - content: "\f255"; } - -.fa.fa-hand-paper-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-paper-o:before { - content: "\f256"; } - -.fa.fa-hand-stop-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-stop-o:before { - content: "\f256"; } - -.fa.fa-hand-scissors-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-scissors-o:before { - content: "\f257"; } - -.fa.fa-hand-lizard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-lizard-o:before { - content: "\f258"; } - -.fa.fa-hand-spock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-spock-o:before { - content: "\f259"; } - -.fa.fa-hand-pointer-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-pointer-o:before { - content: "\f25a"; } - -.fa.fa-hand-peace-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-peace-o:before { - content: "\f25b"; } - -.fa.fa-registered { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-creative-commons { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gg { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gg-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-odnoklassniki { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-odnoklassniki-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-get-pocket { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wikipedia-w { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-safari { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-chrome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-firefox { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-opera { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-internet-explorer { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-television:before { - content: "\f26c"; } - -.fa.fa-contao { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-500px { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-amazon { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-calendar-plus-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-plus-o:before { - content: "\f271"; } - -.fa.fa-calendar-minus-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-minus-o:before { - content: "\f272"; } - -.fa.fa-calendar-times-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-times-o:before { - content: "\f273"; } - -.fa.fa-calendar-check-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-check-o:before { - content: "\f274"; } - -.fa.fa-map-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-map-o:before { - content: "\f279"; } - -.fa.fa-commenting:before { - content: "\f4ad"; } - -.fa.fa-commenting-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-commenting-o:before { - content: "\f4ad"; } - -.fa.fa-houzz { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-vimeo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-vimeo:before { - content: "\f27d"; } - -.fa.fa-black-tie { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fonticons { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit-alien { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-edge { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-credit-card-alt:before { - content: "\f09d"; } - -.fa.fa-codiepie { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-modx { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fort-awesome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-usb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-product-hunt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-mixcloud { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-scribd { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pause-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-pause-circle-o:before { - content: "\f28b"; } - -.fa.fa-stop-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-stop-circle-o:before { - content: "\f28d"; } - -.fa.fa-bluetooth { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bluetooth-b { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gitlab { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpbeginner { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpforms { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-envira { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wheelchair-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wheelchair-alt:before { - content: "\f368"; } - -.fa.fa-question-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-question-circle-o:before { - content: "\f059"; } - -.fa.fa-volume-control-phone:before { - content: "\f2a0"; } - -.fa.fa-asl-interpreting:before { - content: "\f2a3"; } - -.fa.fa-deafness:before { - content: "\f2a4"; } - -.fa.fa-hard-of-hearing:before { - content: "\f2a4"; } - -.fa.fa-glide { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-glide-g { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-signing:before { - content: "\f2a7"; } - -.fa.fa-viadeo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-viadeo-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat-ghost { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa.fa-snapchat-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-first-order { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yoast { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-themeisle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-official { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-official:before { - content: "\f2b3"; } - -.fa.fa-google-plus-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-circle:before { - content: "\f2b3"; } - -.fa.fa-font-awesome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fa { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fa:before { - content: "\f2b4"; } - -.fa.fa-handshake-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-handshake-o:before { - content: "\f2b5"; } - -.fa.fa-envelope-open-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-envelope-open-o:before { - content: "\f2b6"; } - -.fa.fa-linode { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-address-book-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-address-book-o:before { - content: "\f2b9"; } - -.fa.fa-vcard:before { - content: "\f2bb"; } - -.fa.fa-address-card-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-address-card-o:before { - content: "\f2bb"; } - -.fa.fa-vcard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-vcard-o:before { - content: "\f2bb"; } - -.fa.fa-user-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-user-circle-o:before { - content: "\f2bd"; } - -.fa.fa-user-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-user-o:before { - content: "\f007"; } - -.fa.fa-id-badge { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-drivers-license:before { - content: "\f2c2"; } - -.fa.fa-id-card-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-id-card-o:before { - content: "\f2c2"; } - -.fa.fa-drivers-license-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-drivers-license-o:before { - content: "\f2c2"; } - -.fa.fa-quora { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-free-code-camp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-telegram { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-thermometer-4:before { - content: "\f2c7"; } - -.fa.fa-thermometer:before { - content: "\f2c7"; } - -.fa.fa-thermometer-3:before { - content: "\f2c8"; } - -.fa.fa-thermometer-2:before { - content: "\f2c9"; } - -.fa.fa-thermometer-1:before { - content: "\f2ca"; } - -.fa.fa-thermometer-0:before { - content: "\f2cb"; } - -.fa.fa-bathtub:before { - content: "\f2cd"; } - -.fa.fa-s15:before { - content: "\f2cd"; } - -.fa.fa-window-maximize { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-window-restore { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-rectangle:before { - content: "\f410"; } - -.fa.fa-window-close-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-window-close-o:before { - content: "\f410"; } - -.fa.fa-times-rectangle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-rectangle-o:before { - content: "\f410"; } - -.fa.fa-bandcamp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-grav { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-etsy { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-imdb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ravelry { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-eercast { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-eercast:before { - content: "\f2da"; } - -.fa.fa-snowflake-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-snowflake-o:before { - content: "\f2dc"; } - -.fa.fa-superpowers { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpexplorer { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-meetup { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/v4-shims.min.css b/packages/themes/mfm/assets/fontawesome-free/css/v4-shims.min.css deleted file mode 100644 index f742adcbe9..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/v4-shims.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-steam,.fa.fa-steam-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f252"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before,.fa.fa-hourglass-half:before{content:"\f254"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/css/v5-font-face.css b/packages/themes/mfm/assets/fontawesome-free/css/v5-font-face.css deleted file mode 100644 index 9bb8bf4523..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/v5-font-face.css +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } diff --git a/packages/themes/mfm/assets/fontawesome-free/css/v5-font-face.min.css b/packages/themes/mfm/assets/fontawesome-free/css/v5-font-face.min.css deleted file mode 100644 index 7d67a7836a..0000000000 --- a/packages/themes/mfm/assets/fontawesome-free/css/v5-font-face.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} \ No newline at end of file diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-brands-400.ttf b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-brands-400.ttf deleted file mode 100644 index 430a02edc6..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-brands-400.ttf and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-brands-400.woff2 b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-brands-400.woff2 deleted file mode 100644 index 4d904aab4f..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-brands-400.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-regular-400.ttf b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-regular-400.ttf deleted file mode 100644 index 23e3febe0d..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-regular-400.ttf and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-regular-400.woff2 b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-regular-400.woff2 deleted file mode 100644 index 80e3b1247c..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-regular-400.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-solid-900.ttf b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-solid-900.ttf deleted file mode 100644 index da9082420e..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-solid-900.ttf and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-solid-900.woff2 b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-solid-900.woff2 deleted file mode 100644 index 360ba11557..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-solid-900.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf deleted file mode 100644 index e9545ed579..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf and /dev/null differ diff --git a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 b/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 deleted file mode 100644 index db5b0b9973..0000000000 Binary files a/packages/themes/mfm/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/LICENSE b/packages/themes/mfm/assets/material-icons/LICENSE deleted file mode 100644 index d645695673..0000000000 --- a/packages/themes/mfm/assets/material-icons/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/packages/themes/mfm/assets/material-icons/README.md b/packages/themes/mfm/assets/material-icons/README.md deleted file mode 100644 index 93780db115..0000000000 --- a/packages/themes/mfm/assets/material-icons/README.md +++ /dev/null @@ -1,129 +0,0 @@ -# [material-icons](https://github.com/marella/material-icons) [![Downloads](https://img.shields.io/npm/dm/material-icons)](https://www.npmjs.com/package/material-icons) - -Latest icon fonts and CSS for self-hosting material design icons. - -> This package is automatically updated, so it will always have the latest icons from Google. - -> For Material Symbols, see [`material-symbols`](https://www.npmjs.com/package/material-symbols) -> -> For SVGs, see [`@material-design-icons/svg`](https://www.npmjs.com/package/@material-design-icons/svg) - -- [Installation](#installation) -- [Usage](#usage) -- [Available Icons](#available-icons) - -## Installation - -Install the [latest version][releases] using: - -```sh -npm install material-icons@latest -``` - -> **Note:** If you are upgrading from 0.x to 1.x see the [1.0.0 release notes](https://github.com/marella/material-icons/releases/tag/v1.0.0). - -## Usage - -Import in JS (example: `src/index.js` in Create React App, `src/main.js` in Vue CLI): - -```js -import 'material-icons/iconfont/material-icons.css'; -``` - -or import in CSS (example: `src/styles.css` in Angular CLI): - -```css -@import 'material-icons/iconfont/material-icons.css'; -``` - -or import in HTML: - -```html - -``` - -To display an icon, use one of the following: - -```html -pie_chart -pie_chart -pie_chart -pie_chart -pie_chart -``` - -### Reducing Build Size - -The default `material-icons.css` includes CSS for all fonts. This may cause build tools such as webpack to copy all fonts to the build directory even if you are not using all of them. To reduce the build size, import only the styles you need. For example, if you only need filled and outlined icons, import `filled.css` and `outlined.css` instead of the default `material-icons.css`: - -```diff --import 'material-icons/iconfont/material-icons.css'; -+import 'material-icons/iconfont/filled.css'; -+import 'material-icons/iconfont/outlined.css'; -``` - -
    -Show all
    - -Icons | CSS | Sass -:--- | :--- | :--- -Filled | filled.css | filled.scss -Outlined | outlined.css | outlined.scss -Round | round.css | round.scss -Sharp | sharp.css | sharp.scss -Two Tone | two-tone.css | two-tone.scss - -
    - -### Using Sass - -Import in Sass (example: `src/styles.scss` in Angular CLI): - -```scss -@import 'material-icons/iconfont/material-icons.scss'; -``` - -Available Sass variables: - -```scss -$material-icons-font-path: './' !default; -$material-icons-font-size: 24px !default; -$material-icons-font-display: block !default; -``` - -If you are getting errors with webpack or Vue CLI, add this line before importing: - -```scss -$material-icons-font-path: '~material-icons/iconfont/'; -``` - -### Using Angular `mat-icon` - -To display an icon, use one of the following: - -```html -pie_chart -pie_chart -pie_chart -pie_chart -pie_chart -``` - -### Using CSS Classes - -Alternatively, you may use CSS classes instead of ligatures to display icons. [Learn more](https://github.com/marella/material-icons/tree/main/css#readme) - -## Available Icons - -See [demo]. - -## License - -Material design icons are created by [Google](https://github.com/google/material-design-icons#license). - -> We have made these icons available for you to incorporate into your products under the [Apache License Version 2.0][license]. Feel free to remix and re-share these icons and documentation in your products. -We'd love attribution in your app's *about* screen, but it's not required. - -[releases]: https://github.com/marella/material-icons/releases -[license]: https://github.com/marella/material-icons/blob/main/LICENSE -[demo]: https://marella.github.io/material-icons/demo/ diff --git a/packages/themes/mfm/assets/material-icons/_data/versions.json b/packages/themes/mfm/assets/material-icons/_data/versions.json deleted file mode 100644 index 2a29cdb2af..0000000000 --- a/packages/themes/mfm/assets/material-icons/_data/versions.json +++ /dev/null @@ -1,2124 +0,0 @@ -{ - "123": 1, - "360": 14, - "10k": 10, - "10mp": 10, - "11mp": 10, - "12mp": 10, - "13mp": 10, - "14mp": 10, - "15mp": 10, - "16mp": 10, - "17mp": 10, - "18_up_rating": 1, - "18mp": 10, - "19mp": 10, - "1k": 10, - "1k_plus": 10, - "1x_mobiledata": 9, - "20mp": 10, - "21mp": 10, - "22mp": 10, - "23mp": 10, - "24mp": 10, - "2k": 10, - "2k_plus": 10, - "2mp": 10, - "30fps": 10, - "30fps_select": 10, - "3d_rotation": 17, - "3g_mobiledata": 9, - "3k": 10, - "3k_plus": 10, - "3mp": 10, - "3p": 11, - "4g_mobiledata": 9, - "4g_plus_mobiledata": 9, - "4k": 11, - "4k_plus": 10, - "4mp": 10, - "5g": 13, - "5k": 10, - "5k_plus": 10, - "5mp": 10, - "60fps": 10, - "60fps_select": 10, - "6_ft_apart": 9, - "6k": 10, - "6k_plus": 10, - "6mp": 10, - "7k": 10, - "7k_plus": 10, - "7mp": 10, - "8k": 11, - "8k_plus": 11, - "8mp": 10, - "9k": 10, - "9k_plus": 10, - "9mp": 10, - "abc": 1, - "ac_unit": 12, - "access_alarm": 12, - "access_alarms": 12, - "access_time": 12, - "access_time_filled": 10, - "accessibility": 13, - "accessibility_new": 13, - "accessible": 13, - "accessible_forward": 13, - "account_balance": 19, - "account_balance_wallet": 12, - "account_box": 14, - "account_circle": 20, - "account_tree": 12, - "ad_units": 13, - "adb": 12, - "add": 21, - "add_a_photo": 14, - "add_alarm": 13, - "add_alert": 16, - "add_box": 13, - "add_business": 17, - "add_card": 1, - "add_chart": 10, - "add_circle": 13, - "add_circle_outline": 16, - "add_comment": 11, - "add_home": 1, - "add_home_work": 1, - "add_ic_call": 12, - "add_link": 11, - "add_location": 16, - "add_location_alt": 13, - "add_moderator": 12, - "add_photo_alternate": 12, - "add_reaction": 9, - "add_road": 12, - "add_shopping_cart": 15, - "add_task": 6, - "add_to_drive": 18, - "add_to_home_screen": 12, - "add_to_photos": 12, - "add_to_queue": 11, - "addchart": 13, - "adf_scanner": 2, - "adjust": 12, - "admin_panel_settings": 13, - "ads_click": 3, - "agriculture": 11, - "air": 10, - "airline_seat_flat": 12, - "airline_seat_flat_angled": 12, - "airline_seat_individual_suite": 11, - "airline_seat_legroom_extra": 12, - "airline_seat_legroom_normal": 12, - "airline_seat_legroom_reduced": 12, - "airline_seat_recline_extra": 12, - "airline_seat_recline_normal": 12, - "airline_stops": 2, - "airlines": 2, - "airplane_ticket": 11, - "airplanemode_active": 16, - "airplanemode_inactive": 17, - "airplay": 13, - "airport_shuttle": 12, - "alarm": 12, - "alarm_add": 12, - "alarm_off": 12, - "alarm_on": 12, - "album": 12, - "align_horizontal_center": 6, - "align_horizontal_left": 7, - "align_horizontal_right": 7, - "align_vertical_bottom": 6, - "align_vertical_center": 6, - "align_vertical_top": 6, - "all_inbox": 11, - "all_inclusive": 11, - "all_out": 12, - "alt_route": 9, - "alternate_email": 13, - "analytics": 12, - "anchor": 7, - "android": 15, - "animation": 14, - "announcement": 18, - "aod": 10, - "apartment": 11, - "api": 7, - "app_blocking": 13, - "app_registration": 11, - "app_settings_alt": 17, - "app_shortcut": 1, - "approval": 11, - "apps": 12, - "apps_outage": 2, - "architecture": 11, - "archive": 16, - "area_chart": 3, - "arrow_back": 17, - "arrow_back_ios": 14, - "arrow_back_ios_new": 6, - "arrow_circle_down": 8, - "arrow_circle_left": 2, - "arrow_circle_right": 2, - "arrow_circle_up": 8, - "arrow_downward": 17, - "arrow_drop_down": 16, - "arrow_drop_down_circle": 12, - "arrow_drop_up": 12, - "arrow_forward": 13, - "arrow_forward_ios": 16, - "arrow_left": 12, - "arrow_outward": 1, - "arrow_right": 12, - "arrow_right_alt": 13, - "arrow_upward": 11, - "art_track": 13, - "article": 13, - "aspect_ratio": 12, - "assessment": 12, - "assignment": 15, - "assignment_ind": 12, - "assignment_late": 15, - "assignment_return": 14, - "assignment_returned": 12, - "assignment_turned_in": 16, - "assist_walker": 1, - "assistant": 12, - "assistant_direction": 11, - "assistant_photo": 12, - "assured_workload": 1, - "atm": 12, - "attach_email": 16, - "attach_file": 16, - "attach_money": 17, - "attachment": 15, - "attractions": 10, - "attribution": 11, - "audio_file": 1, - "audiotrack": 12, - "auto_awesome": 14, - "auto_awesome_mosaic": 14, - "auto_awesome_motion": 14, - "auto_delete": 11, - "auto_fix_high": 14, - "auto_fix_normal": 14, - "auto_fix_off": 13, - "auto_graph": 4, - "auto_mode": 1, - "auto_stories": 13, - "autofps_select": 10, - "autorenew": 12, - "av_timer": 12, - "baby_changing_station": 8, - "back_hand": 3, - "backpack": 8, - "backspace": 13, - "backup": 15, - "backup_table": 11, - "badge": 11, - "bakery_dining": 11, - "balance": 1, - "balcony": 4, - "ballot": 14, - "bar_chart": 13, - "batch_prediction": 12, - "bathroom": 10, - "bathtub": 11, - "battery_0_bar": 1, - "battery_1_bar": 1, - "battery_2_bar": 1, - "battery_3_bar": 1, - "battery_4_bar": 1, - "battery_5_bar": 1, - "battery_6_bar": 1, - "battery_alert": 12, - "battery_charging_full": 12, - "battery_full": 12, - "battery_saver": 9, - "battery_std": 12, - "battery_unknown": 13, - "beach_access": 12, - "bed": 10, - "bedroom_baby": 9, - "bedroom_child": 9, - "bedroom_parent": 9, - "bedtime": 15, - "bedtime_off": 2, - "beenhere": 12, - "bento": 6, - "bike_scooter": 11, - "biotech": 11, - "blender": 9, - "blind": 1, - "blinds": 3, - "blinds_closed": 1, - "block": 17, - "bloodtype": 10, - "bluetooth": 11, - "bluetooth_audio": 12, - "bluetooth_connected": 12, - "bluetooth_disabled": 17, - "bluetooth_drive": 9, - "bluetooth_searching": 13, - "blur_circular": 12, - "blur_linear": 12, - "blur_off": 12, - "blur_on": 12, - "bolt": 10, - "book": 16, - "book_online": 10, - "bookmark": 17, - "bookmark_add": 3, - "bookmark_added": 3, - "bookmark_border": 12, - "bookmark_remove": 3, - "bookmarks": 12, - "border_all": 12, - "border_bottom": 12, - "border_clear": 12, - "border_color": 15, - "border_horizontal": 12, - "border_inner": 12, - "border_left": 12, - "border_outer": 12, - "border_right": 12, - "border_style": 12, - "border_top": 12, - "border_vertical": 12, - "boy": 1, - "branding_watermark": 13, - "breakfast_dining": 11, - "brightness_1": 19, - "brightness_2": 12, - "brightness_3": 16, - "brightness_4": 16, - "brightness_5": 12, - "brightness_6": 12, - "brightness_7": 13, - "brightness_auto": 12, - "brightness_high": 13, - "brightness_low": 12, - "brightness_medium": 12, - "broadcast_on_home": 1, - "broadcast_on_personal": 1, - "broken_image": 11, - "browse_gallery": 1, - "browser_not_supported": 12, - "browser_updated": 2, - "brunch_dining": 11, - "brush": 13, - "bubble_chart": 12, - "bug_report": 12, - "build": 12, - "build_circle": 14, - "bungalow": 4, - "burst_mode": 12, - "bus_alert": 15, - "business": 12, - "business_center": 15, - "cabin": 4, - "cable": 10, - "cached": 13, - "cake": 13, - "calculate": 11, - "calendar_month": 1, - "calendar_today": 12, - "calendar_view_day": 15, - "calendar_view_month": 10, - "calendar_view_week": 10, - "call": 17, - "call_end": 16, - "call_made": 13, - "call_merge": 13, - "call_missed": 13, - "call_missed_outgoing": 15, - "call_received": 13, - "call_split": 13, - "call_to_action": 11, - "camera": 12, - "camera_alt": 12, - "camera_enhance": 12, - "camera_front": 12, - "camera_indoor": 9, - "camera_outdoor": 9, - "camera_rear": 13, - "camera_roll": 12, - "cameraswitch": 10, - "campaign": 12, - "cancel": 16, - "cancel_presentation": 14, - "cancel_schedule_send": 12, - "candlestick_chart": 2, - "car_crash": 1, - "car_rental": 10, - "car_repair": 10, - "card_giftcard": 14, - "card_membership": 14, - "card_travel": 13, - "carpenter": 6, - "cases": 11, - "casino": 13, - "cast": 18, - "cast_connected": 13, - "cast_for_education": 14, - "castle": 2, - "catching_pokemon": 4, - "category": 12, - "celebration": 11, - "cell_tower": 1, - "cell_wifi": 14, - "center_focus_strong": 12, - "center_focus_weak": 12, - "chair": 10, - "chair_alt": 9, - "chalet": 4, - "change_circle": 8, - "change_history": 11, - "charging_station": 8, - "chat": 19, - "chat_bubble": 15, - "chat_bubble_outline": 18, - "check": 18, - "check_box": 16, - "check_box_outline_blank": 16, - "check_circle": 19, - "check_circle_outline": 12, - "checklist": 3, - "checklist_rtl": 3, - "checkroom": 8, - "chevron_left": 16, - "chevron_right": 16, - "child_care": 12, - "child_friendly": 12, - "chrome_reader_mode": 12, - "church": 2, - "circle": 11, - "circle_notifications": 11, - "class": 11, - "clean_hands": 7, - "cleaning_services": 12, - "clear": 12, - "clear_all": 12, - "close": 19, - "close_fullscreen": 7, - "closed_caption": 12, - "closed_caption_disabled": 8, - "closed_caption_off": 11, - "cloud": 12, - "cloud_circle": 12, - "cloud_done": 12, - "cloud_download": 12, - "cloud_off": 16, - "cloud_queue": 12, - "cloud_sync": 1, - "cloud_upload": 12, - "co2": 3, - "co_present": 1, - "code": 11, - "code_off": 4, - "coffee": 9, - "coffee_maker": 9, - "collections": 12, - "collections_bookmark": 12, - "color_lens": 16, - "colorize": 12, - "comment": 19, - "comment_bank": 15, - "comments_disabled": 3, - "commit": 1, - "commute": 12, - "compare": 12, - "compare_arrows": 14, - "compass_calibration": 12, - "compost": 3, - "compress": 10, - "computer": 12, - "confirmation_number": 15, - "connect_without_contact": 7, - "connected_tv": 11, - "connecting_airports": 2, - "construction": 11, - "contact_emergency": 1, - "contact_mail": 13, - "contact_page": 6, - "contact_phone": 13, - "contact_support": 13, - "contactless": 11, - "contacts": 11, - "content_copy": 17, - "content_cut": 17, - "content_paste": 14, - "content_paste_go": 2, - "content_paste_off": 4, - "content_paste_search": 2, - "contrast": 1, - "control_camera": 12, - "control_point": 13, - "control_point_duplicate": 12, - "cookie": 2, - "copy_all": 8, - "copyright": 17, - "coronavirus": 7, - "corporate_fare": 7, - "cottage": 4, - "countertops": 6, - "create": 16, - "create_new_folder": 11, - "credit_card": 12, - "credit_card_off": 4, - "credit_score": 10, - "crib": 4, - "crisis_alert": 1, - "crop": 12, - "crop_16_9": 13, - "crop_3_2": 13, - "crop_5_4": 13, - "crop_7_5": 13, - "crop_din": 12, - "crop_free": 12, - "crop_landscape": 12, - "crop_original": 13, - "crop_portrait": 12, - "crop_rotate": 12, - "crop_square": 12, - "cruelty_free": 3, - "css": 1, - "currency_bitcoin": 1, - "currency_exchange": 1, - "currency_franc": 1, - "currency_lira": 1, - "currency_pound": 1, - "currency_ruble": 1, - "currency_rupee": 1, - "currency_yen": 1, - "currency_yuan": 1, - "curtains": 1, - "curtains_closed": 1, - "cyclone": 1, - "dangerous": 12, - "dark_mode": 4, - "dashboard": 13, - "dashboard_customize": 11, - "data_array": 2, - "data_exploration": 3, - "data_object": 2, - "data_saver_off": 10, - "data_saver_on": 10, - "data_thresholding": 1, - "data_usage": 12, - "dataset": 1, - "dataset_linked": 1, - "date_range": 12, - "deblur": 1, - "deck": 11, - "dehaze": 12, - "delete": 17, - "delete_forever": 15, - "delete_outline": 11, - "delete_sweep": 12, - "delivery_dining": 15, - "density_large": 1, - "density_medium": 1, - "density_small": 1, - "departure_board": 11, - "description": 12, - "deselect": 1, - "design_services": 12, - "desk": 1, - "desktop_access_disabled": 11, - "desktop_mac": 17, - "desktop_windows": 13, - "details": 16, - "developer_board": 13, - "developer_board_off": 4, - "developer_mode": 12, - "device_hub": 12, - "device_thermostat": 11, - "device_unknown": 12, - "devices": 17, - "devices_fold": 1, - "devices_other": 12, - "dialer_sip": 12, - "dialpad": 12, - "diamond": 2, - "difference": 1, - "dining": 9, - "dinner_dining": 10, - "directions": 14, - "directions_bike": 13, - "directions_boat": 17, - "directions_boat_filled": 16, - "directions_bus": 12, - "directions_bus_filled": 10, - "directions_car": 18, - "directions_car_filled": 10, - "directions_off": 14, - "directions_railway": 13, - "directions_railway_filled": 10, - "directions_run": 13, - "directions_subway": 12, - "directions_subway_filled": 10, - "directions_transit": 12, - "directions_transit_filled": 10, - "directions_walk": 13, - "dirty_lens": 15, - "disabled_by_default": 6, - "disabled_visible": 3, - "disc_full": 12, - "discount": 1, - "display_settings": 1, - "diversity_1": 1, - "diversity_2": 1, - "diversity_3": 1, - "dns": 12, - "do_disturb": 10, - "do_disturb_alt": 11, - "do_disturb_off": 10, - "do_disturb_on": 10, - "do_not_disturb": 11, - "do_not_disturb_alt": 12, - "do_not_disturb_off": 11, - "do_not_disturb_on": 11, - "do_not_disturb_on_total_silence": 15, - "do_not_step": 8, - "do_not_touch": 8, - "dock": 12, - "document_scanner": 3, - "domain": 16, - "domain_add": 1, - "domain_disabled": 12, - "domain_verification": 11, - "done": 19, - "done_all": 12, - "done_outline": 12, - "donut_large": 13, - "donut_small": 12, - "door_back": 10, - "door_front": 10, - "door_sliding": 10, - "doorbell": 10, - "double_arrow": 11, - "downhill_skiing": 4, - "download": 10, - "download_done": 10, - "download_for_offline": 9, - "downloading": 9, - "drafts": 17, - "drag_handle": 14, - "drag_indicator": 15, - "draw": 6, - "drive_eta": 12, - "drive_file_move": 19, - "drive_file_move_rtl": 3, - "drive_file_rename_outline": 12, - "drive_folder_upload": 11, - "dry": 8, - "dry_cleaning": 10, - "duo": 12, - "dvr": 13, - "dynamic_feed": 15, - "dynamic_form": 7, - "e_mobiledata": 9, - "earbuds": 9, - "earbuds_battery": 9, - "east": 7, - "edgesensor_high": 10, - "edgesensor_low": 10, - "edit": 12, - "edit_attributes": 12, - "edit_calendar": 5, - "edit_location": 16, - "edit_location_alt": 8, - "edit_note": 5, - "edit_notifications": 4, - "edit_off": 12, - "edit_road": 11, - "egg": 2, - "egg_alt": 2, - "eject": 11, - "elderly": 7, - "elderly_woman": 1, - "electric_bike": 14, - "electric_bolt": 1, - "electric_car": 14, - "electric_meter": 1, - "electric_moped": 14, - "electric_rickshaw": 15, - "electric_scooter": 14, - "electrical_services": 12, - "elevator": 8, - "email": 18, - "emergency": 5, - "emergency_recording": 1, - "emergency_share": 1, - "emoji_emotions": 11, - "emoji_events": 13, - "emoji_food_beverage": 11, - "emoji_nature": 11, - "emoji_objects": 11, - "emoji_people": 11, - "emoji_symbols": 11, - "emoji_transportation": 11, - "energy_savings_leaf": 1, - "engineering": 11, - "enhanced_encryption": 19, - "equalizer": 12, - "error": 20, - "error_outline": 16, - "escalator": 8, - "escalator_warning": 8, - "euro": 12, - "euro_symbol": 13, - "ev_station": 11, - "event": 21, - "event_available": 17, - "event_busy": 20, - "event_note": 14, - "event_repeat": 1, - "event_seat": 19, - "exit_to_app": 13, - "expand": 11, - "expand_circle_down": 2, - "expand_less": 12, - "expand_more": 14, - "explicit": 12, - "explore": 12, - "explore_off": 12, - "exposure": 12, - "exposure_neg_1": 13, - "exposure_neg_2": 13, - "exposure_plus_1": 12, - "exposure_plus_2": 12, - "exposure_zero": 12, - "extension": 12, - "extension_off": 4, - "face": 15, - "face_2": 1, - "face_3": 1, - "face_4": 1, - "face_5": 1, - "face_6": 1, - "face_retouching_natural": 16, - "face_retouching_off": 15, - "fact_check": 14, - "factory": 1, - "family_restroom": 9, - "fast_forward": 18, - "fast_rewind": 12, - "fastfood": 12, - "favorite": 17, - "favorite_border": 12, - "fax": 2, - "featured_play_list": 12, - "featured_video": 12, - "feed": 10, - "feedback": 12, - "female": 3, - "fence": 6, - "festival": 10, - "fiber_dvr": 13, - "fiber_manual_record": 16, - "fiber_new": 13, - "fiber_pin": 12, - "fiber_smart_record": 12, - "file_copy": 12, - "file_download": 11, - "file_download_done": 11, - "file_download_off": 4, - "file_open": 1, - "file_present": 10, - "file_upload": 11, - "filter": 12, - "filter_1": 12, - "filter_2": 12, - "filter_3": 12, - "filter_4": 12, - "filter_5": 12, - "filter_6": 12, - "filter_7": 12, - "filter_8": 12, - "filter_9": 12, - "filter_9_plus": 13, - "filter_alt": 11, - "filter_alt_off": 1, - "filter_b_and_w": 13, - "filter_center_focus": 12, - "filter_drama": 12, - "filter_frames": 13, - "filter_hdr": 13, - "filter_list": 13, - "filter_list_off": 1, - "filter_none": 13, - "filter_tilt_shift": 14, - "filter_vintage": 13, - "find_in_page": 12, - "find_replace": 12, - "fingerprint": 12, - "fire_extinguisher": 7, - "fire_hydrant_alt": 1, - "fire_truck": 1, - "fireplace": 11, - "first_page": 11, - "fit_screen": 15, - "fitbit": 2, - "fitness_center": 12, - "flag": 18, - "flag_circle": 1, - "flaky": 13, - "flare": 12, - "flash_auto": 12, - "flash_off": 12, - "flash_on": 12, - "flashlight_off": 10, - "flashlight_on": 10, - "flatware": 9, - "flight": 18, - "flight_class": 2, - "flight_land": 13, - "flight_takeoff": 13, - "flip": 12, - "flip_camera_android": 12, - "flip_camera_ios": 12, - "flip_to_back": 12, - "flip_to_front": 12, - "flood": 1, - "fluorescent": 1, - "flutter_dash": 5, - "fmd_bad": 15, - "fmd_good": 15, - "folder": 16, - "folder_copy": 1, - "folder_delete": 1, - "folder_off": 1, - "folder_open": 13, - "folder_shared": 16, - "folder_special": 11, - "folder_zip": 1, - "follow_the_signs": 7, - "font_download": 11, - "font_download_off": 4, - "food_bank": 7, - "forest": 2, - "fork_left": 1, - "fork_right": 1, - "format_align_center": 12, - "format_align_justify": 12, - "format_align_left": 13, - "format_align_right": 13, - "format_bold": 12, - "format_clear": 12, - "format_color_fill": 14, - "format_color_reset": 11, - "format_color_text": 17, - "format_indent_decrease": 13, - "format_indent_increase": 13, - "format_italic": 12, - "format_line_spacing": 12, - "format_list_bulleted": 13, - "format_list_numbered": 12, - "format_list_numbered_rtl": 12, - "format_overline": 1, - "format_paint": 12, - "format_quote": 12, - "format_shapes": 12, - "format_size": 12, - "format_strikethrough": 12, - "format_textdirection_l_to_r": 13, - "format_textdirection_r_to_l": 13, - "format_underlined": 13, - "fort": 2, - "forum": 19, - "forward": 17, - "forward_10": 13, - "forward_30": 13, - "forward_5": 13, - "forward_to_inbox": 9, - "foundation": 6, - "free_breakfast": 11, - "free_cancellation": 5, - "front_hand": 3, - "fullscreen": 12, - "fullscreen_exit": 12, - "functions": 12, - "g_mobiledata": 9, - "g_translate": 15, - "gamepad": 12, - "games": 12, - "garage": 10, - "gas_meter": 1, - "gavel": 14, - "generating_tokens": 5, - "gesture": 12, - "get_app": 12, - "gif": 14, - "gif_box": 3, - "girl": 1, - "gite": 4, - "golf_course": 11, - "gpp_bad": 10, - "gpp_good": 9, - "gpp_maybe": 10, - "gps_fixed": 12, - "gps_not_fixed": 12, - "gps_off": 12, - "grade": 16, - "gradient": 12, - "grading": 12, - "grain": 12, - "graphic_eq": 13, - "grass": 7, - "grid_3x3": 10, - "grid_4x4": 10, - "grid_goldenratio": 10, - "grid_off": 12, - "grid_on": 12, - "grid_view": 12, - "group": 19, - "group_add": 18, - "group_off": 5, - "group_remove": 3, - "group_work": 12, - "groups": 6, - "groups_2": 1, - "groups_3": 1, - "h_mobiledata": 9, - "h_plus_mobiledata": 9, - "hail": 11, - "handshake": 1, - "handyman": 12, - "hardware": 10, - "hd": 12, - "hdr_auto": 10, - "hdr_auto_select": 10, - "hdr_enhanced_select": 11, - "hdr_off": 11, - "hdr_off_select": 10, - "hdr_on": 11, - "hdr_on_select": 10, - "hdr_plus": 10, - "hdr_strong": 12, - "hdr_weak": 12, - "headphones": 9, - "headphones_battery": 9, - "headset": 12, - "headset_mic": 12, - "headset_off": 12, - "healing": 12, - "health_and_safety": 7, - "hearing": 12, - "hearing_disabled": 14, - "heart_broken": 2, - "heat_pump": 1, - "height": 11, - "help": 13, - "help_center": 9, - "help_outline": 12, - "hevc": 10, - "hexagon": 1, - "hide_image": 10, - "hide_source": 9, - "high_quality": 12, - "highlight": 14, - "highlight_alt": 12, - "highlight_off": 17, - "hiking": 4, - "history": 12, - "history_edu": 11, - "history_toggle_off": 9, - "hive": 2, - "hls": 1, - "hls_off": 1, - "holiday_village": 4, - "home": 16, - "home_max": 10, - "home_mini": 10, - "home_repair_service": 12, - "home_work": 13, - "horizontal_distribute": 6, - "horizontal_rule": 13, - "horizontal_split": 15, - "hot_tub": 12, - "hotel": 19, - "hotel_class": 6, - "hourglass_bottom": 11, - "hourglass_disabled": 12, - "hourglass_empty": 15, - "hourglass_full": 15, - "hourglass_top": 11, - "house": 11, - "house_siding": 6, - "houseboat": 4, - "how_to_reg": 14, - "how_to_vote": 15, - "html": 1, - "http": 11, - "https": 16, - "hub": 2, - "hvac": 12, - "ice_skating": 4, - "icecream": 11, - "image": 16, - "image_aspect_ratio": 12, - "image_not_supported": 13, - "image_search": 12, - "imagesearch_roller": 11, - "import_contacts": 14, - "import_export": 12, - "important_devices": 11, - "inbox": 18, - "incomplete_circle": 3, - "indeterminate_check_box": 18, - "info": 20, - "input": 13, - "insert_chart": 12, - "insert_chart_outlined": 12, - "insert_comment": 13, - "insert_drive_file": 17, - "insert_emoticon": 15, - "insert_invitation": 12, - "insert_link": 12, - "insert_page_break": 2, - "insert_photo": 12, - "insights": 12, - "install_desktop": 1, - "install_mobile": 1, - "integration_instructions": 11, - "interests": 2, - "interpreter_mode": 2, - "inventory": 13, - "inventory_2": 9, - "invert_colors": 13, - "invert_colors_off": 12, - "ios_share": 13, - "iron": 4, - "iso": 11, - "javascript": 1, - "join_full": 1, - "join_inner": 1, - "join_left": 1, - "join_right": 1, - "kayaking": 4, - "kebab_dining": 2, - "key": 2, - "key_off": 1, - "keyboard": 13, - "keyboard_alt": 15, - "keyboard_arrow_down": 16, - "keyboard_arrow_left": 17, - "keyboard_arrow_right": 17, - "keyboard_arrow_up": 16, - "keyboard_backspace": 13, - "keyboard_capslock": 13, - "keyboard_command_key": 1, - "keyboard_control_key": 1, - "keyboard_double_arrow_down": 2, - "keyboard_double_arrow_left": 2, - "keyboard_double_arrow_right": 2, - "keyboard_double_arrow_up": 2, - "keyboard_hide": 13, - "keyboard_option_key": 1, - "keyboard_return": 13, - "keyboard_tab": 13, - "keyboard_voice": 17, - "king_bed": 12, - "kitchen": 12, - "kitesurfing": 4, - "label": 17, - "label_important": 20, - "label_off": 13, - "lan": 1, - "landscape": 12, - "landslide": 1, - "language": 12, - "laptop": 13, - "laptop_chromebook": 12, - "laptop_mac": 12, - "laptop_windows": 12, - "last_page": 13, - "launch": 17, - "layers": 12, - "layers_clear": 12, - "leaderboard": 6, - "leak_add": 12, - "leak_remove": 12, - "legend_toggle": 8, - "lens": 12, - "lens_blur": 10, - "library_add": 13, - "library_add_check": 17, - "library_books": 14, - "library_music": 13, - "light": 9, - "light_mode": 4, - "lightbulb": 18, - "lightbulb_circle": 1, - "line_axis": 2, - "line_style": 14, - "line_weight": 14, - "linear_scale": 17, - "link": 21, - "link_off": 11, - "linked_camera": 15, - "liquor": 10, - "list": 17, - "list_alt": 13, - "live_help": 15, - "live_tv": 11, - "living": 9, - "local_activity": 19, - "local_airport": 14, - "local_atm": 12, - "local_bar": 12, - "local_cafe": 11, - "local_car_wash": 12, - "local_convenience_store": 16, - "local_dining": 21, - "local_drink": 12, - "local_fire_department": 15, - "local_florist": 12, - "local_gas_station": 13, - "local_grocery_store": 12, - "local_hospital": 12, - "local_hotel": 13, - "local_laundry_service": 16, - "local_library": 12, - "local_mall": 12, - "local_movies": 12, - "local_offer": 20, - "local_parking": 12, - "local_pharmacy": 12, - "local_phone": 17, - "local_pizza": 12, - "local_play": 12, - "local_police": 13, - "local_post_office": 12, - "local_printshop": 17, - "local_see": 16, - "local_shipping": 12, - "local_taxi": 12, - "location_city": 12, - "location_disabled": 12, - "location_off": 11, - "location_on": 15, - "location_searching": 12, - "lock": 18, - "lock_clock": 11, - "lock_open": 16, - "lock_person": 1, - "lock_reset": 1, - "login": 12, - "logo_dev": 2, - "logout": 12, - "looks": 13, - "looks_3": 12, - "looks_4": 12, - "looks_5": 12, - "looks_6": 13, - "looks_one": 12, - "looks_two": 12, - "loop": 12, - "loupe": 12, - "low_priority": 18, - "loyalty": 12, - "lte_mobiledata": 9, - "lte_plus_mobiledata": 9, - "luggage": 7, - "lunch_dining": 11, - "lyrics": 3, - "macro_off": 1, - "mail": 16, - "mail_lock": 1, - "mail_outline": 12, - "male": 3, - "man": 2, - "man_2": 1, - "man_3": 1, - "man_4": 1, - "manage_accounts": 10, - "manage_history": 1, - "manage_search": 10, - "map": 16, - "maps_home_work": 10, - "maps_ugc": 13, - "margin": 11, - "mark_as_unread": 10, - "mark_chat_read": 8, - "mark_chat_unread": 8, - "mark_email_read": 8, - "mark_email_unread": 8, - "mark_unread_chat_alt": 1, - "markunread": 12, - "markunread_mailbox": 12, - "masks": 7, - "maximize": 11, - "media_bluetooth_off": 10, - "media_bluetooth_on": 10, - "mediation": 15, - "medical_information": 1, - "medical_services": 12, - "medication": 10, - "medication_liquid": 2, - "meeting_room": 17, - "memory": 12, - "menu": 13, - "menu_book": 12, - "menu_open": 13, - "merge": 1, - "merge_type": 13, - "message": 13, - "mic": 13, - "mic_external_off": 11, - "mic_external_on": 11, - "mic_none": 12, - "mic_off": 14, - "microwave": 6, - "military_tech": 11, - "minimize": 11, - "minor_crash": 1, - "miscellaneous_services": 12, - "missed_video_call": 13, - "mms": 12, - "mobile_friendly": 12, - "mobile_off": 12, - "mobile_screen_share": 12, - "mobiledata_off": 10, - "mode": 10, - "mode_comment": 12, - "mode_edit": 11, - "mode_edit_outline": 10, - "mode_fan_off": 1, - "mode_night": 10, - "mode_of_travel": 2, - "mode_standby": 9, - "model_training": 13, - "monetization_on": 12, - "money": 11, - "money_off": 12, - "money_off_csred": 11, - "monitor": 11, - "monitor_heart": 2, - "monitor_weight": 10, - "monochrome_photos": 11, - "mood": 16, - "mood_bad": 12, - "moped": 14, - "more": 13, - "more_horiz": 13, - "more_time": 11, - "more_vert": 19, - "mosque": 2, - "motion_photos_auto": 15, - "motion_photos_off": 14, - "motion_photos_on": 18, - "motion_photos_pause": 8, - "motion_photos_paused": 17, - "mouse": 12, - "move_down": 2, - "move_to_inbox": 15, - "move_up": 2, - "movie": 12, - "movie_creation": 12, - "movie_filter": 13, - "moving": 4, - "mp": 15, - "multiline_chart": 13, - "multiple_stop": 7, - "museum": 11, - "music_note": 12, - "music_off": 12, - "music_video": 15, - "my_location": 12, - "nat": 11, - "nature": 12, - "nature_people": 12, - "navigate_before": 13, - "navigate_next": 13, - "navigation": 12, - "near_me": 12, - "near_me_disabled": 6, - "nearby_error": 10, - "nearby_off": 10, - "nest_cam_wired_stand": 1, - "network_cell": 16, - "network_check": 12, - "network_locked": 17, - "network_ping": 1, - "network_wifi": 16, - "network_wifi_1_bar": 1, - "network_wifi_2_bar": 1, - "network_wifi_3_bar": 1, - "new_label": 3, - "new_releases": 13, - "newspaper": 1, - "next_plan": 16, - "next_week": 14, - "nfc": 12, - "night_shelter": 6, - "nightlife": 10, - "nightlight": 10, - "nightlight_round": 10, - "nights_stay": 12, - "no_accounts": 10, - "no_adult_content": 1, - "no_backpack": 6, - "no_cell": 8, - "no_crash": 1, - "no_drinks": 8, - "no_encryption": 17, - "no_encryption_gmailerrorred": 10, - "no_flash": 8, - "no_food": 8, - "no_luggage": 7, - "no_meals": 7, - "no_meeting_room": 11, - "no_photography": 8, - "no_sim": 12, - "no_stroller": 9, - "no_transfer": 7, - "noise_aware": 2, - "noise_control_off": 2, - "nordic_walking": 4, - "north": 7, - "north_east": 7, - "north_west": 7, - "not_accessible": 13, - "not_interested": 12, - "not_listed_location": 18, - "not_started": 13, - "note": 12, - "note_add": 13, - "note_alt": 10, - "notes": 12, - "notification_add": 5, - "notification_important": 12, - "notifications": 18, - "notifications_active": 13, - "notifications_none": 12, - "notifications_off": 12, - "notifications_paused": 12, - "numbers": 2, - "offline_bolt": 18, - "offline_pin": 18, - "offline_share": 12, - "oil_barrel": 1, - "on_device_training": 1, - "ondemand_video": 11, - "online_prediction": 12, - "opacity": 15, - "open_in_browser": 12, - "open_in_full": 7, - "open_in_new": 21, - "open_in_new_off": 4, - "open_with": 12, - "other_houses": 4, - "outbound": 8, - "outbox": 10, - "outdoor_grill": 11, - "outlet": 7, - "outlined_flag": 12, - "output": 1, - "padding": 11, - "pages": 11, - "pageview": 12, - "paid": 9, - "palette": 16, - "pan_tool": 14, - "pan_tool_alt": 1, - "panorama": 17, - "panorama_fish_eye": 13, - "panorama_horizontal": 12, - "panorama_horizontal_select": 11, - "panorama_photosphere": 11, - "panorama_photosphere_select": 12, - "panorama_vertical": 13, - "panorama_vertical_select": 12, - "panorama_wide_angle": 14, - "panorama_wide_angle_select": 12, - "paragliding": 4, - "park": 10, - "party_mode": 12, - "password": 10, - "pattern": 11, - "pause": 16, - "pause_circle": 10, - "pause_circle_filled": 15, - "pause_circle_outline": 19, - "pause_presentation": 12, - "payment": 12, - "payments": 13, - "pedal_bike": 14, - "pending": 17, - "pending_actions": 7, - "pentagon": 1, - "people": 23, - "people_alt": 21, - "people_outline": 12, - "percent": 1, - "perm_camera_mic": 12, - "perm_contact_calendar": 13, - "perm_data_setting": 12, - "perm_device_information": 13, - "perm_identity": 12, - "perm_media": 15, - "perm_phone_msg": 12, - "perm_scan_wifi": 12, - "person": 17, - "person_2": 1, - "person_3": 1, - "person_4": 1, - "person_add": 16, - "person_add_alt": 11, - "person_add_alt_1": 13, - "person_add_disabled": 11, - "person_off": 4, - "person_outline": 19, - "person_pin": 13, - "person_pin_circle": 18, - "person_remove": 12, - "person_remove_alt_1": 13, - "person_search": 12, - "personal_injury": 3, - "personal_video": 13, - "pest_control": 12, - "pest_control_rodent": 12, - "pets": 12, - "phishing": 2, - "phone": 12, - "phone_android": 12, - "phone_bluetooth_speaker": 12, - "phone_callback": 13, - "phone_disabled": 12, - "phone_enabled": 13, - "phone_forwarded": 13, - "phone_iphone": 12, - "phone_locked": 19, - "phone_missed": 13, - "phone_paused": 13, - "phonelink": 12, - "phonelink_erase": 12, - "phonelink_lock": 15, - "phonelink_off": 12, - "phonelink_ring": 12, - "phonelink_setup": 13, - "photo": 12, - "photo_album": 14, - "photo_camera": 18, - "photo_camera_back": 11, - "photo_camera_front": 11, - "photo_filter": 12, - "photo_library": 12, - "photo_size_select_actual": 12, - "photo_size_select_large": 12, - "photo_size_select_small": 12, - "php": 1, - "piano": 4, - "piano_off": 4, - "picture_as_pdf": 12, - "picture_in_picture": 12, - "picture_in_picture_alt": 12, - "pie_chart": 11, - "pie_chart_outline": 10, - "pin": 10, - "pin_drop": 18, - "pin_end": 3, - "pin_invoke": 3, - "pinch": 1, - "pivot_table_chart": 11, - "pix": 2, - "place": 18, - "plagiarism": 11, - "play_arrow": 16, - "play_circle": 9, - "play_circle_filled": 14, - "play_circle_outline": 19, - "play_disabled": 10, - "play_for_work": 12, - "play_lesson": 10, - "playlist_add": 16, - "playlist_add_check": 17, - "playlist_add_check_circle": 2, - "playlist_add_circle": 2, - "playlist_play": 14, - "playlist_remove": 1, - "plumbing": 12, - "plus_one": 17, - "podcasts": 9, - "point_of_sale": 8, - "policy": 12, - "poll": 13, - "polyline": 1, - "polymer": 12, - "pool": 12, - "portable_wifi_off": 12, - "portrait": 12, - "post_add": 11, - "power": 12, - "power_input": 12, - "power_off": 12, - "power_settings_new": 12, - "precision_manufacturing": 10, - "pregnant_woman": 14, - "present_to_all": 11, - "preview": 7, - "price_change": 10, - "price_check": 10, - "print": 16, - "print_disabled": 12, - "priority_high": 19, - "privacy_tip": 12, - "private_connectivity": 5, - "production_quantity_limits": 7, - "propane": 1, - "propane_tank": 1, - "psychology": 11, - "psychology_alt": 1, - "public": 13, - "public_off": 8, - "publish": 12, - "published_with_changes": 6, - "punch_clock": 2, - "push_pin": 13, - "qr_code": 12, - "qr_code_2": 6, - "qr_code_scanner": 7, - "query_builder": 13, - "query_stats": 4, - "question_answer": 12, - "question_mark": 1, - "queue": 12, - "queue_music": 18, - "queue_play_next": 14, - "quickreply": 12, - "quiz": 10, - "r_mobiledata": 9, - "radar": 10, - "radio": 12, - "radio_button_checked": 13, - "radio_button_unchecked": 13, - "railway_alert": 10, - "ramen_dining": 10, - "ramp_left": 1, - "ramp_right": 1, - "rate_review": 11, - "raw_off": 10, - "raw_on": 10, - "read_more": 13, - "real_estate_agent": 3, - "receipt": 12, - "receipt_long": 12, - "recent_actors": 12, - "recommend": 11, - "record_voice_over": 12, - "rectangle": 1, - "recycling": 4, - "redeem": 12, - "redo": 13, - "reduce_capacity": 6, - "refresh": 16, - "remember_me": 10, - "remove": 16, - "remove_circle": 19, - "remove_circle_outline": 12, - "remove_done": 10, - "remove_from_queue": 13, - "remove_moderator": 11, - "remove_red_eye": 12, - "remove_road": 1, - "remove_shopping_cart": 12, - "reorder": 16, - "repartition": 1, - "repeat": 12, - "repeat_on": 12, - "repeat_one": 12, - "repeat_one_on": 12, - "replay": 13, - "replay_10": 14, - "replay_30": 14, - "replay_5": 14, - "replay_circle_filled": 12, - "reply": 20, - "reply_all": 17, - "report": 18, - "report_gmailerrorred": 11, - "report_off": 12, - "report_problem": 18, - "request_page": 7, - "request_quote": 7, - "reset_tv": 10, - "restart_alt": 10, - "restaurant": 16, - "restaurant_menu": 12, - "restore": 12, - "restore_from_trash": 12, - "restore_page": 12, - "reviews": 10, - "rice_bowl": 6, - "ring_volume": 13, - "rocket": 1, - "rocket_launch": 1, - "roller_shades": 1, - "roller_shades_closed": 1, - "roller_skating": 1, - "roofing": 6, - "room": 19, - "room_preferences": 7, - "room_service": 11, - "rotate_90_degrees_ccw": 12, - "rotate_90_degrees_cw": 2, - "rotate_left": 13, - "rotate_right": 13, - "roundabout_left": 1, - "roundabout_right": 1, - "rounded_corner": 15, - "route": 2, - "router": 13, - "rowing": 14, - "rss_feed": 12, - "rsvp": 10, - "rtt": 12, - "rule": 8, - "rule_folder": 7, - "run_circle": 11, - "running_with_errors": 4, - "rv_hookup": 12, - "safety_check": 1, - "safety_divider": 7, - "sailing": 4, - "sanitizer": 6, - "satellite": 12, - "satellite_alt": 1, - "save": 12, - "save_alt": 12, - "save_as": 2, - "saved_search": 11, - "savings": 5, - "scale": 1, - "scanner": 12, - "scatter_plot": 12, - "schedule": 17, - "schedule_send": 14, - "schema": 4, - "school": 13, - "science": 17, - "score": 12, - "scoreboard": 1, - "screen_lock_landscape": 16, - "screen_lock_portrait": 17, - "screen_lock_rotation": 16, - "screen_rotation": 12, - "screen_rotation_alt": 1, - "screen_search_desktop": 10, - "screen_share": 12, - "screenshot": 10, - "screenshot_monitor": 1, - "scuba_diving": 1, - "sd": 10, - "sd_card": 12, - "sd_card_alert": 11, - "sd_storage": 12, - "search": 17, - "search_off": 12, - "security": 12, - "security_update": 11, - "security_update_good": 10, - "security_update_warning": 10, - "segment": 11, - "select_all": 12, - "self_improvement": 11, - "sell": 10, - "send": 20, - "send_and_archive": 11, - "send_time_extension": 2, - "send_to_mobile": 11, - "sensor_door": 8, - "sensor_occupied": 1, - "sensor_window": 8, - "sensors": 4, - "sensors_off": 5, - "sentiment_dissatisfied": 11, - "sentiment_neutral": 11, - "sentiment_satisfied": 11, - "sentiment_satisfied_alt": 11, - "sentiment_very_dissatisfied": 11, - "sentiment_very_satisfied": 11, - "set_meal": 6, - "settings": 19, - "settings_accessibility": 10, - "settings_applications": 11, - "settings_backup_restore": 11, - "settings_bluetooth": 11, - "settings_brightness": 12, - "settings_cell": 11, - "settings_ethernet": 11, - "settings_input_antenna": 11, - "settings_input_component": 11, - "settings_input_composite": 11, - "settings_input_hdmi": 11, - "settings_input_svideo": 11, - "settings_overscan": 11, - "settings_phone": 15, - "settings_power": 11, - "settings_remote": 11, - "settings_suggest": 20, - "settings_system_daydream": 12, - "settings_voice": 11, - "severe_cold": 1, - "shape_line": 1, - "share": 18, - "share_location": 17, - "shield": 11, - "shield_moon": 2, - "shop": 12, - "shop_2": 9, - "shop_two": 11, - "shopping_bag": 9, - "shopping_basket": 12, - "shopping_cart": 18, - "shopping_cart_checkout": 1, - "short_text": 15, - "shortcut": 10, - "show_chart": 13, - "shower": 9, - "shuffle": 14, - "shuffle_on": 12, - "shutter_speed": 11, - "sick": 6, - "sign_language": 1, - "signal_cellular_0_bar": 15, - "signal_cellular_4_bar": 12, - "signal_cellular_alt": 12, - "signal_cellular_alt_1_bar": 1, - "signal_cellular_alt_2_bar": 1, - "signal_cellular_connected_no_internet_0_bar": 13, - "signal_cellular_connected_no_internet_4_bar": 13, - "signal_cellular_no_sim": 11, - "signal_cellular_nodata": 10, - "signal_cellular_null": 12, - "signal_cellular_off": 12, - "signal_wifi_0_bar": 15, - "signal_wifi_4_bar": 12, - "signal_wifi_4_bar_lock": 13, - "signal_wifi_bad": 10, - "signal_wifi_connected_no_internet_4": 10, - "signal_wifi_off": 17, - "signal_wifi_statusbar_4_bar": 9, - "signal_wifi_statusbar_connected_no_internet_4": 11, - "signal_wifi_statusbar_null": 9, - "signpost": 1, - "sim_card": 12, - "sim_card_alert": 11, - "sim_card_download": 9, - "single_bed": 11, - "sip": 10, - "skateboarding": 4, - "skip_next": 16, - "skip_previous": 16, - "sledding": 5, - "slideshow": 12, - "slow_motion_video": 11, - "smart_button": 7, - "smart_display": 9, - "smart_screen": 9, - "smart_toy": 9, - "smartphone": 16, - "smoke_free": 12, - "smoking_rooms": 12, - "sms": 12, - "sms_failed": 13, - "snippet_folder": 7, - "snooze": 12, - "snowboarding": 4, - "snowmobile": 4, - "snowshoeing": 4, - "soap": 8, - "social_distance": 7, - "solar_power": 1, - "sort": 13, - "sort_by_alpha": 11, - "sos": 1, - "soup_kitchen": 2, - "source": 7, - "south": 7, - "south_america": 2, - "south_east": 7, - "south_west": 7, - "spa": 12, - "space_bar": 11, - "space_dashboard": 3, - "spatial_audio": 1, - "spatial_audio_off": 1, - "spatial_tracking": 1, - "speaker": 16, - "speaker_group": 12, - "speaker_notes": 13, - "speaker_notes_off": 13, - "speaker_phone": 15, - "speed": 12, - "spellcheck": 12, - "splitscreen": 11, - "spoke": 2, - "sports": 11, - "sports_bar": 7, - "sports_baseball": 11, - "sports_basketball": 11, - "sports_cricket": 11, - "sports_esports": 11, - "sports_football": 12, - "sports_golf": 11, - "sports_gymnastics": 1, - "sports_handball": 11, - "sports_hockey": 11, - "sports_kabaddi": 11, - "sports_martial_arts": 1, - "sports_mma": 11, - "sports_motorsports": 11, - "sports_rugby": 11, - "sports_score": 10, - "sports_soccer": 11, - "sports_tennis": 11, - "sports_volleyball": 11, - "square": 1, - "square_foot": 11, - "ssid_chart": 1, - "stacked_bar_chart": 12, - "stacked_line_chart": 6, - "stadium": 1, - "stairs": 8, - "star": 22, - "star_border": 19, - "star_border_purple500": 10, - "star_half": 22, - "star_outline": 11, - "star_purple500": 10, - "star_rate": 12, - "stars": 12, - "start": 1, - "stay_current_landscape": 12, - "stay_current_portrait": 12, - "stay_primary_landscape": 12, - "stay_primary_portrait": 12, - "sticky_note_2": 7, - "stop": 12, - "stop_circle": 15, - "stop_screen_share": 13, - "storage": 13, - "store": 11, - "store_mall_directory": 12, - "storefront": 17, - "storm": 10, - "straight": 1, - "straighten": 12, - "stream": 11, - "streetview": 12, - "strikethrough_s": 14, - "stroller": 8, - "style": 12, - "subdirectory_arrow_left": 11, - "subdirectory_arrow_right": 11, - "subject": 13, - "subscript": 13, - "subscriptions": 11, - "subtitles": 12, - "subtitles_off": 11, - "subway": 11, - "summarize": 10, - "superscript": 12, - "supervised_user_circle": 12, - "supervisor_account": 13, - "support": 11, - "support_agent": 12, - "surfing": 4, - "surround_sound": 13, - "swap_calls": 12, - "swap_horiz": 12, - "swap_horizontal_circle": 12, - "swap_vert": 12, - "swap_vertical_circle": 13, - "swipe": 12, - "swipe_down": 1, - "swipe_down_alt": 1, - "swipe_left": 1, - "swipe_left_alt": 1, - "swipe_right": 1, - "swipe_right_alt": 1, - "swipe_up": 1, - "swipe_up_alt": 1, - "swipe_vertical": 1, - "switch_access_shortcut": 2, - "switch_access_shortcut_add": 2, - "switch_account": 11, - "switch_camera": 12, - "switch_left": 8, - "switch_right": 9, - "switch_video": 12, - "synagogue": 2, - "sync": 17, - "sync_alt": 12, - "sync_disabled": 16, - "sync_lock": 1, - "sync_problem": 21, - "system_security_update": 10, - "system_security_update_good": 10, - "system_security_update_warning": 10, - "system_update": 12, - "system_update_alt": 13, - "tab": 12, - "tab_unselected": 12, - "table_bar": 2, - "table_chart": 12, - "table_restaurant": 2, - "table_rows": 17, - "table_view": 8, - "tablet": 12, - "tablet_android": 14, - "tablet_mac": 12, - "tag": 10, - "tag_faces": 19, - "takeout_dining": 16, - "tap_and_play": 12, - "tapas": 6, - "task": 10, - "task_alt": 6, - "taxi_alert": 11, - "temple_buddhist": 2, - "temple_hindu": 3, - "terminal": 1, - "terrain": 12, - "text_decrease": 1, - "text_fields": 14, - "text_format": 12, - "text_increase": 1, - "text_rotate_up": 12, - "text_rotate_vertical": 12, - "text_rotation_angledown": 12, - "text_rotation_angleup": 12, - "text_rotation_down": 12, - "text_rotation_none": 12, - "text_snippet": 8, - "textsms": 12, - "texture": 12, - "theater_comedy": 11, - "theaters": 12, - "thermostat": 11, - "thermostat_auto": 10, - "thumb_down": 18, - "thumb_down_alt": 11, - "thumb_down_off_alt": 13, - "thumb_up": 18, - "thumb_up_alt": 11, - "thumb_up_off_alt": 13, - "thumbs_up_down": 12, - "thunderstorm": 1, - "time_to_leave": 12, - "timelapse": 12, - "timeline": 13, - "timer": 13, - "timer_10": 12, - "timer_10_select": 15, - "timer_3": 12, - "timer_3_select": 15, - "timer_off": 13, - "tips_and_updates": 3, - "tire_repair": 1, - "title": 11, - "toc": 13, - "today": 17, - "toggle_off": 12, - "toggle_on": 12, - "token": 2, - "toll": 12, - "tonality": 12, - "topic": 7, - "tornado": 1, - "touch_app": 13, - "tour": 12, - "toys": 14, - "track_changes": 11, - "traffic": 12, - "train": 11, - "tram": 11, - "transcribe": 1, - "transfer_within_a_station": 12, - "transform": 12, - "transgender": 3, - "transit_enterexit": 12, - "translate": 16, - "travel_explore": 8, - "trending_down": 18, - "trending_flat": 19, - "trending_up": 19, - "trip_origin": 12, - "troubleshoot": 10, - "try": 9, - "tsunami": 1, - "tty": 8, - "tune": 12, - "tungsten": 10, - "turn_left": 1, - "turn_right": 1, - "turn_sharp_left": 1, - "turn_sharp_right": 1, - "turn_slight_left": 1, - "turn_slight_right": 1, - "turned_in": 11, - "turned_in_not": 11, - "tv": 16, - "tv_off": 11, - "two_wheeler": 14, - "type_specimen": 1, - "u_turn_left": 1, - "u_turn_right": 1, - "umbrella": 8, - "unarchive": 13, - "undo": 13, - "unfold_less": 12, - "unfold_less_double": 1, - "unfold_more": 12, - "unfold_more_double": 1, - "unpublished": 7, - "unsubscribe": 12, - "upcoming": 9, - "update": 13, - "update_disabled": 8, - "upgrade": 12, - "upload": 10, - "upload_file": 10, - "usb": 12, - "usb_off": 4, - "vaccines": 2, - "vape_free": 1, - "vaping_rooms": 1, - "verified": 11, - "verified_user": 18, - "vertical_align_bottom": 12, - "vertical_align_center": 12, - "vertical_align_top": 12, - "vertical_distribute": 6, - "vertical_shades": 1, - "vertical_shades_closed": 1, - "vertical_split": 15, - "vibration": 12, - "video_call": 11, - "video_camera_back": 10, - "video_camera_front": 10, - "video_chat": 1, - "video_file": 1, - "video_label": 11, - "video_library": 13, - "video_settings": 12, - "video_stable": 10, - "videocam": 16, - "videocam_off": 12, - "videogame_asset": 11, - "videogame_asset_off": 4, - "view_agenda": 14, - "view_array": 13, - "view_carousel": 13, - "view_column": 13, - "view_comfy": 14, - "view_comfy_alt": 1, - "view_compact": 13, - "view_compact_alt": 1, - "view_cozy": 1, - "view_day": 13, - "view_headline": 11, - "view_in_ar": 11, - "view_kanban": 1, - "view_list": 14, - "view_module": 13, - "view_quilt": 14, - "view_sidebar": 13, - "view_stream": 13, - "view_timeline": 1, - "view_week": 13, - "vignette": 12, - "villa": 4, - "visibility": 16, - "visibility_off": 12, - "voice_chat": 13, - "voice_over_off": 11, - "voicemail": 12, - "volcano": 1, - "volume_down": 13, - "volume_mute": 13, - "volume_off": 17, - "volume_up": 14, - "volunteer_activism": 10, - "vpn_key": 12, - "vpn_key_off": 1, - "vpn_lock": 17, - "vrpano": 10, - "wallet": 1, - "wallpaper": 13, - "warehouse": 1, - "warning": 17, - "warning_amber": 16, - "wash": 8, - "watch": 12, - "watch_later": 17, - "watch_off": 1, - "water": 11, - "water_damage": 6, - "water_drop": 3, - "waterfall_chart": 11, - "waves": 11, - "waving_hand": 3, - "wb_auto": 12, - "wb_cloudy": 12, - "wb_incandescent": 12, - "wb_iridescent": 11, - "wb_shade": 10, - "wb_sunny": 12, - "wb_twilight": 9, - "wc": 11, - "web": 13, - "web_asset": 12, - "web_asset_off": 4, - "web_stories": 4, - "webhook": 1, - "weekend": 12, - "west": 7, - "whatshot": 17, - "wheelchair_pickup": 8, - "where_to_vote": 16, - "widgets": 13, - "width_full": 1, - "width_normal": 1, - "width_wide": 1, - "wifi": 12, - "wifi_1_bar": 1, - "wifi_2_bar": 1, - "wifi_calling": 11, - "wifi_calling_3": 10, - "wifi_channel": 1, - "wifi_find": 1, - "wifi_lock": 13, - "wifi_off": 12, - "wifi_password": 1, - "wifi_protected_setup": 12, - "wifi_tethering": 12, - "wifi_tethering_error": 3, - "wifi_tethering_off": 10, - "wind_power": 1, - "window": 10, - "wine_bar": 6, - "woman": 2, - "woman_2": 1, - "work": 12, - "work_history": 1, - "work_off": 12, - "work_outline": 12, - "workspace_premium": 3, - "workspaces": 9, - "wrap_text": 13, - "wrong_location": 17, - "wysiwyg": 8, - "yard": 9, - "youtube_searched_for": 12, - "zoom_in": 11, - "zoom_in_map": 1, - "zoom_out": 11, - "zoom_out_map": 17 -} \ No newline at end of file diff --git a/packages/themes/mfm/assets/material-icons/css/_codepoints.scss b/packages/themes/mfm/assets/material-icons/css/_codepoints.scss deleted file mode 100644 index a9dcaa8729..0000000000 --- a/packages/themes/mfm/assets/material-icons/css/_codepoints.scss +++ /dev/null @@ -1,2279 +0,0 @@ -$material-icons-codepoints: () !default; -$material-icons-codepoints: map-merge(( - "123": eb8d, - "360": e577, - "10k": e951, - "10mp": e952, - "11mp": e953, - "12mp": e954, - "13mp": e955, - "14mp": e956, - "15mp": e957, - "16mp": e958, - "17mp": e959, - "18_up_rating": f8fd, - "18mp": e95a, - "19mp": e95b, - "1k": e95c, - "1k_plus": e95d, - "1x_mobiledata": efcd, - "20mp": e95e, - "21mp": e95f, - "22mp": e960, - "23mp": e961, - "24mp": e962, - "2k": e963, - "2k_plus": e964, - "2mp": e965, - "30fps": efce, - "30fps_select": efcf, - "3d_rotation": e84d, - "3g_mobiledata": efd0, - "3k": e966, - "3k_plus": e967, - "3mp": e968, - "3p": efd1, - "4g_mobiledata": efd2, - "4g_plus_mobiledata": efd3, - "4k": e072, - "4k_plus": e969, - "4mp": e96a, - "5g": ef38, - "5k": e96b, - "5k_plus": e96c, - "5mp": e96d, - "60fps": efd4, - "60fps_select": efd5, - "6_ft_apart": f21e, - "6k": e96e, - "6k_plus": e96f, - "6mp": e970, - "7k": e971, - "7k_plus": e972, - "7mp": e973, - "8k": e974, - "8k_plus": e975, - "8mp": e976, - "9k": e977, - "9k_plus": e978, - "9mp": e979, - "abc": eb94, - "ac_unit": eb3b, - "access_alarm": e190, - "access_alarms": e191, - "access_time": e192, - "access_time_filled": efd6, - "accessibility": e84e, - "accessibility_new": e92c, - "accessible": e914, - "accessible_forward": e934, - "account_balance": e84f, - "account_balance_wallet": e850, - "account_box": e851, - "account_circle": e853, - "account_tree": e97a, - "ad_units": ef39, - "adb": e60e, - "add": e145, - "add_a_photo": e439, - "add_alarm": e193, - "add_alert": e003, - "add_box": e146, - "add_business": e729, - "add_call": e0e8, - "add_card": eb86, - "add_chart": e97b, - "add_circle": e147, - "add_circle_outline": e148, - "add_comment": e266, - "add_home": f8eb, - "add_home_work": f8ed, - "add_ic_call": e97c, - "add_link": e178, - "add_location": e567, - "add_location_alt": ef3a, - "add_moderator": e97d, - "add_photo_alternate": e43e, - "add_reaction": e1d3, - "add_road": ef3b, - "add_shopping_cart": e854, - "add_task": f23a, - "add_to_drive": e65c, - "add_to_home_screen": e1fe, - "add_to_photos": e39d, - "add_to_queue": e05c, - "addchart": ef3c, - "adf_scanner": eada, - "adjust": e39e, - "admin_panel_settings": ef3d, - "adobe": ea96, - "ads_click": e762, - "agriculture": ea79, - "air": efd8, - "airline_seat_flat": e630, - "airline_seat_flat_angled": e631, - "airline_seat_individual_suite": e632, - "airline_seat_legroom_extra": e633, - "airline_seat_legroom_normal": e634, - "airline_seat_legroom_reduced": e635, - "airline_seat_recline_extra": e636, - "airline_seat_recline_normal": e637, - "airline_stops": e7d0, - "airlines": e7ca, - "airplane_ticket": efd9, - "airplanemode_active": e195, - "airplanemode_inactive": e194, - "airplanemode_off": e194, - "airplanemode_on": e195, - "airplay": e055, - "airport_shuttle": eb3c, - "alarm": e855, - "alarm_add": e856, - "alarm_off": e857, - "alarm_on": e858, - "album": e019, - "align_horizontal_center": e00f, - "align_horizontal_left": e00d, - "align_horizontal_right": e010, - "align_vertical_bottom": e015, - "align_vertical_center": e011, - "align_vertical_top": e00c, - "all_inbox": e97f, - "all_inclusive": eb3d, - "all_out": e90b, - "alt_route": f184, - "alternate_email": e0e6, - "amp_stories": ea13, - "analytics": ef3e, - "anchor": f1cd, - "android": e859, - "animation": e71c, - "announcement": e85a, - "aod": efda, - "apartment": ea40, - "api": f1b7, - "app_blocking": ef3f, - "app_registration": ef40, - "app_settings_alt": ef41, - "app_shortcut": eae4, - "apple": ea80, - "approval": e982, - "apps": e5c3, - "apps_outage": e7cc, - "architecture": ea3b, - "archive": e149, - "area_chart": e770, - "arrow_back": e5c4, - "arrow_back_ios": e5e0, - "arrow_back_ios_new": e2ea, - "arrow_circle_down": f181, - "arrow_circle_left": eaa7, - "arrow_circle_right": eaaa, - "arrow_circle_up": f182, - "arrow_downward": e5db, - "arrow_drop_down": e5c5, - "arrow_drop_down_circle": e5c6, - "arrow_drop_up": e5c7, - "arrow_forward": e5c8, - "arrow_forward_ios": e5e1, - "arrow_left": e5de, - "arrow_outward": f8ce, - "arrow_right": e5df, - "arrow_right_alt": e941, - "arrow_upward": e5d8, - "art_track": e060, - "article": ef42, - "aspect_ratio": e85b, - "assessment": e85c, - "assignment": e85d, - "assignment_add": f848, - "assignment_ind": e85e, - "assignment_late": e85f, - "assignment_return": e860, - "assignment_returned": e861, - "assignment_turned_in": e862, - "assist_walker": f8d5, - "assistant": e39f, - "assistant_direction": e988, - "assistant_navigation": e989, - "assistant_photo": e3a0, - "assured_workload": eb6f, - "atm": e573, - "attach_email": ea5e, - "attach_file": e226, - "attach_money": e227, - "attachment": e2bc, - "attractions": ea52, - "attribution": efdb, - "audio_file": eb82, - "audiotrack": e3a1, - "auto_awesome": e65f, - "auto_awesome_mosaic": e660, - "auto_awesome_motion": e661, - "auto_delete": ea4c, - "auto_fix_high": e663, - "auto_fix_normal": e664, - "auto_fix_off": e665, - "auto_graph": e4fb, - "auto_mode": ec20, - "auto_stories": e666, - "autofps_select": efdc, - "autorenew": e863, - "av_timer": e01b, - "baby_changing_station": f19b, - "back_hand": e764, - "backpack": f19c, - "backspace": e14a, - "backup": e864, - "backup_table": ef43, - "badge": ea67, - "bakery_dining": ea53, - "balance": eaf6, - "balcony": e58f, - "ballot": e172, - "bar_chart": e26b, - "barcode_reader": f85c, - "batch_prediction": f0f5, - "bathroom": efdd, - "bathtub": ea41, - "battery_0_bar": ebdc, - "battery_1_bar": ebd9, - "battery_20": f09c, - "battery_2_bar": ebe0, - "battery_30": f09d, - "battery_3_bar": ebdd, - "battery_4_bar": ebe2, - "battery_50": f09e, - "battery_5_bar": ebd4, - "battery_60": f09f, - "battery_6_bar": ebd2, - "battery_80": f0a0, - "battery_90": f0a1, - "battery_alert": e19c, - "battery_charging_20": f0a2, - "battery_charging_30": f0a3, - "battery_charging_50": f0a4, - "battery_charging_60": f0a5, - "battery_charging_80": f0a6, - "battery_charging_90": f0a7, - "battery_charging_full": e1a3, - "battery_full": e1a4, - "battery_saver": efde, - "battery_std": e1a5, - "battery_unknown": e1a6, - "beach_access": eb3e, - "bed": efdf, - "bedroom_baby": efe0, - "bedroom_child": efe1, - "bedroom_parent": efe2, - "bedtime": ef44, - "bedtime_off": eb76, - "beenhere": e52d, - "bento": f1f4, - "bike_scooter": ef45, - "biotech": ea3a, - "blender": efe3, - "blind": f8d6, - "blinds": e286, - "blinds_closed": ec1f, - "block": e14b, - "block_flipped": ef46, - "bloodtype": efe4, - "bluetooth": e1a7, - "bluetooth_audio": e60f, - "bluetooth_connected": e1a8, - "bluetooth_disabled": e1a9, - "bluetooth_drive": efe5, - "bluetooth_searching": e1aa, - "blur_circular": e3a2, - "blur_linear": e3a3, - "blur_off": e3a4, - "blur_on": e3a5, - "bolt": ea0b, - "book": e865, - "book_online": f217, - "bookmark": e866, - "bookmark_add": e598, - "bookmark_added": e599, - "bookmark_border": e867, - "bookmark_outline": e867, - "bookmark_remove": e59a, - "bookmarks": e98b, - "border_all": e228, - "border_bottom": e229, - "border_clear": e22a, - "border_color": e22b, - "border_horizontal": e22c, - "border_inner": e22d, - "border_left": e22e, - "border_outer": e22f, - "border_right": e230, - "border_style": e231, - "border_top": e232, - "border_vertical": e233, - "boy": eb67, - "branding_watermark": e06b, - "breakfast_dining": ea54, - "brightness_1": e3a6, - "brightness_2": e3a7, - "brightness_3": e3a8, - "brightness_4": e3a9, - "brightness_5": e3aa, - "brightness_6": e3ab, - "brightness_7": e3ac, - "brightness_auto": e1ab, - "brightness_high": e1ac, - "brightness_low": e1ad, - "brightness_medium": e1ae, - "broadcast_on_home": f8f8, - "broadcast_on_personal": f8f9, - "broken_image": e3ad, - "browse_gallery": ebd1, - "browser_not_supported": ef47, - "browser_updated": e7cf, - "brunch_dining": ea73, - "brush": e3ae, - "bubble_chart": e6dd, - "bug_report": e868, - "build": e869, - "build_circle": ef48, - "bungalow": e591, - "burst_mode": e43c, - "bus_alert": e98f, - "business": e0af, - "business_center": eb3f, - "cabin": e589, - "cable": efe6, - "cached": e86a, - "cake": e7e9, - "calculate": ea5f, - "calendar_month": ebcc, - "calendar_today": e935, - "calendar_view_day": e936, - "calendar_view_month": efe7, - "calendar_view_week": efe8, - "call": e0b0, - "call_end": e0b1, - "call_made": e0b2, - "call_merge": e0b3, - "call_missed": e0b4, - "call_missed_outgoing": e0e4, - "call_received": e0b5, - "call_split": e0b6, - "call_to_action": e06c, - "camera": e3af, - "camera_alt": e3b0, - "camera_enhance": e8fc, - "camera_front": e3b1, - "camera_indoor": efe9, - "camera_outdoor": efea, - "camera_rear": e3b2, - "camera_roll": e3b3, - "cameraswitch": efeb, - "campaign": ef49, - "cancel": e5c9, - "cancel_presentation": e0e9, - "cancel_schedule_send": ea39, - "candlestick_chart": ead4, - "car_crash": ebf2, - "car_rental": ea55, - "car_repair": ea56, - "card_giftcard": e8f6, - "card_membership": e8f7, - "card_travel": e8f8, - "carpenter": f1f8, - "cases": e992, - "casino": eb40, - "cast": e307, - "cast_connected": e308, - "cast_for_education": efec, - "castle": eab1, - "catching_pokemon": e508, - "category": e574, - "celebration": ea65, - "cell_tower": ebba, - "cell_wifi": e0ec, - "center_focus_strong": e3b4, - "center_focus_weak": e3b5, - "chair": efed, - "chair_alt": efee, - "chalet": e585, - "change_circle": e2e7, - "change_history": e86b, - "charging_station": f19d, - "chat": e0b7, - "chat_bubble": e0ca, - "chat_bubble_outline": e0cb, - "check": e5ca, - "check_box": e834, - "check_box_outline_blank": e835, - "check_circle": e86c, - "check_circle_outline": e92d, - "checklist": e6b1, - "checklist_rtl": e6b3, - "checkroom": f19e, - "chevron_left": e5cb, - "chevron_right": e5cc, - "child_care": eb41, - "child_friendly": eb42, - "chrome_reader_mode": e86d, - "church": eaae, - "circle": ef4a, - "circle_notifications": e994, - "class": e86e, - "clean_hands": f21f, - "cleaning_services": f0ff, - "clear": e14c, - "clear_all": e0b8, - "close": e5cd, - "close_fullscreen": f1cf, - "closed_caption": e01c, - "closed_caption_disabled": f1dc, - "closed_caption_off": e996, - "cloud": e2bd, - "cloud_circle": e2be, - "cloud_done": e2bf, - "cloud_download": e2c0, - "cloud_off": e2c1, - "cloud_queue": e2c2, - "cloud_sync": eb5a, - "cloud_upload": e2c3, - "cloudy_snowing": e810, - "co2": e7b0, - "co_present": eaf0, - "code": e86f, - "code_off": e4f3, - "coffee": efef, - "coffee_maker": eff0, - "collections": e3b6, - "collections_bookmark": e431, - "color_lens": e3b7, - "colorize": e3b8, - "comment": e0b9, - "comment_bank": ea4e, - "comments_disabled": e7a2, - "commit": eaf5, - "commute": e940, - "compare": e3b9, - "compare_arrows": e915, - "compass_calibration": e57c, - "compost": e761, - "compress": e94d, - "computer": e30a, - "confirmation_num": e638, - "confirmation_number": e638, - "connect_without_contact": f223, - "connected_tv": e998, - "connecting_airports": e7c9, - "construction": ea3c, - "contact_emergency": f8d1, - "contact_mail": e0d0, - "contact_page": f22e, - "contact_phone": e0cf, - "contact_support": e94c, - "contactless": ea71, - "contacts": e0ba, - "content_copy": e14d, - "content_cut": e14e, - "content_paste": e14f, - "content_paste_go": ea8e, - "content_paste_off": e4f8, - "content_paste_search": ea9b, - "contrast": eb37, - "control_camera": e074, - "control_point": e3ba, - "control_point_duplicate": e3bb, - "conveyor_belt": f867, - "cookie": eaac, - "copy": f08a, - "copy_all": e2ec, - "copyright": e90c, - "coronavirus": f221, - "corporate_fare": f1d0, - "cottage": e587, - "countertops": f1f7, - "create": e150, - "create_new_folder": e2cc, - "credit_card": e870, - "credit_card_off": e4f4, - "credit_score": eff1, - "crib": e588, - "crisis_alert": ebe9, - "crop": e3be, - "crop_16_9": e3bc, - "crop_3_2": e3bd, - "crop_5_4": e3bf, - "crop_7_5": e3c0, - "crop_din": e3c1, - "crop_free": e3c2, - "crop_landscape": e3c3, - "crop_original": e3c4, - "crop_portrait": e3c5, - "crop_rotate": e437, - "crop_square": e3c6, - "cruelty_free": e799, - "css": eb93, - "currency_bitcoin": ebc5, - "currency_exchange": eb70, - "currency_franc": eafa, - "currency_lira": eaef, - "currency_pound": eaf1, - "currency_ruble": eaec, - "currency_rupee": eaf7, - "currency_yen": eafb, - "currency_yuan": eaf9, - "curtains": ec1e, - "curtains_closed": ec1d, - "cut": f08b, - "cyclone": ebd5, - "dangerous": e99a, - "dark_mode": e51c, - "dashboard": e871, - "dashboard_customize": e99b, - "data_array": ead1, - "data_exploration": e76f, - "data_object": ead3, - "data_saver_off": eff2, - "data_saver_on": eff3, - "data_thresholding": eb9f, - "data_usage": e1af, - "dataset": f8ee, - "dataset_linked": f8ef, - "date_range": e916, - "deblur": eb77, - "deck": ea42, - "dehaze": e3c7, - "delete": e872, - "delete_forever": e92b, - "delete_outline": e92e, - "delete_sweep": e16c, - "delivery_dining": ea72, - "density_large": eba9, - "density_medium": eb9e, - "density_small": eba8, - "departure_board": e576, - "description": e873, - "deselect": ebb6, - "design_services": f10a, - "desk": f8f4, - "desktop_access_disabled": e99d, - "desktop_mac": e30b, - "desktop_windows": e30c, - "details": e3c8, - "developer_board": e30d, - "developer_board_off": e4ff, - "developer_mode": e1b0, - "device_hub": e335, - "device_thermostat": e1ff, - "device_unknown": e339, - "devices": e1b1, - "devices_fold": ebde, - "devices_other": e337, - "dew_point": f879, - "dialer_sip": e0bb, - "dialpad": e0bc, - "diamond": ead5, - "difference": eb7d, - "dining": eff4, - "dinner_dining": ea57, - "directions": e52e, - "directions_bike": e52f, - "directions_boat": e532, - "directions_boat_filled": eff5, - "directions_bus": e530, - "directions_bus_filled": eff6, - "directions_car": e531, - "directions_car_filled": eff7, - "directions_ferry": e532, - "directions_off": f10f, - "directions_railway": e534, - "directions_railway_filled": eff8, - "directions_run": e566, - "directions_subway": e533, - "directions_subway_filled": eff9, - "directions_train": e534, - "directions_transit": e535, - "directions_transit_filled": effa, - "directions_walk": e536, - "dirty_lens": ef4b, - "disabled_by_default": f230, - "disabled_visible": e76e, - "disc_full": e610, - "discord": ea6c, - "discount": ebc9, - "display_settings": eb97, - "diversity_1": f8d7, - "diversity_2": f8d8, - "diversity_3": f8d9, - "dnd_forwardslash": e611, - "dns": e875, - "do_disturb": f08c, - "do_disturb_alt": f08d, - "do_disturb_off": f08e, - "do_disturb_on": f08f, - "do_not_disturb": e612, - "do_not_disturb_alt": e611, - "do_not_disturb_off": e643, - "do_not_disturb_on": e644, - "do_not_disturb_on_total_silence": effb, - "do_not_step": f19f, - "do_not_touch": f1b0, - "dock": e30e, - "document_scanner": e5fa, - "domain": e7ee, - "domain_add": eb62, - "domain_disabled": e0ef, - "domain_verification": ef4c, - "done": e876, - "done_all": e877, - "done_outline": e92f, - "donut_large": e917, - "donut_small": e918, - "door_back": effc, - "door_front": effd, - "door_sliding": effe, - "doorbell": efff, - "double_arrow": ea50, - "downhill_skiing": e509, - "download": f090, - "download_done": f091, - "download_for_offline": f000, - "downloading": f001, - "drafts": e151, - "drag_handle": e25d, - "drag_indicator": e945, - "draw": e746, - "drive_eta": e613, - "drive_file_move": e675, - "drive_file_move_outline": e9a1, - "drive_file_move_rtl": e76d, - "drive_file_rename_outline": e9a2, - "drive_folder_upload": e9a3, - "dry": f1b3, - "dry_cleaning": ea58, - "duo": e9a5, - "dvr": e1b2, - "dynamic_feed": ea14, - "dynamic_form": f1bf, - "e_mobiledata": f002, - "earbuds": f003, - "earbuds_battery": f004, - "east": f1df, - "eco": ea35, - "edgesensor_high": f005, - "edgesensor_low": f006, - "edit": e3c9, - "edit_attributes": e578, - "edit_calendar": e742, - "edit_document": f88c, - "edit_location": e568, - "edit_location_alt": e1c5, - "edit_note": e745, - "edit_notifications": e525, - "edit_off": e950, - "edit_road": ef4d, - "edit_square": f88d, - "egg": eacc, - "egg_alt": eac8, - "eject": e8fb, - "elderly": f21a, - "elderly_woman": eb69, - "electric_bike": eb1b, - "electric_bolt": ec1c, - "electric_car": eb1c, - "electric_meter": ec1b, - "electric_moped": eb1d, - "electric_rickshaw": eb1e, - "electric_scooter": eb1f, - "electrical_services": f102, - "elevator": f1a0, - "email": e0be, - "emergency": e1eb, - "emergency_recording": ebf4, - "emergency_share": ebf6, - "emoji_emotions": ea22, - "emoji_events": ea23, - "emoji_flags": ea1a, - "emoji_food_beverage": ea1b, - "emoji_nature": ea1c, - "emoji_objects": ea24, - "emoji_people": ea1d, - "emoji_symbols": ea1e, - "emoji_transportation": ea1f, - "energy_savings_leaf": ec1a, - "engineering": ea3d, - "enhance_photo_translate": e8fc, - "enhanced_encryption": e63f, - "equalizer": e01d, - "error": e000, - "error_outline": e001, - "escalator": f1a1, - "escalator_warning": f1ac, - "euro": ea15, - "euro_symbol": e926, - "ev_station": e56d, - "event": e878, - "event_available": e614, - "event_busy": e615, - "event_note": e616, - "event_repeat": eb7b, - "event_seat": e903, - "exit_to_app": e879, - "expand": e94f, - "expand_circle_down": e7cd, - "expand_less": e5ce, - "expand_more": e5cf, - "explicit": e01e, - "explore": e87a, - "explore_off": e9a8, - "exposure": e3ca, - "exposure_minus_1": e3cb, - "exposure_minus_2": e3cc, - "exposure_neg_1": e3cb, - "exposure_neg_2": e3cc, - "exposure_plus_1": e3cd, - "exposure_plus_2": e3ce, - "exposure_zero": e3cf, - "extension": e87b, - "extension_off": e4f5, - "face": e87c, - "face_2": f8da, - "face_3": f8db, - "face_4": f8dc, - "face_5": f8dd, - "face_6": f8de, - "face_retouching_natural": ef4e, - "face_retouching_off": f007, - "face_unlock": f008, - "facebook": f234, - "fact_check": f0c5, - "factory": ebbc, - "family_restroom": f1a2, - "fast_forward": e01f, - "fast_rewind": e020, - "fastfood": e57a, - "favorite": e87d, - "favorite_border": e87e, - "favorite_outline": e87e, - "fax": ead8, - "featured_play_list": e06d, - "featured_video": e06e, - "feed": f009, - "feedback": e87f, - "female": e590, - "fence": f1f6, - "festival": ea68, - "fiber_dvr": e05d, - "fiber_manual_record": e061, - "fiber_new": e05e, - "fiber_pin": e06a, - "fiber_smart_record": e062, - "file_copy": e173, - "file_download": e2c4, - "file_download_done": e9aa, - "file_download_off": e4fe, - "file_open": eaf3, - "file_present": ea0e, - "file_upload": e2c6, - "file_upload_off": f886, - "filter": e3d3, - "filter_1": e3d0, - "filter_2": e3d1, - "filter_3": e3d2, - "filter_4": e3d4, - "filter_5": e3d5, - "filter_6": e3d6, - "filter_7": e3d7, - "filter_8": e3d8, - "filter_9": e3d9, - "filter_9_plus": e3da, - "filter_alt": ef4f, - "filter_alt_off": eb32, - "filter_b_and_w": e3db, - "filter_center_focus": e3dc, - "filter_drama": e3dd, - "filter_frames": e3de, - "filter_hdr": e3df, - "filter_list": e152, - "filter_list_alt": e94e, - "filter_list_off": eb57, - "filter_none": e3e0, - "filter_tilt_shift": e3e2, - "filter_vintage": e3e3, - "find_in_page": e880, - "find_replace": e881, - "fingerprint": e90d, - "fire_extinguisher": f1d8, - "fire_hydrant": f1a3, - "fire_hydrant_alt": f8f1, - "fire_truck": f8f2, - "fireplace": ea43, - "first_page": e5dc, - "fit_screen": ea10, - "fitbit": e82b, - "fitness_center": eb43, - "flag": e153, - "flag_circle": eaf8, - "flaky": ef50, - "flare": e3e4, - "flash_auto": e3e5, - "flash_off": e3e6, - "flash_on": e3e7, - "flashlight_off": f00a, - "flashlight_on": f00b, - "flatware": f00c, - "flight": e539, - "flight_class": e7cb, - "flight_land": e904, - "flight_takeoff": e905, - "flip": e3e8, - "flip_camera_android": ea37, - "flip_camera_ios": ea38, - "flip_to_back": e882, - "flip_to_front": e883, - "flood": ebe6, - "flourescent": ec31, - "fluorescent": ec31, - "flutter_dash": e00b, - "fmd_bad": f00e, - "fmd_good": f00f, - "foggy": e818, - "folder": e2c7, - "folder_copy": ebbd, - "folder_delete": eb34, - "folder_off": eb83, - "folder_open": e2c8, - "folder_shared": e2c9, - "folder_special": e617, - "folder_zip": eb2c, - "follow_the_signs": f222, - "font_download": e167, - "font_download_off": e4f9, - "food_bank": f1f2, - "forest": ea99, - "fork_left": eba0, - "fork_right": ebac, - "forklift": f868, - "format_align_center": e234, - "format_align_justify": e235, - "format_align_left": e236, - "format_align_right": e237, - "format_bold": e238, - "format_clear": e239, - "format_color_fill": e23a, - "format_color_reset": e23b, - "format_color_text": e23c, - "format_indent_decrease": e23d, - "format_indent_increase": e23e, - "format_italic": e23f, - "format_line_spacing": e240, - "format_list_bulleted": e241, - "format_list_bulleted_add": f849, - "format_list_numbered": e242, - "format_list_numbered_rtl": e267, - "format_overline": eb65, - "format_paint": e243, - "format_quote": e244, - "format_shapes": e25e, - "format_size": e245, - "format_strikethrough": e246, - "format_textdirection_l_to_r": e247, - "format_textdirection_r_to_l": e248, - "format_underline": e249, - "format_underlined": e249, - "fort": eaad, - "forum": e0bf, - "forward": e154, - "forward_10": e056, - "forward_30": e057, - "forward_5": e058, - "forward_to_inbox": f187, - "foundation": f200, - "free_breakfast": eb44, - "free_cancellation": e748, - "front_hand": e769, - "front_loader": f869, - "fullscreen": e5d0, - "fullscreen_exit": e5d1, - "functions": e24a, - "g_mobiledata": f010, - "g_translate": e927, - "gamepad": e30f, - "games": e021, - "garage": f011, - "gas_meter": ec19, - "gavel": e90e, - "generating_tokens": e749, - "gesture": e155, - "get_app": e884, - "gif": e908, - "gif_box": e7a3, - "girl": eb68, - "gite": e58b, - "goat": 10fffd, - "golf_course": eb45, - "gpp_bad": f012, - "gpp_good": f013, - "gpp_maybe": f014, - "gps_fixed": e1b3, - "gps_not_fixed": e1b4, - "gps_off": e1b5, - "grade": e885, - "gradient": e3e9, - "grading": ea4f, - "grain": e3ea, - "graphic_eq": e1b8, - "grass": f205, - "grid_3x3": f015, - "grid_4x4": f016, - "grid_goldenratio": f017, - "grid_off": e3eb, - "grid_on": e3ec, - "grid_view": e9b0, - "group": e7ef, - "group_add": e7f0, - "group_off": e747, - "group_remove": e7ad, - "group_work": e886, - "groups": f233, - "groups_2": f8df, - "groups_3": f8e0, - "h_mobiledata": f018, - "h_plus_mobiledata": f019, - "hail": e9b1, - "handshake": ebcb, - "handyman": f10b, - "hardware": ea59, - "hd": e052, - "hdr_auto": f01a, - "hdr_auto_select": f01b, - "hdr_enhanced_select": ef51, - "hdr_off": e3ed, - "hdr_off_select": f01c, - "hdr_on": e3ee, - "hdr_on_select": f01d, - "hdr_plus": f01e, - "hdr_strong": e3f1, - "hdr_weak": e3f2, - "headphones": f01f, - "headphones_battery": f020, - "headset": e310, - "headset_mic": e311, - "headset_off": e33a, - "healing": e3f3, - "health_and_safety": e1d5, - "hearing": e023, - "hearing_disabled": f104, - "heart_broken": eac2, - "heat_pump": ec18, - "height": ea16, - "help": e887, - "help_center": f1c0, - "help_outline": e8fd, - "hevc": f021, - "hexagon": eb39, - "hide_image": f022, - "hide_source": f023, - "high_quality": e024, - "highlight": e25f, - "highlight_alt": ef52, - "highlight_off": e888, - "highlight_remove": e888, - "hiking": e50a, - "history": e889, - "history_edu": ea3e, - "history_toggle_off": f17d, - "hive": eaa6, - "hls": eb8a, - "hls_off": eb8c, - "holiday_village": e58a, - "home": e88a, - "home_filled": e9b2, - "home_max": f024, - "home_mini": f025, - "home_repair_service": f100, - "home_work": ea09, - "horizontal_distribute": e014, - "horizontal_rule": f108, - "horizontal_split": e947, - "hot_tub": eb46, - "hotel": e53a, - "hotel_class": e743, - "hourglass_bottom": ea5c, - "hourglass_disabled": ef53, - "hourglass_empty": e88b, - "hourglass_full": e88c, - "hourglass_top": ea5b, - "house": ea44, - "house_siding": f202, - "houseboat": e584, - "how_to_reg": e174, - "how_to_vote": e175, - "html": eb7e, - "http": e902, - "https": e88d, - "hub": e9f4, - "hvac": f10e, - "ice_skating": e50b, - "icecream": ea69, - "image": e3f4, - "image_aspect_ratio": e3f5, - "image_not_supported": f116, - "image_search": e43f, - "imagesearch_roller": e9b4, - "import_contacts": e0e0, - "import_export": e0c3, - "important_devices": e912, - "inbox": e156, - "incomplete_circle": e79b, - "indeterminate_check_box": e909, - "info": e88e, - "info_outline": e88f, - "input": e890, - "insert_chart": e24b, - "insert_chart_outlined": e26a, - "insert_comment": e24c, - "insert_drive_file": e24d, - "insert_emoticon": e24e, - "insert_invitation": e24f, - "insert_link": e250, - "insert_page_break": eaca, - "insert_photo": e251, - "insights": f092, - "install_desktop": eb71, - "install_mobile": eb72, - "integration_instructions": ef54, - "interests": e7c8, - "interpreter_mode": e83b, - "inventory": e179, - "inventory_2": e1a1, - "invert_colors": e891, - "invert_colors_off": e0c4, - "invert_colors_on": e891, - "ios_share": e6b8, - "iron": e583, - "iso": e3f6, - "javascript": eb7c, - "join_full": eaeb, - "join_inner": eaf4, - "join_left": eaf2, - "join_right": eaea, - "kayaking": e50c, - "kebab_dining": e842, - "key": e73c, - "key_off": eb84, - "keyboard": e312, - "keyboard_alt": f028, - "keyboard_arrow_down": e313, - "keyboard_arrow_left": e314, - "keyboard_arrow_right": e315, - "keyboard_arrow_up": e316, - "keyboard_backspace": e317, - "keyboard_capslock": e318, - "keyboard_command": eae0, - "keyboard_command_key": eae7, - "keyboard_control": e5d3, - "keyboard_control_key": eae6, - "keyboard_double_arrow_down": ead0, - "keyboard_double_arrow_left": eac3, - "keyboard_double_arrow_right": eac9, - "keyboard_double_arrow_up": eacf, - "keyboard_hide": e31a, - "keyboard_option": eadf, - "keyboard_option_key": eae8, - "keyboard_return": e31b, - "keyboard_tab": e31c, - "keyboard_voice": e31d, - "king_bed": ea45, - "kitchen": eb47, - "kitesurfing": e50d, - "label": e892, - "label_important": e937, - "label_important_outline": e948, - "label_off": e9b6, - "label_outline": e893, - "lan": eb2f, - "landscape": e3f7, - "landslide": ebd7, - "language": e894, - "laptop": e31e, - "laptop_chromebook": e31f, - "laptop_mac": e320, - "laptop_windows": e321, - "last_page": e5dd, - "launch": e895, - "layers": e53b, - "layers_clear": e53c, - "leaderboard": f20c, - "leak_add": e3f8, - "leak_remove": e3f9, - "leave_bags_at_home": f21b, - "legend_toggle": f11b, - "lens": e3fa, - "lens_blur": f029, - "library_add": e02e, - "library_add_check": e9b7, - "library_books": e02f, - "library_music": e030, - "light": f02a, - "light_mode": e518, - "lightbulb": e0f0, - "lightbulb_circle": ebfe, - "lightbulb_outline": e90f, - "line_axis": ea9a, - "line_style": e919, - "line_weight": e91a, - "linear_scale": e260, - "link": e157, - "link_off": e16f, - "linked_camera": e438, - "liquor": ea60, - "list": e896, - "list_alt": e0ee, - "live_help": e0c6, - "live_tv": e639, - "living": f02b, - "local_activity": e53f, - "local_airport": e53d, - "local_atm": e53e, - "local_attraction": e53f, - "local_bar": e540, - "local_cafe": e541, - "local_car_wash": e542, - "local_convenience_store": e543, - "local_dining": e556, - "local_drink": e544, - "local_fire_department": ef55, - "local_florist": e545, - "local_gas_station": e546, - "local_grocery_store": e547, - "local_hospital": e548, - "local_hotel": e549, - "local_laundry_service": e54a, - "local_library": e54b, - "local_mall": e54c, - "local_movies": e54d, - "local_offer": e54e, - "local_parking": e54f, - "local_pharmacy": e550, - "local_phone": e551, - "local_pizza": e552, - "local_play": e553, - "local_police": ef56, - "local_post_office": e554, - "local_print_shop": e555, - "local_printshop": e555, - "local_restaurant": e556, - "local_see": e557, - "local_shipping": e558, - "local_taxi": e559, - "location_city": e7f1, - "location_disabled": e1b6, - "location_history": e55a, - "location_off": e0c7, - "location_on": e0c8, - "location_pin": f1db, - "location_searching": e1b7, - "lock": e897, - "lock_clock": ef57, - "lock_open": e898, - "lock_outline": e899, - "lock_person": f8f3, - "lock_reset": eade, - "login": ea77, - "logo_dev": ead6, - "logout": e9ba, - "looks": e3fc, - "looks_3": e3fb, - "looks_4": e3fd, - "looks_5": e3fe, - "looks_6": e3ff, - "looks_one": e400, - "looks_two": e401, - "loop": e028, - "loupe": e402, - "low_priority": e16d, - "loyalty": e89a, - "lte_mobiledata": f02c, - "lte_plus_mobiledata": f02d, - "luggage": f235, - "lunch_dining": ea61, - "lyrics": ec0b, - "macro_off": f8d2, - "mail": e158, - "mail_lock": ec0a, - "mail_outline": e0e1, - "male": e58e, - "man": e4eb, - "man_2": f8e1, - "man_3": f8e2, - "man_4": f8e3, - "manage_accounts": f02e, - "manage_history": ebe7, - "manage_search": f02f, - "map": e55b, - "maps_home_work": f030, - "maps_ugc": ef58, - "margin": e9bb, - "mark_as_unread": e9bc, - "mark_chat_read": f18b, - "mark_chat_unread": f189, - "mark_email_read": f18c, - "mark_email_unread": f18a, - "mark_unread_chat_alt": eb9d, - "markunread": e159, - "markunread_mailbox": e89b, - "masks": f218, - "maximize": e930, - "media_bluetooth_off": f031, - "media_bluetooth_on": f032, - "mediation": efa7, - "medical_information": ebed, - "medical_services": f109, - "medication": f033, - "medication_liquid": ea87, - "meeting_room": eb4f, - "memory": e322, - "menu": e5d2, - "menu_book": ea19, - "menu_open": e9bd, - "merge": eb98, - "merge_type": e252, - "message": e0c9, - "messenger": e0ca, - "messenger_outline": e0cb, - "mic": e029, - "mic_external_off": ef59, - "mic_external_on": ef5a, - "mic_none": e02a, - "mic_off": e02b, - "microwave": f204, - "military_tech": ea3f, - "minimize": e931, - "minor_crash": ebf1, - "miscellaneous_services": f10c, - "missed_video_call": e073, - "mms": e618, - "mobile_friendly": e200, - "mobile_off": e201, - "mobile_screen_share": e0e7, - "mobiledata_off": f034, - "mode": f097, - "mode_comment": e253, - "mode_edit": e254, - "mode_edit_outline": f035, - "mode_fan_off": ec17, - "mode_night": f036, - "mode_of_travel": e7ce, - "mode_standby": f037, - "model_training": f0cf, - "monetization_on": e263, - "money": e57d, - "money_off": e25c, - "money_off_csred": f038, - "monitor": ef5b, - "monitor_heart": eaa2, - "monitor_weight": f039, - "monochrome_photos": e403, - "mood": e7f2, - "mood_bad": e7f3, - "moped": eb28, - "more": e619, - "more_horiz": e5d3, - "more_time": ea5d, - "more_vert": e5d4, - "mosque": eab2, - "motion_photos_auto": f03a, - "motion_photos_off": e9c0, - "motion_photos_on": e9c1, - "motion_photos_pause": f227, - "motion_photos_paused": e9c2, - "motorcycle": e91b, - "mouse": e323, - "move_down": eb61, - "move_to_inbox": e168, - "move_up": eb64, - "movie": e02c, - "movie_creation": e404, - "movie_edit": f840, - "movie_filter": e43a, - "moving": e501, - "mp": e9c3, - "multiline_chart": e6df, - "multiple_stop": f1b9, - "multitrack_audio": e1b8, - "museum": ea36, - "music_note": e405, - "music_off": e440, - "music_video": e063, - "my_library_add": e02e, - "my_library_books": e02f, - "my_library_music": e030, - "my_location": e55c, - "nat": ef5c, - "nature": e406, - "nature_people": e407, - "navigate_before": e408, - "navigate_next": e409, - "navigation": e55d, - "near_me": e569, - "near_me_disabled": f1ef, - "nearby_error": f03b, - "nearby_off": f03c, - "nest_cam_wired_stand": ec16, - "network_cell": e1b9, - "network_check": e640, - "network_locked": e61a, - "network_ping": ebca, - "network_wifi": e1ba, - "network_wifi_1_bar": ebe4, - "network_wifi_2_bar": ebd6, - "network_wifi_3_bar": ebe1, - "new_label": e609, - "new_releases": e031, - "newspaper": eb81, - "next_plan": ef5d, - "next_week": e16a, - "nfc": e1bb, - "night_shelter": f1f1, - "nightlife": ea62, - "nightlight": f03d, - "nightlight_round": ef5e, - "nights_stay": ea46, - "no_accounts": f03e, - "no_adult_content": f8fe, - "no_backpack": f237, - "no_cell": f1a4, - "no_crash": ebf0, - "no_drinks": f1a5, - "no_encryption": e641, - "no_encryption_gmailerrorred": f03f, - "no_flash": f1a6, - "no_food": f1a7, - "no_luggage": f23b, - "no_meals": f1d6, - "no_meals_ouline": f229, - "no_meeting_room": eb4e, - "no_photography": f1a8, - "no_sim": e0cc, - "no_stroller": f1af, - "no_transfer": f1d5, - "noise_aware": ebec, - "noise_control_off": ebf3, - "nordic_walking": e50e, - "north": f1e0, - "north_east": f1e1, - "north_west": f1e2, - "not_accessible": f0fe, - "not_interested": e033, - "not_listed_location": e575, - "not_started": f0d1, - "note": e06f, - "note_add": e89c, - "note_alt": f040, - "notes": e26c, - "notification_add": e399, - "notification_important": e004, - "notifications": e7f4, - "notifications_active": e7f7, - "notifications_none": e7f5, - "notifications_off": e7f6, - "notifications_on": e7f7, - "notifications_paused": e7f8, - "now_wallpaper": e1bc, - "now_widgets": e1bd, - "numbers": eac7, - "offline_bolt": e932, - "offline_pin": e90a, - "offline_share": e9c5, - "oil_barrel": ec15, - "on_device_training": ebfd, - "ondemand_video": e63a, - "online_prediction": f0eb, - "opacity": e91c, - "open_in_browser": e89d, - "open_in_full": f1ce, - "open_in_new": e89e, - "open_in_new_off": e4f6, - "open_with": e89f, - "other_houses": e58c, - "outbond": f228, - "outbound": e1ca, - "outbox": ef5f, - "outdoor_grill": ea47, - "outgoing_mail": f0d2, - "outlet": f1d4, - "outlined_flag": e16e, - "output": ebbe, - "padding": e9c8, - "pages": e7f9, - "pageview": e8a0, - "paid": f041, - "palette": e40a, - "pallet": f86a, - "pan_tool": e925, - "pan_tool_alt": ebb9, - "panorama": e40b, - "panorama_fish_eye": e40c, - "panorama_fisheye": e40c, - "panorama_horizontal": e40d, - "panorama_horizontal_select": ef60, - "panorama_photosphere": e9c9, - "panorama_photosphere_select": e9ca, - "panorama_vertical": e40e, - "panorama_vertical_select": ef61, - "panorama_wide_angle": e40f, - "panorama_wide_angle_select": ef62, - "paragliding": e50f, - "park": ea63, - "party_mode": e7fa, - "password": f042, - "paste": f098, - "pattern": f043, - "pause": e034, - "pause_circle": e1a2, - "pause_circle_filled": e035, - "pause_circle_outline": e036, - "pause_presentation": e0ea, - "payment": e8a1, - "payments": ef63, - "paypal": ea8d, - "pedal_bike": eb29, - "pending": ef64, - "pending_actions": f1bb, - "pentagon": eb50, - "people": e7fb, - "people_alt": ea21, - "people_outline": e7fc, - "percent": eb58, - "perm_camera_mic": e8a2, - "perm_contact_cal": e8a3, - "perm_contact_calendar": e8a3, - "perm_data_setting": e8a4, - "perm_device_info": e8a5, - "perm_device_information": e8a5, - "perm_identity": e8a6, - "perm_media": e8a7, - "perm_phone_msg": e8a8, - "perm_scan_wifi": e8a9, - "person": e7fd, - "person_2": f8e4, - "person_3": f8e5, - "person_4": f8e6, - "person_add": e7fe, - "person_add_alt": ea4d, - "person_add_alt_1": ef65, - "person_add_disabled": e9cb, - "person_off": e510, - "person_outline": e7ff, - "person_pin": e55a, - "person_pin_circle": e56a, - "person_remove": ef66, - "person_remove_alt_1": ef67, - "person_search": f106, - "personal_injury": e6da, - "personal_video": e63b, - "pest_control": f0fa, - "pest_control_rodent": f0fd, - "pets": e91d, - "phishing": ead7, - "phone": e0cd, - "phone_android": e324, - "phone_bluetooth_speaker": e61b, - "phone_callback": e649, - "phone_disabled": e9cc, - "phone_enabled": e9cd, - "phone_forwarded": e61c, - "phone_in_talk": e61d, - "phone_iphone": e325, - "phone_locked": e61e, - "phone_missed": e61f, - "phone_paused": e620, - "phonelink": e326, - "phonelink_erase": e0db, - "phonelink_lock": e0dc, - "phonelink_off": e327, - "phonelink_ring": e0dd, - "phonelink_setup": e0de, - "photo": e410, - "photo_album": e411, - "photo_camera": e412, - "photo_camera_back": ef68, - "photo_camera_front": ef69, - "photo_filter": e43b, - "photo_library": e413, - "photo_size_select_actual": e432, - "photo_size_select_large": e433, - "photo_size_select_small": e434, - "php": eb8f, - "piano": e521, - "piano_off": e520, - "picture_as_pdf": e415, - "picture_in_picture": e8aa, - "picture_in_picture_alt": e911, - "pie_chart": e6c4, - "pie_chart_outline": f044, - "pie_chart_outlined": e6c5, - "pin": f045, - "pin_drop": e55e, - "pin_end": e767, - "pin_invoke": e763, - "pinch": eb38, - "pivot_table_chart": e9ce, - "pix": eaa3, - "place": e55f, - "plagiarism": ea5a, - "play_arrow": e037, - "play_circle": e1c4, - "play_circle_fill": e038, - "play_circle_filled": e038, - "play_circle_outline": e039, - "play_disabled": ef6a, - "play_for_work": e906, - "play_lesson": f047, - "playlist_add": e03b, - "playlist_add_check": e065, - "playlist_add_check_circle": e7e6, - "playlist_add_circle": e7e5, - "playlist_play": e05f, - "playlist_remove": eb80, - "plumbing": f107, - "plus_one": e800, - "podcasts": f048, - "point_of_sale": f17e, - "policy": ea17, - "poll": e801, - "polyline": ebbb, - "polymer": e8ab, - "pool": eb48, - "portable_wifi_off": e0ce, - "portrait": e416, - "post_add": ea20, - "power": e63c, - "power_input": e336, - "power_off": e646, - "power_settings_new": e8ac, - "precision_manufacturing": f049, - "pregnant_woman": e91e, - "present_to_all": e0df, - "preview": f1c5, - "price_change": f04a, - "price_check": f04b, - "print": e8ad, - "print_disabled": e9cf, - "priority_high": e645, - "privacy_tip": f0dc, - "private_connectivity": e744, - "production_quantity_limits": e1d1, - "propane": ec14, - "propane_tank": ec13, - "psychology": ea4a, - "psychology_alt": f8ea, - "public": e80b, - "public_off": f1ca, - "publish": e255, - "published_with_changes": f232, - "punch_clock": eaa8, - "push_pin": f10d, - "qr_code": ef6b, - "qr_code_2": e00a, - "qr_code_scanner": f206, - "query_builder": e8ae, - "query_stats": e4fc, - "question_answer": e8af, - "question_mark": eb8b, - "queue": e03c, - "queue_music": e03d, - "queue_play_next": e066, - "quick_contacts_dialer": e0cf, - "quick_contacts_mail": e0d0, - "quickreply": ef6c, - "quiz": f04c, - "quora": ea98, - "r_mobiledata": f04d, - "radar": f04e, - "radio": e03e, - "radio_button_checked": e837, - "radio_button_off": e836, - "radio_button_on": e837, - "radio_button_unchecked": e836, - "railway_alert": e9d1, - "ramen_dining": ea64, - "ramp_left": eb9c, - "ramp_right": eb96, - "rate_review": e560, - "raw_off": f04f, - "raw_on": f050, - "read_more": ef6d, - "real_estate_agent": e73a, - "rebase_edit": f846, - "receipt": e8b0, - "receipt_long": ef6e, - "recent_actors": e03f, - "recommend": e9d2, - "record_voice_over": e91f, - "rectangle": eb54, - "recycling": e760, - "reddit": eaa0, - "redeem": e8b1, - "redo": e15a, - "reduce_capacity": f21c, - "refresh": e5d5, - "remember_me": f051, - "remove": e15b, - "remove_circle": e15c, - "remove_circle_outline": e15d, - "remove_done": e9d3, - "remove_from_queue": e067, - "remove_moderator": e9d4, - "remove_red_eye": e417, - "remove_road": ebfc, - "remove_shopping_cart": e928, - "reorder": e8fe, - "repartition": f8e8, - "repeat": e040, - "repeat_on": e9d6, - "repeat_one": e041, - "repeat_one_on": e9d7, - "replay": e042, - "replay_10": e059, - "replay_30": e05a, - "replay_5": e05b, - "replay_circle_filled": e9d8, - "reply": e15e, - "reply_all": e15f, - "report": e160, - "report_gmailerrorred": f052, - "report_off": e170, - "report_problem": e8b2, - "request_page": f22c, - "request_quote": f1b6, - "reset_tv": e9d9, - "restart_alt": f053, - "restaurant": e56c, - "restaurant_menu": e561, - "restore": e8b3, - "restore_from_trash": e938, - "restore_page": e929, - "reviews": f054, - "rice_bowl": f1f5, - "ring_volume": e0d1, - "rocket": eba5, - "rocket_launch": eb9b, - "roller_shades": ec12, - "roller_shades_closed": ec11, - "roller_skating": ebcd, - "roofing": f201, - "room": e8b4, - "room_preferences": f1b8, - "room_service": eb49, - "rotate_90_degrees_ccw": e418, - "rotate_90_degrees_cw": eaab, - "rotate_left": e419, - "rotate_right": e41a, - "roundabout_left": eb99, - "roundabout_right": eba3, - "rounded_corner": e920, - "route": eacd, - "router": e328, - "rowing": e921, - "rss_feed": e0e5, - "rsvp": f055, - "rtt": e9ad, - "rule": f1c2, - "rule_folder": f1c9, - "run_circle": ef6f, - "running_with_errors": e51d, - "rv_hookup": e642, - "safety_check": ebef, - "safety_divider": e1cc, - "sailing": e502, - "sanitizer": f21d, - "satellite": e562, - "satellite_alt": eb3a, - "save": e161, - "save_alt": e171, - "save_as": eb60, - "saved_search": ea11, - "savings": e2eb, - "scale": eb5f, - "scanner": e329, - "scatter_plot": e268, - "schedule": e8b5, - "schedule_send": ea0a, - "schema": e4fd, - "school": e80c, - "science": ea4b, - "score": e269, - "scoreboard": ebd0, - "screen_lock_landscape": e1be, - "screen_lock_portrait": e1bf, - "screen_lock_rotation": e1c0, - "screen_rotation": e1c1, - "screen_rotation_alt": ebee, - "screen_search_desktop": ef70, - "screen_share": e0e2, - "screenshot": f056, - "screenshot_monitor": ec08, - "scuba_diving": ebce, - "sd": e9dd, - "sd_card": e623, - "sd_card_alert": f057, - "sd_storage": e1c2, - "search": e8b6, - "search_off": ea76, - "security": e32a, - "security_update": f058, - "security_update_good": f059, - "security_update_warning": f05a, - "segment": e94b, - "select_all": e162, - "self_improvement": ea78, - "sell": f05b, - "send": e163, - "send_and_archive": ea0c, - "send_time_extension": eadb, - "send_to_mobile": f05c, - "sensor_door": f1b5, - "sensor_occupied": ec10, - "sensor_window": f1b4, - "sensors": e51e, - "sensors_off": e51f, - "sentiment_dissatisfied": e811, - "sentiment_neutral": e812, - "sentiment_satisfied": e813, - "sentiment_satisfied_alt": e0ed, - "sentiment_very_dissatisfied": e814, - "sentiment_very_satisfied": e815, - "set_meal": f1ea, - "settings": e8b8, - "settings_accessibility": f05d, - "settings_applications": e8b9, - "settings_backup_restore": e8ba, - "settings_bluetooth": e8bb, - "settings_brightness": e8bd, - "settings_cell": e8bc, - "settings_display": e8bd, - "settings_ethernet": e8be, - "settings_input_antenna": e8bf, - "settings_input_component": e8c0, - "settings_input_composite": e8c1, - "settings_input_hdmi": e8c2, - "settings_input_svideo": e8c3, - "settings_overscan": e8c4, - "settings_phone": e8c5, - "settings_power": e8c6, - "settings_remote": e8c7, - "settings_suggest": f05e, - "settings_system_daydream": e1c3, - "settings_voice": e8c8, - "severe_cold": ebd3, - "shape_line": f8d3, - "share": e80d, - "share_arrival_time": e524, - "share_location": f05f, - "shelves": f86e, - "shield": e9e0, - "shield_moon": eaa9, - "shop": e8c9, - "shop_2": e19e, - "shop_two": e8ca, - "shopify": ea9d, - "shopping_bag": f1cc, - "shopping_basket": e8cb, - "shopping_cart": e8cc, - "shopping_cart_checkout": eb88, - "short_text": e261, - "shortcut": f060, - "show_chart": e6e1, - "shower": f061, - "shuffle": e043, - "shuffle_on": e9e1, - "shutter_speed": e43d, - "sick": f220, - "sign_language": ebe5, - "signal_cellular_0_bar": f0a8, - "signal_cellular_1_bar": f0a9, - "signal_cellular_2_bar": f0aa, - "signal_cellular_3_bar": f0ab, - "signal_cellular_4_bar": e1c8, - "signal_cellular_alt": e202, - "signal_cellular_alt_1_bar": ebdf, - "signal_cellular_alt_2_bar": ebe3, - "signal_cellular_connected_no_internet_0_bar": f0ac, - "signal_cellular_connected_no_internet_1_bar": f0ad, - "signal_cellular_connected_no_internet_2_bar": f0ae, - "signal_cellular_connected_no_internet_3_bar": f0af, - "signal_cellular_connected_no_internet_4_bar": e1cd, - "signal_cellular_no_sim": e1ce, - "signal_cellular_nodata": f062, - "signal_cellular_null": e1cf, - "signal_cellular_off": e1d0, - "signal_wifi_0_bar": f0b0, - "signal_wifi_1_bar": f0b1, - "signal_wifi_1_bar_lock": f0b2, - "signal_wifi_2_bar": f0b3, - "signal_wifi_2_bar_lock": f0b4, - "signal_wifi_3_bar": f0b5, - "signal_wifi_3_bar_lock": f0b6, - "signal_wifi_4_bar": e1d8, - "signal_wifi_4_bar_lock": e1d9, - "signal_wifi_bad": f063, - "signal_wifi_connected_no_internet_0": f0f2, - "signal_wifi_connected_no_internet_1": f0ee, - "signal_wifi_connected_no_internet_2": f0f1, - "signal_wifi_connected_no_internet_3": f0ed, - "signal_wifi_connected_no_internet_4": f064, - "signal_wifi_off": e1da, - "signal_wifi_statusbar_1_bar": f0e6, - "signal_wifi_statusbar_2_bar": f0f0, - "signal_wifi_statusbar_3_bar": f0ea, - "signal_wifi_statusbar_4_bar": f065, - "signal_wifi_statusbar_connected_no_internet": f0f8, - "signal_wifi_statusbar_connected_no_internet_1": f0e9, - "signal_wifi_statusbar_connected_no_internet_2": f0f7, - "signal_wifi_statusbar_connected_no_internet_3": f0e8, - "signal_wifi_statusbar_connected_no_internet_4": f066, - "signal_wifi_statusbar_not_connected": f0ef, - "signal_wifi_statusbar_null": f067, - "signpost": eb91, - "sim_card": e32b, - "sim_card_alert": e624, - "sim_card_download": f068, - "single_bed": ea48, - "sip": f069, - "skateboarding": e511, - "skip_next": e044, - "skip_previous": e045, - "sledding": e512, - "slideshow": e41b, - "slow_motion_video": e068, - "smart_button": f1c1, - "smart_display": f06a, - "smart_screen": f06b, - "smart_toy": f06c, - "smartphone": e32c, - "smoke_free": eb4a, - "smoking_rooms": eb4b, - "sms": e625, - "sms_failed": e626, - "snapchat": ea6e, - "snippet_folder": f1c7, - "snooze": e046, - "snowboarding": e513, - "snowing": e80f, - "snowmobile": e503, - "snowshoeing": e514, - "soap": f1b2, - "social_distance": e1cb, - "solar_power": ec0f, - "sort": e164, - "sort_by_alpha": e053, - "sos": ebf7, - "soup_kitchen": e7d3, - "source": f1c4, - "south": f1e3, - "south_america": e7e4, - "south_east": f1e4, - "south_west": f1e5, - "spa": eb4c, - "space_bar": e256, - "space_dashboard": e66b, - "spatial_audio": ebeb, - "spatial_audio_off": ebe8, - "spatial_tracking": ebea, - "speaker": e32d, - "speaker_group": e32e, - "speaker_notes": e8cd, - "speaker_notes_off": e92a, - "speaker_phone": e0d2, - "speed": e9e4, - "spellcheck": e8ce, - "splitscreen": f06d, - "spoke": e9a7, - "sports": ea30, - "sports_bar": f1f3, - "sports_baseball": ea51, - "sports_basketball": ea26, - "sports_cricket": ea27, - "sports_esports": ea28, - "sports_football": ea29, - "sports_golf": ea2a, - "sports_gymnastics": ebc4, - "sports_handball": ea33, - "sports_hockey": ea2b, - "sports_kabaddi": ea34, - "sports_martial_arts": eae9, - "sports_mma": ea2c, - "sports_motorsports": ea2d, - "sports_rugby": ea2e, - "sports_score": f06e, - "sports_soccer": ea2f, - "sports_tennis": ea32, - "sports_volleyball": ea31, - "square": eb36, - "square_foot": ea49, - "ssid_chart": eb66, - "stacked_bar_chart": e9e6, - "stacked_line_chart": f22b, - "stadium": eb90, - "stairs": f1a9, - "star": e838, - "star_border": e83a, - "star_border_purple500": f099, - "star_half": e839, - "star_outline": f06f, - "star_purple500": f09a, - "star_rate": f0ec, - "stars": e8d0, - "start": e089, - "stay_current_landscape": e0d3, - "stay_current_portrait": e0d4, - "stay_primary_landscape": e0d5, - "stay_primary_portrait": e0d6, - "sticky_note_2": f1fc, - "stop": e047, - "stop_circle": ef71, - "stop_screen_share": e0e3, - "storage": e1db, - "store": e8d1, - "store_mall_directory": e563, - "storefront": ea12, - "storm": f070, - "straight": eb95, - "straighten": e41c, - "stream": e9e9, - "streetview": e56e, - "strikethrough_s": e257, - "stroller": f1ae, - "style": e41d, - "subdirectory_arrow_left": e5d9, - "subdirectory_arrow_right": e5da, - "subject": e8d2, - "subscript": f111, - "subscriptions": e064, - "subtitles": e048, - "subtitles_off": ef72, - "subway": e56f, - "summarize": f071, - "sunny": e81a, - "sunny_snowing": e819, - "superscript": f112, - "supervised_user_circle": e939, - "supervisor_account": e8d3, - "support": ef73, - "support_agent": f0e2, - "surfing": e515, - "surround_sound": e049, - "swap_calls": e0d7, - "swap_horiz": e8d4, - "swap_horizontal_circle": e933, - "swap_vert": e8d5, - "swap_vert_circle": e8d6, - "swap_vertical_circle": e8d6, - "swipe": e9ec, - "swipe_down": eb53, - "swipe_down_alt": eb30, - "swipe_left": eb59, - "swipe_left_alt": eb33, - "swipe_right": eb52, - "swipe_right_alt": eb56, - "swipe_up": eb2e, - "swipe_up_alt": eb35, - "swipe_vertical": eb51, - "switch_access_shortcut": e7e1, - "switch_access_shortcut_add": e7e2, - "switch_account": e9ed, - "switch_camera": e41e, - "switch_left": f1d1, - "switch_right": f1d2, - "switch_video": e41f, - "synagogue": eab0, - "sync": e627, - "sync_alt": ea18, - "sync_disabled": e628, - "sync_lock": eaee, - "sync_problem": e629, - "system_security_update": f072, - "system_security_update_good": f073, - "system_security_update_warning": f074, - "system_update": e62a, - "system_update_alt": e8d7, - "system_update_tv": e8d7, - "tab": e8d8, - "tab_unselected": e8d9, - "table_bar": ead2, - "table_chart": e265, - "table_restaurant": eac6, - "table_rows": f101, - "table_view": f1be, - "tablet": e32f, - "tablet_android": e330, - "tablet_mac": e331, - "tag": e9ef, - "tag_faces": e420, - "takeout_dining": ea74, - "tap_and_play": e62b, - "tapas": f1e9, - "task": f075, - "task_alt": e2e6, - "taxi_alert": ef74, - "telegram": ea6b, - "temple_buddhist": eab3, - "temple_hindu": eaaf, - "terminal": eb8e, - "terrain": e564, - "text_decrease": eadd, - "text_fields": e262, - "text_format": e165, - "text_increase": eae2, - "text_rotate_up": e93a, - "text_rotate_vertical": e93b, - "text_rotation_angledown": e93c, - "text_rotation_angleup": e93d, - "text_rotation_down": e93e, - "text_rotation_none": e93f, - "text_snippet": f1c6, - "textsms": e0d8, - "texture": e421, - "theater_comedy": ea66, - "theaters": e8da, - "thermostat": f076, - "thermostat_auto": f077, - "thumb_down": e8db, - "thumb_down_alt": e816, - "thumb_down_off_alt": e9f2, - "thumb_up": e8dc, - "thumb_up_alt": e817, - "thumb_up_off_alt": e9f3, - "thumbs_up_down": e8dd, - "thunderstorm": ebdb, - "tiktok": ea7e, - "time_to_leave": e62c, - "timelapse": e422, - "timeline": e922, - "timer": e425, - "timer_10": e423, - "timer_10_select": f07a, - "timer_3": e424, - "timer_3_select": f07b, - "timer_off": e426, - "tips_and_updates": e79a, - "tire_repair": ebc8, - "title": e264, - "toc": e8de, - "today": e8df, - "toggle_off": e9f5, - "toggle_on": e9f6, - "token": ea25, - "toll": e8e0, - "tonality": e427, - "topic": f1c8, - "tornado": e199, - "touch_app": e913, - "tour": ef75, - "toys": e332, - "track_changes": e8e1, - "traffic": e565, - "train": e570, - "tram": e571, - "transcribe": f8ec, - "transfer_within_a_station": e572, - "transform": e428, - "transgender": e58d, - "transit_enterexit": e579, - "translate": e8e2, - "travel_explore": e2db, - "trending_down": e8e3, - "trending_flat": e8e4, - "trending_neutral": e8e4, - "trending_up": e8e5, - "trip_origin": e57b, - "trolley": f86b, - "troubleshoot": e1d2, - "try": f07c, - "tsunami": ebd8, - "tty": f1aa, - "tune": e429, - "tungsten": f07d, - "turn_left": eba6, - "turn_right": ebab, - "turn_sharp_left": eba7, - "turn_sharp_right": ebaa, - "turn_slight_left": eba4, - "turn_slight_right": eb9a, - "turned_in": e8e6, - "turned_in_not": e8e7, - "tv": e333, - "tv_off": e647, - "two_wheeler": e9f9, - "type_specimen": f8f0, - "u_turn_left": eba1, - "u_turn_right": eba2, - "umbrella": f1ad, - "unarchive": e169, - "undo": e166, - "unfold_less": e5d6, - "unfold_less_double": f8cf, - "unfold_more": e5d7, - "unfold_more_double": f8d0, - "unpublished": f236, - "unsubscribe": e0eb, - "upcoming": f07e, - "update": e923, - "update_disabled": e075, - "upgrade": f0fb, - "upload": f09b, - "upload_file": e9fc, - "usb": e1e0, - "usb_off": e4fa, - "vaccines": e138, - "vape_free": ebc6, - "vaping_rooms": ebcf, - "verified": ef76, - "verified_user": e8e8, - "vertical_align_bottom": e258, - "vertical_align_center": e259, - "vertical_align_top": e25a, - "vertical_distribute": e076, - "vertical_shades": ec0e, - "vertical_shades_closed": ec0d, - "vertical_split": e949, - "vibration": e62d, - "video_call": e070, - "video_camera_back": f07f, - "video_camera_front": f080, - "video_chat": f8a0, - "video_collection": e04a, - "video_file": eb87, - "video_label": e071, - "video_library": e04a, - "video_settings": ea75, - "video_stable": f081, - "videocam": e04b, - "videocam_off": e04c, - "videogame_asset": e338, - "videogame_asset_off": e500, - "view_agenda": e8e9, - "view_array": e8ea, - "view_carousel": e8eb, - "view_column": e8ec, - "view_comfortable": e42a, - "view_comfy": e42a, - "view_comfy_alt": eb73, - "view_compact": e42b, - "view_compact_alt": eb74, - "view_cozy": eb75, - "view_day": e8ed, - "view_headline": e8ee, - "view_in_ar": e9fe, - "view_kanban": eb7f, - "view_list": e8ef, - "view_module": e8f0, - "view_quilt": e8f1, - "view_sidebar": f114, - "view_stream": e8f2, - "view_timeline": eb85, - "view_week": e8f3, - "vignette": e435, - "villa": e586, - "visibility": e8f4, - "visibility_off": e8f5, - "voice_chat": e62e, - "voice_over_off": e94a, - "voicemail": e0d9, - "volcano": ebda, - "volume_down": e04d, - "volume_down_alt": e79c, - "volume_mute": e04e, - "volume_off": e04f, - "volume_up": e050, - "volunteer_activism": ea70, - "vpn_key": e0da, - "vpn_key_off": eb7a, - "vpn_lock": e62f, - "vrpano": f082, - "wallet": f8ff, - "wallet_giftcard": e8f6, - "wallet_membership": e8f7, - "wallet_travel": e8f8, - "wallpaper": e1bc, - "warehouse": ebb8, - "warning": e002, - "warning_amber": f083, - "wash": f1b1, - "watch": e334, - "watch_later": e924, - "watch_off": eae3, - "water": f084, - "water_damage": f203, - "water_drop": e798, - "waterfall_chart": ea00, - "waves": e176, - "waving_hand": e766, - "wb_auto": e42c, - "wb_cloudy": e42d, - "wb_incandescent": e42e, - "wb_iridescent": e436, - "wb_shade": ea01, - "wb_sunny": e430, - "wb_twighlight": ea02, - "wb_twilight": e1c6, - "wc": e63d, - "web": e051, - "web_asset": e069, - "web_asset_off": e4f7, - "web_stories": e595, - "webhook": eb92, - "wechat": ea81, - "weekend": e16b, - "west": f1e6, - "whatshot": e80e, - "wheelchair_pickup": f1ab, - "where_to_vote": e177, - "widgets": e1bd, - "width_full": f8f5, - "width_normal": f8f6, - "width_wide": f8f7, - "wifi": e63e, - "wifi_1_bar": e4ca, - "wifi_2_bar": e4d9, - "wifi_calling": ef77, - "wifi_calling_1": f0e7, - "wifi_calling_2": f0f6, - "wifi_calling_3": f085, - "wifi_channel": eb6a, - "wifi_find": eb31, - "wifi_lock": e1e1, - "wifi_off": e648, - "wifi_password": eb6b, - "wifi_protected_setup": f0fc, - "wifi_tethering": e1e2, - "wifi_tethering_error": ead9, - "wifi_tethering_error_rounded": f086, - "wifi_tethering_off": f087, - "wind_power": ec0c, - "window": f088, - "wine_bar": f1e8, - "woman": e13e, - "woman_2": f8e7, - "woo_commerce": ea6d, - "wordpress": ea9f, - "work": e8f9, - "work_history": ec09, - "work_off": e942, - "work_outline": e943, - "workspace_premium": e7af, - "workspaces": e1a0, - "workspaces_filled": ea0d, - "workspaces_outline": ea0f, - "wrap_text": e25b, - "wrong_location": ef78, - "wysiwyg": f1c3, - "yard": f089, - "youtube_searched_for": e8fa, - "zoom_in": e8ff, - "zoom_in_map": eb2d, - "zoom_out": e900, - "zoom_out_map": e56b -), $material-icons-codepoints); diff --git a/packages/themes/mfm/assets/material-icons/css/_mixins.scss b/packages/themes/mfm/assets/material-icons/css/_mixins.scss deleted file mode 100644 index 7c7b1946cd..0000000000 --- a/packages/themes/mfm/assets/material-icons/css/_mixins.scss +++ /dev/null @@ -1,13 +0,0 @@ -@import '../iconfont/mixins'; - -@function material-icons-content($codepoint) { - @return unquote('"\\#{$codepoint}"'); -} - -@mixin material-icon($name, $pseudo: 'before') { - $codepoint: map-get($material-icons-codepoints, $name); - - &::#{$pseudo} { - content: material-icons-content($codepoint); - } -} diff --git a/packages/themes/mfm/assets/material-icons/css/_variables.scss b/packages/themes/mfm/assets/material-icons/css/_variables.scss deleted file mode 100644 index 2a08c8161c..0000000000 --- a/packages/themes/mfm/assets/material-icons/css/_variables.scss +++ /dev/null @@ -1,6 +0,0 @@ -@import '../iconfont/variables'; -@import 'codepoints'; - -$material-icons-css-prefix: 'mi' !default; -$material-icons-css-search: '_' !default; -$material-icons-css-replace: '-' !default; diff --git a/packages/themes/mfm/assets/material-icons/css/material-icons.css b/packages/themes/mfm/assets/material-icons/css/material-icons.css deleted file mode 100644 index 582e2197c5..0000000000 --- a/packages/themes/mfm/assets/material-icons/css/material-icons.css +++ /dev/null @@ -1,9208 +0,0 @@ -/** - * @deprecated As of 1.0, use .material-icons instead of .mi - */ -.mi { - font-family: "Material Icons"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -/** - * @deprecated As of 1.0, use .material-icons-outlined instead of .mi-outlined - */ -.mi-outlined { - font-family: "Material Icons Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -/** - * @deprecated As of 1.0, use .material-icons-round instead of .mi-round - */ -.mi-round { - font-family: "Material Icons Round"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -/** - * @deprecated As of 1.0, use .material-icons-sharp instead of .mi-sharp - */ -.mi-sharp { - font-family: "Material Icons Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -/** - * @deprecated As of 1.0, use .material-icons-two-tone instead of .mi-two-tone - */ -.mi-two-tone { - font-family: "Material Icons Two Tone"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -.mi-123::before { - content: "\eb8d"; -} - -.mi-360::before { - content: "\e577"; -} - -.mi-10k::before { - content: "\e951"; -} - -.mi-10mp::before { - content: "\e952"; -} - -.mi-11mp::before { - content: "\e953"; -} - -.mi-12mp::before { - content: "\e954"; -} - -.mi-13mp::before { - content: "\e955"; -} - -.mi-14mp::before { - content: "\e956"; -} - -.mi-15mp::before { - content: "\e957"; -} - -.mi-16mp::before { - content: "\e958"; -} - -.mi-17mp::before { - content: "\e959"; -} - -.mi-18-up-rating::before { - content: "\f8fd"; -} - -.mi-18mp::before { - content: "\e95a"; -} - -.mi-19mp::before { - content: "\e95b"; -} - -.mi-1k::before { - content: "\e95c"; -} - -.mi-1k-plus::before { - content: "\e95d"; -} - -.mi-1x-mobiledata::before { - content: "\efcd"; -} - -.mi-20mp::before { - content: "\e95e"; -} - -.mi-21mp::before { - content: "\e95f"; -} - -.mi-22mp::before { - content: "\e960"; -} - -.mi-23mp::before { - content: "\e961"; -} - -.mi-24mp::before { - content: "\e962"; -} - -.mi-2k::before { - content: "\e963"; -} - -.mi-2k-plus::before { - content: "\e964"; -} - -.mi-2mp::before { - content: "\e965"; -} - -.mi-30fps::before { - content: "\efce"; -} - -.mi-30fps-select::before { - content: "\efcf"; -} - -.mi-3d-rotation::before { - content: "\e84d"; -} - -.mi-3g-mobiledata::before { - content: "\efd0"; -} - -.mi-3k::before { - content: "\e966"; -} - -.mi-3k-plus::before { - content: "\e967"; -} - -.mi-3mp::before { - content: "\e968"; -} - -.mi-3p::before { - content: "\efd1"; -} - -.mi-4g-mobiledata::before { - content: "\efd2"; -} - -.mi-4g-plus-mobiledata::before { - content: "\efd3"; -} - -.mi-4k::before { - content: "\e072"; -} - -.mi-4k-plus::before { - content: "\e969"; -} - -.mi-4mp::before { - content: "\e96a"; -} - -.mi-5g::before { - content: "\ef38"; -} - -.mi-5k::before { - content: "\e96b"; -} - -.mi-5k-plus::before { - content: "\e96c"; -} - -.mi-5mp::before { - content: "\e96d"; -} - -.mi-60fps::before { - content: "\efd4"; -} - -.mi-60fps-select::before { - content: "\efd5"; -} - -.mi-6-ft-apart::before { - content: "\f21e"; -} - -.mi-6k::before { - content: "\e96e"; -} - -.mi-6k-plus::before { - content: "\e96f"; -} - -.mi-6mp::before { - content: "\e970"; -} - -.mi-7k::before { - content: "\e971"; -} - -.mi-7k-plus::before { - content: "\e972"; -} - -.mi-7mp::before { - content: "\e973"; -} - -.mi-8k::before { - content: "\e974"; -} - -.mi-8k-plus::before { - content: "\e975"; -} - -.mi-8mp::before { - content: "\e976"; -} - -.mi-9k::before { - content: "\e977"; -} - -.mi-9k-plus::before { - content: "\e978"; -} - -.mi-9mp::before { - content: "\e979"; -} - -.mi-abc::before { - content: "\eb94"; -} - -.mi-ac-unit::before { - content: "\eb3b"; -} - -.mi-access-alarm::before { - content: "\e190"; -} - -.mi-access-alarms::before { - content: "\e191"; -} - -.mi-access-time::before { - content: "\e192"; -} - -.mi-access-time-filled::before { - content: "\efd6"; -} - -.mi-accessibility::before { - content: "\e84e"; -} - -.mi-accessibility-new::before { - content: "\e92c"; -} - -.mi-accessible::before { - content: "\e914"; -} - -.mi-accessible-forward::before { - content: "\e934"; -} - -.mi-account-balance::before { - content: "\e84f"; -} - -.mi-account-balance-wallet::before { - content: "\e850"; -} - -.mi-account-box::before { - content: "\e851"; -} - -.mi-account-circle::before { - content: "\e853"; -} - -.mi-account-tree::before { - content: "\e97a"; -} - -.mi-ad-units::before { - content: "\ef39"; -} - -.mi-adb::before { - content: "\e60e"; -} - -.mi-add::before { - content: "\e145"; -} - -.mi-add-a-photo::before { - content: "\e439"; -} - -.mi-add-alarm::before { - content: "\e193"; -} - -.mi-add-alert::before { - content: "\e003"; -} - -.mi-add-box::before { - content: "\e146"; -} - -.mi-add-business::before { - content: "\e729"; -} - -.mi-add-call::before { - content: "\e0e8"; -} - -.mi-add-card::before { - content: "\eb86"; -} - -.mi-add-chart::before { - content: "\e97b"; -} - -.mi-add-circle::before { - content: "\e147"; -} - -.mi-add-circle-outline::before { - content: "\e148"; -} - -.mi-add-comment::before { - content: "\e266"; -} - -.mi-add-home::before { - content: "\f8eb"; -} - -.mi-add-home-work::before { - content: "\f8ed"; -} - -.mi-add-ic-call::before { - content: "\e97c"; -} - -.mi-add-link::before { - content: "\e178"; -} - -.mi-add-location::before { - content: "\e567"; -} - -.mi-add-location-alt::before { - content: "\ef3a"; -} - -.mi-add-moderator::before { - content: "\e97d"; -} - -.mi-add-photo-alternate::before { - content: "\e43e"; -} - -.mi-add-reaction::before { - content: "\e1d3"; -} - -.mi-add-road::before { - content: "\ef3b"; -} - -.mi-add-shopping-cart::before { - content: "\e854"; -} - -.mi-add-task::before { - content: "\f23a"; -} - -.mi-add-to-drive::before { - content: "\e65c"; -} - -.mi-add-to-home-screen::before { - content: "\e1fe"; -} - -.mi-add-to-photos::before { - content: "\e39d"; -} - -.mi-add-to-queue::before { - content: "\e05c"; -} - -.mi-addchart::before { - content: "\ef3c"; -} - -.mi-adf-scanner::before { - content: "\eada"; -} - -.mi-adjust::before { - content: "\e39e"; -} - -.mi-admin-panel-settings::before { - content: "\ef3d"; -} - -.mi-adobe::before { - content: "\ea96"; -} - -.mi-ads-click::before { - content: "\e762"; -} - -.mi-agriculture::before { - content: "\ea79"; -} - -.mi-air::before { - content: "\efd8"; -} - -.mi-airline-seat-flat::before { - content: "\e630"; -} - -.mi-airline-seat-flat-angled::before { - content: "\e631"; -} - -.mi-airline-seat-individual-suite::before { - content: "\e632"; -} - -.mi-airline-seat-legroom-extra::before { - content: "\e633"; -} - -.mi-airline-seat-legroom-normal::before { - content: "\e634"; -} - -.mi-airline-seat-legroom-reduced::before { - content: "\e635"; -} - -.mi-airline-seat-recline-extra::before { - content: "\e636"; -} - -.mi-airline-seat-recline-normal::before { - content: "\e637"; -} - -.mi-airline-stops::before { - content: "\e7d0"; -} - -.mi-airlines::before { - content: "\e7ca"; -} - -.mi-airplane-ticket::before { - content: "\efd9"; -} - -.mi-airplanemode-active::before { - content: "\e195"; -} - -.mi-airplanemode-inactive::before { - content: "\e194"; -} - -.mi-airplanemode-off::before { - content: "\e194"; -} - -.mi-airplanemode-on::before { - content: "\e195"; -} - -.mi-airplay::before { - content: "\e055"; -} - -.mi-airport-shuttle::before { - content: "\eb3c"; -} - -.mi-alarm::before { - content: "\e855"; -} - -.mi-alarm-add::before { - content: "\e856"; -} - -.mi-alarm-off::before { - content: "\e857"; -} - -.mi-alarm-on::before { - content: "\e858"; -} - -.mi-album::before { - content: "\e019"; -} - -.mi-align-horizontal-center::before { - content: "\e00f"; -} - -.mi-align-horizontal-left::before { - content: "\e00d"; -} - -.mi-align-horizontal-right::before { - content: "\e010"; -} - -.mi-align-vertical-bottom::before { - content: "\e015"; -} - -.mi-align-vertical-center::before { - content: "\e011"; -} - -.mi-align-vertical-top::before { - content: "\e00c"; -} - -.mi-all-inbox::before { - content: "\e97f"; -} - -.mi-all-inclusive::before { - content: "\eb3d"; -} - -.mi-all-out::before { - content: "\e90b"; -} - -.mi-alt-route::before { - content: "\f184"; -} - -.mi-alternate-email::before { - content: "\e0e6"; -} - -.mi-amp-stories::before { - content: "\ea13"; -} - -.mi-analytics::before { - content: "\ef3e"; -} - -.mi-anchor::before { - content: "\f1cd"; -} - -.mi-android::before { - content: "\e859"; -} - -.mi-animation::before { - content: "\e71c"; -} - -.mi-announcement::before { - content: "\e85a"; -} - -.mi-aod::before { - content: "\efda"; -} - -.mi-apartment::before { - content: "\ea40"; -} - -.mi-api::before { - content: "\f1b7"; -} - -.mi-app-blocking::before { - content: "\ef3f"; -} - -.mi-app-registration::before { - content: "\ef40"; -} - -.mi-app-settings-alt::before { - content: "\ef41"; -} - -.mi-app-shortcut::before { - content: "\eae4"; -} - -.mi-apple::before { - content: "\ea80"; -} - -.mi-approval::before { - content: "\e982"; -} - -.mi-apps::before { - content: "\e5c3"; -} - -.mi-apps-outage::before { - content: "\e7cc"; -} - -.mi-architecture::before { - content: "\ea3b"; -} - -.mi-archive::before { - content: "\e149"; -} - -.mi-area-chart::before { - content: "\e770"; -} - -.mi-arrow-back::before { - content: "\e5c4"; -} - -.mi-arrow-back-ios::before { - content: "\e5e0"; -} - -.mi-arrow-back-ios-new::before { - content: "\e2ea"; -} - -.mi-arrow-circle-down::before { - content: "\f181"; -} - -.mi-arrow-circle-left::before { - content: "\eaa7"; -} - -.mi-arrow-circle-right::before { - content: "\eaaa"; -} - -.mi-arrow-circle-up::before { - content: "\f182"; -} - -.mi-arrow-downward::before { - content: "\e5db"; -} - -.mi-arrow-drop-down::before { - content: "\e5c5"; -} - -.mi-arrow-drop-down-circle::before { - content: "\e5c6"; -} - -.mi-arrow-drop-up::before { - content: "\e5c7"; -} - -.mi-arrow-forward::before { - content: "\e5c8"; -} - -.mi-arrow-forward-ios::before { - content: "\e5e1"; -} - -.mi-arrow-left::before { - content: "\e5de"; -} - -.mi-arrow-outward::before { - content: "\f8ce"; -} - -.mi-arrow-right::before { - content: "\e5df"; -} - -.mi-arrow-right-alt::before { - content: "\e941"; -} - -.mi-arrow-upward::before { - content: "\e5d8"; -} - -.mi-art-track::before { - content: "\e060"; -} - -.mi-article::before { - content: "\ef42"; -} - -.mi-aspect-ratio::before { - content: "\e85b"; -} - -.mi-assessment::before { - content: "\e85c"; -} - -.mi-assignment::before { - content: "\e85d"; -} - -.mi-assignment-add::before { - content: "\f848"; -} - -.mi-assignment-ind::before { - content: "\e85e"; -} - -.mi-assignment-late::before { - content: "\e85f"; -} - -.mi-assignment-return::before { - content: "\e860"; -} - -.mi-assignment-returned::before { - content: "\e861"; -} - -.mi-assignment-turned-in::before { - content: "\e862"; -} - -.mi-assist-walker::before { - content: "\f8d5"; -} - -.mi-assistant::before { - content: "\e39f"; -} - -.mi-assistant-direction::before { - content: "\e988"; -} - -.mi-assistant-navigation::before { - content: "\e989"; -} - -.mi-assistant-photo::before { - content: "\e3a0"; -} - -.mi-assured-workload::before { - content: "\eb6f"; -} - -.mi-atm::before { - content: "\e573"; -} - -.mi-attach-email::before { - content: "\ea5e"; -} - -.mi-attach-file::before { - content: "\e226"; -} - -.mi-attach-money::before { - content: "\e227"; -} - -.mi-attachment::before { - content: "\e2bc"; -} - -.mi-attractions::before { - content: "\ea52"; -} - -.mi-attribution::before { - content: "\efdb"; -} - -.mi-audio-file::before { - content: "\eb82"; -} - -.mi-audiotrack::before { - content: "\e3a1"; -} - -.mi-auto-awesome::before { - content: "\e65f"; -} - -.mi-auto-awesome-mosaic::before { - content: "\e660"; -} - -.mi-auto-awesome-motion::before { - content: "\e661"; -} - -.mi-auto-delete::before { - content: "\ea4c"; -} - -.mi-auto-fix-high::before { - content: "\e663"; -} - -.mi-auto-fix-normal::before { - content: "\e664"; -} - -.mi-auto-fix-off::before { - content: "\e665"; -} - -.mi-auto-graph::before { - content: "\e4fb"; -} - -.mi-auto-mode::before { - content: "\ec20"; -} - -.mi-auto-stories::before { - content: "\e666"; -} - -.mi-autofps-select::before { - content: "\efdc"; -} - -.mi-autorenew::before { - content: "\e863"; -} - -.mi-av-timer::before { - content: "\e01b"; -} - -.mi-baby-changing-station::before { - content: "\f19b"; -} - -.mi-back-hand::before { - content: "\e764"; -} - -.mi-backpack::before { - content: "\f19c"; -} - -.mi-backspace::before { - content: "\e14a"; -} - -.mi-backup::before { - content: "\e864"; -} - -.mi-backup-table::before { - content: "\ef43"; -} - -.mi-badge::before { - content: "\ea67"; -} - -.mi-bakery-dining::before { - content: "\ea53"; -} - -.mi-balance::before { - content: "\eaf6"; -} - -.mi-balcony::before { - content: "\e58f"; -} - -.mi-ballot::before { - content: "\e172"; -} - -.mi-bar-chart::before { - content: "\e26b"; -} - -.mi-barcode-reader::before { - content: "\f85c"; -} - -.mi-batch-prediction::before { - content: "\f0f5"; -} - -.mi-bathroom::before { - content: "\efdd"; -} - -.mi-bathtub::before { - content: "\ea41"; -} - -.mi-battery-0-bar::before { - content: "\ebdc"; -} - -.mi-battery-1-bar::before { - content: "\ebd9"; -} - -.mi-battery-20::before { - content: "\f09c"; -} - -.mi-battery-2-bar::before { - content: "\ebe0"; -} - -.mi-battery-30::before { - content: "\f09d"; -} - -.mi-battery-3-bar::before { - content: "\ebdd"; -} - -.mi-battery-4-bar::before { - content: "\ebe2"; -} - -.mi-battery-50::before { - content: "\f09e"; -} - -.mi-battery-5-bar::before { - content: "\ebd4"; -} - -.mi-battery-60::before { - content: "\f09f"; -} - -.mi-battery-6-bar::before { - content: "\ebd2"; -} - -.mi-battery-80::before { - content: "\f0a0"; -} - -.mi-battery-90::before { - content: "\f0a1"; -} - -.mi-battery-alert::before { - content: "\e19c"; -} - -.mi-battery-charging-20::before { - content: "\f0a2"; -} - -.mi-battery-charging-30::before { - content: "\f0a3"; -} - -.mi-battery-charging-50::before { - content: "\f0a4"; -} - -.mi-battery-charging-60::before { - content: "\f0a5"; -} - -.mi-battery-charging-80::before { - content: "\f0a6"; -} - -.mi-battery-charging-90::before { - content: "\f0a7"; -} - -.mi-battery-charging-full::before { - content: "\e1a3"; -} - -.mi-battery-full::before { - content: "\e1a4"; -} - -.mi-battery-saver::before { - content: "\efde"; -} - -.mi-battery-std::before { - content: "\e1a5"; -} - -.mi-battery-unknown::before { - content: "\e1a6"; -} - -.mi-beach-access::before { - content: "\eb3e"; -} - -.mi-bed::before { - content: "\efdf"; -} - -.mi-bedroom-baby::before { - content: "\efe0"; -} - -.mi-bedroom-child::before { - content: "\efe1"; -} - -.mi-bedroom-parent::before { - content: "\efe2"; -} - -.mi-bedtime::before { - content: "\ef44"; -} - -.mi-bedtime-off::before { - content: "\eb76"; -} - -.mi-beenhere::before { - content: "\e52d"; -} - -.mi-bento::before { - content: "\f1f4"; -} - -.mi-bike-scooter::before { - content: "\ef45"; -} - -.mi-biotech::before { - content: "\ea3a"; -} - -.mi-blender::before { - content: "\efe3"; -} - -.mi-blind::before { - content: "\f8d6"; -} - -.mi-blinds::before { - content: "\e286"; -} - -.mi-blinds-closed::before { - content: "\ec1f"; -} - -.mi-block::before { - content: "\e14b"; -} - -.mi-block-flipped::before { - content: "\ef46"; -} - -.mi-bloodtype::before { - content: "\efe4"; -} - -.mi-bluetooth::before { - content: "\e1a7"; -} - -.mi-bluetooth-audio::before { - content: "\e60f"; -} - -.mi-bluetooth-connected::before { - content: "\e1a8"; -} - -.mi-bluetooth-disabled::before { - content: "\e1a9"; -} - -.mi-bluetooth-drive::before { - content: "\efe5"; -} - -.mi-bluetooth-searching::before { - content: "\e1aa"; -} - -.mi-blur-circular::before { - content: "\e3a2"; -} - -.mi-blur-linear::before { - content: "\e3a3"; -} - -.mi-blur-off::before { - content: "\e3a4"; -} - -.mi-blur-on::before { - content: "\e3a5"; -} - -.mi-bolt::before { - content: "\ea0b"; -} - -.mi-book::before { - content: "\e865"; -} - -.mi-book-online::before { - content: "\f217"; -} - -.mi-bookmark::before { - content: "\e866"; -} - -.mi-bookmark-add::before { - content: "\e598"; -} - -.mi-bookmark-added::before { - content: "\e599"; -} - -.mi-bookmark-border::before { - content: "\e867"; -} - -.mi-bookmark-outline::before { - content: "\e867"; -} - -.mi-bookmark-remove::before { - content: "\e59a"; -} - -.mi-bookmarks::before { - content: "\e98b"; -} - -.mi-border-all::before { - content: "\e228"; -} - -.mi-border-bottom::before { - content: "\e229"; -} - -.mi-border-clear::before { - content: "\e22a"; -} - -.mi-border-color::before { - content: "\e22b"; -} - -.mi-border-horizontal::before { - content: "\e22c"; -} - -.mi-border-inner::before { - content: "\e22d"; -} - -.mi-border-left::before { - content: "\e22e"; -} - -.mi-border-outer::before { - content: "\e22f"; -} - -.mi-border-right::before { - content: "\e230"; -} - -.mi-border-style::before { - content: "\e231"; -} - -.mi-border-top::before { - content: "\e232"; -} - -.mi-border-vertical::before { - content: "\e233"; -} - -.mi-boy::before { - content: "\eb67"; -} - -.mi-branding-watermark::before { - content: "\e06b"; -} - -.mi-breakfast-dining::before { - content: "\ea54"; -} - -.mi-brightness-1::before { - content: "\e3a6"; -} - -.mi-brightness-2::before { - content: "\e3a7"; -} - -.mi-brightness-3::before { - content: "\e3a8"; -} - -.mi-brightness-4::before { - content: "\e3a9"; -} - -.mi-brightness-5::before { - content: "\e3aa"; -} - -.mi-brightness-6::before { - content: "\e3ab"; -} - -.mi-brightness-7::before { - content: "\e3ac"; -} - -.mi-brightness-auto::before { - content: "\e1ab"; -} - -.mi-brightness-high::before { - content: "\e1ac"; -} - -.mi-brightness-low::before { - content: "\e1ad"; -} - -.mi-brightness-medium::before { - content: "\e1ae"; -} - -.mi-broadcast-on-home::before { - content: "\f8f8"; -} - -.mi-broadcast-on-personal::before { - content: "\f8f9"; -} - -.mi-broken-image::before { - content: "\e3ad"; -} - -.mi-browse-gallery::before { - content: "\ebd1"; -} - -.mi-browser-not-supported::before { - content: "\ef47"; -} - -.mi-browser-updated::before { - content: "\e7cf"; -} - -.mi-brunch-dining::before { - content: "\ea73"; -} - -.mi-brush::before { - content: "\e3ae"; -} - -.mi-bubble-chart::before { - content: "\e6dd"; -} - -.mi-bug-report::before { - content: "\e868"; -} - -.mi-build::before { - content: "\e869"; -} - -.mi-build-circle::before { - content: "\ef48"; -} - -.mi-bungalow::before { - content: "\e591"; -} - -.mi-burst-mode::before { - content: "\e43c"; -} - -.mi-bus-alert::before { - content: "\e98f"; -} - -.mi-business::before { - content: "\e0af"; -} - -.mi-business-center::before { - content: "\eb3f"; -} - -.mi-cabin::before { - content: "\e589"; -} - -.mi-cable::before { - content: "\efe6"; -} - -.mi-cached::before { - content: "\e86a"; -} - -.mi-cake::before { - content: "\e7e9"; -} - -.mi-calculate::before { - content: "\ea5f"; -} - -.mi-calendar-month::before { - content: "\ebcc"; -} - -.mi-calendar-today::before { - content: "\e935"; -} - -.mi-calendar-view-day::before { - content: "\e936"; -} - -.mi-calendar-view-month::before { - content: "\efe7"; -} - -.mi-calendar-view-week::before { - content: "\efe8"; -} - -.mi-call::before { - content: "\e0b0"; -} - -.mi-call-end::before { - content: "\e0b1"; -} - -.mi-call-made::before { - content: "\e0b2"; -} - -.mi-call-merge::before { - content: "\e0b3"; -} - -.mi-call-missed::before { - content: "\e0b4"; -} - -.mi-call-missed-outgoing::before { - content: "\e0e4"; -} - -.mi-call-received::before { - content: "\e0b5"; -} - -.mi-call-split::before { - content: "\e0b6"; -} - -.mi-call-to-action::before { - content: "\e06c"; -} - -.mi-camera::before { - content: "\e3af"; -} - -.mi-camera-alt::before { - content: "\e3b0"; -} - -.mi-camera-enhance::before { - content: "\e8fc"; -} - -.mi-camera-front::before { - content: "\e3b1"; -} - -.mi-camera-indoor::before { - content: "\efe9"; -} - -.mi-camera-outdoor::before { - content: "\efea"; -} - -.mi-camera-rear::before { - content: "\e3b2"; -} - -.mi-camera-roll::before { - content: "\e3b3"; -} - -.mi-cameraswitch::before { - content: "\efeb"; -} - -.mi-campaign::before { - content: "\ef49"; -} - -.mi-cancel::before { - content: "\e5c9"; -} - -.mi-cancel-presentation::before { - content: "\e0e9"; -} - -.mi-cancel-schedule-send::before { - content: "\ea39"; -} - -.mi-candlestick-chart::before { - content: "\ead4"; -} - -.mi-car-crash::before { - content: "\ebf2"; -} - -.mi-car-rental::before { - content: "\ea55"; -} - -.mi-car-repair::before { - content: "\ea56"; -} - -.mi-card-giftcard::before { - content: "\e8f6"; -} - -.mi-card-membership::before { - content: "\e8f7"; -} - -.mi-card-travel::before { - content: "\e8f8"; -} - -.mi-carpenter::before { - content: "\f1f8"; -} - -.mi-cases::before { - content: "\e992"; -} - -.mi-casino::before { - content: "\eb40"; -} - -.mi-cast::before { - content: "\e307"; -} - -.mi-cast-connected::before { - content: "\e308"; -} - -.mi-cast-for-education::before { - content: "\efec"; -} - -.mi-castle::before { - content: "\eab1"; -} - -.mi-catching-pokemon::before { - content: "\e508"; -} - -.mi-category::before { - content: "\e574"; -} - -.mi-celebration::before { - content: "\ea65"; -} - -.mi-cell-tower::before { - content: "\ebba"; -} - -.mi-cell-wifi::before { - content: "\e0ec"; -} - -.mi-center-focus-strong::before { - content: "\e3b4"; -} - -.mi-center-focus-weak::before { - content: "\e3b5"; -} - -.mi-chair::before { - content: "\efed"; -} - -.mi-chair-alt::before { - content: "\efee"; -} - -.mi-chalet::before { - content: "\e585"; -} - -.mi-change-circle::before { - content: "\e2e7"; -} - -.mi-change-history::before { - content: "\e86b"; -} - -.mi-charging-station::before { - content: "\f19d"; -} - -.mi-chat::before { - content: "\e0b7"; -} - -.mi-chat-bubble::before { - content: "\e0ca"; -} - -.mi-chat-bubble-outline::before { - content: "\e0cb"; -} - -.mi-check::before { - content: "\e5ca"; -} - -.mi-check-box::before { - content: "\e834"; -} - -.mi-check-box-outline-blank::before { - content: "\e835"; -} - -.mi-check-circle::before { - content: "\e86c"; -} - -.mi-check-circle-outline::before { - content: "\e92d"; -} - -.mi-checklist::before { - content: "\e6b1"; -} - -.mi-checklist-rtl::before { - content: "\e6b3"; -} - -.mi-checkroom::before { - content: "\f19e"; -} - -.mi-chevron-left::before { - content: "\e5cb"; -} - -.mi-chevron-right::before { - content: "\e5cc"; -} - -.mi-child-care::before { - content: "\eb41"; -} - -.mi-child-friendly::before { - content: "\eb42"; -} - -.mi-chrome-reader-mode::before { - content: "\e86d"; -} - -.mi-church::before { - content: "\eaae"; -} - -.mi-circle::before { - content: "\ef4a"; -} - -.mi-circle-notifications::before { - content: "\e994"; -} - -.mi-class::before { - content: "\e86e"; -} - -.mi-clean-hands::before { - content: "\f21f"; -} - -.mi-cleaning-services::before { - content: "\f0ff"; -} - -.mi-clear::before { - content: "\e14c"; -} - -.mi-clear-all::before { - content: "\e0b8"; -} - -.mi-close::before { - content: "\e5cd"; -} - -.mi-close-fullscreen::before { - content: "\f1cf"; -} - -.mi-closed-caption::before { - content: "\e01c"; -} - -.mi-closed-caption-disabled::before { - content: "\f1dc"; -} - -.mi-closed-caption-off::before { - content: "\e996"; -} - -.mi-cloud::before { - content: "\e2bd"; -} - -.mi-cloud-circle::before { - content: "\e2be"; -} - -.mi-cloud-done::before { - content: "\e2bf"; -} - -.mi-cloud-download::before { - content: "\e2c0"; -} - -.mi-cloud-off::before { - content: "\e2c1"; -} - -.mi-cloud-queue::before { - content: "\e2c2"; -} - -.mi-cloud-sync::before { - content: "\eb5a"; -} - -.mi-cloud-upload::before { - content: "\e2c3"; -} - -.mi-cloudy-snowing::before { - content: "\e810"; -} - -.mi-co2::before { - content: "\e7b0"; -} - -.mi-co-present::before { - content: "\eaf0"; -} - -.mi-code::before { - content: "\e86f"; -} - -.mi-code-off::before { - content: "\e4f3"; -} - -.mi-coffee::before { - content: "\efef"; -} - -.mi-coffee-maker::before { - content: "\eff0"; -} - -.mi-collections::before { - content: "\e3b6"; -} - -.mi-collections-bookmark::before { - content: "\e431"; -} - -.mi-color-lens::before { - content: "\e3b7"; -} - -.mi-colorize::before { - content: "\e3b8"; -} - -.mi-comment::before { - content: "\e0b9"; -} - -.mi-comment-bank::before { - content: "\ea4e"; -} - -.mi-comments-disabled::before { - content: "\e7a2"; -} - -.mi-commit::before { - content: "\eaf5"; -} - -.mi-commute::before { - content: "\e940"; -} - -.mi-compare::before { - content: "\e3b9"; -} - -.mi-compare-arrows::before { - content: "\e915"; -} - -.mi-compass-calibration::before { - content: "\e57c"; -} - -.mi-compost::before { - content: "\e761"; -} - -.mi-compress::before { - content: "\e94d"; -} - -.mi-computer::before { - content: "\e30a"; -} - -.mi-confirmation-num::before { - content: "\e638"; -} - -.mi-confirmation-number::before { - content: "\e638"; -} - -.mi-connect-without-contact::before { - content: "\f223"; -} - -.mi-connected-tv::before { - content: "\e998"; -} - -.mi-connecting-airports::before { - content: "\e7c9"; -} - -.mi-construction::before { - content: "\ea3c"; -} - -.mi-contact-emergency::before { - content: "\f8d1"; -} - -.mi-contact-mail::before { - content: "\e0d0"; -} - -.mi-contact-page::before { - content: "\f22e"; -} - -.mi-contact-phone::before { - content: "\e0cf"; -} - -.mi-contact-support::before { - content: "\e94c"; -} - -.mi-contactless::before { - content: "\ea71"; -} - -.mi-contacts::before { - content: "\e0ba"; -} - -.mi-content-copy::before { - content: "\e14d"; -} - -.mi-content-cut::before { - content: "\e14e"; -} - -.mi-content-paste::before { - content: "\e14f"; -} - -.mi-content-paste-go::before { - content: "\ea8e"; -} - -.mi-content-paste-off::before { - content: "\e4f8"; -} - -.mi-content-paste-search::before { - content: "\ea9b"; -} - -.mi-contrast::before { - content: "\eb37"; -} - -.mi-control-camera::before { - content: "\e074"; -} - -.mi-control-point::before { - content: "\e3ba"; -} - -.mi-control-point-duplicate::before { - content: "\e3bb"; -} - -.mi-conveyor-belt::before { - content: "\f867"; -} - -.mi-cookie::before { - content: "\eaac"; -} - -.mi-copy::before { - content: "\f08a"; -} - -.mi-copy-all::before { - content: "\e2ec"; -} - -.mi-copyright::before { - content: "\e90c"; -} - -.mi-coronavirus::before { - content: "\f221"; -} - -.mi-corporate-fare::before { - content: "\f1d0"; -} - -.mi-cottage::before { - content: "\e587"; -} - -.mi-countertops::before { - content: "\f1f7"; -} - -.mi-create::before { - content: "\e150"; -} - -.mi-create-new-folder::before { - content: "\e2cc"; -} - -.mi-credit-card::before { - content: "\e870"; -} - -.mi-credit-card-off::before { - content: "\e4f4"; -} - -.mi-credit-score::before { - content: "\eff1"; -} - -.mi-crib::before { - content: "\e588"; -} - -.mi-crisis-alert::before { - content: "\ebe9"; -} - -.mi-crop::before { - content: "\e3be"; -} - -.mi-crop-16-9::before { - content: "\e3bc"; -} - -.mi-crop-3-2::before { - content: "\e3bd"; -} - -.mi-crop-5-4::before { - content: "\e3bf"; -} - -.mi-crop-7-5::before { - content: "\e3c0"; -} - -.mi-crop-din::before { - content: "\e3c1"; -} - -.mi-crop-free::before { - content: "\e3c2"; -} - -.mi-crop-landscape::before { - content: "\e3c3"; -} - -.mi-crop-original::before { - content: "\e3c4"; -} - -.mi-crop-portrait::before { - content: "\e3c5"; -} - -.mi-crop-rotate::before { - content: "\e437"; -} - -.mi-crop-square::before { - content: "\e3c6"; -} - -.mi-cruelty-free::before { - content: "\e799"; -} - -.mi-css::before { - content: "\eb93"; -} - -.mi-currency-bitcoin::before { - content: "\ebc5"; -} - -.mi-currency-exchange::before { - content: "\eb70"; -} - -.mi-currency-franc::before { - content: "\eafa"; -} - -.mi-currency-lira::before { - content: "\eaef"; -} - -.mi-currency-pound::before { - content: "\eaf1"; -} - -.mi-currency-ruble::before { - content: "\eaec"; -} - -.mi-currency-rupee::before { - content: "\eaf7"; -} - -.mi-currency-yen::before { - content: "\eafb"; -} - -.mi-currency-yuan::before { - content: "\eaf9"; -} - -.mi-curtains::before { - content: "\ec1e"; -} - -.mi-curtains-closed::before { - content: "\ec1d"; -} - -.mi-cut::before { - content: "\f08b"; -} - -.mi-cyclone::before { - content: "\ebd5"; -} - -.mi-dangerous::before { - content: "\e99a"; -} - -.mi-dark-mode::before { - content: "\e51c"; -} - -.mi-dashboard::before { - content: "\e871"; -} - -.mi-dashboard-customize::before { - content: "\e99b"; -} - -.mi-data-array::before { - content: "\ead1"; -} - -.mi-data-exploration::before { - content: "\e76f"; -} - -.mi-data-object::before { - content: "\ead3"; -} - -.mi-data-saver-off::before { - content: "\eff2"; -} - -.mi-data-saver-on::before { - content: "\eff3"; -} - -.mi-data-thresholding::before { - content: "\eb9f"; -} - -.mi-data-usage::before { - content: "\e1af"; -} - -.mi-dataset::before { - content: "\f8ee"; -} - -.mi-dataset-linked::before { - content: "\f8ef"; -} - -.mi-date-range::before { - content: "\e916"; -} - -.mi-deblur::before { - content: "\eb77"; -} - -.mi-deck::before { - content: "\ea42"; -} - -.mi-dehaze::before { - content: "\e3c7"; -} - -.mi-delete::before { - content: "\e872"; -} - -.mi-delete-forever::before { - content: "\e92b"; -} - -.mi-delete-outline::before { - content: "\e92e"; -} - -.mi-delete-sweep::before { - content: "\e16c"; -} - -.mi-delivery-dining::before { - content: "\ea72"; -} - -.mi-density-large::before { - content: "\eba9"; -} - -.mi-density-medium::before { - content: "\eb9e"; -} - -.mi-density-small::before { - content: "\eba8"; -} - -.mi-departure-board::before { - content: "\e576"; -} - -.mi-description::before { - content: "\e873"; -} - -.mi-deselect::before { - content: "\ebb6"; -} - -.mi-design-services::before { - content: "\f10a"; -} - -.mi-desk::before { - content: "\f8f4"; -} - -.mi-desktop-access-disabled::before { - content: "\e99d"; -} - -.mi-desktop-mac::before { - content: "\e30b"; -} - -.mi-desktop-windows::before { - content: "\e30c"; -} - -.mi-details::before { - content: "\e3c8"; -} - -.mi-developer-board::before { - content: "\e30d"; -} - -.mi-developer-board-off::before { - content: "\e4ff"; -} - -.mi-developer-mode::before { - content: "\e1b0"; -} - -.mi-device-hub::before { - content: "\e335"; -} - -.mi-device-thermostat::before { - content: "\e1ff"; -} - -.mi-device-unknown::before { - content: "\e339"; -} - -.mi-devices::before { - content: "\e1b1"; -} - -.mi-devices-fold::before { - content: "\ebde"; -} - -.mi-devices-other::before { - content: "\e337"; -} - -.mi-dew-point::before { - content: "\f879"; -} - -.mi-dialer-sip::before { - content: "\e0bb"; -} - -.mi-dialpad::before { - content: "\e0bc"; -} - -.mi-diamond::before { - content: "\ead5"; -} - -.mi-difference::before { - content: "\eb7d"; -} - -.mi-dining::before { - content: "\eff4"; -} - -.mi-dinner-dining::before { - content: "\ea57"; -} - -.mi-directions::before { - content: "\e52e"; -} - -.mi-directions-bike::before { - content: "\e52f"; -} - -.mi-directions-boat::before { - content: "\e532"; -} - -.mi-directions-boat-filled::before { - content: "\eff5"; -} - -.mi-directions-bus::before { - content: "\e530"; -} - -.mi-directions-bus-filled::before { - content: "\eff6"; -} - -.mi-directions-car::before { - content: "\e531"; -} - -.mi-directions-car-filled::before { - content: "\eff7"; -} - -.mi-directions-ferry::before { - content: "\e532"; -} - -.mi-directions-off::before { - content: "\f10f"; -} - -.mi-directions-railway::before { - content: "\e534"; -} - -.mi-directions-railway-filled::before { - content: "\eff8"; -} - -.mi-directions-run::before { - content: "\e566"; -} - -.mi-directions-subway::before { - content: "\e533"; -} - -.mi-directions-subway-filled::before { - content: "\eff9"; -} - -.mi-directions-train::before { - content: "\e534"; -} - -.mi-directions-transit::before { - content: "\e535"; -} - -.mi-directions-transit-filled::before { - content: "\effa"; -} - -.mi-directions-walk::before { - content: "\e536"; -} - -.mi-dirty-lens::before { - content: "\ef4b"; -} - -.mi-disabled-by-default::before { - content: "\f230"; -} - -.mi-disabled-visible::before { - content: "\e76e"; -} - -.mi-disc-full::before { - content: "\e610"; -} - -.mi-discord::before { - content: "\ea6c"; -} - -.mi-discount::before { - content: "\ebc9"; -} - -.mi-display-settings::before { - content: "\eb97"; -} - -.mi-diversity-1::before { - content: "\f8d7"; -} - -.mi-diversity-2::before { - content: "\f8d8"; -} - -.mi-diversity-3::before { - content: "\f8d9"; -} - -.mi-dnd-forwardslash::before { - content: "\e611"; -} - -.mi-dns::before { - content: "\e875"; -} - -.mi-do-disturb::before { - content: "\f08c"; -} - -.mi-do-disturb-alt::before { - content: "\f08d"; -} - -.mi-do-disturb-off::before { - content: "\f08e"; -} - -.mi-do-disturb-on::before { - content: "\f08f"; -} - -.mi-do-not-disturb::before { - content: "\e612"; -} - -.mi-do-not-disturb-alt::before { - content: "\e611"; -} - -.mi-do-not-disturb-off::before { - content: "\e643"; -} - -.mi-do-not-disturb-on::before { - content: "\e644"; -} - -.mi-do-not-disturb-on-total-silence::before { - content: "\effb"; -} - -.mi-do-not-step::before { - content: "\f19f"; -} - -.mi-do-not-touch::before { - content: "\f1b0"; -} - -.mi-dock::before { - content: "\e30e"; -} - -.mi-document-scanner::before { - content: "\e5fa"; -} - -.mi-domain::before { - content: "\e7ee"; -} - -.mi-domain-add::before { - content: "\eb62"; -} - -.mi-domain-disabled::before { - content: "\e0ef"; -} - -.mi-domain-verification::before { - content: "\ef4c"; -} - -.mi-done::before { - content: "\e876"; -} - -.mi-done-all::before { - content: "\e877"; -} - -.mi-done-outline::before { - content: "\e92f"; -} - -.mi-donut-large::before { - content: "\e917"; -} - -.mi-donut-small::before { - content: "\e918"; -} - -.mi-door-back::before { - content: "\effc"; -} - -.mi-door-front::before { - content: "\effd"; -} - -.mi-door-sliding::before { - content: "\effe"; -} - -.mi-doorbell::before { - content: "\efff"; -} - -.mi-double-arrow::before { - content: "\ea50"; -} - -.mi-downhill-skiing::before { - content: "\e509"; -} - -.mi-download::before { - content: "\f090"; -} - -.mi-download-done::before { - content: "\f091"; -} - -.mi-download-for-offline::before { - content: "\f000"; -} - -.mi-downloading::before { - content: "\f001"; -} - -.mi-drafts::before { - content: "\e151"; -} - -.mi-drag-handle::before { - content: "\e25d"; -} - -.mi-drag-indicator::before { - content: "\e945"; -} - -.mi-draw::before { - content: "\e746"; -} - -.mi-drive-eta::before { - content: "\e613"; -} - -.mi-drive-file-move::before { - content: "\e675"; -} - -.mi-drive-file-move-outline::before { - content: "\e9a1"; -} - -.mi-drive-file-move-rtl::before { - content: "\e76d"; -} - -.mi-drive-file-rename-outline::before { - content: "\e9a2"; -} - -.mi-drive-folder-upload::before { - content: "\e9a3"; -} - -.mi-dry::before { - content: "\f1b3"; -} - -.mi-dry-cleaning::before { - content: "\ea58"; -} - -.mi-duo::before { - content: "\e9a5"; -} - -.mi-dvr::before { - content: "\e1b2"; -} - -.mi-dynamic-feed::before { - content: "\ea14"; -} - -.mi-dynamic-form::before { - content: "\f1bf"; -} - -.mi-e-mobiledata::before { - content: "\f002"; -} - -.mi-earbuds::before { - content: "\f003"; -} - -.mi-earbuds-battery::before { - content: "\f004"; -} - -.mi-east::before { - content: "\f1df"; -} - -.mi-eco::before { - content: "\ea35"; -} - -.mi-edgesensor-high::before { - content: "\f005"; -} - -.mi-edgesensor-low::before { - content: "\f006"; -} - -.mi-edit::before { - content: "\e3c9"; -} - -.mi-edit-attributes::before { - content: "\e578"; -} - -.mi-edit-calendar::before { - content: "\e742"; -} - -.mi-edit-document::before { - content: "\f88c"; -} - -.mi-edit-location::before { - content: "\e568"; -} - -.mi-edit-location-alt::before { - content: "\e1c5"; -} - -.mi-edit-note::before { - content: "\e745"; -} - -.mi-edit-notifications::before { - content: "\e525"; -} - -.mi-edit-off::before { - content: "\e950"; -} - -.mi-edit-road::before { - content: "\ef4d"; -} - -.mi-edit-square::before { - content: "\f88d"; -} - -.mi-egg::before { - content: "\eacc"; -} - -.mi-egg-alt::before { - content: "\eac8"; -} - -.mi-eject::before { - content: "\e8fb"; -} - -.mi-elderly::before { - content: "\f21a"; -} - -.mi-elderly-woman::before { - content: "\eb69"; -} - -.mi-electric-bike::before { - content: "\eb1b"; -} - -.mi-electric-bolt::before { - content: "\ec1c"; -} - -.mi-electric-car::before { - content: "\eb1c"; -} - -.mi-electric-meter::before { - content: "\ec1b"; -} - -.mi-electric-moped::before { - content: "\eb1d"; -} - -.mi-electric-rickshaw::before { - content: "\eb1e"; -} - -.mi-electric-scooter::before { - content: "\eb1f"; -} - -.mi-electrical-services::before { - content: "\f102"; -} - -.mi-elevator::before { - content: "\f1a0"; -} - -.mi-email::before { - content: "\e0be"; -} - -.mi-emergency::before { - content: "\e1eb"; -} - -.mi-emergency-recording::before { - content: "\ebf4"; -} - -.mi-emergency-share::before { - content: "\ebf6"; -} - -.mi-emoji-emotions::before { - content: "\ea22"; -} - -.mi-emoji-events::before { - content: "\ea23"; -} - -.mi-emoji-flags::before { - content: "\ea1a"; -} - -.mi-emoji-food-beverage::before { - content: "\ea1b"; -} - -.mi-emoji-nature::before { - content: "\ea1c"; -} - -.mi-emoji-objects::before { - content: "\ea24"; -} - -.mi-emoji-people::before { - content: "\ea1d"; -} - -.mi-emoji-symbols::before { - content: "\ea1e"; -} - -.mi-emoji-transportation::before { - content: "\ea1f"; -} - -.mi-energy-savings-leaf::before { - content: "\ec1a"; -} - -.mi-engineering::before { - content: "\ea3d"; -} - -.mi-enhance-photo-translate::before { - content: "\e8fc"; -} - -.mi-enhanced-encryption::before { - content: "\e63f"; -} - -.mi-equalizer::before { - content: "\e01d"; -} - -.mi-error::before { - content: "\e000"; -} - -.mi-error-outline::before { - content: "\e001"; -} - -.mi-escalator::before { - content: "\f1a1"; -} - -.mi-escalator-warning::before { - content: "\f1ac"; -} - -.mi-euro::before { - content: "\ea15"; -} - -.mi-euro-symbol::before { - content: "\e926"; -} - -.mi-ev-station::before { - content: "\e56d"; -} - -.mi-event::before { - content: "\e878"; -} - -.mi-event-available::before { - content: "\e614"; -} - -.mi-event-busy::before { - content: "\e615"; -} - -.mi-event-note::before { - content: "\e616"; -} - -.mi-event-repeat::before { - content: "\eb7b"; -} - -.mi-event-seat::before { - content: "\e903"; -} - -.mi-exit-to-app::before { - content: "\e879"; -} - -.mi-expand::before { - content: "\e94f"; -} - -.mi-expand-circle-down::before { - content: "\e7cd"; -} - -.mi-expand-less::before { - content: "\e5ce"; -} - -.mi-expand-more::before { - content: "\e5cf"; -} - -.mi-explicit::before { - content: "\e01e"; -} - -.mi-explore::before { - content: "\e87a"; -} - -.mi-explore-off::before { - content: "\e9a8"; -} - -.mi-exposure::before { - content: "\e3ca"; -} - -.mi-exposure-minus-1::before { - content: "\e3cb"; -} - -.mi-exposure-minus-2::before { - content: "\e3cc"; -} - -.mi-exposure-neg-1::before { - content: "\e3cb"; -} - -.mi-exposure-neg-2::before { - content: "\e3cc"; -} - -.mi-exposure-plus-1::before { - content: "\e3cd"; -} - -.mi-exposure-plus-2::before { - content: "\e3ce"; -} - -.mi-exposure-zero::before { - content: "\e3cf"; -} - -.mi-extension::before { - content: "\e87b"; -} - -.mi-extension-off::before { - content: "\e4f5"; -} - -.mi-face::before { - content: "\e87c"; -} - -.mi-face-2::before { - content: "\f8da"; -} - -.mi-face-3::before { - content: "\f8db"; -} - -.mi-face-4::before { - content: "\f8dc"; -} - -.mi-face-5::before { - content: "\f8dd"; -} - -.mi-face-6::before { - content: "\f8de"; -} - -.mi-face-retouching-natural::before { - content: "\ef4e"; -} - -.mi-face-retouching-off::before { - content: "\f007"; -} - -.mi-face-unlock::before { - content: "\f008"; -} - -.mi-facebook::before { - content: "\f234"; -} - -.mi-fact-check::before { - content: "\f0c5"; -} - -.mi-factory::before { - content: "\ebbc"; -} - -.mi-family-restroom::before { - content: "\f1a2"; -} - -.mi-fast-forward::before { - content: "\e01f"; -} - -.mi-fast-rewind::before { - content: "\e020"; -} - -.mi-fastfood::before { - content: "\e57a"; -} - -.mi-favorite::before { - content: "\e87d"; -} - -.mi-favorite-border::before { - content: "\e87e"; -} - -.mi-favorite-outline::before { - content: "\e87e"; -} - -.mi-fax::before { - content: "\ead8"; -} - -.mi-featured-play-list::before { - content: "\e06d"; -} - -.mi-featured-video::before { - content: "\e06e"; -} - -.mi-feed::before { - content: "\f009"; -} - -.mi-feedback::before { - content: "\e87f"; -} - -.mi-female::before { - content: "\e590"; -} - -.mi-fence::before { - content: "\f1f6"; -} - -.mi-festival::before { - content: "\ea68"; -} - -.mi-fiber-dvr::before { - content: "\e05d"; -} - -.mi-fiber-manual-record::before { - content: "\e061"; -} - -.mi-fiber-new::before { - content: "\e05e"; -} - -.mi-fiber-pin::before { - content: "\e06a"; -} - -.mi-fiber-smart-record::before { - content: "\e062"; -} - -.mi-file-copy::before { - content: "\e173"; -} - -.mi-file-download::before { - content: "\e2c4"; -} - -.mi-file-download-done::before { - content: "\e9aa"; -} - -.mi-file-download-off::before { - content: "\e4fe"; -} - -.mi-file-open::before { - content: "\eaf3"; -} - -.mi-file-present::before { - content: "\ea0e"; -} - -.mi-file-upload::before { - content: "\e2c6"; -} - -.mi-file-upload-off::before { - content: "\f886"; -} - -.mi-filter::before { - content: "\e3d3"; -} - -.mi-filter-1::before { - content: "\e3d0"; -} - -.mi-filter-2::before { - content: "\e3d1"; -} - -.mi-filter-3::before { - content: "\e3d2"; -} - -.mi-filter-4::before { - content: "\e3d4"; -} - -.mi-filter-5::before { - content: "\e3d5"; -} - -.mi-filter-6::before { - content: "\e3d6"; -} - -.mi-filter-7::before { - content: "\e3d7"; -} - -.mi-filter-8::before { - content: "\e3d8"; -} - -.mi-filter-9::before { - content: "\e3d9"; -} - -.mi-filter-9-plus::before { - content: "\e3da"; -} - -.mi-filter-alt::before { - content: "\ef4f"; -} - -.mi-filter-alt-off::before { - content: "\eb32"; -} - -.mi-filter-b-and-w::before { - content: "\e3db"; -} - -.mi-filter-center-focus::before { - content: "\e3dc"; -} - -.mi-filter-drama::before { - content: "\e3dd"; -} - -.mi-filter-frames::before { - content: "\e3de"; -} - -.mi-filter-hdr::before { - content: "\e3df"; -} - -.mi-filter-list::before { - content: "\e152"; -} - -.mi-filter-list-alt::before { - content: "\e94e"; -} - -.mi-filter-list-off::before { - content: "\eb57"; -} - -.mi-filter-none::before { - content: "\e3e0"; -} - -.mi-filter-tilt-shift::before { - content: "\e3e2"; -} - -.mi-filter-vintage::before { - content: "\e3e3"; -} - -.mi-find-in-page::before { - content: "\e880"; -} - -.mi-find-replace::before { - content: "\e881"; -} - -.mi-fingerprint::before { - content: "\e90d"; -} - -.mi-fire-extinguisher::before { - content: "\f1d8"; -} - -.mi-fire-hydrant::before { - content: "\f1a3"; -} - -.mi-fire-hydrant-alt::before { - content: "\f8f1"; -} - -.mi-fire-truck::before { - content: "\f8f2"; -} - -.mi-fireplace::before { - content: "\ea43"; -} - -.mi-first-page::before { - content: "\e5dc"; -} - -.mi-fit-screen::before { - content: "\ea10"; -} - -.mi-fitbit::before { - content: "\e82b"; -} - -.mi-fitness-center::before { - content: "\eb43"; -} - -.mi-flag::before { - content: "\e153"; -} - -.mi-flag-circle::before { - content: "\eaf8"; -} - -.mi-flaky::before { - content: "\ef50"; -} - -.mi-flare::before { - content: "\e3e4"; -} - -.mi-flash-auto::before { - content: "\e3e5"; -} - -.mi-flash-off::before { - content: "\e3e6"; -} - -.mi-flash-on::before { - content: "\e3e7"; -} - -.mi-flashlight-off::before { - content: "\f00a"; -} - -.mi-flashlight-on::before { - content: "\f00b"; -} - -.mi-flatware::before { - content: "\f00c"; -} - -.mi-flight::before { - content: "\e539"; -} - -.mi-flight-class::before { - content: "\e7cb"; -} - -.mi-flight-land::before { - content: "\e904"; -} - -.mi-flight-takeoff::before { - content: "\e905"; -} - -.mi-flip::before { - content: "\e3e8"; -} - -.mi-flip-camera-android::before { - content: "\ea37"; -} - -.mi-flip-camera-ios::before { - content: "\ea38"; -} - -.mi-flip-to-back::before { - content: "\e882"; -} - -.mi-flip-to-front::before { - content: "\e883"; -} - -.mi-flood::before { - content: "\ebe6"; -} - -.mi-flourescent::before { - content: "\ec31"; -} - -.mi-fluorescent::before { - content: "\ec31"; -} - -.mi-flutter-dash::before { - content: "\e00b"; -} - -.mi-fmd-bad::before { - content: "\f00e"; -} - -.mi-fmd-good::before { - content: "\f00f"; -} - -.mi-foggy::before { - content: "\e818"; -} - -.mi-folder::before { - content: "\e2c7"; -} - -.mi-folder-copy::before { - content: "\ebbd"; -} - -.mi-folder-delete::before { - content: "\eb34"; -} - -.mi-folder-off::before { - content: "\eb83"; -} - -.mi-folder-open::before { - content: "\e2c8"; -} - -.mi-folder-shared::before { - content: "\e2c9"; -} - -.mi-folder-special::before { - content: "\e617"; -} - -.mi-folder-zip::before { - content: "\eb2c"; -} - -.mi-follow-the-signs::before { - content: "\f222"; -} - -.mi-font-download::before { - content: "\e167"; -} - -.mi-font-download-off::before { - content: "\e4f9"; -} - -.mi-food-bank::before { - content: "\f1f2"; -} - -.mi-forest::before { - content: "\ea99"; -} - -.mi-fork-left::before { - content: "\eba0"; -} - -.mi-fork-right::before { - content: "\ebac"; -} - -.mi-forklift::before { - content: "\f868"; -} - -.mi-format-align-center::before { - content: "\e234"; -} - -.mi-format-align-justify::before { - content: "\e235"; -} - -.mi-format-align-left::before { - content: "\e236"; -} - -.mi-format-align-right::before { - content: "\e237"; -} - -.mi-format-bold::before { - content: "\e238"; -} - -.mi-format-clear::before { - content: "\e239"; -} - -.mi-format-color-fill::before { - content: "\e23a"; -} - -.mi-format-color-reset::before { - content: "\e23b"; -} - -.mi-format-color-text::before { - content: "\e23c"; -} - -.mi-format-indent-decrease::before { - content: "\e23d"; -} - -.mi-format-indent-increase::before { - content: "\e23e"; -} - -.mi-format-italic::before { - content: "\e23f"; -} - -.mi-format-line-spacing::before { - content: "\e240"; -} - -.mi-format-list-bulleted::before { - content: "\e241"; -} - -.mi-format-list-bulleted-add::before { - content: "\f849"; -} - -.mi-format-list-numbered::before { - content: "\e242"; -} - -.mi-format-list-numbered-rtl::before { - content: "\e267"; -} - -.mi-format-overline::before { - content: "\eb65"; -} - -.mi-format-paint::before { - content: "\e243"; -} - -.mi-format-quote::before { - content: "\e244"; -} - -.mi-format-shapes::before { - content: "\e25e"; -} - -.mi-format-size::before { - content: "\e245"; -} - -.mi-format-strikethrough::before { - content: "\e246"; -} - -.mi-format-textdirection-l-to-r::before { - content: "\e247"; -} - -.mi-format-textdirection-r-to-l::before { - content: "\e248"; -} - -.mi-format-underline::before { - content: "\e249"; -} - -.mi-format-underlined::before { - content: "\e249"; -} - -.mi-fort::before { - content: "\eaad"; -} - -.mi-forum::before { - content: "\e0bf"; -} - -.mi-forward::before { - content: "\e154"; -} - -.mi-forward-10::before { - content: "\e056"; -} - -.mi-forward-30::before { - content: "\e057"; -} - -.mi-forward-5::before { - content: "\e058"; -} - -.mi-forward-to-inbox::before { - content: "\f187"; -} - -.mi-foundation::before { - content: "\f200"; -} - -.mi-free-breakfast::before { - content: "\eb44"; -} - -.mi-free-cancellation::before { - content: "\e748"; -} - -.mi-front-hand::before { - content: "\e769"; -} - -.mi-front-loader::before { - content: "\f869"; -} - -.mi-fullscreen::before { - content: "\e5d0"; -} - -.mi-fullscreen-exit::before { - content: "\e5d1"; -} - -.mi-functions::before { - content: "\e24a"; -} - -.mi-g-mobiledata::before { - content: "\f010"; -} - -.mi-g-translate::before { - content: "\e927"; -} - -.mi-gamepad::before { - content: "\e30f"; -} - -.mi-games::before { - content: "\e021"; -} - -.mi-garage::before { - content: "\f011"; -} - -.mi-gas-meter::before { - content: "\ec19"; -} - -.mi-gavel::before { - content: "\e90e"; -} - -.mi-generating-tokens::before { - content: "\e749"; -} - -.mi-gesture::before { - content: "\e155"; -} - -.mi-get-app::before { - content: "\e884"; -} - -.mi-gif::before { - content: "\e908"; -} - -.mi-gif-box::before { - content: "\e7a3"; -} - -.mi-girl::before { - content: "\eb68"; -} - -.mi-gite::before { - content: "\e58b"; -} - -.mi-goat::before { - content: "\10fffd"; -} - -.mi-golf-course::before { - content: "\eb45"; -} - -.mi-gpp-bad::before { - content: "\f012"; -} - -.mi-gpp-good::before { - content: "\f013"; -} - -.mi-gpp-maybe::before { - content: "\f014"; -} - -.mi-gps-fixed::before { - content: "\e1b3"; -} - -.mi-gps-not-fixed::before { - content: "\e1b4"; -} - -.mi-gps-off::before { - content: "\e1b5"; -} - -.mi-grade::before { - content: "\e885"; -} - -.mi-gradient::before { - content: "\e3e9"; -} - -.mi-grading::before { - content: "\ea4f"; -} - -.mi-grain::before { - content: "\e3ea"; -} - -.mi-graphic-eq::before { - content: "\e1b8"; -} - -.mi-grass::before { - content: "\f205"; -} - -.mi-grid-3x3::before { - content: "\f015"; -} - -.mi-grid-4x4::before { - content: "\f016"; -} - -.mi-grid-goldenratio::before { - content: "\f017"; -} - -.mi-grid-off::before { - content: "\e3eb"; -} - -.mi-grid-on::before { - content: "\e3ec"; -} - -.mi-grid-view::before { - content: "\e9b0"; -} - -.mi-group::before { - content: "\e7ef"; -} - -.mi-group-add::before { - content: "\e7f0"; -} - -.mi-group-off::before { - content: "\e747"; -} - -.mi-group-remove::before { - content: "\e7ad"; -} - -.mi-group-work::before { - content: "\e886"; -} - -.mi-groups::before { - content: "\f233"; -} - -.mi-groups-2::before { - content: "\f8df"; -} - -.mi-groups-3::before { - content: "\f8e0"; -} - -.mi-h-mobiledata::before { - content: "\f018"; -} - -.mi-h-plus-mobiledata::before { - content: "\f019"; -} - -.mi-hail::before { - content: "\e9b1"; -} - -.mi-handshake::before { - content: "\ebcb"; -} - -.mi-handyman::before { - content: "\f10b"; -} - -.mi-hardware::before { - content: "\ea59"; -} - -.mi-hd::before { - content: "\e052"; -} - -.mi-hdr-auto::before { - content: "\f01a"; -} - -.mi-hdr-auto-select::before { - content: "\f01b"; -} - -.mi-hdr-enhanced-select::before { - content: "\ef51"; -} - -.mi-hdr-off::before { - content: "\e3ed"; -} - -.mi-hdr-off-select::before { - content: "\f01c"; -} - -.mi-hdr-on::before { - content: "\e3ee"; -} - -.mi-hdr-on-select::before { - content: "\f01d"; -} - -.mi-hdr-plus::before { - content: "\f01e"; -} - -.mi-hdr-strong::before { - content: "\e3f1"; -} - -.mi-hdr-weak::before { - content: "\e3f2"; -} - -.mi-headphones::before { - content: "\f01f"; -} - -.mi-headphones-battery::before { - content: "\f020"; -} - -.mi-headset::before { - content: "\e310"; -} - -.mi-headset-mic::before { - content: "\e311"; -} - -.mi-headset-off::before { - content: "\e33a"; -} - -.mi-healing::before { - content: "\e3f3"; -} - -.mi-health-and-safety::before { - content: "\e1d5"; -} - -.mi-hearing::before { - content: "\e023"; -} - -.mi-hearing-disabled::before { - content: "\f104"; -} - -.mi-heart-broken::before { - content: "\eac2"; -} - -.mi-heat-pump::before { - content: "\ec18"; -} - -.mi-height::before { - content: "\ea16"; -} - -.mi-help::before { - content: "\e887"; -} - -.mi-help-center::before { - content: "\f1c0"; -} - -.mi-help-outline::before { - content: "\e8fd"; -} - -.mi-hevc::before { - content: "\f021"; -} - -.mi-hexagon::before { - content: "\eb39"; -} - -.mi-hide-image::before { - content: "\f022"; -} - -.mi-hide-source::before { - content: "\f023"; -} - -.mi-high-quality::before { - content: "\e024"; -} - -.mi-highlight::before { - content: "\e25f"; -} - -.mi-highlight-alt::before { - content: "\ef52"; -} - -.mi-highlight-off::before { - content: "\e888"; -} - -.mi-highlight-remove::before { - content: "\e888"; -} - -.mi-hiking::before { - content: "\e50a"; -} - -.mi-history::before { - content: "\e889"; -} - -.mi-history-edu::before { - content: "\ea3e"; -} - -.mi-history-toggle-off::before { - content: "\f17d"; -} - -.mi-hive::before { - content: "\eaa6"; -} - -.mi-hls::before { - content: "\eb8a"; -} - -.mi-hls-off::before { - content: "\eb8c"; -} - -.mi-holiday-village::before { - content: "\e58a"; -} - -.mi-home::before { - content: "\e88a"; -} - -.mi-home-filled::before { - content: "\e9b2"; -} - -.mi-home-max::before { - content: "\f024"; -} - -.mi-home-mini::before { - content: "\f025"; -} - -.mi-home-repair-service::before { - content: "\f100"; -} - -.mi-home-work::before { - content: "\ea09"; -} - -.mi-horizontal-distribute::before { - content: "\e014"; -} - -.mi-horizontal-rule::before { - content: "\f108"; -} - -.mi-horizontal-split::before { - content: "\e947"; -} - -.mi-hot-tub::before { - content: "\eb46"; -} - -.mi-hotel::before { - content: "\e53a"; -} - -.mi-hotel-class::before { - content: "\e743"; -} - -.mi-hourglass-bottom::before { - content: "\ea5c"; -} - -.mi-hourglass-disabled::before { - content: "\ef53"; -} - -.mi-hourglass-empty::before { - content: "\e88b"; -} - -.mi-hourglass-full::before { - content: "\e88c"; -} - -.mi-hourglass-top::before { - content: "\ea5b"; -} - -.mi-house::before { - content: "\ea44"; -} - -.mi-house-siding::before { - content: "\f202"; -} - -.mi-houseboat::before { - content: "\e584"; -} - -.mi-how-to-reg::before { - content: "\e174"; -} - -.mi-how-to-vote::before { - content: "\e175"; -} - -.mi-html::before { - content: "\eb7e"; -} - -.mi-http::before { - content: "\e902"; -} - -.mi-https::before { - content: "\e88d"; -} - -.mi-hub::before { - content: "\e9f4"; -} - -.mi-hvac::before { - content: "\f10e"; -} - -.mi-ice-skating::before { - content: "\e50b"; -} - -.mi-icecream::before { - content: "\ea69"; -} - -.mi-image::before { - content: "\e3f4"; -} - -.mi-image-aspect-ratio::before { - content: "\e3f5"; -} - -.mi-image-not-supported::before { - content: "\f116"; -} - -.mi-image-search::before { - content: "\e43f"; -} - -.mi-imagesearch-roller::before { - content: "\e9b4"; -} - -.mi-import-contacts::before { - content: "\e0e0"; -} - -.mi-import-export::before { - content: "\e0c3"; -} - -.mi-important-devices::before { - content: "\e912"; -} - -.mi-inbox::before { - content: "\e156"; -} - -.mi-incomplete-circle::before { - content: "\e79b"; -} - -.mi-indeterminate-check-box::before { - content: "\e909"; -} - -.mi-info::before { - content: "\e88e"; -} - -.mi-info-outline::before { - content: "\e88f"; -} - -.mi-input::before { - content: "\e890"; -} - -.mi-insert-chart::before { - content: "\e24b"; -} - -.mi-insert-chart-outlined::before { - content: "\e26a"; -} - -.mi-insert-comment::before { - content: "\e24c"; -} - -.mi-insert-drive-file::before { - content: "\e24d"; -} - -.mi-insert-emoticon::before { - content: "\e24e"; -} - -.mi-insert-invitation::before { - content: "\e24f"; -} - -.mi-insert-link::before { - content: "\e250"; -} - -.mi-insert-page-break::before { - content: "\eaca"; -} - -.mi-insert-photo::before { - content: "\e251"; -} - -.mi-insights::before { - content: "\f092"; -} - -.mi-install-desktop::before { - content: "\eb71"; -} - -.mi-install-mobile::before { - content: "\eb72"; -} - -.mi-integration-instructions::before { - content: "\ef54"; -} - -.mi-interests::before { - content: "\e7c8"; -} - -.mi-interpreter-mode::before { - content: "\e83b"; -} - -.mi-inventory::before { - content: "\e179"; -} - -.mi-inventory-2::before { - content: "\e1a1"; -} - -.mi-invert-colors::before { - content: "\e891"; -} - -.mi-invert-colors-off::before { - content: "\e0c4"; -} - -.mi-invert-colors-on::before { - content: "\e891"; -} - -.mi-ios-share::before { - content: "\e6b8"; -} - -.mi-iron::before { - content: "\e583"; -} - -.mi-iso::before { - content: "\e3f6"; -} - -.mi-javascript::before { - content: "\eb7c"; -} - -.mi-join-full::before { - content: "\eaeb"; -} - -.mi-join-inner::before { - content: "\eaf4"; -} - -.mi-join-left::before { - content: "\eaf2"; -} - -.mi-join-right::before { - content: "\eaea"; -} - -.mi-kayaking::before { - content: "\e50c"; -} - -.mi-kebab-dining::before { - content: "\e842"; -} - -.mi-key::before { - content: "\e73c"; -} - -.mi-key-off::before { - content: "\eb84"; -} - -.mi-keyboard::before { - content: "\e312"; -} - -.mi-keyboard-alt::before { - content: "\f028"; -} - -.mi-keyboard-arrow-down::before { - content: "\e313"; -} - -.mi-keyboard-arrow-left::before { - content: "\e314"; -} - -.mi-keyboard-arrow-right::before { - content: "\e315"; -} - -.mi-keyboard-arrow-up::before { - content: "\e316"; -} - -.mi-keyboard-backspace::before { - content: "\e317"; -} - -.mi-keyboard-capslock::before { - content: "\e318"; -} - -.mi-keyboard-command::before { - content: "\eae0"; -} - -.mi-keyboard-command-key::before { - content: "\eae7"; -} - -.mi-keyboard-control::before { - content: "\e5d3"; -} - -.mi-keyboard-control-key::before { - content: "\eae6"; -} - -.mi-keyboard-double-arrow-down::before { - content: "\ead0"; -} - -.mi-keyboard-double-arrow-left::before { - content: "\eac3"; -} - -.mi-keyboard-double-arrow-right::before { - content: "\eac9"; -} - -.mi-keyboard-double-arrow-up::before { - content: "\eacf"; -} - -.mi-keyboard-hide::before { - content: "\e31a"; -} - -.mi-keyboard-option::before { - content: "\eadf"; -} - -.mi-keyboard-option-key::before { - content: "\eae8"; -} - -.mi-keyboard-return::before { - content: "\e31b"; -} - -.mi-keyboard-tab::before { - content: "\e31c"; -} - -.mi-keyboard-voice::before { - content: "\e31d"; -} - -.mi-king-bed::before { - content: "\ea45"; -} - -.mi-kitchen::before { - content: "\eb47"; -} - -.mi-kitesurfing::before { - content: "\e50d"; -} - -.mi-label::before { - content: "\e892"; -} - -.mi-label-important::before { - content: "\e937"; -} - -.mi-label-important-outline::before { - content: "\e948"; -} - -.mi-label-off::before { - content: "\e9b6"; -} - -.mi-label-outline::before { - content: "\e893"; -} - -.mi-lan::before { - content: "\eb2f"; -} - -.mi-landscape::before { - content: "\e3f7"; -} - -.mi-landslide::before { - content: "\ebd7"; -} - -.mi-language::before { - content: "\e894"; -} - -.mi-laptop::before { - content: "\e31e"; -} - -.mi-laptop-chromebook::before { - content: "\e31f"; -} - -.mi-laptop-mac::before { - content: "\e320"; -} - -.mi-laptop-windows::before { - content: "\e321"; -} - -.mi-last-page::before { - content: "\e5dd"; -} - -.mi-launch::before { - content: "\e895"; -} - -.mi-layers::before { - content: "\e53b"; -} - -.mi-layers-clear::before { - content: "\e53c"; -} - -.mi-leaderboard::before { - content: "\f20c"; -} - -.mi-leak-add::before { - content: "\e3f8"; -} - -.mi-leak-remove::before { - content: "\e3f9"; -} - -.mi-leave-bags-at-home::before { - content: "\f21b"; -} - -.mi-legend-toggle::before { - content: "\f11b"; -} - -.mi-lens::before { - content: "\e3fa"; -} - -.mi-lens-blur::before { - content: "\f029"; -} - -.mi-library-add::before { - content: "\e02e"; -} - -.mi-library-add-check::before { - content: "\e9b7"; -} - -.mi-library-books::before { - content: "\e02f"; -} - -.mi-library-music::before { - content: "\e030"; -} - -.mi-light::before { - content: "\f02a"; -} - -.mi-light-mode::before { - content: "\e518"; -} - -.mi-lightbulb::before { - content: "\e0f0"; -} - -.mi-lightbulb-circle::before { - content: "\ebfe"; -} - -.mi-lightbulb-outline::before { - content: "\e90f"; -} - -.mi-line-axis::before { - content: "\ea9a"; -} - -.mi-line-style::before { - content: "\e919"; -} - -.mi-line-weight::before { - content: "\e91a"; -} - -.mi-linear-scale::before { - content: "\e260"; -} - -.mi-link::before { - content: "\e157"; -} - -.mi-link-off::before { - content: "\e16f"; -} - -.mi-linked-camera::before { - content: "\e438"; -} - -.mi-liquor::before { - content: "\ea60"; -} - -.mi-list::before { - content: "\e896"; -} - -.mi-list-alt::before { - content: "\e0ee"; -} - -.mi-live-help::before { - content: "\e0c6"; -} - -.mi-live-tv::before { - content: "\e639"; -} - -.mi-living::before { - content: "\f02b"; -} - -.mi-local-activity::before { - content: "\e53f"; -} - -.mi-local-airport::before { - content: "\e53d"; -} - -.mi-local-atm::before { - content: "\e53e"; -} - -.mi-local-attraction::before { - content: "\e53f"; -} - -.mi-local-bar::before { - content: "\e540"; -} - -.mi-local-cafe::before { - content: "\e541"; -} - -.mi-local-car-wash::before { - content: "\e542"; -} - -.mi-local-convenience-store::before { - content: "\e543"; -} - -.mi-local-dining::before { - content: "\e556"; -} - -.mi-local-drink::before { - content: "\e544"; -} - -.mi-local-fire-department::before { - content: "\ef55"; -} - -.mi-local-florist::before { - content: "\e545"; -} - -.mi-local-gas-station::before { - content: "\e546"; -} - -.mi-local-grocery-store::before { - content: "\e547"; -} - -.mi-local-hospital::before { - content: "\e548"; -} - -.mi-local-hotel::before { - content: "\e549"; -} - -.mi-local-laundry-service::before { - content: "\e54a"; -} - -.mi-local-library::before { - content: "\e54b"; -} - -.mi-local-mall::before { - content: "\e54c"; -} - -.mi-local-movies::before { - content: "\e54d"; -} - -.mi-local-offer::before { - content: "\e54e"; -} - -.mi-local-parking::before { - content: "\e54f"; -} - -.mi-local-pharmacy::before { - content: "\e550"; -} - -.mi-local-phone::before { - content: "\e551"; -} - -.mi-local-pizza::before { - content: "\e552"; -} - -.mi-local-play::before { - content: "\e553"; -} - -.mi-local-police::before { - content: "\ef56"; -} - -.mi-local-post-office::before { - content: "\e554"; -} - -.mi-local-print-shop::before { - content: "\e555"; -} - -.mi-local-printshop::before { - content: "\e555"; -} - -.mi-local-restaurant::before { - content: "\e556"; -} - -.mi-local-see::before { - content: "\e557"; -} - -.mi-local-shipping::before { - content: "\e558"; -} - -.mi-local-taxi::before { - content: "\e559"; -} - -.mi-location-city::before { - content: "\e7f1"; -} - -.mi-location-disabled::before { - content: "\e1b6"; -} - -.mi-location-history::before { - content: "\e55a"; -} - -.mi-location-off::before { - content: "\e0c7"; -} - -.mi-location-on::before { - content: "\e0c8"; -} - -.mi-location-pin::before { - content: "\f1db"; -} - -.mi-location-searching::before { - content: "\e1b7"; -} - -.mi-lock::before { - content: "\e897"; -} - -.mi-lock-clock::before { - content: "\ef57"; -} - -.mi-lock-open::before { - content: "\e898"; -} - -.mi-lock-outline::before { - content: "\e899"; -} - -.mi-lock-person::before { - content: "\f8f3"; -} - -.mi-lock-reset::before { - content: "\eade"; -} - -.mi-login::before { - content: "\ea77"; -} - -.mi-logo-dev::before { - content: "\ead6"; -} - -.mi-logout::before { - content: "\e9ba"; -} - -.mi-looks::before { - content: "\e3fc"; -} - -.mi-looks-3::before { - content: "\e3fb"; -} - -.mi-looks-4::before { - content: "\e3fd"; -} - -.mi-looks-5::before { - content: "\e3fe"; -} - -.mi-looks-6::before { - content: "\e3ff"; -} - -.mi-looks-one::before { - content: "\e400"; -} - -.mi-looks-two::before { - content: "\e401"; -} - -.mi-loop::before { - content: "\e028"; -} - -.mi-loupe::before { - content: "\e402"; -} - -.mi-low-priority::before { - content: "\e16d"; -} - -.mi-loyalty::before { - content: "\e89a"; -} - -.mi-lte-mobiledata::before { - content: "\f02c"; -} - -.mi-lte-plus-mobiledata::before { - content: "\f02d"; -} - -.mi-luggage::before { - content: "\f235"; -} - -.mi-lunch-dining::before { - content: "\ea61"; -} - -.mi-lyrics::before { - content: "\ec0b"; -} - -.mi-macro-off::before { - content: "\f8d2"; -} - -.mi-mail::before { - content: "\e158"; -} - -.mi-mail-lock::before { - content: "\ec0a"; -} - -.mi-mail-outline::before { - content: "\e0e1"; -} - -.mi-male::before { - content: "\e58e"; -} - -.mi-man::before { - content: "\e4eb"; -} - -.mi-man-2::before { - content: "\f8e1"; -} - -.mi-man-3::before { - content: "\f8e2"; -} - -.mi-man-4::before { - content: "\f8e3"; -} - -.mi-manage-accounts::before { - content: "\f02e"; -} - -.mi-manage-history::before { - content: "\ebe7"; -} - -.mi-manage-search::before { - content: "\f02f"; -} - -.mi-map::before { - content: "\e55b"; -} - -.mi-maps-home-work::before { - content: "\f030"; -} - -.mi-maps-ugc::before { - content: "\ef58"; -} - -.mi-margin::before { - content: "\e9bb"; -} - -.mi-mark-as-unread::before { - content: "\e9bc"; -} - -.mi-mark-chat-read::before { - content: "\f18b"; -} - -.mi-mark-chat-unread::before { - content: "\f189"; -} - -.mi-mark-email-read::before { - content: "\f18c"; -} - -.mi-mark-email-unread::before { - content: "\f18a"; -} - -.mi-mark-unread-chat-alt::before { - content: "\eb9d"; -} - -.mi-markunread::before { - content: "\e159"; -} - -.mi-markunread-mailbox::before { - content: "\e89b"; -} - -.mi-masks::before { - content: "\f218"; -} - -.mi-maximize::before { - content: "\e930"; -} - -.mi-media-bluetooth-off::before { - content: "\f031"; -} - -.mi-media-bluetooth-on::before { - content: "\f032"; -} - -.mi-mediation::before { - content: "\efa7"; -} - -.mi-medical-information::before { - content: "\ebed"; -} - -.mi-medical-services::before { - content: "\f109"; -} - -.mi-medication::before { - content: "\f033"; -} - -.mi-medication-liquid::before { - content: "\ea87"; -} - -.mi-meeting-room::before { - content: "\eb4f"; -} - -.mi-memory::before { - content: "\e322"; -} - -.mi-menu::before { - content: "\e5d2"; -} - -.mi-menu-book::before { - content: "\ea19"; -} - -.mi-menu-open::before { - content: "\e9bd"; -} - -.mi-merge::before { - content: "\eb98"; -} - -.mi-merge-type::before { - content: "\e252"; -} - -.mi-message::before { - content: "\e0c9"; -} - -.mi-messenger::before { - content: "\e0ca"; -} - -.mi-messenger-outline::before { - content: "\e0cb"; -} - -.mi-mic::before { - content: "\e029"; -} - -.mi-mic-external-off::before { - content: "\ef59"; -} - -.mi-mic-external-on::before { - content: "\ef5a"; -} - -.mi-mic-none::before { - content: "\e02a"; -} - -.mi-mic-off::before { - content: "\e02b"; -} - -.mi-microwave::before { - content: "\f204"; -} - -.mi-military-tech::before { - content: "\ea3f"; -} - -.mi-minimize::before { - content: "\e931"; -} - -.mi-minor-crash::before { - content: "\ebf1"; -} - -.mi-miscellaneous-services::before { - content: "\f10c"; -} - -.mi-missed-video-call::before { - content: "\e073"; -} - -.mi-mms::before { - content: "\e618"; -} - -.mi-mobile-friendly::before { - content: "\e200"; -} - -.mi-mobile-off::before { - content: "\e201"; -} - -.mi-mobile-screen-share::before { - content: "\e0e7"; -} - -.mi-mobiledata-off::before { - content: "\f034"; -} - -.mi-mode::before { - content: "\f097"; -} - -.mi-mode-comment::before { - content: "\e253"; -} - -.mi-mode-edit::before { - content: "\e254"; -} - -.mi-mode-edit-outline::before { - content: "\f035"; -} - -.mi-mode-fan-off::before { - content: "\ec17"; -} - -.mi-mode-night::before { - content: "\f036"; -} - -.mi-mode-of-travel::before { - content: "\e7ce"; -} - -.mi-mode-standby::before { - content: "\f037"; -} - -.mi-model-training::before { - content: "\f0cf"; -} - -.mi-monetization-on::before { - content: "\e263"; -} - -.mi-money::before { - content: "\e57d"; -} - -.mi-money-off::before { - content: "\e25c"; -} - -.mi-money-off-csred::before { - content: "\f038"; -} - -.mi-monitor::before { - content: "\ef5b"; -} - -.mi-monitor-heart::before { - content: "\eaa2"; -} - -.mi-monitor-weight::before { - content: "\f039"; -} - -.mi-monochrome-photos::before { - content: "\e403"; -} - -.mi-mood::before { - content: "\e7f2"; -} - -.mi-mood-bad::before { - content: "\e7f3"; -} - -.mi-moped::before { - content: "\eb28"; -} - -.mi-more::before { - content: "\e619"; -} - -.mi-more-horiz::before { - content: "\e5d3"; -} - -.mi-more-time::before { - content: "\ea5d"; -} - -.mi-more-vert::before { - content: "\e5d4"; -} - -.mi-mosque::before { - content: "\eab2"; -} - -.mi-motion-photos-auto::before { - content: "\f03a"; -} - -.mi-motion-photos-off::before { - content: "\e9c0"; -} - -.mi-motion-photos-on::before { - content: "\e9c1"; -} - -.mi-motion-photos-pause::before { - content: "\f227"; -} - -.mi-motion-photos-paused::before { - content: "\e9c2"; -} - -.mi-motorcycle::before { - content: "\e91b"; -} - -.mi-mouse::before { - content: "\e323"; -} - -.mi-move-down::before { - content: "\eb61"; -} - -.mi-move-to-inbox::before { - content: "\e168"; -} - -.mi-move-up::before { - content: "\eb64"; -} - -.mi-movie::before { - content: "\e02c"; -} - -.mi-movie-creation::before { - content: "\e404"; -} - -.mi-movie-edit::before { - content: "\f840"; -} - -.mi-movie-filter::before { - content: "\e43a"; -} - -.mi-moving::before { - content: "\e501"; -} - -.mi-mp::before { - content: "\e9c3"; -} - -.mi-multiline-chart::before { - content: "\e6df"; -} - -.mi-multiple-stop::before { - content: "\f1b9"; -} - -.mi-multitrack-audio::before { - content: "\e1b8"; -} - -.mi-museum::before { - content: "\ea36"; -} - -.mi-music-note::before { - content: "\e405"; -} - -.mi-music-off::before { - content: "\e440"; -} - -.mi-music-video::before { - content: "\e063"; -} - -.mi-my-library-add::before { - content: "\e02e"; -} - -.mi-my-library-books::before { - content: "\e02f"; -} - -.mi-my-library-music::before { - content: "\e030"; -} - -.mi-my-location::before { - content: "\e55c"; -} - -.mi-nat::before { - content: "\ef5c"; -} - -.mi-nature::before { - content: "\e406"; -} - -.mi-nature-people::before { - content: "\e407"; -} - -.mi-navigate-before::before { - content: "\e408"; -} - -.mi-navigate-next::before { - content: "\e409"; -} - -.mi-navigation::before { - content: "\e55d"; -} - -.mi-near-me::before { - content: "\e569"; -} - -.mi-near-me-disabled::before { - content: "\f1ef"; -} - -.mi-nearby-error::before { - content: "\f03b"; -} - -.mi-nearby-off::before { - content: "\f03c"; -} - -.mi-nest-cam-wired-stand::before { - content: "\ec16"; -} - -.mi-network-cell::before { - content: "\e1b9"; -} - -.mi-network-check::before { - content: "\e640"; -} - -.mi-network-locked::before { - content: "\e61a"; -} - -.mi-network-ping::before { - content: "\ebca"; -} - -.mi-network-wifi::before { - content: "\e1ba"; -} - -.mi-network-wifi-1-bar::before { - content: "\ebe4"; -} - -.mi-network-wifi-2-bar::before { - content: "\ebd6"; -} - -.mi-network-wifi-3-bar::before { - content: "\ebe1"; -} - -.mi-new-label::before { - content: "\e609"; -} - -.mi-new-releases::before { - content: "\e031"; -} - -.mi-newspaper::before { - content: "\eb81"; -} - -.mi-next-plan::before { - content: "\ef5d"; -} - -.mi-next-week::before { - content: "\e16a"; -} - -.mi-nfc::before { - content: "\e1bb"; -} - -.mi-night-shelter::before { - content: "\f1f1"; -} - -.mi-nightlife::before { - content: "\ea62"; -} - -.mi-nightlight::before { - content: "\f03d"; -} - -.mi-nightlight-round::before { - content: "\ef5e"; -} - -.mi-nights-stay::before { - content: "\ea46"; -} - -.mi-no-accounts::before { - content: "\f03e"; -} - -.mi-no-adult-content::before { - content: "\f8fe"; -} - -.mi-no-backpack::before { - content: "\f237"; -} - -.mi-no-cell::before { - content: "\f1a4"; -} - -.mi-no-crash::before { - content: "\ebf0"; -} - -.mi-no-drinks::before { - content: "\f1a5"; -} - -.mi-no-encryption::before { - content: "\e641"; -} - -.mi-no-encryption-gmailerrorred::before { - content: "\f03f"; -} - -.mi-no-flash::before { - content: "\f1a6"; -} - -.mi-no-food::before { - content: "\f1a7"; -} - -.mi-no-luggage::before { - content: "\f23b"; -} - -.mi-no-meals::before { - content: "\f1d6"; -} - -.mi-no-meals-ouline::before { - content: "\f229"; -} - -.mi-no-meeting-room::before { - content: "\eb4e"; -} - -.mi-no-photography::before { - content: "\f1a8"; -} - -.mi-no-sim::before { - content: "\e0cc"; -} - -.mi-no-stroller::before { - content: "\f1af"; -} - -.mi-no-transfer::before { - content: "\f1d5"; -} - -.mi-noise-aware::before { - content: "\ebec"; -} - -.mi-noise-control-off::before { - content: "\ebf3"; -} - -.mi-nordic-walking::before { - content: "\e50e"; -} - -.mi-north::before { - content: "\f1e0"; -} - -.mi-north-east::before { - content: "\f1e1"; -} - -.mi-north-west::before { - content: "\f1e2"; -} - -.mi-not-accessible::before { - content: "\f0fe"; -} - -.mi-not-interested::before { - content: "\e033"; -} - -.mi-not-listed-location::before { - content: "\e575"; -} - -.mi-not-started::before { - content: "\f0d1"; -} - -.mi-note::before { - content: "\e06f"; -} - -.mi-note-add::before { - content: "\e89c"; -} - -.mi-note-alt::before { - content: "\f040"; -} - -.mi-notes::before { - content: "\e26c"; -} - -.mi-notification-add::before { - content: "\e399"; -} - -.mi-notification-important::before { - content: "\e004"; -} - -.mi-notifications::before { - content: "\e7f4"; -} - -.mi-notifications-active::before { - content: "\e7f7"; -} - -.mi-notifications-none::before { - content: "\e7f5"; -} - -.mi-notifications-off::before { - content: "\e7f6"; -} - -.mi-notifications-on::before { - content: "\e7f7"; -} - -.mi-notifications-paused::before { - content: "\e7f8"; -} - -.mi-now-wallpaper::before { - content: "\e1bc"; -} - -.mi-now-widgets::before { - content: "\e1bd"; -} - -.mi-numbers::before { - content: "\eac7"; -} - -.mi-offline-bolt::before { - content: "\e932"; -} - -.mi-offline-pin::before { - content: "\e90a"; -} - -.mi-offline-share::before { - content: "\e9c5"; -} - -.mi-oil-barrel::before { - content: "\ec15"; -} - -.mi-on-device-training::before { - content: "\ebfd"; -} - -.mi-ondemand-video::before { - content: "\e63a"; -} - -.mi-online-prediction::before { - content: "\f0eb"; -} - -.mi-opacity::before { - content: "\e91c"; -} - -.mi-open-in-browser::before { - content: "\e89d"; -} - -.mi-open-in-full::before { - content: "\f1ce"; -} - -.mi-open-in-new::before { - content: "\e89e"; -} - -.mi-open-in-new-off::before { - content: "\e4f6"; -} - -.mi-open-with::before { - content: "\e89f"; -} - -.mi-other-houses::before { - content: "\e58c"; -} - -.mi-outbond::before { - content: "\f228"; -} - -.mi-outbound::before { - content: "\e1ca"; -} - -.mi-outbox::before { - content: "\ef5f"; -} - -.mi-outdoor-grill::before { - content: "\ea47"; -} - -.mi-outgoing-mail::before { - content: "\f0d2"; -} - -.mi-outlet::before { - content: "\f1d4"; -} - -.mi-outlined-flag::before { - content: "\e16e"; -} - -.mi-output::before { - content: "\ebbe"; -} - -.mi-padding::before { - content: "\e9c8"; -} - -.mi-pages::before { - content: "\e7f9"; -} - -.mi-pageview::before { - content: "\e8a0"; -} - -.mi-paid::before { - content: "\f041"; -} - -.mi-palette::before { - content: "\e40a"; -} - -.mi-pallet::before { - content: "\f86a"; -} - -.mi-pan-tool::before { - content: "\e925"; -} - -.mi-pan-tool-alt::before { - content: "\ebb9"; -} - -.mi-panorama::before { - content: "\e40b"; -} - -.mi-panorama-fish-eye::before { - content: "\e40c"; -} - -.mi-panorama-fisheye::before { - content: "\e40c"; -} - -.mi-panorama-horizontal::before { - content: "\e40d"; -} - -.mi-panorama-horizontal-select::before { - content: "\ef60"; -} - -.mi-panorama-photosphere::before { - content: "\e9c9"; -} - -.mi-panorama-photosphere-select::before { - content: "\e9ca"; -} - -.mi-panorama-vertical::before { - content: "\e40e"; -} - -.mi-panorama-vertical-select::before { - content: "\ef61"; -} - -.mi-panorama-wide-angle::before { - content: "\e40f"; -} - -.mi-panorama-wide-angle-select::before { - content: "\ef62"; -} - -.mi-paragliding::before { - content: "\e50f"; -} - -.mi-park::before { - content: "\ea63"; -} - -.mi-party-mode::before { - content: "\e7fa"; -} - -.mi-password::before { - content: "\f042"; -} - -.mi-paste::before { - content: "\f098"; -} - -.mi-pattern::before { - content: "\f043"; -} - -.mi-pause::before { - content: "\e034"; -} - -.mi-pause-circle::before { - content: "\e1a2"; -} - -.mi-pause-circle-filled::before { - content: "\e035"; -} - -.mi-pause-circle-outline::before { - content: "\e036"; -} - -.mi-pause-presentation::before { - content: "\e0ea"; -} - -.mi-payment::before { - content: "\e8a1"; -} - -.mi-payments::before { - content: "\ef63"; -} - -.mi-paypal::before { - content: "\ea8d"; -} - -.mi-pedal-bike::before { - content: "\eb29"; -} - -.mi-pending::before { - content: "\ef64"; -} - -.mi-pending-actions::before { - content: "\f1bb"; -} - -.mi-pentagon::before { - content: "\eb50"; -} - -.mi-people::before { - content: "\e7fb"; -} - -.mi-people-alt::before { - content: "\ea21"; -} - -.mi-people-outline::before { - content: "\e7fc"; -} - -.mi-percent::before { - content: "\eb58"; -} - -.mi-perm-camera-mic::before { - content: "\e8a2"; -} - -.mi-perm-contact-cal::before { - content: "\e8a3"; -} - -.mi-perm-contact-calendar::before { - content: "\e8a3"; -} - -.mi-perm-data-setting::before { - content: "\e8a4"; -} - -.mi-perm-device-info::before { - content: "\e8a5"; -} - -.mi-perm-device-information::before { - content: "\e8a5"; -} - -.mi-perm-identity::before { - content: "\e8a6"; -} - -.mi-perm-media::before { - content: "\e8a7"; -} - -.mi-perm-phone-msg::before { - content: "\e8a8"; -} - -.mi-perm-scan-wifi::before { - content: "\e8a9"; -} - -.mi-person::before { - content: "\e7fd"; -} - -.mi-person-2::before { - content: "\f8e4"; -} - -.mi-person-3::before { - content: "\f8e5"; -} - -.mi-person-4::before { - content: "\f8e6"; -} - -.mi-person-add::before { - content: "\e7fe"; -} - -.mi-person-add-alt::before { - content: "\ea4d"; -} - -.mi-person-add-alt-1::before { - content: "\ef65"; -} - -.mi-person-add-disabled::before { - content: "\e9cb"; -} - -.mi-person-off::before { - content: "\e510"; -} - -.mi-person-outline::before { - content: "\e7ff"; -} - -.mi-person-pin::before { - content: "\e55a"; -} - -.mi-person-pin-circle::before { - content: "\e56a"; -} - -.mi-person-remove::before { - content: "\ef66"; -} - -.mi-person-remove-alt-1::before { - content: "\ef67"; -} - -.mi-person-search::before { - content: "\f106"; -} - -.mi-personal-injury::before { - content: "\e6da"; -} - -.mi-personal-video::before { - content: "\e63b"; -} - -.mi-pest-control::before { - content: "\f0fa"; -} - -.mi-pest-control-rodent::before { - content: "\f0fd"; -} - -.mi-pets::before { - content: "\e91d"; -} - -.mi-phishing::before { - content: "\ead7"; -} - -.mi-phone::before { - content: "\e0cd"; -} - -.mi-phone-android::before { - content: "\e324"; -} - -.mi-phone-bluetooth-speaker::before { - content: "\e61b"; -} - -.mi-phone-callback::before { - content: "\e649"; -} - -.mi-phone-disabled::before { - content: "\e9cc"; -} - -.mi-phone-enabled::before { - content: "\e9cd"; -} - -.mi-phone-forwarded::before { - content: "\e61c"; -} - -.mi-phone-in-talk::before { - content: "\e61d"; -} - -.mi-phone-iphone::before { - content: "\e325"; -} - -.mi-phone-locked::before { - content: "\e61e"; -} - -.mi-phone-missed::before { - content: "\e61f"; -} - -.mi-phone-paused::before { - content: "\e620"; -} - -.mi-phonelink::before { - content: "\e326"; -} - -.mi-phonelink-erase::before { - content: "\e0db"; -} - -.mi-phonelink-lock::before { - content: "\e0dc"; -} - -.mi-phonelink-off::before { - content: "\e327"; -} - -.mi-phonelink-ring::before { - content: "\e0dd"; -} - -.mi-phonelink-setup::before { - content: "\e0de"; -} - -.mi-photo::before { - content: "\e410"; -} - -.mi-photo-album::before { - content: "\e411"; -} - -.mi-photo-camera::before { - content: "\e412"; -} - -.mi-photo-camera-back::before { - content: "\ef68"; -} - -.mi-photo-camera-front::before { - content: "\ef69"; -} - -.mi-photo-filter::before { - content: "\e43b"; -} - -.mi-photo-library::before { - content: "\e413"; -} - -.mi-photo-size-select-actual::before { - content: "\e432"; -} - -.mi-photo-size-select-large::before { - content: "\e433"; -} - -.mi-photo-size-select-small::before { - content: "\e434"; -} - -.mi-php::before { - content: "\eb8f"; -} - -.mi-piano::before { - content: "\e521"; -} - -.mi-piano-off::before { - content: "\e520"; -} - -.mi-picture-as-pdf::before { - content: "\e415"; -} - -.mi-picture-in-picture::before { - content: "\e8aa"; -} - -.mi-picture-in-picture-alt::before { - content: "\e911"; -} - -.mi-pie-chart::before { - content: "\e6c4"; -} - -.mi-pie-chart-outline::before { - content: "\f044"; -} - -.mi-pie-chart-outlined::before { - content: "\e6c5"; -} - -.mi-pin::before { - content: "\f045"; -} - -.mi-pin-drop::before { - content: "\e55e"; -} - -.mi-pin-end::before { - content: "\e767"; -} - -.mi-pin-invoke::before { - content: "\e763"; -} - -.mi-pinch::before { - content: "\eb38"; -} - -.mi-pivot-table-chart::before { - content: "\e9ce"; -} - -.mi-pix::before { - content: "\eaa3"; -} - -.mi-place::before { - content: "\e55f"; -} - -.mi-plagiarism::before { - content: "\ea5a"; -} - -.mi-play-arrow::before { - content: "\e037"; -} - -.mi-play-circle::before { - content: "\e1c4"; -} - -.mi-play-circle-fill::before { - content: "\e038"; -} - -.mi-play-circle-filled::before { - content: "\e038"; -} - -.mi-play-circle-outline::before { - content: "\e039"; -} - -.mi-play-disabled::before { - content: "\ef6a"; -} - -.mi-play-for-work::before { - content: "\e906"; -} - -.mi-play-lesson::before { - content: "\f047"; -} - -.mi-playlist-add::before { - content: "\e03b"; -} - -.mi-playlist-add-check::before { - content: "\e065"; -} - -.mi-playlist-add-check-circle::before { - content: "\e7e6"; -} - -.mi-playlist-add-circle::before { - content: "\e7e5"; -} - -.mi-playlist-play::before { - content: "\e05f"; -} - -.mi-playlist-remove::before { - content: "\eb80"; -} - -.mi-plumbing::before { - content: "\f107"; -} - -.mi-plus-one::before { - content: "\e800"; -} - -.mi-podcasts::before { - content: "\f048"; -} - -.mi-point-of-sale::before { - content: "\f17e"; -} - -.mi-policy::before { - content: "\ea17"; -} - -.mi-poll::before { - content: "\e801"; -} - -.mi-polyline::before { - content: "\ebbb"; -} - -.mi-polymer::before { - content: "\e8ab"; -} - -.mi-pool::before { - content: "\eb48"; -} - -.mi-portable-wifi-off::before { - content: "\e0ce"; -} - -.mi-portrait::before { - content: "\e416"; -} - -.mi-post-add::before { - content: "\ea20"; -} - -.mi-power::before { - content: "\e63c"; -} - -.mi-power-input::before { - content: "\e336"; -} - -.mi-power-off::before { - content: "\e646"; -} - -.mi-power-settings-new::before { - content: "\e8ac"; -} - -.mi-precision-manufacturing::before { - content: "\f049"; -} - -.mi-pregnant-woman::before { - content: "\e91e"; -} - -.mi-present-to-all::before { - content: "\e0df"; -} - -.mi-preview::before { - content: "\f1c5"; -} - -.mi-price-change::before { - content: "\f04a"; -} - -.mi-price-check::before { - content: "\f04b"; -} - -.mi-print::before { - content: "\e8ad"; -} - -.mi-print-disabled::before { - content: "\e9cf"; -} - -.mi-priority-high::before { - content: "\e645"; -} - -.mi-privacy-tip::before { - content: "\f0dc"; -} - -.mi-private-connectivity::before { - content: "\e744"; -} - -.mi-production-quantity-limits::before { - content: "\e1d1"; -} - -.mi-propane::before { - content: "\ec14"; -} - -.mi-propane-tank::before { - content: "\ec13"; -} - -.mi-psychology::before { - content: "\ea4a"; -} - -.mi-psychology-alt::before { - content: "\f8ea"; -} - -.mi-public::before { - content: "\e80b"; -} - -.mi-public-off::before { - content: "\f1ca"; -} - -.mi-publish::before { - content: "\e255"; -} - -.mi-published-with-changes::before { - content: "\f232"; -} - -.mi-punch-clock::before { - content: "\eaa8"; -} - -.mi-push-pin::before { - content: "\f10d"; -} - -.mi-qr-code::before { - content: "\ef6b"; -} - -.mi-qr-code-2::before { - content: "\e00a"; -} - -.mi-qr-code-scanner::before { - content: "\f206"; -} - -.mi-query-builder::before { - content: "\e8ae"; -} - -.mi-query-stats::before { - content: "\e4fc"; -} - -.mi-question-answer::before { - content: "\e8af"; -} - -.mi-question-mark::before { - content: "\eb8b"; -} - -.mi-queue::before { - content: "\e03c"; -} - -.mi-queue-music::before { - content: "\e03d"; -} - -.mi-queue-play-next::before { - content: "\e066"; -} - -.mi-quick-contacts-dialer::before { - content: "\e0cf"; -} - -.mi-quick-contacts-mail::before { - content: "\e0d0"; -} - -.mi-quickreply::before { - content: "\ef6c"; -} - -.mi-quiz::before { - content: "\f04c"; -} - -.mi-quora::before { - content: "\ea98"; -} - -.mi-r-mobiledata::before { - content: "\f04d"; -} - -.mi-radar::before { - content: "\f04e"; -} - -.mi-radio::before { - content: "\e03e"; -} - -.mi-radio-button-checked::before { - content: "\e837"; -} - -.mi-radio-button-off::before { - content: "\e836"; -} - -.mi-radio-button-on::before { - content: "\e837"; -} - -.mi-radio-button-unchecked::before { - content: "\e836"; -} - -.mi-railway-alert::before { - content: "\e9d1"; -} - -.mi-ramen-dining::before { - content: "\ea64"; -} - -.mi-ramp-left::before { - content: "\eb9c"; -} - -.mi-ramp-right::before { - content: "\eb96"; -} - -.mi-rate-review::before { - content: "\e560"; -} - -.mi-raw-off::before { - content: "\f04f"; -} - -.mi-raw-on::before { - content: "\f050"; -} - -.mi-read-more::before { - content: "\ef6d"; -} - -.mi-real-estate-agent::before { - content: "\e73a"; -} - -.mi-rebase-edit::before { - content: "\f846"; -} - -.mi-receipt::before { - content: "\e8b0"; -} - -.mi-receipt-long::before { - content: "\ef6e"; -} - -.mi-recent-actors::before { - content: "\e03f"; -} - -.mi-recommend::before { - content: "\e9d2"; -} - -.mi-record-voice-over::before { - content: "\e91f"; -} - -.mi-rectangle::before { - content: "\eb54"; -} - -.mi-recycling::before { - content: "\e760"; -} - -.mi-reddit::before { - content: "\eaa0"; -} - -.mi-redeem::before { - content: "\e8b1"; -} - -.mi-redo::before { - content: "\e15a"; -} - -.mi-reduce-capacity::before { - content: "\f21c"; -} - -.mi-refresh::before { - content: "\e5d5"; -} - -.mi-remember-me::before { - content: "\f051"; -} - -.mi-remove::before { - content: "\e15b"; -} - -.mi-remove-circle::before { - content: "\e15c"; -} - -.mi-remove-circle-outline::before { - content: "\e15d"; -} - -.mi-remove-done::before { - content: "\e9d3"; -} - -.mi-remove-from-queue::before { - content: "\e067"; -} - -.mi-remove-moderator::before { - content: "\e9d4"; -} - -.mi-remove-red-eye::before { - content: "\e417"; -} - -.mi-remove-road::before { - content: "\ebfc"; -} - -.mi-remove-shopping-cart::before { - content: "\e928"; -} - -.mi-reorder::before { - content: "\e8fe"; -} - -.mi-repartition::before { - content: "\f8e8"; -} - -.mi-repeat::before { - content: "\e040"; -} - -.mi-repeat-on::before { - content: "\e9d6"; -} - -.mi-repeat-one::before { - content: "\e041"; -} - -.mi-repeat-one-on::before { - content: "\e9d7"; -} - -.mi-replay::before { - content: "\e042"; -} - -.mi-replay-10::before { - content: "\e059"; -} - -.mi-replay-30::before { - content: "\e05a"; -} - -.mi-replay-5::before { - content: "\e05b"; -} - -.mi-replay-circle-filled::before { - content: "\e9d8"; -} - -.mi-reply::before { - content: "\e15e"; -} - -.mi-reply-all::before { - content: "\e15f"; -} - -.mi-report::before { - content: "\e160"; -} - -.mi-report-gmailerrorred::before { - content: "\f052"; -} - -.mi-report-off::before { - content: "\e170"; -} - -.mi-report-problem::before { - content: "\e8b2"; -} - -.mi-request-page::before { - content: "\f22c"; -} - -.mi-request-quote::before { - content: "\f1b6"; -} - -.mi-reset-tv::before { - content: "\e9d9"; -} - -.mi-restart-alt::before { - content: "\f053"; -} - -.mi-restaurant::before { - content: "\e56c"; -} - -.mi-restaurant-menu::before { - content: "\e561"; -} - -.mi-restore::before { - content: "\e8b3"; -} - -.mi-restore-from-trash::before { - content: "\e938"; -} - -.mi-restore-page::before { - content: "\e929"; -} - -.mi-reviews::before { - content: "\f054"; -} - -.mi-rice-bowl::before { - content: "\f1f5"; -} - -.mi-ring-volume::before { - content: "\e0d1"; -} - -.mi-rocket::before { - content: "\eba5"; -} - -.mi-rocket-launch::before { - content: "\eb9b"; -} - -.mi-roller-shades::before { - content: "\ec12"; -} - -.mi-roller-shades-closed::before { - content: "\ec11"; -} - -.mi-roller-skating::before { - content: "\ebcd"; -} - -.mi-roofing::before { - content: "\f201"; -} - -.mi-room::before { - content: "\e8b4"; -} - -.mi-room-preferences::before { - content: "\f1b8"; -} - -.mi-room-service::before { - content: "\eb49"; -} - -.mi-rotate-90-degrees-ccw::before { - content: "\e418"; -} - -.mi-rotate-90-degrees-cw::before { - content: "\eaab"; -} - -.mi-rotate-left::before { - content: "\e419"; -} - -.mi-rotate-right::before { - content: "\e41a"; -} - -.mi-roundabout-left::before { - content: "\eb99"; -} - -.mi-roundabout-right::before { - content: "\eba3"; -} - -.mi-rounded-corner::before { - content: "\e920"; -} - -.mi-route::before { - content: "\eacd"; -} - -.mi-router::before { - content: "\e328"; -} - -.mi-rowing::before { - content: "\e921"; -} - -.mi-rss-feed::before { - content: "\e0e5"; -} - -.mi-rsvp::before { - content: "\f055"; -} - -.mi-rtt::before { - content: "\e9ad"; -} - -.mi-rule::before { - content: "\f1c2"; -} - -.mi-rule-folder::before { - content: "\f1c9"; -} - -.mi-run-circle::before { - content: "\ef6f"; -} - -.mi-running-with-errors::before { - content: "\e51d"; -} - -.mi-rv-hookup::before { - content: "\e642"; -} - -.mi-safety-check::before { - content: "\ebef"; -} - -.mi-safety-divider::before { - content: "\e1cc"; -} - -.mi-sailing::before { - content: "\e502"; -} - -.mi-sanitizer::before { - content: "\f21d"; -} - -.mi-satellite::before { - content: "\e562"; -} - -.mi-satellite-alt::before { - content: "\eb3a"; -} - -.mi-save::before { - content: "\e161"; -} - -.mi-save-alt::before { - content: "\e171"; -} - -.mi-save-as::before { - content: "\eb60"; -} - -.mi-saved-search::before { - content: "\ea11"; -} - -.mi-savings::before { - content: "\e2eb"; -} - -.mi-scale::before { - content: "\eb5f"; -} - -.mi-scanner::before { - content: "\e329"; -} - -.mi-scatter-plot::before { - content: "\e268"; -} - -.mi-schedule::before { - content: "\e8b5"; -} - -.mi-schedule-send::before { - content: "\ea0a"; -} - -.mi-schema::before { - content: "\e4fd"; -} - -.mi-school::before { - content: "\e80c"; -} - -.mi-science::before { - content: "\ea4b"; -} - -.mi-score::before { - content: "\e269"; -} - -.mi-scoreboard::before { - content: "\ebd0"; -} - -.mi-screen-lock-landscape::before { - content: "\e1be"; -} - -.mi-screen-lock-portrait::before { - content: "\e1bf"; -} - -.mi-screen-lock-rotation::before { - content: "\e1c0"; -} - -.mi-screen-rotation::before { - content: "\e1c1"; -} - -.mi-screen-rotation-alt::before { - content: "\ebee"; -} - -.mi-screen-search-desktop::before { - content: "\ef70"; -} - -.mi-screen-share::before { - content: "\e0e2"; -} - -.mi-screenshot::before { - content: "\f056"; -} - -.mi-screenshot-monitor::before { - content: "\ec08"; -} - -.mi-scuba-diving::before { - content: "\ebce"; -} - -.mi-sd::before { - content: "\e9dd"; -} - -.mi-sd-card::before { - content: "\e623"; -} - -.mi-sd-card-alert::before { - content: "\f057"; -} - -.mi-sd-storage::before { - content: "\e1c2"; -} - -.mi-search::before { - content: "\e8b6"; -} - -.mi-search-off::before { - content: "\ea76"; -} - -.mi-security::before { - content: "\e32a"; -} - -.mi-security-update::before { - content: "\f058"; -} - -.mi-security-update-good::before { - content: "\f059"; -} - -.mi-security-update-warning::before { - content: "\f05a"; -} - -.mi-segment::before { - content: "\e94b"; -} - -.mi-select-all::before { - content: "\e162"; -} - -.mi-self-improvement::before { - content: "\ea78"; -} - -.mi-sell::before { - content: "\f05b"; -} - -.mi-send::before { - content: "\e163"; -} - -.mi-send-and-archive::before { - content: "\ea0c"; -} - -.mi-send-time-extension::before { - content: "\eadb"; -} - -.mi-send-to-mobile::before { - content: "\f05c"; -} - -.mi-sensor-door::before { - content: "\f1b5"; -} - -.mi-sensor-occupied::before { - content: "\ec10"; -} - -.mi-sensor-window::before { - content: "\f1b4"; -} - -.mi-sensors::before { - content: "\e51e"; -} - -.mi-sensors-off::before { - content: "\e51f"; -} - -.mi-sentiment-dissatisfied::before { - content: "\e811"; -} - -.mi-sentiment-neutral::before { - content: "\e812"; -} - -.mi-sentiment-satisfied::before { - content: "\e813"; -} - -.mi-sentiment-satisfied-alt::before { - content: "\e0ed"; -} - -.mi-sentiment-very-dissatisfied::before { - content: "\e814"; -} - -.mi-sentiment-very-satisfied::before { - content: "\e815"; -} - -.mi-set-meal::before { - content: "\f1ea"; -} - -.mi-settings::before { - content: "\e8b8"; -} - -.mi-settings-accessibility::before { - content: "\f05d"; -} - -.mi-settings-applications::before { - content: "\e8b9"; -} - -.mi-settings-backup-restore::before { - content: "\e8ba"; -} - -.mi-settings-bluetooth::before { - content: "\e8bb"; -} - -.mi-settings-brightness::before { - content: "\e8bd"; -} - -.mi-settings-cell::before { - content: "\e8bc"; -} - -.mi-settings-display::before { - content: "\e8bd"; -} - -.mi-settings-ethernet::before { - content: "\e8be"; -} - -.mi-settings-input-antenna::before { - content: "\e8bf"; -} - -.mi-settings-input-component::before { - content: "\e8c0"; -} - -.mi-settings-input-composite::before { - content: "\e8c1"; -} - -.mi-settings-input-hdmi::before { - content: "\e8c2"; -} - -.mi-settings-input-svideo::before { - content: "\e8c3"; -} - -.mi-settings-overscan::before { - content: "\e8c4"; -} - -.mi-settings-phone::before { - content: "\e8c5"; -} - -.mi-settings-power::before { - content: "\e8c6"; -} - -.mi-settings-remote::before { - content: "\e8c7"; -} - -.mi-settings-suggest::before { - content: "\f05e"; -} - -.mi-settings-system-daydream::before { - content: "\e1c3"; -} - -.mi-settings-voice::before { - content: "\e8c8"; -} - -.mi-severe-cold::before { - content: "\ebd3"; -} - -.mi-shape-line::before { - content: "\f8d3"; -} - -.mi-share::before { - content: "\e80d"; -} - -.mi-share-arrival-time::before { - content: "\e524"; -} - -.mi-share-location::before { - content: "\f05f"; -} - -.mi-shelves::before { - content: "\f86e"; -} - -.mi-shield::before { - content: "\e9e0"; -} - -.mi-shield-moon::before { - content: "\eaa9"; -} - -.mi-shop::before { - content: "\e8c9"; -} - -.mi-shop-2::before { - content: "\e19e"; -} - -.mi-shop-two::before { - content: "\e8ca"; -} - -.mi-shopify::before { - content: "\ea9d"; -} - -.mi-shopping-bag::before { - content: "\f1cc"; -} - -.mi-shopping-basket::before { - content: "\e8cb"; -} - -.mi-shopping-cart::before { - content: "\e8cc"; -} - -.mi-shopping-cart-checkout::before { - content: "\eb88"; -} - -.mi-short-text::before { - content: "\e261"; -} - -.mi-shortcut::before { - content: "\f060"; -} - -.mi-show-chart::before { - content: "\e6e1"; -} - -.mi-shower::before { - content: "\f061"; -} - -.mi-shuffle::before { - content: "\e043"; -} - -.mi-shuffle-on::before { - content: "\e9e1"; -} - -.mi-shutter-speed::before { - content: "\e43d"; -} - -.mi-sick::before { - content: "\f220"; -} - -.mi-sign-language::before { - content: "\ebe5"; -} - -.mi-signal-cellular-0-bar::before { - content: "\f0a8"; -} - -.mi-signal-cellular-1-bar::before { - content: "\f0a9"; -} - -.mi-signal-cellular-2-bar::before { - content: "\f0aa"; -} - -.mi-signal-cellular-3-bar::before { - content: "\f0ab"; -} - -.mi-signal-cellular-4-bar::before { - content: "\e1c8"; -} - -.mi-signal-cellular-alt::before { - content: "\e202"; -} - -.mi-signal-cellular-alt-1-bar::before { - content: "\ebdf"; -} - -.mi-signal-cellular-alt-2-bar::before { - content: "\ebe3"; -} - -.mi-signal-cellular-connected-no-internet-0-bar::before { - content: "\f0ac"; -} - -.mi-signal-cellular-connected-no-internet-1-bar::before { - content: "\f0ad"; -} - -.mi-signal-cellular-connected-no-internet-2-bar::before { - content: "\f0ae"; -} - -.mi-signal-cellular-connected-no-internet-3-bar::before { - content: "\f0af"; -} - -.mi-signal-cellular-connected-no-internet-4-bar::before { - content: "\e1cd"; -} - -.mi-signal-cellular-no-sim::before { - content: "\e1ce"; -} - -.mi-signal-cellular-nodata::before { - content: "\f062"; -} - -.mi-signal-cellular-null::before { - content: "\e1cf"; -} - -.mi-signal-cellular-off::before { - content: "\e1d0"; -} - -.mi-signal-wifi-0-bar::before { - content: "\f0b0"; -} - -.mi-signal-wifi-1-bar::before { - content: "\f0b1"; -} - -.mi-signal-wifi-1-bar-lock::before { - content: "\f0b2"; -} - -.mi-signal-wifi-2-bar::before { - content: "\f0b3"; -} - -.mi-signal-wifi-2-bar-lock::before { - content: "\f0b4"; -} - -.mi-signal-wifi-3-bar::before { - content: "\f0b5"; -} - -.mi-signal-wifi-3-bar-lock::before { - content: "\f0b6"; -} - -.mi-signal-wifi-4-bar::before { - content: "\e1d8"; -} - -.mi-signal-wifi-4-bar-lock::before { - content: "\e1d9"; -} - -.mi-signal-wifi-bad::before { - content: "\f063"; -} - -.mi-signal-wifi-connected-no-internet-0::before { - content: "\f0f2"; -} - -.mi-signal-wifi-connected-no-internet-1::before { - content: "\f0ee"; -} - -.mi-signal-wifi-connected-no-internet-2::before { - content: "\f0f1"; -} - -.mi-signal-wifi-connected-no-internet-3::before { - content: "\f0ed"; -} - -.mi-signal-wifi-connected-no-internet-4::before { - content: "\f064"; -} - -.mi-signal-wifi-off::before { - content: "\e1da"; -} - -.mi-signal-wifi-statusbar-1-bar::before { - content: "\f0e6"; -} - -.mi-signal-wifi-statusbar-2-bar::before { - content: "\f0f0"; -} - -.mi-signal-wifi-statusbar-3-bar::before { - content: "\f0ea"; -} - -.mi-signal-wifi-statusbar-4-bar::before { - content: "\f065"; -} - -.mi-signal-wifi-statusbar-connected-no-internet::before { - content: "\f0f8"; -} - -.mi-signal-wifi-statusbar-connected-no-internet-1::before { - content: "\f0e9"; -} - -.mi-signal-wifi-statusbar-connected-no-internet-2::before { - content: "\f0f7"; -} - -.mi-signal-wifi-statusbar-connected-no-internet-3::before { - content: "\f0e8"; -} - -.mi-signal-wifi-statusbar-connected-no-internet-4::before { - content: "\f066"; -} - -.mi-signal-wifi-statusbar-not-connected::before { - content: "\f0ef"; -} - -.mi-signal-wifi-statusbar-null::before { - content: "\f067"; -} - -.mi-signpost::before { - content: "\eb91"; -} - -.mi-sim-card::before { - content: "\e32b"; -} - -.mi-sim-card-alert::before { - content: "\e624"; -} - -.mi-sim-card-download::before { - content: "\f068"; -} - -.mi-single-bed::before { - content: "\ea48"; -} - -.mi-sip::before { - content: "\f069"; -} - -.mi-skateboarding::before { - content: "\e511"; -} - -.mi-skip-next::before { - content: "\e044"; -} - -.mi-skip-previous::before { - content: "\e045"; -} - -.mi-sledding::before { - content: "\e512"; -} - -.mi-slideshow::before { - content: "\e41b"; -} - -.mi-slow-motion-video::before { - content: "\e068"; -} - -.mi-smart-button::before { - content: "\f1c1"; -} - -.mi-smart-display::before { - content: "\f06a"; -} - -.mi-smart-screen::before { - content: "\f06b"; -} - -.mi-smart-toy::before { - content: "\f06c"; -} - -.mi-smartphone::before { - content: "\e32c"; -} - -.mi-smoke-free::before { - content: "\eb4a"; -} - -.mi-smoking-rooms::before { - content: "\eb4b"; -} - -.mi-sms::before { - content: "\e625"; -} - -.mi-sms-failed::before { - content: "\e626"; -} - -.mi-snapchat::before { - content: "\ea6e"; -} - -.mi-snippet-folder::before { - content: "\f1c7"; -} - -.mi-snooze::before { - content: "\e046"; -} - -.mi-snowboarding::before { - content: "\e513"; -} - -.mi-snowing::before { - content: "\e80f"; -} - -.mi-snowmobile::before { - content: "\e503"; -} - -.mi-snowshoeing::before { - content: "\e514"; -} - -.mi-soap::before { - content: "\f1b2"; -} - -.mi-social-distance::before { - content: "\e1cb"; -} - -.mi-solar-power::before { - content: "\ec0f"; -} - -.mi-sort::before { - content: "\e164"; -} - -.mi-sort-by-alpha::before { - content: "\e053"; -} - -.mi-sos::before { - content: "\ebf7"; -} - -.mi-soup-kitchen::before { - content: "\e7d3"; -} - -.mi-source::before { - content: "\f1c4"; -} - -.mi-south::before { - content: "\f1e3"; -} - -.mi-south-america::before { - content: "\e7e4"; -} - -.mi-south-east::before { - content: "\f1e4"; -} - -.mi-south-west::before { - content: "\f1e5"; -} - -.mi-spa::before { - content: "\eb4c"; -} - -.mi-space-bar::before { - content: "\e256"; -} - -.mi-space-dashboard::before { - content: "\e66b"; -} - -.mi-spatial-audio::before { - content: "\ebeb"; -} - -.mi-spatial-audio-off::before { - content: "\ebe8"; -} - -.mi-spatial-tracking::before { - content: "\ebea"; -} - -.mi-speaker::before { - content: "\e32d"; -} - -.mi-speaker-group::before { - content: "\e32e"; -} - -.mi-speaker-notes::before { - content: "\e8cd"; -} - -.mi-speaker-notes-off::before { - content: "\e92a"; -} - -.mi-speaker-phone::before { - content: "\e0d2"; -} - -.mi-speed::before { - content: "\e9e4"; -} - -.mi-spellcheck::before { - content: "\e8ce"; -} - -.mi-splitscreen::before { - content: "\f06d"; -} - -.mi-spoke::before { - content: "\e9a7"; -} - -.mi-sports::before { - content: "\ea30"; -} - -.mi-sports-bar::before { - content: "\f1f3"; -} - -.mi-sports-baseball::before { - content: "\ea51"; -} - -.mi-sports-basketball::before { - content: "\ea26"; -} - -.mi-sports-cricket::before { - content: "\ea27"; -} - -.mi-sports-esports::before { - content: "\ea28"; -} - -.mi-sports-football::before { - content: "\ea29"; -} - -.mi-sports-golf::before { - content: "\ea2a"; -} - -.mi-sports-gymnastics::before { - content: "\ebc4"; -} - -.mi-sports-handball::before { - content: "\ea33"; -} - -.mi-sports-hockey::before { - content: "\ea2b"; -} - -.mi-sports-kabaddi::before { - content: "\ea34"; -} - -.mi-sports-martial-arts::before { - content: "\eae9"; -} - -.mi-sports-mma::before { - content: "\ea2c"; -} - -.mi-sports-motorsports::before { - content: "\ea2d"; -} - -.mi-sports-rugby::before { - content: "\ea2e"; -} - -.mi-sports-score::before { - content: "\f06e"; -} - -.mi-sports-soccer::before { - content: "\ea2f"; -} - -.mi-sports-tennis::before { - content: "\ea32"; -} - -.mi-sports-volleyball::before { - content: "\ea31"; -} - -.mi-square::before { - content: "\eb36"; -} - -.mi-square-foot::before { - content: "\ea49"; -} - -.mi-ssid-chart::before { - content: "\eb66"; -} - -.mi-stacked-bar-chart::before { - content: "\e9e6"; -} - -.mi-stacked-line-chart::before { - content: "\f22b"; -} - -.mi-stadium::before { - content: "\eb90"; -} - -.mi-stairs::before { - content: "\f1a9"; -} - -.mi-star::before { - content: "\e838"; -} - -.mi-star-border::before { - content: "\e83a"; -} - -.mi-star-border-purple500::before { - content: "\f099"; -} - -.mi-star-half::before { - content: "\e839"; -} - -.mi-star-outline::before { - content: "\f06f"; -} - -.mi-star-purple500::before { - content: "\f09a"; -} - -.mi-star-rate::before { - content: "\f0ec"; -} - -.mi-stars::before { - content: "\e8d0"; -} - -.mi-start::before { - content: "\e089"; -} - -.mi-stay-current-landscape::before { - content: "\e0d3"; -} - -.mi-stay-current-portrait::before { - content: "\e0d4"; -} - -.mi-stay-primary-landscape::before { - content: "\e0d5"; -} - -.mi-stay-primary-portrait::before { - content: "\e0d6"; -} - -.mi-sticky-note-2::before { - content: "\f1fc"; -} - -.mi-stop::before { - content: "\e047"; -} - -.mi-stop-circle::before { - content: "\ef71"; -} - -.mi-stop-screen-share::before { - content: "\e0e3"; -} - -.mi-storage::before { - content: "\e1db"; -} - -.mi-store::before { - content: "\e8d1"; -} - -.mi-store-mall-directory::before { - content: "\e563"; -} - -.mi-storefront::before { - content: "\ea12"; -} - -.mi-storm::before { - content: "\f070"; -} - -.mi-straight::before { - content: "\eb95"; -} - -.mi-straighten::before { - content: "\e41c"; -} - -.mi-stream::before { - content: "\e9e9"; -} - -.mi-streetview::before { - content: "\e56e"; -} - -.mi-strikethrough-s::before { - content: "\e257"; -} - -.mi-stroller::before { - content: "\f1ae"; -} - -.mi-style::before { - content: "\e41d"; -} - -.mi-subdirectory-arrow-left::before { - content: "\e5d9"; -} - -.mi-subdirectory-arrow-right::before { - content: "\e5da"; -} - -.mi-subject::before { - content: "\e8d2"; -} - -.mi-subscript::before { - content: "\f111"; -} - -.mi-subscriptions::before { - content: "\e064"; -} - -.mi-subtitles::before { - content: "\e048"; -} - -.mi-subtitles-off::before { - content: "\ef72"; -} - -.mi-subway::before { - content: "\e56f"; -} - -.mi-summarize::before { - content: "\f071"; -} - -.mi-sunny::before { - content: "\e81a"; -} - -.mi-sunny-snowing::before { - content: "\e819"; -} - -.mi-superscript::before { - content: "\f112"; -} - -.mi-supervised-user-circle::before { - content: "\e939"; -} - -.mi-supervisor-account::before { - content: "\e8d3"; -} - -.mi-support::before { - content: "\ef73"; -} - -.mi-support-agent::before { - content: "\f0e2"; -} - -.mi-surfing::before { - content: "\e515"; -} - -.mi-surround-sound::before { - content: "\e049"; -} - -.mi-swap-calls::before { - content: "\e0d7"; -} - -.mi-swap-horiz::before { - content: "\e8d4"; -} - -.mi-swap-horizontal-circle::before { - content: "\e933"; -} - -.mi-swap-vert::before { - content: "\e8d5"; -} - -.mi-swap-vert-circle::before { - content: "\e8d6"; -} - -.mi-swap-vertical-circle::before { - content: "\e8d6"; -} - -.mi-swipe::before { - content: "\e9ec"; -} - -.mi-swipe-down::before { - content: "\eb53"; -} - -.mi-swipe-down-alt::before { - content: "\eb30"; -} - -.mi-swipe-left::before { - content: "\eb59"; -} - -.mi-swipe-left-alt::before { - content: "\eb33"; -} - -.mi-swipe-right::before { - content: "\eb52"; -} - -.mi-swipe-right-alt::before { - content: "\eb56"; -} - -.mi-swipe-up::before { - content: "\eb2e"; -} - -.mi-swipe-up-alt::before { - content: "\eb35"; -} - -.mi-swipe-vertical::before { - content: "\eb51"; -} - -.mi-switch-access-shortcut::before { - content: "\e7e1"; -} - -.mi-switch-access-shortcut-add::before { - content: "\e7e2"; -} - -.mi-switch-account::before { - content: "\e9ed"; -} - -.mi-switch-camera::before { - content: "\e41e"; -} - -.mi-switch-left::before { - content: "\f1d1"; -} - -.mi-switch-right::before { - content: "\f1d2"; -} - -.mi-switch-video::before { - content: "\e41f"; -} - -.mi-synagogue::before { - content: "\eab0"; -} - -.mi-sync::before { - content: "\e627"; -} - -.mi-sync-alt::before { - content: "\ea18"; -} - -.mi-sync-disabled::before { - content: "\e628"; -} - -.mi-sync-lock::before { - content: "\eaee"; -} - -.mi-sync-problem::before { - content: "\e629"; -} - -.mi-system-security-update::before { - content: "\f072"; -} - -.mi-system-security-update-good::before { - content: "\f073"; -} - -.mi-system-security-update-warning::before { - content: "\f074"; -} - -.mi-system-update::before { - content: "\e62a"; -} - -.mi-system-update-alt::before { - content: "\e8d7"; -} - -.mi-system-update-tv::before { - content: "\e8d7"; -} - -.mi-tab::before { - content: "\e8d8"; -} - -.mi-tab-unselected::before { - content: "\e8d9"; -} - -.mi-table-bar::before { - content: "\ead2"; -} - -.mi-table-chart::before { - content: "\e265"; -} - -.mi-table-restaurant::before { - content: "\eac6"; -} - -.mi-table-rows::before { - content: "\f101"; -} - -.mi-table-view::before { - content: "\f1be"; -} - -.mi-tablet::before { - content: "\e32f"; -} - -.mi-tablet-android::before { - content: "\e330"; -} - -.mi-tablet-mac::before { - content: "\e331"; -} - -.mi-tag::before { - content: "\e9ef"; -} - -.mi-tag-faces::before { - content: "\e420"; -} - -.mi-takeout-dining::before { - content: "\ea74"; -} - -.mi-tap-and-play::before { - content: "\e62b"; -} - -.mi-tapas::before { - content: "\f1e9"; -} - -.mi-task::before { - content: "\f075"; -} - -.mi-task-alt::before { - content: "\e2e6"; -} - -.mi-taxi-alert::before { - content: "\ef74"; -} - -.mi-telegram::before { - content: "\ea6b"; -} - -.mi-temple-buddhist::before { - content: "\eab3"; -} - -.mi-temple-hindu::before { - content: "\eaaf"; -} - -.mi-terminal::before { - content: "\eb8e"; -} - -.mi-terrain::before { - content: "\e564"; -} - -.mi-text-decrease::before { - content: "\eadd"; -} - -.mi-text-fields::before { - content: "\e262"; -} - -.mi-text-format::before { - content: "\e165"; -} - -.mi-text-increase::before { - content: "\eae2"; -} - -.mi-text-rotate-up::before { - content: "\e93a"; -} - -.mi-text-rotate-vertical::before { - content: "\e93b"; -} - -.mi-text-rotation-angledown::before { - content: "\e93c"; -} - -.mi-text-rotation-angleup::before { - content: "\e93d"; -} - -.mi-text-rotation-down::before { - content: "\e93e"; -} - -.mi-text-rotation-none::before { - content: "\e93f"; -} - -.mi-text-snippet::before { - content: "\f1c6"; -} - -.mi-textsms::before { - content: "\e0d8"; -} - -.mi-texture::before { - content: "\e421"; -} - -.mi-theater-comedy::before { - content: "\ea66"; -} - -.mi-theaters::before { - content: "\e8da"; -} - -.mi-thermostat::before { - content: "\f076"; -} - -.mi-thermostat-auto::before { - content: "\f077"; -} - -.mi-thumb-down::before { - content: "\e8db"; -} - -.mi-thumb-down-alt::before { - content: "\e816"; -} - -.mi-thumb-down-off-alt::before { - content: "\e9f2"; -} - -.mi-thumb-up::before { - content: "\e8dc"; -} - -.mi-thumb-up-alt::before { - content: "\e817"; -} - -.mi-thumb-up-off-alt::before { - content: "\e9f3"; -} - -.mi-thumbs-up-down::before { - content: "\e8dd"; -} - -.mi-thunderstorm::before { - content: "\ebdb"; -} - -.mi-tiktok::before { - content: "\ea7e"; -} - -.mi-time-to-leave::before { - content: "\e62c"; -} - -.mi-timelapse::before { - content: "\e422"; -} - -.mi-timeline::before { - content: "\e922"; -} - -.mi-timer::before { - content: "\e425"; -} - -.mi-timer-10::before { - content: "\e423"; -} - -.mi-timer-10-select::before { - content: "\f07a"; -} - -.mi-timer-3::before { - content: "\e424"; -} - -.mi-timer-3-select::before { - content: "\f07b"; -} - -.mi-timer-off::before { - content: "\e426"; -} - -.mi-tips-and-updates::before { - content: "\e79a"; -} - -.mi-tire-repair::before { - content: "\ebc8"; -} - -.mi-title::before { - content: "\e264"; -} - -.mi-toc::before { - content: "\e8de"; -} - -.mi-today::before { - content: "\e8df"; -} - -.mi-toggle-off::before { - content: "\e9f5"; -} - -.mi-toggle-on::before { - content: "\e9f6"; -} - -.mi-token::before { - content: "\ea25"; -} - -.mi-toll::before { - content: "\e8e0"; -} - -.mi-tonality::before { - content: "\e427"; -} - -.mi-topic::before { - content: "\f1c8"; -} - -.mi-tornado::before { - content: "\e199"; -} - -.mi-touch-app::before { - content: "\e913"; -} - -.mi-tour::before { - content: "\ef75"; -} - -.mi-toys::before { - content: "\e332"; -} - -.mi-track-changes::before { - content: "\e8e1"; -} - -.mi-traffic::before { - content: "\e565"; -} - -.mi-train::before { - content: "\e570"; -} - -.mi-tram::before { - content: "\e571"; -} - -.mi-transcribe::before { - content: "\f8ec"; -} - -.mi-transfer-within-a-station::before { - content: "\e572"; -} - -.mi-transform::before { - content: "\e428"; -} - -.mi-transgender::before { - content: "\e58d"; -} - -.mi-transit-enterexit::before { - content: "\e579"; -} - -.mi-translate::before { - content: "\e8e2"; -} - -.mi-travel-explore::before { - content: "\e2db"; -} - -.mi-trending-down::before { - content: "\e8e3"; -} - -.mi-trending-flat::before { - content: "\e8e4"; -} - -.mi-trending-neutral::before { - content: "\e8e4"; -} - -.mi-trending-up::before { - content: "\e8e5"; -} - -.mi-trip-origin::before { - content: "\e57b"; -} - -.mi-trolley::before { - content: "\f86b"; -} - -.mi-troubleshoot::before { - content: "\e1d2"; -} - -.mi-try::before { - content: "\f07c"; -} - -.mi-tsunami::before { - content: "\ebd8"; -} - -.mi-tty::before { - content: "\f1aa"; -} - -.mi-tune::before { - content: "\e429"; -} - -.mi-tungsten::before { - content: "\f07d"; -} - -.mi-turn-left::before { - content: "\eba6"; -} - -.mi-turn-right::before { - content: "\ebab"; -} - -.mi-turn-sharp-left::before { - content: "\eba7"; -} - -.mi-turn-sharp-right::before { - content: "\ebaa"; -} - -.mi-turn-slight-left::before { - content: "\eba4"; -} - -.mi-turn-slight-right::before { - content: "\eb9a"; -} - -.mi-turned-in::before { - content: "\e8e6"; -} - -.mi-turned-in-not::before { - content: "\e8e7"; -} - -.mi-tv::before { - content: "\e333"; -} - -.mi-tv-off::before { - content: "\e647"; -} - -.mi-two-wheeler::before { - content: "\e9f9"; -} - -.mi-type-specimen::before { - content: "\f8f0"; -} - -.mi-u-turn-left::before { - content: "\eba1"; -} - -.mi-u-turn-right::before { - content: "\eba2"; -} - -.mi-umbrella::before { - content: "\f1ad"; -} - -.mi-unarchive::before { - content: "\e169"; -} - -.mi-undo::before { - content: "\e166"; -} - -.mi-unfold-less::before { - content: "\e5d6"; -} - -.mi-unfold-less-double::before { - content: "\f8cf"; -} - -.mi-unfold-more::before { - content: "\e5d7"; -} - -.mi-unfold-more-double::before { - content: "\f8d0"; -} - -.mi-unpublished::before { - content: "\f236"; -} - -.mi-unsubscribe::before { - content: "\e0eb"; -} - -.mi-upcoming::before { - content: "\f07e"; -} - -.mi-update::before { - content: "\e923"; -} - -.mi-update-disabled::before { - content: "\e075"; -} - -.mi-upgrade::before { - content: "\f0fb"; -} - -.mi-upload::before { - content: "\f09b"; -} - -.mi-upload-file::before { - content: "\e9fc"; -} - -.mi-usb::before { - content: "\e1e0"; -} - -.mi-usb-off::before { - content: "\e4fa"; -} - -.mi-vaccines::before { - content: "\e138"; -} - -.mi-vape-free::before { - content: "\ebc6"; -} - -.mi-vaping-rooms::before { - content: "\ebcf"; -} - -.mi-verified::before { - content: "\ef76"; -} - -.mi-verified-user::before { - content: "\e8e8"; -} - -.mi-vertical-align-bottom::before { - content: "\e258"; -} - -.mi-vertical-align-center::before { - content: "\e259"; -} - -.mi-vertical-align-top::before { - content: "\e25a"; -} - -.mi-vertical-distribute::before { - content: "\e076"; -} - -.mi-vertical-shades::before { - content: "\ec0e"; -} - -.mi-vertical-shades-closed::before { - content: "\ec0d"; -} - -.mi-vertical-split::before { - content: "\e949"; -} - -.mi-vibration::before { - content: "\e62d"; -} - -.mi-video-call::before { - content: "\e070"; -} - -.mi-video-camera-back::before { - content: "\f07f"; -} - -.mi-video-camera-front::before { - content: "\f080"; -} - -.mi-video-chat::before { - content: "\f8a0"; -} - -.mi-video-collection::before { - content: "\e04a"; -} - -.mi-video-file::before { - content: "\eb87"; -} - -.mi-video-label::before { - content: "\e071"; -} - -.mi-video-library::before { - content: "\e04a"; -} - -.mi-video-settings::before { - content: "\ea75"; -} - -.mi-video-stable::before { - content: "\f081"; -} - -.mi-videocam::before { - content: "\e04b"; -} - -.mi-videocam-off::before { - content: "\e04c"; -} - -.mi-videogame-asset::before { - content: "\e338"; -} - -.mi-videogame-asset-off::before { - content: "\e500"; -} - -.mi-view-agenda::before { - content: "\e8e9"; -} - -.mi-view-array::before { - content: "\e8ea"; -} - -.mi-view-carousel::before { - content: "\e8eb"; -} - -.mi-view-column::before { - content: "\e8ec"; -} - -.mi-view-comfortable::before { - content: "\e42a"; -} - -.mi-view-comfy::before { - content: "\e42a"; -} - -.mi-view-comfy-alt::before { - content: "\eb73"; -} - -.mi-view-compact::before { - content: "\e42b"; -} - -.mi-view-compact-alt::before { - content: "\eb74"; -} - -.mi-view-cozy::before { - content: "\eb75"; -} - -.mi-view-day::before { - content: "\e8ed"; -} - -.mi-view-headline::before { - content: "\e8ee"; -} - -.mi-view-in-ar::before { - content: "\e9fe"; -} - -.mi-view-kanban::before { - content: "\eb7f"; -} - -.mi-view-list::before { - content: "\e8ef"; -} - -.mi-view-module::before { - content: "\e8f0"; -} - -.mi-view-quilt::before { - content: "\e8f1"; -} - -.mi-view-sidebar::before { - content: "\f114"; -} - -.mi-view-stream::before { - content: "\e8f2"; -} - -.mi-view-timeline::before { - content: "\eb85"; -} - -.mi-view-week::before { - content: "\e8f3"; -} - -.mi-vignette::before { - content: "\e435"; -} - -.mi-villa::before { - content: "\e586"; -} - -.mi-visibility::before { - content: "\e8f4"; -} - -.mi-visibility-off::before { - content: "\e8f5"; -} - -.mi-voice-chat::before { - content: "\e62e"; -} - -.mi-voice-over-off::before { - content: "\e94a"; -} - -.mi-voicemail::before { - content: "\e0d9"; -} - -.mi-volcano::before { - content: "\ebda"; -} - -.mi-volume-down::before { - content: "\e04d"; -} - -.mi-volume-down-alt::before { - content: "\e79c"; -} - -.mi-volume-mute::before { - content: "\e04e"; -} - -.mi-volume-off::before { - content: "\e04f"; -} - -.mi-volume-up::before { - content: "\e050"; -} - -.mi-volunteer-activism::before { - content: "\ea70"; -} - -.mi-vpn-key::before { - content: "\e0da"; -} - -.mi-vpn-key-off::before { - content: "\eb7a"; -} - -.mi-vpn-lock::before { - content: "\e62f"; -} - -.mi-vrpano::before { - content: "\f082"; -} - -.mi-wallet::before { - content: "\f8ff"; -} - -.mi-wallet-giftcard::before { - content: "\e8f6"; -} - -.mi-wallet-membership::before { - content: "\e8f7"; -} - -.mi-wallet-travel::before { - content: "\e8f8"; -} - -.mi-wallpaper::before { - content: "\e1bc"; -} - -.mi-warehouse::before { - content: "\ebb8"; -} - -.mi-warning::before { - content: "\e002"; -} - -.mi-warning-amber::before { - content: "\f083"; -} - -.mi-wash::before { - content: "\f1b1"; -} - -.mi-watch::before { - content: "\e334"; -} - -.mi-watch-later::before { - content: "\e924"; -} - -.mi-watch-off::before { - content: "\eae3"; -} - -.mi-water::before { - content: "\f084"; -} - -.mi-water-damage::before { - content: "\f203"; -} - -.mi-water-drop::before { - content: "\e798"; -} - -.mi-waterfall-chart::before { - content: "\ea00"; -} - -.mi-waves::before { - content: "\e176"; -} - -.mi-waving-hand::before { - content: "\e766"; -} - -.mi-wb-auto::before { - content: "\e42c"; -} - -.mi-wb-cloudy::before { - content: "\e42d"; -} - -.mi-wb-incandescent::before { - content: "\e42e"; -} - -.mi-wb-iridescent::before { - content: "\e436"; -} - -.mi-wb-shade::before { - content: "\ea01"; -} - -.mi-wb-sunny::before { - content: "\e430"; -} - -.mi-wb-twighlight::before { - content: "\ea02"; -} - -.mi-wb-twilight::before { - content: "\e1c6"; -} - -.mi-wc::before { - content: "\e63d"; -} - -.mi-web::before { - content: "\e051"; -} - -.mi-web-asset::before { - content: "\e069"; -} - -.mi-web-asset-off::before { - content: "\e4f7"; -} - -.mi-web-stories::before { - content: "\e595"; -} - -.mi-webhook::before { - content: "\eb92"; -} - -.mi-wechat::before { - content: "\ea81"; -} - -.mi-weekend::before { - content: "\e16b"; -} - -.mi-west::before { - content: "\f1e6"; -} - -.mi-whatshot::before { - content: "\e80e"; -} - -.mi-wheelchair-pickup::before { - content: "\f1ab"; -} - -.mi-where-to-vote::before { - content: "\e177"; -} - -.mi-widgets::before { - content: "\e1bd"; -} - -.mi-width-full::before { - content: "\f8f5"; -} - -.mi-width-normal::before { - content: "\f8f6"; -} - -.mi-width-wide::before { - content: "\f8f7"; -} - -.mi-wifi::before { - content: "\e63e"; -} - -.mi-wifi-1-bar::before { - content: "\e4ca"; -} - -.mi-wifi-2-bar::before { - content: "\e4d9"; -} - -.mi-wifi-calling::before { - content: "\ef77"; -} - -.mi-wifi-calling-1::before { - content: "\f0e7"; -} - -.mi-wifi-calling-2::before { - content: "\f0f6"; -} - -.mi-wifi-calling-3::before { - content: "\f085"; -} - -.mi-wifi-channel::before { - content: "\eb6a"; -} - -.mi-wifi-find::before { - content: "\eb31"; -} - -.mi-wifi-lock::before { - content: "\e1e1"; -} - -.mi-wifi-off::before { - content: "\e648"; -} - -.mi-wifi-password::before { - content: "\eb6b"; -} - -.mi-wifi-protected-setup::before { - content: "\f0fc"; -} - -.mi-wifi-tethering::before { - content: "\e1e2"; -} - -.mi-wifi-tethering-error::before { - content: "\ead9"; -} - -.mi-wifi-tethering-error-rounded::before { - content: "\f086"; -} - -.mi-wifi-tethering-off::before { - content: "\f087"; -} - -.mi-wind-power::before { - content: "\ec0c"; -} - -.mi-window::before { - content: "\f088"; -} - -.mi-wine-bar::before { - content: "\f1e8"; -} - -.mi-woman::before { - content: "\e13e"; -} - -.mi-woman-2::before { - content: "\f8e7"; -} - -.mi-woo-commerce::before { - content: "\ea6d"; -} - -.mi-wordpress::before { - content: "\ea9f"; -} - -.mi-work::before { - content: "\e8f9"; -} - -.mi-work-history::before { - content: "\ec09"; -} - -.mi-work-off::before { - content: "\e942"; -} - -.mi-work-outline::before { - content: "\e943"; -} - -.mi-workspace-premium::before { - content: "\e7af"; -} - -.mi-workspaces::before { - content: "\e1a0"; -} - -.mi-workspaces-filled::before { - content: "\ea0d"; -} - -.mi-workspaces-outline::before { - content: "\ea0f"; -} - -.mi-wrap-text::before { - content: "\e25b"; -} - -.mi-wrong-location::before { - content: "\ef78"; -} - -.mi-wysiwyg::before { - content: "\f1c3"; -} - -.mi-yard::before { - content: "\f089"; -} - -.mi-youtube-searched-for::before { - content: "\e8fa"; -} - -.mi-zoom-in::before { - content: "\e8ff"; -} - -.mi-zoom-in-map::before { - content: "\eb2d"; -} - -.mi-zoom-out::before { - content: "\e900"; -} - -.mi-zoom-out-map::before { - content: "\e56b"; -} diff --git a/packages/themes/mfm/assets/material-icons/css/material-icons.min.css b/packages/themes/mfm/assets/material-icons/css/material-icons.min.css deleted file mode 100644 index 249ed9bded..0000000000 --- a/packages/themes/mfm/assets/material-icons/css/material-icons.min.css +++ /dev/null @@ -1 +0,0 @@ -.mi{font-family:"Material Icons";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.mi-outlined{font-family:"Material Icons Outlined";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.mi-round{font-family:"Material Icons Round";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.mi-sharp{font-family:"Material Icons Sharp";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.mi-two-tone{font-family:"Material Icons Two Tone";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.mi-123::before{content:"\eb8d"}.mi-360::before{content:"\e577"}.mi-10k::before{content:"\e951"}.mi-10mp::before{content:"\e952"}.mi-11mp::before{content:"\e953"}.mi-12mp::before{content:"\e954"}.mi-13mp::before{content:"\e955"}.mi-14mp::before{content:"\e956"}.mi-15mp::before{content:"\e957"}.mi-16mp::before{content:"\e958"}.mi-17mp::before{content:"\e959"}.mi-18-up-rating::before{content:"\f8fd"}.mi-18mp::before{content:"\e95a"}.mi-19mp::before{content:"\e95b"}.mi-1k::before{content:"\e95c"}.mi-1k-plus::before{content:"\e95d"}.mi-1x-mobiledata::before{content:"\efcd"}.mi-20mp::before{content:"\e95e"}.mi-21mp::before{content:"\e95f"}.mi-22mp::before{content:"\e960"}.mi-23mp::before{content:"\e961"}.mi-24mp::before{content:"\e962"}.mi-2k::before{content:"\e963"}.mi-2k-plus::before{content:"\e964"}.mi-2mp::before{content:"\e965"}.mi-30fps::before{content:"\efce"}.mi-30fps-select::before{content:"\efcf"}.mi-3d-rotation::before{content:"\e84d"}.mi-3g-mobiledata::before{content:"\efd0"}.mi-3k::before{content:"\e966"}.mi-3k-plus::before{content:"\e967"}.mi-3mp::before{content:"\e968"}.mi-3p::before{content:"\efd1"}.mi-4g-mobiledata::before{content:"\efd2"}.mi-4g-plus-mobiledata::before{content:"\efd3"}.mi-4k::before{content:"\e072"}.mi-4k-plus::before{content:"\e969"}.mi-4mp::before{content:"\e96a"}.mi-5g::before{content:"\ef38"}.mi-5k::before{content:"\e96b"}.mi-5k-plus::before{content:"\e96c"}.mi-5mp::before{content:"\e96d"}.mi-60fps::before{content:"\efd4"}.mi-60fps-select::before{content:"\efd5"}.mi-6-ft-apart::before{content:"\f21e"}.mi-6k::before{content:"\e96e"}.mi-6k-plus::before{content:"\e96f"}.mi-6mp::before{content:"\e970"}.mi-7k::before{content:"\e971"}.mi-7k-plus::before{content:"\e972"}.mi-7mp::before{content:"\e973"}.mi-8k::before{content:"\e974"}.mi-8k-plus::before{content:"\e975"}.mi-8mp::before{content:"\e976"}.mi-9k::before{content:"\e977"}.mi-9k-plus::before{content:"\e978"}.mi-9mp::before{content:"\e979"}.mi-abc::before{content:"\eb94"}.mi-ac-unit::before{content:"\eb3b"}.mi-access-alarm::before{content:"\e190"}.mi-access-alarms::before{content:"\e191"}.mi-access-time::before{content:"\e192"}.mi-access-time-filled::before{content:"\efd6"}.mi-accessibility::before{content:"\e84e"}.mi-accessibility-new::before{content:"\e92c"}.mi-accessible::before{content:"\e914"}.mi-accessible-forward::before{content:"\e934"}.mi-account-balance::before{content:"\e84f"}.mi-account-balance-wallet::before{content:"\e850"}.mi-account-box::before{content:"\e851"}.mi-account-circle::before{content:"\e853"}.mi-account-tree::before{content:"\e97a"}.mi-ad-units::before{content:"\ef39"}.mi-adb::before{content:"\e60e"}.mi-add::before{content:"\e145"}.mi-add-a-photo::before{content:"\e439"}.mi-add-alarm::before{content:"\e193"}.mi-add-alert::before{content:"\e003"}.mi-add-box::before{content:"\e146"}.mi-add-business::before{content:"\e729"}.mi-add-call::before{content:"\e0e8"}.mi-add-card::before{content:"\eb86"}.mi-add-chart::before{content:"\e97b"}.mi-add-circle::before{content:"\e147"}.mi-add-circle-outline::before{content:"\e148"}.mi-add-comment::before{content:"\e266"}.mi-add-home::before{content:"\f8eb"}.mi-add-home-work::before{content:"\f8ed"}.mi-add-ic-call::before{content:"\e97c"}.mi-add-link::before{content:"\e178"}.mi-add-location::before{content:"\e567"}.mi-add-location-alt::before{content:"\ef3a"}.mi-add-moderator::before{content:"\e97d"}.mi-add-photo-alternate::before{content:"\e43e"}.mi-add-reaction::before{content:"\e1d3"}.mi-add-road::before{content:"\ef3b"}.mi-add-shopping-cart::before{content:"\e854"}.mi-add-task::before{content:"\f23a"}.mi-add-to-drive::before{content:"\e65c"}.mi-add-to-home-screen::before{content:"\e1fe"}.mi-add-to-photos::before{content:"\e39d"}.mi-add-to-queue::before{content:"\e05c"}.mi-addchart::before{content:"\ef3c"}.mi-adf-scanner::before{content:"\eada"}.mi-adjust::before{content:"\e39e"}.mi-admin-panel-settings::before{content:"\ef3d"}.mi-adobe::before{content:"\ea96"}.mi-ads-click::before{content:"\e762"}.mi-agriculture::before{content:"\ea79"}.mi-air::before{content:"\efd8"}.mi-airline-seat-flat::before{content:"\e630"}.mi-airline-seat-flat-angled::before{content:"\e631"}.mi-airline-seat-individual-suite::before{content:"\e632"}.mi-airline-seat-legroom-extra::before{content:"\e633"}.mi-airline-seat-legroom-normal::before{content:"\e634"}.mi-airline-seat-legroom-reduced::before{content:"\e635"}.mi-airline-seat-recline-extra::before{content:"\e636"}.mi-airline-seat-recline-normal::before{content:"\e637"}.mi-airline-stops::before{content:"\e7d0"}.mi-airlines::before{content:"\e7ca"}.mi-airplane-ticket::before{content:"\efd9"}.mi-airplanemode-active::before{content:"\e195"}.mi-airplanemode-inactive::before{content:"\e194"}.mi-airplanemode-off::before{content:"\e194"}.mi-airplanemode-on::before{content:"\e195"}.mi-airplay::before{content:"\e055"}.mi-airport-shuttle::before{content:"\eb3c"}.mi-alarm::before{content:"\e855"}.mi-alarm-add::before{content:"\e856"}.mi-alarm-off::before{content:"\e857"}.mi-alarm-on::before{content:"\e858"}.mi-album::before{content:"\e019"}.mi-align-horizontal-center::before{content:"\e00f"}.mi-align-horizontal-left::before{content:"\e00d"}.mi-align-horizontal-right::before{content:"\e010"}.mi-align-vertical-bottom::before{content:"\e015"}.mi-align-vertical-center::before{content:"\e011"}.mi-align-vertical-top::before{content:"\e00c"}.mi-all-inbox::before{content:"\e97f"}.mi-all-inclusive::before{content:"\eb3d"}.mi-all-out::before{content:"\e90b"}.mi-alt-route::before{content:"\f184"}.mi-alternate-email::before{content:"\e0e6"}.mi-amp-stories::before{content:"\ea13"}.mi-analytics::before{content:"\ef3e"}.mi-anchor::before{content:"\f1cd"}.mi-android::before{content:"\e859"}.mi-animation::before{content:"\e71c"}.mi-announcement::before{content:"\e85a"}.mi-aod::before{content:"\efda"}.mi-apartment::before{content:"\ea40"}.mi-api::before{content:"\f1b7"}.mi-app-blocking::before{content:"\ef3f"}.mi-app-registration::before{content:"\ef40"}.mi-app-settings-alt::before{content:"\ef41"}.mi-app-shortcut::before{content:"\eae4"}.mi-apple::before{content:"\ea80"}.mi-approval::before{content:"\e982"}.mi-apps::before{content:"\e5c3"}.mi-apps-outage::before{content:"\e7cc"}.mi-architecture::before{content:"\ea3b"}.mi-archive::before{content:"\e149"}.mi-area-chart::before{content:"\e770"}.mi-arrow-back::before{content:"\e5c4"}.mi-arrow-back-ios::before{content:"\e5e0"}.mi-arrow-back-ios-new::before{content:"\e2ea"}.mi-arrow-circle-down::before{content:"\f181"}.mi-arrow-circle-left::before{content:"\eaa7"}.mi-arrow-circle-right::before{content:"\eaaa"}.mi-arrow-circle-up::before{content:"\f182"}.mi-arrow-downward::before{content:"\e5db"}.mi-arrow-drop-down::before{content:"\e5c5"}.mi-arrow-drop-down-circle::before{content:"\e5c6"}.mi-arrow-drop-up::before{content:"\e5c7"}.mi-arrow-forward::before{content:"\e5c8"}.mi-arrow-forward-ios::before{content:"\e5e1"}.mi-arrow-left::before{content:"\e5de"}.mi-arrow-outward::before{content:"\f8ce"}.mi-arrow-right::before{content:"\e5df"}.mi-arrow-right-alt::before{content:"\e941"}.mi-arrow-upward::before{content:"\e5d8"}.mi-art-track::before{content:"\e060"}.mi-article::before{content:"\ef42"}.mi-aspect-ratio::before{content:"\e85b"}.mi-assessment::before{content:"\e85c"}.mi-assignment::before{content:"\e85d"}.mi-assignment-add::before{content:"\f848"}.mi-assignment-ind::before{content:"\e85e"}.mi-assignment-late::before{content:"\e85f"}.mi-assignment-return::before{content:"\e860"}.mi-assignment-returned::before{content:"\e861"}.mi-assignment-turned-in::before{content:"\e862"}.mi-assist-walker::before{content:"\f8d5"}.mi-assistant::before{content:"\e39f"}.mi-assistant-direction::before{content:"\e988"}.mi-assistant-navigation::before{content:"\e989"}.mi-assistant-photo::before{content:"\e3a0"}.mi-assured-workload::before{content:"\eb6f"}.mi-atm::before{content:"\e573"}.mi-attach-email::before{content:"\ea5e"}.mi-attach-file::before{content:"\e226"}.mi-attach-money::before{content:"\e227"}.mi-attachment::before{content:"\e2bc"}.mi-attractions::before{content:"\ea52"}.mi-attribution::before{content:"\efdb"}.mi-audio-file::before{content:"\eb82"}.mi-audiotrack::before{content:"\e3a1"}.mi-auto-awesome::before{content:"\e65f"}.mi-auto-awesome-mosaic::before{content:"\e660"}.mi-auto-awesome-motion::before{content:"\e661"}.mi-auto-delete::before{content:"\ea4c"}.mi-auto-fix-high::before{content:"\e663"}.mi-auto-fix-normal::before{content:"\e664"}.mi-auto-fix-off::before{content:"\e665"}.mi-auto-graph::before{content:"\e4fb"}.mi-auto-mode::before{content:"\ec20"}.mi-auto-stories::before{content:"\e666"}.mi-autofps-select::before{content:"\efdc"}.mi-autorenew::before{content:"\e863"}.mi-av-timer::before{content:"\e01b"}.mi-baby-changing-station::before{content:"\f19b"}.mi-back-hand::before{content:"\e764"}.mi-backpack::before{content:"\f19c"}.mi-backspace::before{content:"\e14a"}.mi-backup::before{content:"\e864"}.mi-backup-table::before{content:"\ef43"}.mi-badge::before{content:"\ea67"}.mi-bakery-dining::before{content:"\ea53"}.mi-balance::before{content:"\eaf6"}.mi-balcony::before{content:"\e58f"}.mi-ballot::before{content:"\e172"}.mi-bar-chart::before{content:"\e26b"}.mi-barcode-reader::before{content:"\f85c"}.mi-batch-prediction::before{content:"\f0f5"}.mi-bathroom::before{content:"\efdd"}.mi-bathtub::before{content:"\ea41"}.mi-battery-0-bar::before{content:"\ebdc"}.mi-battery-1-bar::before{content:"\ebd9"}.mi-battery-20::before{content:"\f09c"}.mi-battery-2-bar::before{content:"\ebe0"}.mi-battery-30::before{content:"\f09d"}.mi-battery-3-bar::before{content:"\ebdd"}.mi-battery-4-bar::before{content:"\ebe2"}.mi-battery-50::before{content:"\f09e"}.mi-battery-5-bar::before{content:"\ebd4"}.mi-battery-60::before{content:"\f09f"}.mi-battery-6-bar::before{content:"\ebd2"}.mi-battery-80::before{content:"\f0a0"}.mi-battery-90::before{content:"\f0a1"}.mi-battery-alert::before{content:"\e19c"}.mi-battery-charging-20::before{content:"\f0a2"}.mi-battery-charging-30::before{content:"\f0a3"}.mi-battery-charging-50::before{content:"\f0a4"}.mi-battery-charging-60::before{content:"\f0a5"}.mi-battery-charging-80::before{content:"\f0a6"}.mi-battery-charging-90::before{content:"\f0a7"}.mi-battery-charging-full::before{content:"\e1a3"}.mi-battery-full::before{content:"\e1a4"}.mi-battery-saver::before{content:"\efde"}.mi-battery-std::before{content:"\e1a5"}.mi-battery-unknown::before{content:"\e1a6"}.mi-beach-access::before{content:"\eb3e"}.mi-bed::before{content:"\efdf"}.mi-bedroom-baby::before{content:"\efe0"}.mi-bedroom-child::before{content:"\efe1"}.mi-bedroom-parent::before{content:"\efe2"}.mi-bedtime::before{content:"\ef44"}.mi-bedtime-off::before{content:"\eb76"}.mi-beenhere::before{content:"\e52d"}.mi-bento::before{content:"\f1f4"}.mi-bike-scooter::before{content:"\ef45"}.mi-biotech::before{content:"\ea3a"}.mi-blender::before{content:"\efe3"}.mi-blind::before{content:"\f8d6"}.mi-blinds::before{content:"\e286"}.mi-blinds-closed::before{content:"\ec1f"}.mi-block::before{content:"\e14b"}.mi-block-flipped::before{content:"\ef46"}.mi-bloodtype::before{content:"\efe4"}.mi-bluetooth::before{content:"\e1a7"}.mi-bluetooth-audio::before{content:"\e60f"}.mi-bluetooth-connected::before{content:"\e1a8"}.mi-bluetooth-disabled::before{content:"\e1a9"}.mi-bluetooth-drive::before{content:"\efe5"}.mi-bluetooth-searching::before{content:"\e1aa"}.mi-blur-circular::before{content:"\e3a2"}.mi-blur-linear::before{content:"\e3a3"}.mi-blur-off::before{content:"\e3a4"}.mi-blur-on::before{content:"\e3a5"}.mi-bolt::before{content:"\ea0b"}.mi-book::before{content:"\e865"}.mi-book-online::before{content:"\f217"}.mi-bookmark::before{content:"\e866"}.mi-bookmark-add::before{content:"\e598"}.mi-bookmark-added::before{content:"\e599"}.mi-bookmark-border::before{content:"\e867"}.mi-bookmark-outline::before{content:"\e867"}.mi-bookmark-remove::before{content:"\e59a"}.mi-bookmarks::before{content:"\e98b"}.mi-border-all::before{content:"\e228"}.mi-border-bottom::before{content:"\e229"}.mi-border-clear::before{content:"\e22a"}.mi-border-color::before{content:"\e22b"}.mi-border-horizontal::before{content:"\e22c"}.mi-border-inner::before{content:"\e22d"}.mi-border-left::before{content:"\e22e"}.mi-border-outer::before{content:"\e22f"}.mi-border-right::before{content:"\e230"}.mi-border-style::before{content:"\e231"}.mi-border-top::before{content:"\e232"}.mi-border-vertical::before{content:"\e233"}.mi-boy::before{content:"\eb67"}.mi-branding-watermark::before{content:"\e06b"}.mi-breakfast-dining::before{content:"\ea54"}.mi-brightness-1::before{content:"\e3a6"}.mi-brightness-2::before{content:"\e3a7"}.mi-brightness-3::before{content:"\e3a8"}.mi-brightness-4::before{content:"\e3a9"}.mi-brightness-5::before{content:"\e3aa"}.mi-brightness-6::before{content:"\e3ab"}.mi-brightness-7::before{content:"\e3ac"}.mi-brightness-auto::before{content:"\e1ab"}.mi-brightness-high::before{content:"\e1ac"}.mi-brightness-low::before{content:"\e1ad"}.mi-brightness-medium::before{content:"\e1ae"}.mi-broadcast-on-home::before{content:"\f8f8"}.mi-broadcast-on-personal::before{content:"\f8f9"}.mi-broken-image::before{content:"\e3ad"}.mi-browse-gallery::before{content:"\ebd1"}.mi-browser-not-supported::before{content:"\ef47"}.mi-browser-updated::before{content:"\e7cf"}.mi-brunch-dining::before{content:"\ea73"}.mi-brush::before{content:"\e3ae"}.mi-bubble-chart::before{content:"\e6dd"}.mi-bug-report::before{content:"\e868"}.mi-build::before{content:"\e869"}.mi-build-circle::before{content:"\ef48"}.mi-bungalow::before{content:"\e591"}.mi-burst-mode::before{content:"\e43c"}.mi-bus-alert::before{content:"\e98f"}.mi-business::before{content:"\e0af"}.mi-business-center::before{content:"\eb3f"}.mi-cabin::before{content:"\e589"}.mi-cable::before{content:"\efe6"}.mi-cached::before{content:"\e86a"}.mi-cake::before{content:"\e7e9"}.mi-calculate::before{content:"\ea5f"}.mi-calendar-month::before{content:"\ebcc"}.mi-calendar-today::before{content:"\e935"}.mi-calendar-view-day::before{content:"\e936"}.mi-calendar-view-month::before{content:"\efe7"}.mi-calendar-view-week::before{content:"\efe8"}.mi-call::before{content:"\e0b0"}.mi-call-end::before{content:"\e0b1"}.mi-call-made::before{content:"\e0b2"}.mi-call-merge::before{content:"\e0b3"}.mi-call-missed::before{content:"\e0b4"}.mi-call-missed-outgoing::before{content:"\e0e4"}.mi-call-received::before{content:"\e0b5"}.mi-call-split::before{content:"\e0b6"}.mi-call-to-action::before{content:"\e06c"}.mi-camera::before{content:"\e3af"}.mi-camera-alt::before{content:"\e3b0"}.mi-camera-enhance::before{content:"\e8fc"}.mi-camera-front::before{content:"\e3b1"}.mi-camera-indoor::before{content:"\efe9"}.mi-camera-outdoor::before{content:"\efea"}.mi-camera-rear::before{content:"\e3b2"}.mi-camera-roll::before{content:"\e3b3"}.mi-cameraswitch::before{content:"\efeb"}.mi-campaign::before{content:"\ef49"}.mi-cancel::before{content:"\e5c9"}.mi-cancel-presentation::before{content:"\e0e9"}.mi-cancel-schedule-send::before{content:"\ea39"}.mi-candlestick-chart::before{content:"\ead4"}.mi-car-crash::before{content:"\ebf2"}.mi-car-rental::before{content:"\ea55"}.mi-car-repair::before{content:"\ea56"}.mi-card-giftcard::before{content:"\e8f6"}.mi-card-membership::before{content:"\e8f7"}.mi-card-travel::before{content:"\e8f8"}.mi-carpenter::before{content:"\f1f8"}.mi-cases::before{content:"\e992"}.mi-casino::before{content:"\eb40"}.mi-cast::before{content:"\e307"}.mi-cast-connected::before{content:"\e308"}.mi-cast-for-education::before{content:"\efec"}.mi-castle::before{content:"\eab1"}.mi-catching-pokemon::before{content:"\e508"}.mi-category::before{content:"\e574"}.mi-celebration::before{content:"\ea65"}.mi-cell-tower::before{content:"\ebba"}.mi-cell-wifi::before{content:"\e0ec"}.mi-center-focus-strong::before{content:"\e3b4"}.mi-center-focus-weak::before{content:"\e3b5"}.mi-chair::before{content:"\efed"}.mi-chair-alt::before{content:"\efee"}.mi-chalet::before{content:"\e585"}.mi-change-circle::before{content:"\e2e7"}.mi-change-history::before{content:"\e86b"}.mi-charging-station::before{content:"\f19d"}.mi-chat::before{content:"\e0b7"}.mi-chat-bubble::before{content:"\e0ca"}.mi-chat-bubble-outline::before{content:"\e0cb"}.mi-check::before{content:"\e5ca"}.mi-check-box::before{content:"\e834"}.mi-check-box-outline-blank::before{content:"\e835"}.mi-check-circle::before{content:"\e86c"}.mi-check-circle-outline::before{content:"\e92d"}.mi-checklist::before{content:"\e6b1"}.mi-checklist-rtl::before{content:"\e6b3"}.mi-checkroom::before{content:"\f19e"}.mi-chevron-left::before{content:"\e5cb"}.mi-chevron-right::before{content:"\e5cc"}.mi-child-care::before{content:"\eb41"}.mi-child-friendly::before{content:"\eb42"}.mi-chrome-reader-mode::before{content:"\e86d"}.mi-church::before{content:"\eaae"}.mi-circle::before{content:"\ef4a"}.mi-circle-notifications::before{content:"\e994"}.mi-class::before{content:"\e86e"}.mi-clean-hands::before{content:"\f21f"}.mi-cleaning-services::before{content:"\f0ff"}.mi-clear::before{content:"\e14c"}.mi-clear-all::before{content:"\e0b8"}.mi-close::before{content:"\e5cd"}.mi-close-fullscreen::before{content:"\f1cf"}.mi-closed-caption::before{content:"\e01c"}.mi-closed-caption-disabled::before{content:"\f1dc"}.mi-closed-caption-off::before{content:"\e996"}.mi-cloud::before{content:"\e2bd"}.mi-cloud-circle::before{content:"\e2be"}.mi-cloud-done::before{content:"\e2bf"}.mi-cloud-download::before{content:"\e2c0"}.mi-cloud-off::before{content:"\e2c1"}.mi-cloud-queue::before{content:"\e2c2"}.mi-cloud-sync::before{content:"\eb5a"}.mi-cloud-upload::before{content:"\e2c3"}.mi-cloudy-snowing::before{content:"\e810"}.mi-co2::before{content:"\e7b0"}.mi-co-present::before{content:"\eaf0"}.mi-code::before{content:"\e86f"}.mi-code-off::before{content:"\e4f3"}.mi-coffee::before{content:"\efef"}.mi-coffee-maker::before{content:"\eff0"}.mi-collections::before{content:"\e3b6"}.mi-collections-bookmark::before{content:"\e431"}.mi-color-lens::before{content:"\e3b7"}.mi-colorize::before{content:"\e3b8"}.mi-comment::before{content:"\e0b9"}.mi-comment-bank::before{content:"\ea4e"}.mi-comments-disabled::before{content:"\e7a2"}.mi-commit::before{content:"\eaf5"}.mi-commute::before{content:"\e940"}.mi-compare::before{content:"\e3b9"}.mi-compare-arrows::before{content:"\e915"}.mi-compass-calibration::before{content:"\e57c"}.mi-compost::before{content:"\e761"}.mi-compress::before{content:"\e94d"}.mi-computer::before{content:"\e30a"}.mi-confirmation-num::before{content:"\e638"}.mi-confirmation-number::before{content:"\e638"}.mi-connect-without-contact::before{content:"\f223"}.mi-connected-tv::before{content:"\e998"}.mi-connecting-airports::before{content:"\e7c9"}.mi-construction::before{content:"\ea3c"}.mi-contact-emergency::before{content:"\f8d1"}.mi-contact-mail::before{content:"\e0d0"}.mi-contact-page::before{content:"\f22e"}.mi-contact-phone::before{content:"\e0cf"}.mi-contact-support::before{content:"\e94c"}.mi-contactless::before{content:"\ea71"}.mi-contacts::before{content:"\e0ba"}.mi-content-copy::before{content:"\e14d"}.mi-content-cut::before{content:"\e14e"}.mi-content-paste::before{content:"\e14f"}.mi-content-paste-go::before{content:"\ea8e"}.mi-content-paste-off::before{content:"\e4f8"}.mi-content-paste-search::before{content:"\ea9b"}.mi-contrast::before{content:"\eb37"}.mi-control-camera::before{content:"\e074"}.mi-control-point::before{content:"\e3ba"}.mi-control-point-duplicate::before{content:"\e3bb"}.mi-conveyor-belt::before{content:"\f867"}.mi-cookie::before{content:"\eaac"}.mi-copy::before{content:"\f08a"}.mi-copy-all::before{content:"\e2ec"}.mi-copyright::before{content:"\e90c"}.mi-coronavirus::before{content:"\f221"}.mi-corporate-fare::before{content:"\f1d0"}.mi-cottage::before{content:"\e587"}.mi-countertops::before{content:"\f1f7"}.mi-create::before{content:"\e150"}.mi-create-new-folder::before{content:"\e2cc"}.mi-credit-card::before{content:"\e870"}.mi-credit-card-off::before{content:"\e4f4"}.mi-credit-score::before{content:"\eff1"}.mi-crib::before{content:"\e588"}.mi-crisis-alert::before{content:"\ebe9"}.mi-crop::before{content:"\e3be"}.mi-crop-16-9::before{content:"\e3bc"}.mi-crop-3-2::before{content:"\e3bd"}.mi-crop-5-4::before{content:"\e3bf"}.mi-crop-7-5::before{content:"\e3c0"}.mi-crop-din::before{content:"\e3c1"}.mi-crop-free::before{content:"\e3c2"}.mi-crop-landscape::before{content:"\e3c3"}.mi-crop-original::before{content:"\e3c4"}.mi-crop-portrait::before{content:"\e3c5"}.mi-crop-rotate::before{content:"\e437"}.mi-crop-square::before{content:"\e3c6"}.mi-cruelty-free::before{content:"\e799"}.mi-css::before{content:"\eb93"}.mi-currency-bitcoin::before{content:"\ebc5"}.mi-currency-exchange::before{content:"\eb70"}.mi-currency-franc::before{content:"\eafa"}.mi-currency-lira::before{content:"\eaef"}.mi-currency-pound::before{content:"\eaf1"}.mi-currency-ruble::before{content:"\eaec"}.mi-currency-rupee::before{content:"\eaf7"}.mi-currency-yen::before{content:"\eafb"}.mi-currency-yuan::before{content:"\eaf9"}.mi-curtains::before{content:"\ec1e"}.mi-curtains-closed::before{content:"\ec1d"}.mi-cut::before{content:"\f08b"}.mi-cyclone::before{content:"\ebd5"}.mi-dangerous::before{content:"\e99a"}.mi-dark-mode::before{content:"\e51c"}.mi-dashboard::before{content:"\e871"}.mi-dashboard-customize::before{content:"\e99b"}.mi-data-array::before{content:"\ead1"}.mi-data-exploration::before{content:"\e76f"}.mi-data-object::before{content:"\ead3"}.mi-data-saver-off::before{content:"\eff2"}.mi-data-saver-on::before{content:"\eff3"}.mi-data-thresholding::before{content:"\eb9f"}.mi-data-usage::before{content:"\e1af"}.mi-dataset::before{content:"\f8ee"}.mi-dataset-linked::before{content:"\f8ef"}.mi-date-range::before{content:"\e916"}.mi-deblur::before{content:"\eb77"}.mi-deck::before{content:"\ea42"}.mi-dehaze::before{content:"\e3c7"}.mi-delete::before{content:"\e872"}.mi-delete-forever::before{content:"\e92b"}.mi-delete-outline::before{content:"\e92e"}.mi-delete-sweep::before{content:"\e16c"}.mi-delivery-dining::before{content:"\ea72"}.mi-density-large::before{content:"\eba9"}.mi-density-medium::before{content:"\eb9e"}.mi-density-small::before{content:"\eba8"}.mi-departure-board::before{content:"\e576"}.mi-description::before{content:"\e873"}.mi-deselect::before{content:"\ebb6"}.mi-design-services::before{content:"\f10a"}.mi-desk::before{content:"\f8f4"}.mi-desktop-access-disabled::before{content:"\e99d"}.mi-desktop-mac::before{content:"\e30b"}.mi-desktop-windows::before{content:"\e30c"}.mi-details::before{content:"\e3c8"}.mi-developer-board::before{content:"\e30d"}.mi-developer-board-off::before{content:"\e4ff"}.mi-developer-mode::before{content:"\e1b0"}.mi-device-hub::before{content:"\e335"}.mi-device-thermostat::before{content:"\e1ff"}.mi-device-unknown::before{content:"\e339"}.mi-devices::before{content:"\e1b1"}.mi-devices-fold::before{content:"\ebde"}.mi-devices-other::before{content:"\e337"}.mi-dew-point::before{content:"\f879"}.mi-dialer-sip::before{content:"\e0bb"}.mi-dialpad::before{content:"\e0bc"}.mi-diamond::before{content:"\ead5"}.mi-difference::before{content:"\eb7d"}.mi-dining::before{content:"\eff4"}.mi-dinner-dining::before{content:"\ea57"}.mi-directions::before{content:"\e52e"}.mi-directions-bike::before{content:"\e52f"}.mi-directions-boat::before{content:"\e532"}.mi-directions-boat-filled::before{content:"\eff5"}.mi-directions-bus::before{content:"\e530"}.mi-directions-bus-filled::before{content:"\eff6"}.mi-directions-car::before{content:"\e531"}.mi-directions-car-filled::before{content:"\eff7"}.mi-directions-ferry::before{content:"\e532"}.mi-directions-off::before{content:"\f10f"}.mi-directions-railway::before{content:"\e534"}.mi-directions-railway-filled::before{content:"\eff8"}.mi-directions-run::before{content:"\e566"}.mi-directions-subway::before{content:"\e533"}.mi-directions-subway-filled::before{content:"\eff9"}.mi-directions-train::before{content:"\e534"}.mi-directions-transit::before{content:"\e535"}.mi-directions-transit-filled::before{content:"\effa"}.mi-directions-walk::before{content:"\e536"}.mi-dirty-lens::before{content:"\ef4b"}.mi-disabled-by-default::before{content:"\f230"}.mi-disabled-visible::before{content:"\e76e"}.mi-disc-full::before{content:"\e610"}.mi-discord::before{content:"\ea6c"}.mi-discount::before{content:"\ebc9"}.mi-display-settings::before{content:"\eb97"}.mi-diversity-1::before{content:"\f8d7"}.mi-diversity-2::before{content:"\f8d8"}.mi-diversity-3::before{content:"\f8d9"}.mi-dnd-forwardslash::before{content:"\e611"}.mi-dns::before{content:"\e875"}.mi-do-disturb::before{content:"\f08c"}.mi-do-disturb-alt::before{content:"\f08d"}.mi-do-disturb-off::before{content:"\f08e"}.mi-do-disturb-on::before{content:"\f08f"}.mi-do-not-disturb::before{content:"\e612"}.mi-do-not-disturb-alt::before{content:"\e611"}.mi-do-not-disturb-off::before{content:"\e643"}.mi-do-not-disturb-on::before{content:"\e644"}.mi-do-not-disturb-on-total-silence::before{content:"\effb"}.mi-do-not-step::before{content:"\f19f"}.mi-do-not-touch::before{content:"\f1b0"}.mi-dock::before{content:"\e30e"}.mi-document-scanner::before{content:"\e5fa"}.mi-domain::before{content:"\e7ee"}.mi-domain-add::before{content:"\eb62"}.mi-domain-disabled::before{content:"\e0ef"}.mi-domain-verification::before{content:"\ef4c"}.mi-done::before{content:"\e876"}.mi-done-all::before{content:"\e877"}.mi-done-outline::before{content:"\e92f"}.mi-donut-large::before{content:"\e917"}.mi-donut-small::before{content:"\e918"}.mi-door-back::before{content:"\effc"}.mi-door-front::before{content:"\effd"}.mi-door-sliding::before{content:"\effe"}.mi-doorbell::before{content:"\efff"}.mi-double-arrow::before{content:"\ea50"}.mi-downhill-skiing::before{content:"\e509"}.mi-download::before{content:"\f090"}.mi-download-done::before{content:"\f091"}.mi-download-for-offline::before{content:"\f000"}.mi-downloading::before{content:"\f001"}.mi-drafts::before{content:"\e151"}.mi-drag-handle::before{content:"\e25d"}.mi-drag-indicator::before{content:"\e945"}.mi-draw::before{content:"\e746"}.mi-drive-eta::before{content:"\e613"}.mi-drive-file-move::before{content:"\e675"}.mi-drive-file-move-outline::before{content:"\e9a1"}.mi-drive-file-move-rtl::before{content:"\e76d"}.mi-drive-file-rename-outline::before{content:"\e9a2"}.mi-drive-folder-upload::before{content:"\e9a3"}.mi-dry::before{content:"\f1b3"}.mi-dry-cleaning::before{content:"\ea58"}.mi-duo::before{content:"\e9a5"}.mi-dvr::before{content:"\e1b2"}.mi-dynamic-feed::before{content:"\ea14"}.mi-dynamic-form::before{content:"\f1bf"}.mi-e-mobiledata::before{content:"\f002"}.mi-earbuds::before{content:"\f003"}.mi-earbuds-battery::before{content:"\f004"}.mi-east::before{content:"\f1df"}.mi-eco::before{content:"\ea35"}.mi-edgesensor-high::before{content:"\f005"}.mi-edgesensor-low::before{content:"\f006"}.mi-edit::before{content:"\e3c9"}.mi-edit-attributes::before{content:"\e578"}.mi-edit-calendar::before{content:"\e742"}.mi-edit-document::before{content:"\f88c"}.mi-edit-location::before{content:"\e568"}.mi-edit-location-alt::before{content:"\e1c5"}.mi-edit-note::before{content:"\e745"}.mi-edit-notifications::before{content:"\e525"}.mi-edit-off::before{content:"\e950"}.mi-edit-road::before{content:"\ef4d"}.mi-edit-square::before{content:"\f88d"}.mi-egg::before{content:"\eacc"}.mi-egg-alt::before{content:"\eac8"}.mi-eject::before{content:"\e8fb"}.mi-elderly::before{content:"\f21a"}.mi-elderly-woman::before{content:"\eb69"}.mi-electric-bike::before{content:"\eb1b"}.mi-electric-bolt::before{content:"\ec1c"}.mi-electric-car::before{content:"\eb1c"}.mi-electric-meter::before{content:"\ec1b"}.mi-electric-moped::before{content:"\eb1d"}.mi-electric-rickshaw::before{content:"\eb1e"}.mi-electric-scooter::before{content:"\eb1f"}.mi-electrical-services::before{content:"\f102"}.mi-elevator::before{content:"\f1a0"}.mi-email::before{content:"\e0be"}.mi-emergency::before{content:"\e1eb"}.mi-emergency-recording::before{content:"\ebf4"}.mi-emergency-share::before{content:"\ebf6"}.mi-emoji-emotions::before{content:"\ea22"}.mi-emoji-events::before{content:"\ea23"}.mi-emoji-flags::before{content:"\ea1a"}.mi-emoji-food-beverage::before{content:"\ea1b"}.mi-emoji-nature::before{content:"\ea1c"}.mi-emoji-objects::before{content:"\ea24"}.mi-emoji-people::before{content:"\ea1d"}.mi-emoji-symbols::before{content:"\ea1e"}.mi-emoji-transportation::before{content:"\ea1f"}.mi-energy-savings-leaf::before{content:"\ec1a"}.mi-engineering::before{content:"\ea3d"}.mi-enhance-photo-translate::before{content:"\e8fc"}.mi-enhanced-encryption::before{content:"\e63f"}.mi-equalizer::before{content:"\e01d"}.mi-error::before{content:"\e000"}.mi-error-outline::before{content:"\e001"}.mi-escalator::before{content:"\f1a1"}.mi-escalator-warning::before{content:"\f1ac"}.mi-euro::before{content:"\ea15"}.mi-euro-symbol::before{content:"\e926"}.mi-ev-station::before{content:"\e56d"}.mi-event::before{content:"\e878"}.mi-event-available::before{content:"\e614"}.mi-event-busy::before{content:"\e615"}.mi-event-note::before{content:"\e616"}.mi-event-repeat::before{content:"\eb7b"}.mi-event-seat::before{content:"\e903"}.mi-exit-to-app::before{content:"\e879"}.mi-expand::before{content:"\e94f"}.mi-expand-circle-down::before{content:"\e7cd"}.mi-expand-less::before{content:"\e5ce"}.mi-expand-more::before{content:"\e5cf"}.mi-explicit::before{content:"\e01e"}.mi-explore::before{content:"\e87a"}.mi-explore-off::before{content:"\e9a8"}.mi-exposure::before{content:"\e3ca"}.mi-exposure-minus-1::before{content:"\e3cb"}.mi-exposure-minus-2::before{content:"\e3cc"}.mi-exposure-neg-1::before{content:"\e3cb"}.mi-exposure-neg-2::before{content:"\e3cc"}.mi-exposure-plus-1::before{content:"\e3cd"}.mi-exposure-plus-2::before{content:"\e3ce"}.mi-exposure-zero::before{content:"\e3cf"}.mi-extension::before{content:"\e87b"}.mi-extension-off::before{content:"\e4f5"}.mi-face::before{content:"\e87c"}.mi-face-2::before{content:"\f8da"}.mi-face-3::before{content:"\f8db"}.mi-face-4::before{content:"\f8dc"}.mi-face-5::before{content:"\f8dd"}.mi-face-6::before{content:"\f8de"}.mi-face-retouching-natural::before{content:"\ef4e"}.mi-face-retouching-off::before{content:"\f007"}.mi-face-unlock::before{content:"\f008"}.mi-facebook::before{content:"\f234"}.mi-fact-check::before{content:"\f0c5"}.mi-factory::before{content:"\ebbc"}.mi-family-restroom::before{content:"\f1a2"}.mi-fast-forward::before{content:"\e01f"}.mi-fast-rewind::before{content:"\e020"}.mi-fastfood::before{content:"\e57a"}.mi-favorite::before{content:"\e87d"}.mi-favorite-border::before{content:"\e87e"}.mi-favorite-outline::before{content:"\e87e"}.mi-fax::before{content:"\ead8"}.mi-featured-play-list::before{content:"\e06d"}.mi-featured-video::before{content:"\e06e"}.mi-feed::before{content:"\f009"}.mi-feedback::before{content:"\e87f"}.mi-female::before{content:"\e590"}.mi-fence::before{content:"\f1f6"}.mi-festival::before{content:"\ea68"}.mi-fiber-dvr::before{content:"\e05d"}.mi-fiber-manual-record::before{content:"\e061"}.mi-fiber-new::before{content:"\e05e"}.mi-fiber-pin::before{content:"\e06a"}.mi-fiber-smart-record::before{content:"\e062"}.mi-file-copy::before{content:"\e173"}.mi-file-download::before{content:"\e2c4"}.mi-file-download-done::before{content:"\e9aa"}.mi-file-download-off::before{content:"\e4fe"}.mi-file-open::before{content:"\eaf3"}.mi-file-present::before{content:"\ea0e"}.mi-file-upload::before{content:"\e2c6"}.mi-file-upload-off::before{content:"\f886"}.mi-filter::before{content:"\e3d3"}.mi-filter-1::before{content:"\e3d0"}.mi-filter-2::before{content:"\e3d1"}.mi-filter-3::before{content:"\e3d2"}.mi-filter-4::before{content:"\e3d4"}.mi-filter-5::before{content:"\e3d5"}.mi-filter-6::before{content:"\e3d6"}.mi-filter-7::before{content:"\e3d7"}.mi-filter-8::before{content:"\e3d8"}.mi-filter-9::before{content:"\e3d9"}.mi-filter-9-plus::before{content:"\e3da"}.mi-filter-alt::before{content:"\ef4f"}.mi-filter-alt-off::before{content:"\eb32"}.mi-filter-b-and-w::before{content:"\e3db"}.mi-filter-center-focus::before{content:"\e3dc"}.mi-filter-drama::before{content:"\e3dd"}.mi-filter-frames::before{content:"\e3de"}.mi-filter-hdr::before{content:"\e3df"}.mi-filter-list::before{content:"\e152"}.mi-filter-list-alt::before{content:"\e94e"}.mi-filter-list-off::before{content:"\eb57"}.mi-filter-none::before{content:"\e3e0"}.mi-filter-tilt-shift::before{content:"\e3e2"}.mi-filter-vintage::before{content:"\e3e3"}.mi-find-in-page::before{content:"\e880"}.mi-find-replace::before{content:"\e881"}.mi-fingerprint::before{content:"\e90d"}.mi-fire-extinguisher::before{content:"\f1d8"}.mi-fire-hydrant::before{content:"\f1a3"}.mi-fire-hydrant-alt::before{content:"\f8f1"}.mi-fire-truck::before{content:"\f8f2"}.mi-fireplace::before{content:"\ea43"}.mi-first-page::before{content:"\e5dc"}.mi-fit-screen::before{content:"\ea10"}.mi-fitbit::before{content:"\e82b"}.mi-fitness-center::before{content:"\eb43"}.mi-flag::before{content:"\e153"}.mi-flag-circle::before{content:"\eaf8"}.mi-flaky::before{content:"\ef50"}.mi-flare::before{content:"\e3e4"}.mi-flash-auto::before{content:"\e3e5"}.mi-flash-off::before{content:"\e3e6"}.mi-flash-on::before{content:"\e3e7"}.mi-flashlight-off::before{content:"\f00a"}.mi-flashlight-on::before{content:"\f00b"}.mi-flatware::before{content:"\f00c"}.mi-flight::before{content:"\e539"}.mi-flight-class::before{content:"\e7cb"}.mi-flight-land::before{content:"\e904"}.mi-flight-takeoff::before{content:"\e905"}.mi-flip::before{content:"\e3e8"}.mi-flip-camera-android::before{content:"\ea37"}.mi-flip-camera-ios::before{content:"\ea38"}.mi-flip-to-back::before{content:"\e882"}.mi-flip-to-front::before{content:"\e883"}.mi-flood::before{content:"\ebe6"}.mi-flourescent::before{content:"\ec31"}.mi-fluorescent::before{content:"\ec31"}.mi-flutter-dash::before{content:"\e00b"}.mi-fmd-bad::before{content:"\f00e"}.mi-fmd-good::before{content:"\f00f"}.mi-foggy::before{content:"\e818"}.mi-folder::before{content:"\e2c7"}.mi-folder-copy::before{content:"\ebbd"}.mi-folder-delete::before{content:"\eb34"}.mi-folder-off::before{content:"\eb83"}.mi-folder-open::before{content:"\e2c8"}.mi-folder-shared::before{content:"\e2c9"}.mi-folder-special::before{content:"\e617"}.mi-folder-zip::before{content:"\eb2c"}.mi-follow-the-signs::before{content:"\f222"}.mi-font-download::before{content:"\e167"}.mi-font-download-off::before{content:"\e4f9"}.mi-food-bank::before{content:"\f1f2"}.mi-forest::before{content:"\ea99"}.mi-fork-left::before{content:"\eba0"}.mi-fork-right::before{content:"\ebac"}.mi-forklift::before{content:"\f868"}.mi-format-align-center::before{content:"\e234"}.mi-format-align-justify::before{content:"\e235"}.mi-format-align-left::before{content:"\e236"}.mi-format-align-right::before{content:"\e237"}.mi-format-bold::before{content:"\e238"}.mi-format-clear::before{content:"\e239"}.mi-format-color-fill::before{content:"\e23a"}.mi-format-color-reset::before{content:"\e23b"}.mi-format-color-text::before{content:"\e23c"}.mi-format-indent-decrease::before{content:"\e23d"}.mi-format-indent-increase::before{content:"\e23e"}.mi-format-italic::before{content:"\e23f"}.mi-format-line-spacing::before{content:"\e240"}.mi-format-list-bulleted::before{content:"\e241"}.mi-format-list-bulleted-add::before{content:"\f849"}.mi-format-list-numbered::before{content:"\e242"}.mi-format-list-numbered-rtl::before{content:"\e267"}.mi-format-overline::before{content:"\eb65"}.mi-format-paint::before{content:"\e243"}.mi-format-quote::before{content:"\e244"}.mi-format-shapes::before{content:"\e25e"}.mi-format-size::before{content:"\e245"}.mi-format-strikethrough::before{content:"\e246"}.mi-format-textdirection-l-to-r::before{content:"\e247"}.mi-format-textdirection-r-to-l::before{content:"\e248"}.mi-format-underline::before{content:"\e249"}.mi-format-underlined::before{content:"\e249"}.mi-fort::before{content:"\eaad"}.mi-forum::before{content:"\e0bf"}.mi-forward::before{content:"\e154"}.mi-forward-10::before{content:"\e056"}.mi-forward-30::before{content:"\e057"}.mi-forward-5::before{content:"\e058"}.mi-forward-to-inbox::before{content:"\f187"}.mi-foundation::before{content:"\f200"}.mi-free-breakfast::before{content:"\eb44"}.mi-free-cancellation::before{content:"\e748"}.mi-front-hand::before{content:"\e769"}.mi-front-loader::before{content:"\f869"}.mi-fullscreen::before{content:"\e5d0"}.mi-fullscreen-exit::before{content:"\e5d1"}.mi-functions::before{content:"\e24a"}.mi-g-mobiledata::before{content:"\f010"}.mi-g-translate::before{content:"\e927"}.mi-gamepad::before{content:"\e30f"}.mi-games::before{content:"\e021"}.mi-garage::before{content:"\f011"}.mi-gas-meter::before{content:"\ec19"}.mi-gavel::before{content:"\e90e"}.mi-generating-tokens::before{content:"\e749"}.mi-gesture::before{content:"\e155"}.mi-get-app::before{content:"\e884"}.mi-gif::before{content:"\e908"}.mi-gif-box::before{content:"\e7a3"}.mi-girl::before{content:"\eb68"}.mi-gite::before{content:"\e58b"}.mi-goat::before{content:"\10fffd"}.mi-golf-course::before{content:"\eb45"}.mi-gpp-bad::before{content:"\f012"}.mi-gpp-good::before{content:"\f013"}.mi-gpp-maybe::before{content:"\f014"}.mi-gps-fixed::before{content:"\e1b3"}.mi-gps-not-fixed::before{content:"\e1b4"}.mi-gps-off::before{content:"\e1b5"}.mi-grade::before{content:"\e885"}.mi-gradient::before{content:"\e3e9"}.mi-grading::before{content:"\ea4f"}.mi-grain::before{content:"\e3ea"}.mi-graphic-eq::before{content:"\e1b8"}.mi-grass::before{content:"\f205"}.mi-grid-3x3::before{content:"\f015"}.mi-grid-4x4::before{content:"\f016"}.mi-grid-goldenratio::before{content:"\f017"}.mi-grid-off::before{content:"\e3eb"}.mi-grid-on::before{content:"\e3ec"}.mi-grid-view::before{content:"\e9b0"}.mi-group::before{content:"\e7ef"}.mi-group-add::before{content:"\e7f0"}.mi-group-off::before{content:"\e747"}.mi-group-remove::before{content:"\e7ad"}.mi-group-work::before{content:"\e886"}.mi-groups::before{content:"\f233"}.mi-groups-2::before{content:"\f8df"}.mi-groups-3::before{content:"\f8e0"}.mi-h-mobiledata::before{content:"\f018"}.mi-h-plus-mobiledata::before{content:"\f019"}.mi-hail::before{content:"\e9b1"}.mi-handshake::before{content:"\ebcb"}.mi-handyman::before{content:"\f10b"}.mi-hardware::before{content:"\ea59"}.mi-hd::before{content:"\e052"}.mi-hdr-auto::before{content:"\f01a"}.mi-hdr-auto-select::before{content:"\f01b"}.mi-hdr-enhanced-select::before{content:"\ef51"}.mi-hdr-off::before{content:"\e3ed"}.mi-hdr-off-select::before{content:"\f01c"}.mi-hdr-on::before{content:"\e3ee"}.mi-hdr-on-select::before{content:"\f01d"}.mi-hdr-plus::before{content:"\f01e"}.mi-hdr-strong::before{content:"\e3f1"}.mi-hdr-weak::before{content:"\e3f2"}.mi-headphones::before{content:"\f01f"}.mi-headphones-battery::before{content:"\f020"}.mi-headset::before{content:"\e310"}.mi-headset-mic::before{content:"\e311"}.mi-headset-off::before{content:"\e33a"}.mi-healing::before{content:"\e3f3"}.mi-health-and-safety::before{content:"\e1d5"}.mi-hearing::before{content:"\e023"}.mi-hearing-disabled::before{content:"\f104"}.mi-heart-broken::before{content:"\eac2"}.mi-heat-pump::before{content:"\ec18"}.mi-height::before{content:"\ea16"}.mi-help::before{content:"\e887"}.mi-help-center::before{content:"\f1c0"}.mi-help-outline::before{content:"\e8fd"}.mi-hevc::before{content:"\f021"}.mi-hexagon::before{content:"\eb39"}.mi-hide-image::before{content:"\f022"}.mi-hide-source::before{content:"\f023"}.mi-high-quality::before{content:"\e024"}.mi-highlight::before{content:"\e25f"}.mi-highlight-alt::before{content:"\ef52"}.mi-highlight-off::before{content:"\e888"}.mi-highlight-remove::before{content:"\e888"}.mi-hiking::before{content:"\e50a"}.mi-history::before{content:"\e889"}.mi-history-edu::before{content:"\ea3e"}.mi-history-toggle-off::before{content:"\f17d"}.mi-hive::before{content:"\eaa6"}.mi-hls::before{content:"\eb8a"}.mi-hls-off::before{content:"\eb8c"}.mi-holiday-village::before{content:"\e58a"}.mi-home::before{content:"\e88a"}.mi-home-filled::before{content:"\e9b2"}.mi-home-max::before{content:"\f024"}.mi-home-mini::before{content:"\f025"}.mi-home-repair-service::before{content:"\f100"}.mi-home-work::before{content:"\ea09"}.mi-horizontal-distribute::before{content:"\e014"}.mi-horizontal-rule::before{content:"\f108"}.mi-horizontal-split::before{content:"\e947"}.mi-hot-tub::before{content:"\eb46"}.mi-hotel::before{content:"\e53a"}.mi-hotel-class::before{content:"\e743"}.mi-hourglass-bottom::before{content:"\ea5c"}.mi-hourglass-disabled::before{content:"\ef53"}.mi-hourglass-empty::before{content:"\e88b"}.mi-hourglass-full::before{content:"\e88c"}.mi-hourglass-top::before{content:"\ea5b"}.mi-house::before{content:"\ea44"}.mi-house-siding::before{content:"\f202"}.mi-houseboat::before{content:"\e584"}.mi-how-to-reg::before{content:"\e174"}.mi-how-to-vote::before{content:"\e175"}.mi-html::before{content:"\eb7e"}.mi-http::before{content:"\e902"}.mi-https::before{content:"\e88d"}.mi-hub::before{content:"\e9f4"}.mi-hvac::before{content:"\f10e"}.mi-ice-skating::before{content:"\e50b"}.mi-icecream::before{content:"\ea69"}.mi-image::before{content:"\e3f4"}.mi-image-aspect-ratio::before{content:"\e3f5"}.mi-image-not-supported::before{content:"\f116"}.mi-image-search::before{content:"\e43f"}.mi-imagesearch-roller::before{content:"\e9b4"}.mi-import-contacts::before{content:"\e0e0"}.mi-import-export::before{content:"\e0c3"}.mi-important-devices::before{content:"\e912"}.mi-inbox::before{content:"\e156"}.mi-incomplete-circle::before{content:"\e79b"}.mi-indeterminate-check-box::before{content:"\e909"}.mi-info::before{content:"\e88e"}.mi-info-outline::before{content:"\e88f"}.mi-input::before{content:"\e890"}.mi-insert-chart::before{content:"\e24b"}.mi-insert-chart-outlined::before{content:"\e26a"}.mi-insert-comment::before{content:"\e24c"}.mi-insert-drive-file::before{content:"\e24d"}.mi-insert-emoticon::before{content:"\e24e"}.mi-insert-invitation::before{content:"\e24f"}.mi-insert-link::before{content:"\e250"}.mi-insert-page-break::before{content:"\eaca"}.mi-insert-photo::before{content:"\e251"}.mi-insights::before{content:"\f092"}.mi-install-desktop::before{content:"\eb71"}.mi-install-mobile::before{content:"\eb72"}.mi-integration-instructions::before{content:"\ef54"}.mi-interests::before{content:"\e7c8"}.mi-interpreter-mode::before{content:"\e83b"}.mi-inventory::before{content:"\e179"}.mi-inventory-2::before{content:"\e1a1"}.mi-invert-colors::before{content:"\e891"}.mi-invert-colors-off::before{content:"\e0c4"}.mi-invert-colors-on::before{content:"\e891"}.mi-ios-share::before{content:"\e6b8"}.mi-iron::before{content:"\e583"}.mi-iso::before{content:"\e3f6"}.mi-javascript::before{content:"\eb7c"}.mi-join-full::before{content:"\eaeb"}.mi-join-inner::before{content:"\eaf4"}.mi-join-left::before{content:"\eaf2"}.mi-join-right::before{content:"\eaea"}.mi-kayaking::before{content:"\e50c"}.mi-kebab-dining::before{content:"\e842"}.mi-key::before{content:"\e73c"}.mi-key-off::before{content:"\eb84"}.mi-keyboard::before{content:"\e312"}.mi-keyboard-alt::before{content:"\f028"}.mi-keyboard-arrow-down::before{content:"\e313"}.mi-keyboard-arrow-left::before{content:"\e314"}.mi-keyboard-arrow-right::before{content:"\e315"}.mi-keyboard-arrow-up::before{content:"\e316"}.mi-keyboard-backspace::before{content:"\e317"}.mi-keyboard-capslock::before{content:"\e318"}.mi-keyboard-command::before{content:"\eae0"}.mi-keyboard-command-key::before{content:"\eae7"}.mi-keyboard-control::before{content:"\e5d3"}.mi-keyboard-control-key::before{content:"\eae6"}.mi-keyboard-double-arrow-down::before{content:"\ead0"}.mi-keyboard-double-arrow-left::before{content:"\eac3"}.mi-keyboard-double-arrow-right::before{content:"\eac9"}.mi-keyboard-double-arrow-up::before{content:"\eacf"}.mi-keyboard-hide::before{content:"\e31a"}.mi-keyboard-option::before{content:"\eadf"}.mi-keyboard-option-key::before{content:"\eae8"}.mi-keyboard-return::before{content:"\e31b"}.mi-keyboard-tab::before{content:"\e31c"}.mi-keyboard-voice::before{content:"\e31d"}.mi-king-bed::before{content:"\ea45"}.mi-kitchen::before{content:"\eb47"}.mi-kitesurfing::before{content:"\e50d"}.mi-label::before{content:"\e892"}.mi-label-important::before{content:"\e937"}.mi-label-important-outline::before{content:"\e948"}.mi-label-off::before{content:"\e9b6"}.mi-label-outline::before{content:"\e893"}.mi-lan::before{content:"\eb2f"}.mi-landscape::before{content:"\e3f7"}.mi-landslide::before{content:"\ebd7"}.mi-language::before{content:"\e894"}.mi-laptop::before{content:"\e31e"}.mi-laptop-chromebook::before{content:"\e31f"}.mi-laptop-mac::before{content:"\e320"}.mi-laptop-windows::before{content:"\e321"}.mi-last-page::before{content:"\e5dd"}.mi-launch::before{content:"\e895"}.mi-layers::before{content:"\e53b"}.mi-layers-clear::before{content:"\e53c"}.mi-leaderboard::before{content:"\f20c"}.mi-leak-add::before{content:"\e3f8"}.mi-leak-remove::before{content:"\e3f9"}.mi-leave-bags-at-home::before{content:"\f21b"}.mi-legend-toggle::before{content:"\f11b"}.mi-lens::before{content:"\e3fa"}.mi-lens-blur::before{content:"\f029"}.mi-library-add::before{content:"\e02e"}.mi-library-add-check::before{content:"\e9b7"}.mi-library-books::before{content:"\e02f"}.mi-library-music::before{content:"\e030"}.mi-light::before{content:"\f02a"}.mi-light-mode::before{content:"\e518"}.mi-lightbulb::before{content:"\e0f0"}.mi-lightbulb-circle::before{content:"\ebfe"}.mi-lightbulb-outline::before{content:"\e90f"}.mi-line-axis::before{content:"\ea9a"}.mi-line-style::before{content:"\e919"}.mi-line-weight::before{content:"\e91a"}.mi-linear-scale::before{content:"\e260"}.mi-link::before{content:"\e157"}.mi-link-off::before{content:"\e16f"}.mi-linked-camera::before{content:"\e438"}.mi-liquor::before{content:"\ea60"}.mi-list::before{content:"\e896"}.mi-list-alt::before{content:"\e0ee"}.mi-live-help::before{content:"\e0c6"}.mi-live-tv::before{content:"\e639"}.mi-living::before{content:"\f02b"}.mi-local-activity::before{content:"\e53f"}.mi-local-airport::before{content:"\e53d"}.mi-local-atm::before{content:"\e53e"}.mi-local-attraction::before{content:"\e53f"}.mi-local-bar::before{content:"\e540"}.mi-local-cafe::before{content:"\e541"}.mi-local-car-wash::before{content:"\e542"}.mi-local-convenience-store::before{content:"\e543"}.mi-local-dining::before{content:"\e556"}.mi-local-drink::before{content:"\e544"}.mi-local-fire-department::before{content:"\ef55"}.mi-local-florist::before{content:"\e545"}.mi-local-gas-station::before{content:"\e546"}.mi-local-grocery-store::before{content:"\e547"}.mi-local-hospital::before{content:"\e548"}.mi-local-hotel::before{content:"\e549"}.mi-local-laundry-service::before{content:"\e54a"}.mi-local-library::before{content:"\e54b"}.mi-local-mall::before{content:"\e54c"}.mi-local-movies::before{content:"\e54d"}.mi-local-offer::before{content:"\e54e"}.mi-local-parking::before{content:"\e54f"}.mi-local-pharmacy::before{content:"\e550"}.mi-local-phone::before{content:"\e551"}.mi-local-pizza::before{content:"\e552"}.mi-local-play::before{content:"\e553"}.mi-local-police::before{content:"\ef56"}.mi-local-post-office::before{content:"\e554"}.mi-local-print-shop::before{content:"\e555"}.mi-local-printshop::before{content:"\e555"}.mi-local-restaurant::before{content:"\e556"}.mi-local-see::before{content:"\e557"}.mi-local-shipping::before{content:"\e558"}.mi-local-taxi::before{content:"\e559"}.mi-location-city::before{content:"\e7f1"}.mi-location-disabled::before{content:"\e1b6"}.mi-location-history::before{content:"\e55a"}.mi-location-off::before{content:"\e0c7"}.mi-location-on::before{content:"\e0c8"}.mi-location-pin::before{content:"\f1db"}.mi-location-searching::before{content:"\e1b7"}.mi-lock::before{content:"\e897"}.mi-lock-clock::before{content:"\ef57"}.mi-lock-open::before{content:"\e898"}.mi-lock-outline::before{content:"\e899"}.mi-lock-person::before{content:"\f8f3"}.mi-lock-reset::before{content:"\eade"}.mi-login::before{content:"\ea77"}.mi-logo-dev::before{content:"\ead6"}.mi-logout::before{content:"\e9ba"}.mi-looks::before{content:"\e3fc"}.mi-looks-3::before{content:"\e3fb"}.mi-looks-4::before{content:"\e3fd"}.mi-looks-5::before{content:"\e3fe"}.mi-looks-6::before{content:"\e3ff"}.mi-looks-one::before{content:"\e400"}.mi-looks-two::before{content:"\e401"}.mi-loop::before{content:"\e028"}.mi-loupe::before{content:"\e402"}.mi-low-priority::before{content:"\e16d"}.mi-loyalty::before{content:"\e89a"}.mi-lte-mobiledata::before{content:"\f02c"}.mi-lte-plus-mobiledata::before{content:"\f02d"}.mi-luggage::before{content:"\f235"}.mi-lunch-dining::before{content:"\ea61"}.mi-lyrics::before{content:"\ec0b"}.mi-macro-off::before{content:"\f8d2"}.mi-mail::before{content:"\e158"}.mi-mail-lock::before{content:"\ec0a"}.mi-mail-outline::before{content:"\e0e1"}.mi-male::before{content:"\e58e"}.mi-man::before{content:"\e4eb"}.mi-man-2::before{content:"\f8e1"}.mi-man-3::before{content:"\f8e2"}.mi-man-4::before{content:"\f8e3"}.mi-manage-accounts::before{content:"\f02e"}.mi-manage-history::before{content:"\ebe7"}.mi-manage-search::before{content:"\f02f"}.mi-map::before{content:"\e55b"}.mi-maps-home-work::before{content:"\f030"}.mi-maps-ugc::before{content:"\ef58"}.mi-margin::before{content:"\e9bb"}.mi-mark-as-unread::before{content:"\e9bc"}.mi-mark-chat-read::before{content:"\f18b"}.mi-mark-chat-unread::before{content:"\f189"}.mi-mark-email-read::before{content:"\f18c"}.mi-mark-email-unread::before{content:"\f18a"}.mi-mark-unread-chat-alt::before{content:"\eb9d"}.mi-markunread::before{content:"\e159"}.mi-markunread-mailbox::before{content:"\e89b"}.mi-masks::before{content:"\f218"}.mi-maximize::before{content:"\e930"}.mi-media-bluetooth-off::before{content:"\f031"}.mi-media-bluetooth-on::before{content:"\f032"}.mi-mediation::before{content:"\efa7"}.mi-medical-information::before{content:"\ebed"}.mi-medical-services::before{content:"\f109"}.mi-medication::before{content:"\f033"}.mi-medication-liquid::before{content:"\ea87"}.mi-meeting-room::before{content:"\eb4f"}.mi-memory::before{content:"\e322"}.mi-menu::before{content:"\e5d2"}.mi-menu-book::before{content:"\ea19"}.mi-menu-open::before{content:"\e9bd"}.mi-merge::before{content:"\eb98"}.mi-merge-type::before{content:"\e252"}.mi-message::before{content:"\e0c9"}.mi-messenger::before{content:"\e0ca"}.mi-messenger-outline::before{content:"\e0cb"}.mi-mic::before{content:"\e029"}.mi-mic-external-off::before{content:"\ef59"}.mi-mic-external-on::before{content:"\ef5a"}.mi-mic-none::before{content:"\e02a"}.mi-mic-off::before{content:"\e02b"}.mi-microwave::before{content:"\f204"}.mi-military-tech::before{content:"\ea3f"}.mi-minimize::before{content:"\e931"}.mi-minor-crash::before{content:"\ebf1"}.mi-miscellaneous-services::before{content:"\f10c"}.mi-missed-video-call::before{content:"\e073"}.mi-mms::before{content:"\e618"}.mi-mobile-friendly::before{content:"\e200"}.mi-mobile-off::before{content:"\e201"}.mi-mobile-screen-share::before{content:"\e0e7"}.mi-mobiledata-off::before{content:"\f034"}.mi-mode::before{content:"\f097"}.mi-mode-comment::before{content:"\e253"}.mi-mode-edit::before{content:"\e254"}.mi-mode-edit-outline::before{content:"\f035"}.mi-mode-fan-off::before{content:"\ec17"}.mi-mode-night::before{content:"\f036"}.mi-mode-of-travel::before{content:"\e7ce"}.mi-mode-standby::before{content:"\f037"}.mi-model-training::before{content:"\f0cf"}.mi-monetization-on::before{content:"\e263"}.mi-money::before{content:"\e57d"}.mi-money-off::before{content:"\e25c"}.mi-money-off-csred::before{content:"\f038"}.mi-monitor::before{content:"\ef5b"}.mi-monitor-heart::before{content:"\eaa2"}.mi-monitor-weight::before{content:"\f039"}.mi-monochrome-photos::before{content:"\e403"}.mi-mood::before{content:"\e7f2"}.mi-mood-bad::before{content:"\e7f3"}.mi-moped::before{content:"\eb28"}.mi-more::before{content:"\e619"}.mi-more-horiz::before{content:"\e5d3"}.mi-more-time::before{content:"\ea5d"}.mi-more-vert::before{content:"\e5d4"}.mi-mosque::before{content:"\eab2"}.mi-motion-photos-auto::before{content:"\f03a"}.mi-motion-photos-off::before{content:"\e9c0"}.mi-motion-photos-on::before{content:"\e9c1"}.mi-motion-photos-pause::before{content:"\f227"}.mi-motion-photos-paused::before{content:"\e9c2"}.mi-motorcycle::before{content:"\e91b"}.mi-mouse::before{content:"\e323"}.mi-move-down::before{content:"\eb61"}.mi-move-to-inbox::before{content:"\e168"}.mi-move-up::before{content:"\eb64"}.mi-movie::before{content:"\e02c"}.mi-movie-creation::before{content:"\e404"}.mi-movie-edit::before{content:"\f840"}.mi-movie-filter::before{content:"\e43a"}.mi-moving::before{content:"\e501"}.mi-mp::before{content:"\e9c3"}.mi-multiline-chart::before{content:"\e6df"}.mi-multiple-stop::before{content:"\f1b9"}.mi-multitrack-audio::before{content:"\e1b8"}.mi-museum::before{content:"\ea36"}.mi-music-note::before{content:"\e405"}.mi-music-off::before{content:"\e440"}.mi-music-video::before{content:"\e063"}.mi-my-library-add::before{content:"\e02e"}.mi-my-library-books::before{content:"\e02f"}.mi-my-library-music::before{content:"\e030"}.mi-my-location::before{content:"\e55c"}.mi-nat::before{content:"\ef5c"}.mi-nature::before{content:"\e406"}.mi-nature-people::before{content:"\e407"}.mi-navigate-before::before{content:"\e408"}.mi-navigate-next::before{content:"\e409"}.mi-navigation::before{content:"\e55d"}.mi-near-me::before{content:"\e569"}.mi-near-me-disabled::before{content:"\f1ef"}.mi-nearby-error::before{content:"\f03b"}.mi-nearby-off::before{content:"\f03c"}.mi-nest-cam-wired-stand::before{content:"\ec16"}.mi-network-cell::before{content:"\e1b9"}.mi-network-check::before{content:"\e640"}.mi-network-locked::before{content:"\e61a"}.mi-network-ping::before{content:"\ebca"}.mi-network-wifi::before{content:"\e1ba"}.mi-network-wifi-1-bar::before{content:"\ebe4"}.mi-network-wifi-2-bar::before{content:"\ebd6"}.mi-network-wifi-3-bar::before{content:"\ebe1"}.mi-new-label::before{content:"\e609"}.mi-new-releases::before{content:"\e031"}.mi-newspaper::before{content:"\eb81"}.mi-next-plan::before{content:"\ef5d"}.mi-next-week::before{content:"\e16a"}.mi-nfc::before{content:"\e1bb"}.mi-night-shelter::before{content:"\f1f1"}.mi-nightlife::before{content:"\ea62"}.mi-nightlight::before{content:"\f03d"}.mi-nightlight-round::before{content:"\ef5e"}.mi-nights-stay::before{content:"\ea46"}.mi-no-accounts::before{content:"\f03e"}.mi-no-adult-content::before{content:"\f8fe"}.mi-no-backpack::before{content:"\f237"}.mi-no-cell::before{content:"\f1a4"}.mi-no-crash::before{content:"\ebf0"}.mi-no-drinks::before{content:"\f1a5"}.mi-no-encryption::before{content:"\e641"}.mi-no-encryption-gmailerrorred::before{content:"\f03f"}.mi-no-flash::before{content:"\f1a6"}.mi-no-food::before{content:"\f1a7"}.mi-no-luggage::before{content:"\f23b"}.mi-no-meals::before{content:"\f1d6"}.mi-no-meals-ouline::before{content:"\f229"}.mi-no-meeting-room::before{content:"\eb4e"}.mi-no-photography::before{content:"\f1a8"}.mi-no-sim::before{content:"\e0cc"}.mi-no-stroller::before{content:"\f1af"}.mi-no-transfer::before{content:"\f1d5"}.mi-noise-aware::before{content:"\ebec"}.mi-noise-control-off::before{content:"\ebf3"}.mi-nordic-walking::before{content:"\e50e"}.mi-north::before{content:"\f1e0"}.mi-north-east::before{content:"\f1e1"}.mi-north-west::before{content:"\f1e2"}.mi-not-accessible::before{content:"\f0fe"}.mi-not-interested::before{content:"\e033"}.mi-not-listed-location::before{content:"\e575"}.mi-not-started::before{content:"\f0d1"}.mi-note::before{content:"\e06f"}.mi-note-add::before{content:"\e89c"}.mi-note-alt::before{content:"\f040"}.mi-notes::before{content:"\e26c"}.mi-notification-add::before{content:"\e399"}.mi-notification-important::before{content:"\e004"}.mi-notifications::before{content:"\e7f4"}.mi-notifications-active::before{content:"\e7f7"}.mi-notifications-none::before{content:"\e7f5"}.mi-notifications-off::before{content:"\e7f6"}.mi-notifications-on::before{content:"\e7f7"}.mi-notifications-paused::before{content:"\e7f8"}.mi-now-wallpaper::before{content:"\e1bc"}.mi-now-widgets::before{content:"\e1bd"}.mi-numbers::before{content:"\eac7"}.mi-offline-bolt::before{content:"\e932"}.mi-offline-pin::before{content:"\e90a"}.mi-offline-share::before{content:"\e9c5"}.mi-oil-barrel::before{content:"\ec15"}.mi-on-device-training::before{content:"\ebfd"}.mi-ondemand-video::before{content:"\e63a"}.mi-online-prediction::before{content:"\f0eb"}.mi-opacity::before{content:"\e91c"}.mi-open-in-browser::before{content:"\e89d"}.mi-open-in-full::before{content:"\f1ce"}.mi-open-in-new::before{content:"\e89e"}.mi-open-in-new-off::before{content:"\e4f6"}.mi-open-with::before{content:"\e89f"}.mi-other-houses::before{content:"\e58c"}.mi-outbond::before{content:"\f228"}.mi-outbound::before{content:"\e1ca"}.mi-outbox::before{content:"\ef5f"}.mi-outdoor-grill::before{content:"\ea47"}.mi-outgoing-mail::before{content:"\f0d2"}.mi-outlet::before{content:"\f1d4"}.mi-outlined-flag::before{content:"\e16e"}.mi-output::before{content:"\ebbe"}.mi-padding::before{content:"\e9c8"}.mi-pages::before{content:"\e7f9"}.mi-pageview::before{content:"\e8a0"}.mi-paid::before{content:"\f041"}.mi-palette::before{content:"\e40a"}.mi-pallet::before{content:"\f86a"}.mi-pan-tool::before{content:"\e925"}.mi-pan-tool-alt::before{content:"\ebb9"}.mi-panorama::before{content:"\e40b"}.mi-panorama-fish-eye::before{content:"\e40c"}.mi-panorama-fisheye::before{content:"\e40c"}.mi-panorama-horizontal::before{content:"\e40d"}.mi-panorama-horizontal-select::before{content:"\ef60"}.mi-panorama-photosphere::before{content:"\e9c9"}.mi-panorama-photosphere-select::before{content:"\e9ca"}.mi-panorama-vertical::before{content:"\e40e"}.mi-panorama-vertical-select::before{content:"\ef61"}.mi-panorama-wide-angle::before{content:"\e40f"}.mi-panorama-wide-angle-select::before{content:"\ef62"}.mi-paragliding::before{content:"\e50f"}.mi-park::before{content:"\ea63"}.mi-party-mode::before{content:"\e7fa"}.mi-password::before{content:"\f042"}.mi-paste::before{content:"\f098"}.mi-pattern::before{content:"\f043"}.mi-pause::before{content:"\e034"}.mi-pause-circle::before{content:"\e1a2"}.mi-pause-circle-filled::before{content:"\e035"}.mi-pause-circle-outline::before{content:"\e036"}.mi-pause-presentation::before{content:"\e0ea"}.mi-payment::before{content:"\e8a1"}.mi-payments::before{content:"\ef63"}.mi-paypal::before{content:"\ea8d"}.mi-pedal-bike::before{content:"\eb29"}.mi-pending::before{content:"\ef64"}.mi-pending-actions::before{content:"\f1bb"}.mi-pentagon::before{content:"\eb50"}.mi-people::before{content:"\e7fb"}.mi-people-alt::before{content:"\ea21"}.mi-people-outline::before{content:"\e7fc"}.mi-percent::before{content:"\eb58"}.mi-perm-camera-mic::before{content:"\e8a2"}.mi-perm-contact-cal::before{content:"\e8a3"}.mi-perm-contact-calendar::before{content:"\e8a3"}.mi-perm-data-setting::before{content:"\e8a4"}.mi-perm-device-info::before{content:"\e8a5"}.mi-perm-device-information::before{content:"\e8a5"}.mi-perm-identity::before{content:"\e8a6"}.mi-perm-media::before{content:"\e8a7"}.mi-perm-phone-msg::before{content:"\e8a8"}.mi-perm-scan-wifi::before{content:"\e8a9"}.mi-person::before{content:"\e7fd"}.mi-person-2::before{content:"\f8e4"}.mi-person-3::before{content:"\f8e5"}.mi-person-4::before{content:"\f8e6"}.mi-person-add::before{content:"\e7fe"}.mi-person-add-alt::before{content:"\ea4d"}.mi-person-add-alt-1::before{content:"\ef65"}.mi-person-add-disabled::before{content:"\e9cb"}.mi-person-off::before{content:"\e510"}.mi-person-outline::before{content:"\e7ff"}.mi-person-pin::before{content:"\e55a"}.mi-person-pin-circle::before{content:"\e56a"}.mi-person-remove::before{content:"\ef66"}.mi-person-remove-alt-1::before{content:"\ef67"}.mi-person-search::before{content:"\f106"}.mi-personal-injury::before{content:"\e6da"}.mi-personal-video::before{content:"\e63b"}.mi-pest-control::before{content:"\f0fa"}.mi-pest-control-rodent::before{content:"\f0fd"}.mi-pets::before{content:"\e91d"}.mi-phishing::before{content:"\ead7"}.mi-phone::before{content:"\e0cd"}.mi-phone-android::before{content:"\e324"}.mi-phone-bluetooth-speaker::before{content:"\e61b"}.mi-phone-callback::before{content:"\e649"}.mi-phone-disabled::before{content:"\e9cc"}.mi-phone-enabled::before{content:"\e9cd"}.mi-phone-forwarded::before{content:"\e61c"}.mi-phone-in-talk::before{content:"\e61d"}.mi-phone-iphone::before{content:"\e325"}.mi-phone-locked::before{content:"\e61e"}.mi-phone-missed::before{content:"\e61f"}.mi-phone-paused::before{content:"\e620"}.mi-phonelink::before{content:"\e326"}.mi-phonelink-erase::before{content:"\e0db"}.mi-phonelink-lock::before{content:"\e0dc"}.mi-phonelink-off::before{content:"\e327"}.mi-phonelink-ring::before{content:"\e0dd"}.mi-phonelink-setup::before{content:"\e0de"}.mi-photo::before{content:"\e410"}.mi-photo-album::before{content:"\e411"}.mi-photo-camera::before{content:"\e412"}.mi-photo-camera-back::before{content:"\ef68"}.mi-photo-camera-front::before{content:"\ef69"}.mi-photo-filter::before{content:"\e43b"}.mi-photo-library::before{content:"\e413"}.mi-photo-size-select-actual::before{content:"\e432"}.mi-photo-size-select-large::before{content:"\e433"}.mi-photo-size-select-small::before{content:"\e434"}.mi-php::before{content:"\eb8f"}.mi-piano::before{content:"\e521"}.mi-piano-off::before{content:"\e520"}.mi-picture-as-pdf::before{content:"\e415"}.mi-picture-in-picture::before{content:"\e8aa"}.mi-picture-in-picture-alt::before{content:"\e911"}.mi-pie-chart::before{content:"\e6c4"}.mi-pie-chart-outline::before{content:"\f044"}.mi-pie-chart-outlined::before{content:"\e6c5"}.mi-pin::before{content:"\f045"}.mi-pin-drop::before{content:"\e55e"}.mi-pin-end::before{content:"\e767"}.mi-pin-invoke::before{content:"\e763"}.mi-pinch::before{content:"\eb38"}.mi-pivot-table-chart::before{content:"\e9ce"}.mi-pix::before{content:"\eaa3"}.mi-place::before{content:"\e55f"}.mi-plagiarism::before{content:"\ea5a"}.mi-play-arrow::before{content:"\e037"}.mi-play-circle::before{content:"\e1c4"}.mi-play-circle-fill::before{content:"\e038"}.mi-play-circle-filled::before{content:"\e038"}.mi-play-circle-outline::before{content:"\e039"}.mi-play-disabled::before{content:"\ef6a"}.mi-play-for-work::before{content:"\e906"}.mi-play-lesson::before{content:"\f047"}.mi-playlist-add::before{content:"\e03b"}.mi-playlist-add-check::before{content:"\e065"}.mi-playlist-add-check-circle::before{content:"\e7e6"}.mi-playlist-add-circle::before{content:"\e7e5"}.mi-playlist-play::before{content:"\e05f"}.mi-playlist-remove::before{content:"\eb80"}.mi-plumbing::before{content:"\f107"}.mi-plus-one::before{content:"\e800"}.mi-podcasts::before{content:"\f048"}.mi-point-of-sale::before{content:"\f17e"}.mi-policy::before{content:"\ea17"}.mi-poll::before{content:"\e801"}.mi-polyline::before{content:"\ebbb"}.mi-polymer::before{content:"\e8ab"}.mi-pool::before{content:"\eb48"}.mi-portable-wifi-off::before{content:"\e0ce"}.mi-portrait::before{content:"\e416"}.mi-post-add::before{content:"\ea20"}.mi-power::before{content:"\e63c"}.mi-power-input::before{content:"\e336"}.mi-power-off::before{content:"\e646"}.mi-power-settings-new::before{content:"\e8ac"}.mi-precision-manufacturing::before{content:"\f049"}.mi-pregnant-woman::before{content:"\e91e"}.mi-present-to-all::before{content:"\e0df"}.mi-preview::before{content:"\f1c5"}.mi-price-change::before{content:"\f04a"}.mi-price-check::before{content:"\f04b"}.mi-print::before{content:"\e8ad"}.mi-print-disabled::before{content:"\e9cf"}.mi-priority-high::before{content:"\e645"}.mi-privacy-tip::before{content:"\f0dc"}.mi-private-connectivity::before{content:"\e744"}.mi-production-quantity-limits::before{content:"\e1d1"}.mi-propane::before{content:"\ec14"}.mi-propane-tank::before{content:"\ec13"}.mi-psychology::before{content:"\ea4a"}.mi-psychology-alt::before{content:"\f8ea"}.mi-public::before{content:"\e80b"}.mi-public-off::before{content:"\f1ca"}.mi-publish::before{content:"\e255"}.mi-published-with-changes::before{content:"\f232"}.mi-punch-clock::before{content:"\eaa8"}.mi-push-pin::before{content:"\f10d"}.mi-qr-code::before{content:"\ef6b"}.mi-qr-code-2::before{content:"\e00a"}.mi-qr-code-scanner::before{content:"\f206"}.mi-query-builder::before{content:"\e8ae"}.mi-query-stats::before{content:"\e4fc"}.mi-question-answer::before{content:"\e8af"}.mi-question-mark::before{content:"\eb8b"}.mi-queue::before{content:"\e03c"}.mi-queue-music::before{content:"\e03d"}.mi-queue-play-next::before{content:"\e066"}.mi-quick-contacts-dialer::before{content:"\e0cf"}.mi-quick-contacts-mail::before{content:"\e0d0"}.mi-quickreply::before{content:"\ef6c"}.mi-quiz::before{content:"\f04c"}.mi-quora::before{content:"\ea98"}.mi-r-mobiledata::before{content:"\f04d"}.mi-radar::before{content:"\f04e"}.mi-radio::before{content:"\e03e"}.mi-radio-button-checked::before{content:"\e837"}.mi-radio-button-off::before{content:"\e836"}.mi-radio-button-on::before{content:"\e837"}.mi-radio-button-unchecked::before{content:"\e836"}.mi-railway-alert::before{content:"\e9d1"}.mi-ramen-dining::before{content:"\ea64"}.mi-ramp-left::before{content:"\eb9c"}.mi-ramp-right::before{content:"\eb96"}.mi-rate-review::before{content:"\e560"}.mi-raw-off::before{content:"\f04f"}.mi-raw-on::before{content:"\f050"}.mi-read-more::before{content:"\ef6d"}.mi-real-estate-agent::before{content:"\e73a"}.mi-rebase-edit::before{content:"\f846"}.mi-receipt::before{content:"\e8b0"}.mi-receipt-long::before{content:"\ef6e"}.mi-recent-actors::before{content:"\e03f"}.mi-recommend::before{content:"\e9d2"}.mi-record-voice-over::before{content:"\e91f"}.mi-rectangle::before{content:"\eb54"}.mi-recycling::before{content:"\e760"}.mi-reddit::before{content:"\eaa0"}.mi-redeem::before{content:"\e8b1"}.mi-redo::before{content:"\e15a"}.mi-reduce-capacity::before{content:"\f21c"}.mi-refresh::before{content:"\e5d5"}.mi-remember-me::before{content:"\f051"}.mi-remove::before{content:"\e15b"}.mi-remove-circle::before{content:"\e15c"}.mi-remove-circle-outline::before{content:"\e15d"}.mi-remove-done::before{content:"\e9d3"}.mi-remove-from-queue::before{content:"\e067"}.mi-remove-moderator::before{content:"\e9d4"}.mi-remove-red-eye::before{content:"\e417"}.mi-remove-road::before{content:"\ebfc"}.mi-remove-shopping-cart::before{content:"\e928"}.mi-reorder::before{content:"\e8fe"}.mi-repartition::before{content:"\f8e8"}.mi-repeat::before{content:"\e040"}.mi-repeat-on::before{content:"\e9d6"}.mi-repeat-one::before{content:"\e041"}.mi-repeat-one-on::before{content:"\e9d7"}.mi-replay::before{content:"\e042"}.mi-replay-10::before{content:"\e059"}.mi-replay-30::before{content:"\e05a"}.mi-replay-5::before{content:"\e05b"}.mi-replay-circle-filled::before{content:"\e9d8"}.mi-reply::before{content:"\e15e"}.mi-reply-all::before{content:"\e15f"}.mi-report::before{content:"\e160"}.mi-report-gmailerrorred::before{content:"\f052"}.mi-report-off::before{content:"\e170"}.mi-report-problem::before{content:"\e8b2"}.mi-request-page::before{content:"\f22c"}.mi-request-quote::before{content:"\f1b6"}.mi-reset-tv::before{content:"\e9d9"}.mi-restart-alt::before{content:"\f053"}.mi-restaurant::before{content:"\e56c"}.mi-restaurant-menu::before{content:"\e561"}.mi-restore::before{content:"\e8b3"}.mi-restore-from-trash::before{content:"\e938"}.mi-restore-page::before{content:"\e929"}.mi-reviews::before{content:"\f054"}.mi-rice-bowl::before{content:"\f1f5"}.mi-ring-volume::before{content:"\e0d1"}.mi-rocket::before{content:"\eba5"}.mi-rocket-launch::before{content:"\eb9b"}.mi-roller-shades::before{content:"\ec12"}.mi-roller-shades-closed::before{content:"\ec11"}.mi-roller-skating::before{content:"\ebcd"}.mi-roofing::before{content:"\f201"}.mi-room::before{content:"\e8b4"}.mi-room-preferences::before{content:"\f1b8"}.mi-room-service::before{content:"\eb49"}.mi-rotate-90-degrees-ccw::before{content:"\e418"}.mi-rotate-90-degrees-cw::before{content:"\eaab"}.mi-rotate-left::before{content:"\e419"}.mi-rotate-right::before{content:"\e41a"}.mi-roundabout-left::before{content:"\eb99"}.mi-roundabout-right::before{content:"\eba3"}.mi-rounded-corner::before{content:"\e920"}.mi-route::before{content:"\eacd"}.mi-router::before{content:"\e328"}.mi-rowing::before{content:"\e921"}.mi-rss-feed::before{content:"\e0e5"}.mi-rsvp::before{content:"\f055"}.mi-rtt::before{content:"\e9ad"}.mi-rule::before{content:"\f1c2"}.mi-rule-folder::before{content:"\f1c9"}.mi-run-circle::before{content:"\ef6f"}.mi-running-with-errors::before{content:"\e51d"}.mi-rv-hookup::before{content:"\e642"}.mi-safety-check::before{content:"\ebef"}.mi-safety-divider::before{content:"\e1cc"}.mi-sailing::before{content:"\e502"}.mi-sanitizer::before{content:"\f21d"}.mi-satellite::before{content:"\e562"}.mi-satellite-alt::before{content:"\eb3a"}.mi-save::before{content:"\e161"}.mi-save-alt::before{content:"\e171"}.mi-save-as::before{content:"\eb60"}.mi-saved-search::before{content:"\ea11"}.mi-savings::before{content:"\e2eb"}.mi-scale::before{content:"\eb5f"}.mi-scanner::before{content:"\e329"}.mi-scatter-plot::before{content:"\e268"}.mi-schedule::before{content:"\e8b5"}.mi-schedule-send::before{content:"\ea0a"}.mi-schema::before{content:"\e4fd"}.mi-school::before{content:"\e80c"}.mi-science::before{content:"\ea4b"}.mi-score::before{content:"\e269"}.mi-scoreboard::before{content:"\ebd0"}.mi-screen-lock-landscape::before{content:"\e1be"}.mi-screen-lock-portrait::before{content:"\e1bf"}.mi-screen-lock-rotation::before{content:"\e1c0"}.mi-screen-rotation::before{content:"\e1c1"}.mi-screen-rotation-alt::before{content:"\ebee"}.mi-screen-search-desktop::before{content:"\ef70"}.mi-screen-share::before{content:"\e0e2"}.mi-screenshot::before{content:"\f056"}.mi-screenshot-monitor::before{content:"\ec08"}.mi-scuba-diving::before{content:"\ebce"}.mi-sd::before{content:"\e9dd"}.mi-sd-card::before{content:"\e623"}.mi-sd-card-alert::before{content:"\f057"}.mi-sd-storage::before{content:"\e1c2"}.mi-search::before{content:"\e8b6"}.mi-search-off::before{content:"\ea76"}.mi-security::before{content:"\e32a"}.mi-security-update::before{content:"\f058"}.mi-security-update-good::before{content:"\f059"}.mi-security-update-warning::before{content:"\f05a"}.mi-segment::before{content:"\e94b"}.mi-select-all::before{content:"\e162"}.mi-self-improvement::before{content:"\ea78"}.mi-sell::before{content:"\f05b"}.mi-send::before{content:"\e163"}.mi-send-and-archive::before{content:"\ea0c"}.mi-send-time-extension::before{content:"\eadb"}.mi-send-to-mobile::before{content:"\f05c"}.mi-sensor-door::before{content:"\f1b5"}.mi-sensor-occupied::before{content:"\ec10"}.mi-sensor-window::before{content:"\f1b4"}.mi-sensors::before{content:"\e51e"}.mi-sensors-off::before{content:"\e51f"}.mi-sentiment-dissatisfied::before{content:"\e811"}.mi-sentiment-neutral::before{content:"\e812"}.mi-sentiment-satisfied::before{content:"\e813"}.mi-sentiment-satisfied-alt::before{content:"\e0ed"}.mi-sentiment-very-dissatisfied::before{content:"\e814"}.mi-sentiment-very-satisfied::before{content:"\e815"}.mi-set-meal::before{content:"\f1ea"}.mi-settings::before{content:"\e8b8"}.mi-settings-accessibility::before{content:"\f05d"}.mi-settings-applications::before{content:"\e8b9"}.mi-settings-backup-restore::before{content:"\e8ba"}.mi-settings-bluetooth::before{content:"\e8bb"}.mi-settings-brightness::before{content:"\e8bd"}.mi-settings-cell::before{content:"\e8bc"}.mi-settings-display::before{content:"\e8bd"}.mi-settings-ethernet::before{content:"\e8be"}.mi-settings-input-antenna::before{content:"\e8bf"}.mi-settings-input-component::before{content:"\e8c0"}.mi-settings-input-composite::before{content:"\e8c1"}.mi-settings-input-hdmi::before{content:"\e8c2"}.mi-settings-input-svideo::before{content:"\e8c3"}.mi-settings-overscan::before{content:"\e8c4"}.mi-settings-phone::before{content:"\e8c5"}.mi-settings-power::before{content:"\e8c6"}.mi-settings-remote::before{content:"\e8c7"}.mi-settings-suggest::before{content:"\f05e"}.mi-settings-system-daydream::before{content:"\e1c3"}.mi-settings-voice::before{content:"\e8c8"}.mi-severe-cold::before{content:"\ebd3"}.mi-shape-line::before{content:"\f8d3"}.mi-share::before{content:"\e80d"}.mi-share-arrival-time::before{content:"\e524"}.mi-share-location::before{content:"\f05f"}.mi-shelves::before{content:"\f86e"}.mi-shield::before{content:"\e9e0"}.mi-shield-moon::before{content:"\eaa9"}.mi-shop::before{content:"\e8c9"}.mi-shop-2::before{content:"\e19e"}.mi-shop-two::before{content:"\e8ca"}.mi-shopify::before{content:"\ea9d"}.mi-shopping-bag::before{content:"\f1cc"}.mi-shopping-basket::before{content:"\e8cb"}.mi-shopping-cart::before{content:"\e8cc"}.mi-shopping-cart-checkout::before{content:"\eb88"}.mi-short-text::before{content:"\e261"}.mi-shortcut::before{content:"\f060"}.mi-show-chart::before{content:"\e6e1"}.mi-shower::before{content:"\f061"}.mi-shuffle::before{content:"\e043"}.mi-shuffle-on::before{content:"\e9e1"}.mi-shutter-speed::before{content:"\e43d"}.mi-sick::before{content:"\f220"}.mi-sign-language::before{content:"\ebe5"}.mi-signal-cellular-0-bar::before{content:"\f0a8"}.mi-signal-cellular-1-bar::before{content:"\f0a9"}.mi-signal-cellular-2-bar::before{content:"\f0aa"}.mi-signal-cellular-3-bar::before{content:"\f0ab"}.mi-signal-cellular-4-bar::before{content:"\e1c8"}.mi-signal-cellular-alt::before{content:"\e202"}.mi-signal-cellular-alt-1-bar::before{content:"\ebdf"}.mi-signal-cellular-alt-2-bar::before{content:"\ebe3"}.mi-signal-cellular-connected-no-internet-0-bar::before{content:"\f0ac"}.mi-signal-cellular-connected-no-internet-1-bar::before{content:"\f0ad"}.mi-signal-cellular-connected-no-internet-2-bar::before{content:"\f0ae"}.mi-signal-cellular-connected-no-internet-3-bar::before{content:"\f0af"}.mi-signal-cellular-connected-no-internet-4-bar::before{content:"\e1cd"}.mi-signal-cellular-no-sim::before{content:"\e1ce"}.mi-signal-cellular-nodata::before{content:"\f062"}.mi-signal-cellular-null::before{content:"\e1cf"}.mi-signal-cellular-off::before{content:"\e1d0"}.mi-signal-wifi-0-bar::before{content:"\f0b0"}.mi-signal-wifi-1-bar::before{content:"\f0b1"}.mi-signal-wifi-1-bar-lock::before{content:"\f0b2"}.mi-signal-wifi-2-bar::before{content:"\f0b3"}.mi-signal-wifi-2-bar-lock::before{content:"\f0b4"}.mi-signal-wifi-3-bar::before{content:"\f0b5"}.mi-signal-wifi-3-bar-lock::before{content:"\f0b6"}.mi-signal-wifi-4-bar::before{content:"\e1d8"}.mi-signal-wifi-4-bar-lock::before{content:"\e1d9"}.mi-signal-wifi-bad::before{content:"\f063"}.mi-signal-wifi-connected-no-internet-0::before{content:"\f0f2"}.mi-signal-wifi-connected-no-internet-1::before{content:"\f0ee"}.mi-signal-wifi-connected-no-internet-2::before{content:"\f0f1"}.mi-signal-wifi-connected-no-internet-3::before{content:"\f0ed"}.mi-signal-wifi-connected-no-internet-4::before{content:"\f064"}.mi-signal-wifi-off::before{content:"\e1da"}.mi-signal-wifi-statusbar-1-bar::before{content:"\f0e6"}.mi-signal-wifi-statusbar-2-bar::before{content:"\f0f0"}.mi-signal-wifi-statusbar-3-bar::before{content:"\f0ea"}.mi-signal-wifi-statusbar-4-bar::before{content:"\f065"}.mi-signal-wifi-statusbar-connected-no-internet::before{content:"\f0f8"}.mi-signal-wifi-statusbar-connected-no-internet-1::before{content:"\f0e9"}.mi-signal-wifi-statusbar-connected-no-internet-2::before{content:"\f0f7"}.mi-signal-wifi-statusbar-connected-no-internet-3::before{content:"\f0e8"}.mi-signal-wifi-statusbar-connected-no-internet-4::before{content:"\f066"}.mi-signal-wifi-statusbar-not-connected::before{content:"\f0ef"}.mi-signal-wifi-statusbar-null::before{content:"\f067"}.mi-signpost::before{content:"\eb91"}.mi-sim-card::before{content:"\e32b"}.mi-sim-card-alert::before{content:"\e624"}.mi-sim-card-download::before{content:"\f068"}.mi-single-bed::before{content:"\ea48"}.mi-sip::before{content:"\f069"}.mi-skateboarding::before{content:"\e511"}.mi-skip-next::before{content:"\e044"}.mi-skip-previous::before{content:"\e045"}.mi-sledding::before{content:"\e512"}.mi-slideshow::before{content:"\e41b"}.mi-slow-motion-video::before{content:"\e068"}.mi-smart-button::before{content:"\f1c1"}.mi-smart-display::before{content:"\f06a"}.mi-smart-screen::before{content:"\f06b"}.mi-smart-toy::before{content:"\f06c"}.mi-smartphone::before{content:"\e32c"}.mi-smoke-free::before{content:"\eb4a"}.mi-smoking-rooms::before{content:"\eb4b"}.mi-sms::before{content:"\e625"}.mi-sms-failed::before{content:"\e626"}.mi-snapchat::before{content:"\ea6e"}.mi-snippet-folder::before{content:"\f1c7"}.mi-snooze::before{content:"\e046"}.mi-snowboarding::before{content:"\e513"}.mi-snowing::before{content:"\e80f"}.mi-snowmobile::before{content:"\e503"}.mi-snowshoeing::before{content:"\e514"}.mi-soap::before{content:"\f1b2"}.mi-social-distance::before{content:"\e1cb"}.mi-solar-power::before{content:"\ec0f"}.mi-sort::before{content:"\e164"}.mi-sort-by-alpha::before{content:"\e053"}.mi-sos::before{content:"\ebf7"}.mi-soup-kitchen::before{content:"\e7d3"}.mi-source::before{content:"\f1c4"}.mi-south::before{content:"\f1e3"}.mi-south-america::before{content:"\e7e4"}.mi-south-east::before{content:"\f1e4"}.mi-south-west::before{content:"\f1e5"}.mi-spa::before{content:"\eb4c"}.mi-space-bar::before{content:"\e256"}.mi-space-dashboard::before{content:"\e66b"}.mi-spatial-audio::before{content:"\ebeb"}.mi-spatial-audio-off::before{content:"\ebe8"}.mi-spatial-tracking::before{content:"\ebea"}.mi-speaker::before{content:"\e32d"}.mi-speaker-group::before{content:"\e32e"}.mi-speaker-notes::before{content:"\e8cd"}.mi-speaker-notes-off::before{content:"\e92a"}.mi-speaker-phone::before{content:"\e0d2"}.mi-speed::before{content:"\e9e4"}.mi-spellcheck::before{content:"\e8ce"}.mi-splitscreen::before{content:"\f06d"}.mi-spoke::before{content:"\e9a7"}.mi-sports::before{content:"\ea30"}.mi-sports-bar::before{content:"\f1f3"}.mi-sports-baseball::before{content:"\ea51"}.mi-sports-basketball::before{content:"\ea26"}.mi-sports-cricket::before{content:"\ea27"}.mi-sports-esports::before{content:"\ea28"}.mi-sports-football::before{content:"\ea29"}.mi-sports-golf::before{content:"\ea2a"}.mi-sports-gymnastics::before{content:"\ebc4"}.mi-sports-handball::before{content:"\ea33"}.mi-sports-hockey::before{content:"\ea2b"}.mi-sports-kabaddi::before{content:"\ea34"}.mi-sports-martial-arts::before{content:"\eae9"}.mi-sports-mma::before{content:"\ea2c"}.mi-sports-motorsports::before{content:"\ea2d"}.mi-sports-rugby::before{content:"\ea2e"}.mi-sports-score::before{content:"\f06e"}.mi-sports-soccer::before{content:"\ea2f"}.mi-sports-tennis::before{content:"\ea32"}.mi-sports-volleyball::before{content:"\ea31"}.mi-square::before{content:"\eb36"}.mi-square-foot::before{content:"\ea49"}.mi-ssid-chart::before{content:"\eb66"}.mi-stacked-bar-chart::before{content:"\e9e6"}.mi-stacked-line-chart::before{content:"\f22b"}.mi-stadium::before{content:"\eb90"}.mi-stairs::before{content:"\f1a9"}.mi-star::before{content:"\e838"}.mi-star-border::before{content:"\e83a"}.mi-star-border-purple500::before{content:"\f099"}.mi-star-half::before{content:"\e839"}.mi-star-outline::before{content:"\f06f"}.mi-star-purple500::before{content:"\f09a"}.mi-star-rate::before{content:"\f0ec"}.mi-stars::before{content:"\e8d0"}.mi-start::before{content:"\e089"}.mi-stay-current-landscape::before{content:"\e0d3"}.mi-stay-current-portrait::before{content:"\e0d4"}.mi-stay-primary-landscape::before{content:"\e0d5"}.mi-stay-primary-portrait::before{content:"\e0d6"}.mi-sticky-note-2::before{content:"\f1fc"}.mi-stop::before{content:"\e047"}.mi-stop-circle::before{content:"\ef71"}.mi-stop-screen-share::before{content:"\e0e3"}.mi-storage::before{content:"\e1db"}.mi-store::before{content:"\e8d1"}.mi-store-mall-directory::before{content:"\e563"}.mi-storefront::before{content:"\ea12"}.mi-storm::before{content:"\f070"}.mi-straight::before{content:"\eb95"}.mi-straighten::before{content:"\e41c"}.mi-stream::before{content:"\e9e9"}.mi-streetview::before{content:"\e56e"}.mi-strikethrough-s::before{content:"\e257"}.mi-stroller::before{content:"\f1ae"}.mi-style::before{content:"\e41d"}.mi-subdirectory-arrow-left::before{content:"\e5d9"}.mi-subdirectory-arrow-right::before{content:"\e5da"}.mi-subject::before{content:"\e8d2"}.mi-subscript::before{content:"\f111"}.mi-subscriptions::before{content:"\e064"}.mi-subtitles::before{content:"\e048"}.mi-subtitles-off::before{content:"\ef72"}.mi-subway::before{content:"\e56f"}.mi-summarize::before{content:"\f071"}.mi-sunny::before{content:"\e81a"}.mi-sunny-snowing::before{content:"\e819"}.mi-superscript::before{content:"\f112"}.mi-supervised-user-circle::before{content:"\e939"}.mi-supervisor-account::before{content:"\e8d3"}.mi-support::before{content:"\ef73"}.mi-support-agent::before{content:"\f0e2"}.mi-surfing::before{content:"\e515"}.mi-surround-sound::before{content:"\e049"}.mi-swap-calls::before{content:"\e0d7"}.mi-swap-horiz::before{content:"\e8d4"}.mi-swap-horizontal-circle::before{content:"\e933"}.mi-swap-vert::before{content:"\e8d5"}.mi-swap-vert-circle::before{content:"\e8d6"}.mi-swap-vertical-circle::before{content:"\e8d6"}.mi-swipe::before{content:"\e9ec"}.mi-swipe-down::before{content:"\eb53"}.mi-swipe-down-alt::before{content:"\eb30"}.mi-swipe-left::before{content:"\eb59"}.mi-swipe-left-alt::before{content:"\eb33"}.mi-swipe-right::before{content:"\eb52"}.mi-swipe-right-alt::before{content:"\eb56"}.mi-swipe-up::before{content:"\eb2e"}.mi-swipe-up-alt::before{content:"\eb35"}.mi-swipe-vertical::before{content:"\eb51"}.mi-switch-access-shortcut::before{content:"\e7e1"}.mi-switch-access-shortcut-add::before{content:"\e7e2"}.mi-switch-account::before{content:"\e9ed"}.mi-switch-camera::before{content:"\e41e"}.mi-switch-left::before{content:"\f1d1"}.mi-switch-right::before{content:"\f1d2"}.mi-switch-video::before{content:"\e41f"}.mi-synagogue::before{content:"\eab0"}.mi-sync::before{content:"\e627"}.mi-sync-alt::before{content:"\ea18"}.mi-sync-disabled::before{content:"\e628"}.mi-sync-lock::before{content:"\eaee"}.mi-sync-problem::before{content:"\e629"}.mi-system-security-update::before{content:"\f072"}.mi-system-security-update-good::before{content:"\f073"}.mi-system-security-update-warning::before{content:"\f074"}.mi-system-update::before{content:"\e62a"}.mi-system-update-alt::before{content:"\e8d7"}.mi-system-update-tv::before{content:"\e8d7"}.mi-tab::before{content:"\e8d8"}.mi-tab-unselected::before{content:"\e8d9"}.mi-table-bar::before{content:"\ead2"}.mi-table-chart::before{content:"\e265"}.mi-table-restaurant::before{content:"\eac6"}.mi-table-rows::before{content:"\f101"}.mi-table-view::before{content:"\f1be"}.mi-tablet::before{content:"\e32f"}.mi-tablet-android::before{content:"\e330"}.mi-tablet-mac::before{content:"\e331"}.mi-tag::before{content:"\e9ef"}.mi-tag-faces::before{content:"\e420"}.mi-takeout-dining::before{content:"\ea74"}.mi-tap-and-play::before{content:"\e62b"}.mi-tapas::before{content:"\f1e9"}.mi-task::before{content:"\f075"}.mi-task-alt::before{content:"\e2e6"}.mi-taxi-alert::before{content:"\ef74"}.mi-telegram::before{content:"\ea6b"}.mi-temple-buddhist::before{content:"\eab3"}.mi-temple-hindu::before{content:"\eaaf"}.mi-terminal::before{content:"\eb8e"}.mi-terrain::before{content:"\e564"}.mi-text-decrease::before{content:"\eadd"}.mi-text-fields::before{content:"\e262"}.mi-text-format::before{content:"\e165"}.mi-text-increase::before{content:"\eae2"}.mi-text-rotate-up::before{content:"\e93a"}.mi-text-rotate-vertical::before{content:"\e93b"}.mi-text-rotation-angledown::before{content:"\e93c"}.mi-text-rotation-angleup::before{content:"\e93d"}.mi-text-rotation-down::before{content:"\e93e"}.mi-text-rotation-none::before{content:"\e93f"}.mi-text-snippet::before{content:"\f1c6"}.mi-textsms::before{content:"\e0d8"}.mi-texture::before{content:"\e421"}.mi-theater-comedy::before{content:"\ea66"}.mi-theaters::before{content:"\e8da"}.mi-thermostat::before{content:"\f076"}.mi-thermostat-auto::before{content:"\f077"}.mi-thumb-down::before{content:"\e8db"}.mi-thumb-down-alt::before{content:"\e816"}.mi-thumb-down-off-alt::before{content:"\e9f2"}.mi-thumb-up::before{content:"\e8dc"}.mi-thumb-up-alt::before{content:"\e817"}.mi-thumb-up-off-alt::before{content:"\e9f3"}.mi-thumbs-up-down::before{content:"\e8dd"}.mi-thunderstorm::before{content:"\ebdb"}.mi-tiktok::before{content:"\ea7e"}.mi-time-to-leave::before{content:"\e62c"}.mi-timelapse::before{content:"\e422"}.mi-timeline::before{content:"\e922"}.mi-timer::before{content:"\e425"}.mi-timer-10::before{content:"\e423"}.mi-timer-10-select::before{content:"\f07a"}.mi-timer-3::before{content:"\e424"}.mi-timer-3-select::before{content:"\f07b"}.mi-timer-off::before{content:"\e426"}.mi-tips-and-updates::before{content:"\e79a"}.mi-tire-repair::before{content:"\ebc8"}.mi-title::before{content:"\e264"}.mi-toc::before{content:"\e8de"}.mi-today::before{content:"\e8df"}.mi-toggle-off::before{content:"\e9f5"}.mi-toggle-on::before{content:"\e9f6"}.mi-token::before{content:"\ea25"}.mi-toll::before{content:"\e8e0"}.mi-tonality::before{content:"\e427"}.mi-topic::before{content:"\f1c8"}.mi-tornado::before{content:"\e199"}.mi-touch-app::before{content:"\e913"}.mi-tour::before{content:"\ef75"}.mi-toys::before{content:"\e332"}.mi-track-changes::before{content:"\e8e1"}.mi-traffic::before{content:"\e565"}.mi-train::before{content:"\e570"}.mi-tram::before{content:"\e571"}.mi-transcribe::before{content:"\f8ec"}.mi-transfer-within-a-station::before{content:"\e572"}.mi-transform::before{content:"\e428"}.mi-transgender::before{content:"\e58d"}.mi-transit-enterexit::before{content:"\e579"}.mi-translate::before{content:"\e8e2"}.mi-travel-explore::before{content:"\e2db"}.mi-trending-down::before{content:"\e8e3"}.mi-trending-flat::before{content:"\e8e4"}.mi-trending-neutral::before{content:"\e8e4"}.mi-trending-up::before{content:"\e8e5"}.mi-trip-origin::before{content:"\e57b"}.mi-trolley::before{content:"\f86b"}.mi-troubleshoot::before{content:"\e1d2"}.mi-try::before{content:"\f07c"}.mi-tsunami::before{content:"\ebd8"}.mi-tty::before{content:"\f1aa"}.mi-tune::before{content:"\e429"}.mi-tungsten::before{content:"\f07d"}.mi-turn-left::before{content:"\eba6"}.mi-turn-right::before{content:"\ebab"}.mi-turn-sharp-left::before{content:"\eba7"}.mi-turn-sharp-right::before{content:"\ebaa"}.mi-turn-slight-left::before{content:"\eba4"}.mi-turn-slight-right::before{content:"\eb9a"}.mi-turned-in::before{content:"\e8e6"}.mi-turned-in-not::before{content:"\e8e7"}.mi-tv::before{content:"\e333"}.mi-tv-off::before{content:"\e647"}.mi-two-wheeler::before{content:"\e9f9"}.mi-type-specimen::before{content:"\f8f0"}.mi-u-turn-left::before{content:"\eba1"}.mi-u-turn-right::before{content:"\eba2"}.mi-umbrella::before{content:"\f1ad"}.mi-unarchive::before{content:"\e169"}.mi-undo::before{content:"\e166"}.mi-unfold-less::before{content:"\e5d6"}.mi-unfold-less-double::before{content:"\f8cf"}.mi-unfold-more::before{content:"\e5d7"}.mi-unfold-more-double::before{content:"\f8d0"}.mi-unpublished::before{content:"\f236"}.mi-unsubscribe::before{content:"\e0eb"}.mi-upcoming::before{content:"\f07e"}.mi-update::before{content:"\e923"}.mi-update-disabled::before{content:"\e075"}.mi-upgrade::before{content:"\f0fb"}.mi-upload::before{content:"\f09b"}.mi-upload-file::before{content:"\e9fc"}.mi-usb::before{content:"\e1e0"}.mi-usb-off::before{content:"\e4fa"}.mi-vaccines::before{content:"\e138"}.mi-vape-free::before{content:"\ebc6"}.mi-vaping-rooms::before{content:"\ebcf"}.mi-verified::before{content:"\ef76"}.mi-verified-user::before{content:"\e8e8"}.mi-vertical-align-bottom::before{content:"\e258"}.mi-vertical-align-center::before{content:"\e259"}.mi-vertical-align-top::before{content:"\e25a"}.mi-vertical-distribute::before{content:"\e076"}.mi-vertical-shades::before{content:"\ec0e"}.mi-vertical-shades-closed::before{content:"\ec0d"}.mi-vertical-split::before{content:"\e949"}.mi-vibration::before{content:"\e62d"}.mi-video-call::before{content:"\e070"}.mi-video-camera-back::before{content:"\f07f"}.mi-video-camera-front::before{content:"\f080"}.mi-video-chat::before{content:"\f8a0"}.mi-video-collection::before{content:"\e04a"}.mi-video-file::before{content:"\eb87"}.mi-video-label::before{content:"\e071"}.mi-video-library::before{content:"\e04a"}.mi-video-settings::before{content:"\ea75"}.mi-video-stable::before{content:"\f081"}.mi-videocam::before{content:"\e04b"}.mi-videocam-off::before{content:"\e04c"}.mi-videogame-asset::before{content:"\e338"}.mi-videogame-asset-off::before{content:"\e500"}.mi-view-agenda::before{content:"\e8e9"}.mi-view-array::before{content:"\e8ea"}.mi-view-carousel::before{content:"\e8eb"}.mi-view-column::before{content:"\e8ec"}.mi-view-comfortable::before{content:"\e42a"}.mi-view-comfy::before{content:"\e42a"}.mi-view-comfy-alt::before{content:"\eb73"}.mi-view-compact::before{content:"\e42b"}.mi-view-compact-alt::before{content:"\eb74"}.mi-view-cozy::before{content:"\eb75"}.mi-view-day::before{content:"\e8ed"}.mi-view-headline::before{content:"\e8ee"}.mi-view-in-ar::before{content:"\e9fe"}.mi-view-kanban::before{content:"\eb7f"}.mi-view-list::before{content:"\e8ef"}.mi-view-module::before{content:"\e8f0"}.mi-view-quilt::before{content:"\e8f1"}.mi-view-sidebar::before{content:"\f114"}.mi-view-stream::before{content:"\e8f2"}.mi-view-timeline::before{content:"\eb85"}.mi-view-week::before{content:"\e8f3"}.mi-vignette::before{content:"\e435"}.mi-villa::before{content:"\e586"}.mi-visibility::before{content:"\e8f4"}.mi-visibility-off::before{content:"\e8f5"}.mi-voice-chat::before{content:"\e62e"}.mi-voice-over-off::before{content:"\e94a"}.mi-voicemail::before{content:"\e0d9"}.mi-volcano::before{content:"\ebda"}.mi-volume-down::before{content:"\e04d"}.mi-volume-down-alt::before{content:"\e79c"}.mi-volume-mute::before{content:"\e04e"}.mi-volume-off::before{content:"\e04f"}.mi-volume-up::before{content:"\e050"}.mi-volunteer-activism::before{content:"\ea70"}.mi-vpn-key::before{content:"\e0da"}.mi-vpn-key-off::before{content:"\eb7a"}.mi-vpn-lock::before{content:"\e62f"}.mi-vrpano::before{content:"\f082"}.mi-wallet::before{content:"\f8ff"}.mi-wallet-giftcard::before{content:"\e8f6"}.mi-wallet-membership::before{content:"\e8f7"}.mi-wallet-travel::before{content:"\e8f8"}.mi-wallpaper::before{content:"\e1bc"}.mi-warehouse::before{content:"\ebb8"}.mi-warning::before{content:"\e002"}.mi-warning-amber::before{content:"\f083"}.mi-wash::before{content:"\f1b1"}.mi-watch::before{content:"\e334"}.mi-watch-later::before{content:"\e924"}.mi-watch-off::before{content:"\eae3"}.mi-water::before{content:"\f084"}.mi-water-damage::before{content:"\f203"}.mi-water-drop::before{content:"\e798"}.mi-waterfall-chart::before{content:"\ea00"}.mi-waves::before{content:"\e176"}.mi-waving-hand::before{content:"\e766"}.mi-wb-auto::before{content:"\e42c"}.mi-wb-cloudy::before{content:"\e42d"}.mi-wb-incandescent::before{content:"\e42e"}.mi-wb-iridescent::before{content:"\e436"}.mi-wb-shade::before{content:"\ea01"}.mi-wb-sunny::before{content:"\e430"}.mi-wb-twighlight::before{content:"\ea02"}.mi-wb-twilight::before{content:"\e1c6"}.mi-wc::before{content:"\e63d"}.mi-web::before{content:"\e051"}.mi-web-asset::before{content:"\e069"}.mi-web-asset-off::before{content:"\e4f7"}.mi-web-stories::before{content:"\e595"}.mi-webhook::before{content:"\eb92"}.mi-wechat::before{content:"\ea81"}.mi-weekend::before{content:"\e16b"}.mi-west::before{content:"\f1e6"}.mi-whatshot::before{content:"\e80e"}.mi-wheelchair-pickup::before{content:"\f1ab"}.mi-where-to-vote::before{content:"\e177"}.mi-widgets::before{content:"\e1bd"}.mi-width-full::before{content:"\f8f5"}.mi-width-normal::before{content:"\f8f6"}.mi-width-wide::before{content:"\f8f7"}.mi-wifi::before{content:"\e63e"}.mi-wifi-1-bar::before{content:"\e4ca"}.mi-wifi-2-bar::before{content:"\e4d9"}.mi-wifi-calling::before{content:"\ef77"}.mi-wifi-calling-1::before{content:"\f0e7"}.mi-wifi-calling-2::before{content:"\f0f6"}.mi-wifi-calling-3::before{content:"\f085"}.mi-wifi-channel::before{content:"\eb6a"}.mi-wifi-find::before{content:"\eb31"}.mi-wifi-lock::before{content:"\e1e1"}.mi-wifi-off::before{content:"\e648"}.mi-wifi-password::before{content:"\eb6b"}.mi-wifi-protected-setup::before{content:"\f0fc"}.mi-wifi-tethering::before{content:"\e1e2"}.mi-wifi-tethering-error::before{content:"\ead9"}.mi-wifi-tethering-error-rounded::before{content:"\f086"}.mi-wifi-tethering-off::before{content:"\f087"}.mi-wind-power::before{content:"\ec0c"}.mi-window::before{content:"\f088"}.mi-wine-bar::before{content:"\f1e8"}.mi-woman::before{content:"\e13e"}.mi-woman-2::before{content:"\f8e7"}.mi-woo-commerce::before{content:"\ea6d"}.mi-wordpress::before{content:"\ea9f"}.mi-work::before{content:"\e8f9"}.mi-work-history::before{content:"\ec09"}.mi-work-off::before{content:"\e942"}.mi-work-outline::before{content:"\e943"}.mi-workspace-premium::before{content:"\e7af"}.mi-workspaces::before{content:"\e1a0"}.mi-workspaces-filled::before{content:"\ea0d"}.mi-workspaces-outline::before{content:"\ea0f"}.mi-wrap-text::before{content:"\e25b"}.mi-wrong-location::before{content:"\ef78"}.mi-wysiwyg::before{content:"\f1c3"}.mi-yard::before{content:"\f089"}.mi-youtube-searched-for::before{content:"\e8fa"}.mi-zoom-in::before{content:"\e8ff"}.mi-zoom-in-map::before{content:"\eb2d"}.mi-zoom-out::before{content:"\e900"}.mi-zoom-out-map::before{content:"\e56b"} diff --git a/packages/themes/mfm/assets/material-icons/css/material-icons.scss b/packages/themes/mfm/assets/material-icons/css/material-icons.scss deleted file mode 100644 index 45d00e148f..0000000000 --- a/packages/themes/mfm/assets/material-icons/css/material-icons.scss +++ /dev/null @@ -1,39 +0,0 @@ -@import 'variables'; -@import 'mixins'; - -@each $font-family - in ( - 'Material Icons', - 'Material Icons Outlined', - 'Material Icons Round', - 'Material Icons Sharp', - 'Material Icons Two Tone' - ) -{ - $full-class-name: to-lower-case($font-family); - $full-class-name: material-icons-str-replace($full-class-name, ' ', '-'); - $class-name: material-icons-str-replace( - $full-class-name, - 'material-icons', - $material-icons-css-prefix - ); - - /** - * @deprecated As of 1.0, use .#{$full-class-name} instead of .#{$class-name} - */ - .#{$class-name} { - @include material-icons-font-class($font-family); - } -} - -@each $name, $codepoint in $material-icons-codepoints { - $class-name: material-icons-str-replace( - $name, - $material-icons-css-search, - $material-icons-css-replace - ); - - .#{$material-icons-css-prefix}-#{$class-name} { - @include material-icon($name); - } -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/_mixins.scss b/packages/themes/mfm/assets/material-icons/iconfont/_mixins.scss deleted file mode 100644 index ee33f89f07..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/_mixins.scss +++ /dev/null @@ -1,55 +0,0 @@ -// @see https://github.com/twbs/bootstrap/blob/main/scss/_functions.scss -@function material-icons-str-replace($string, $search, $replace: '') { - $index: str-index($string, $search); - @if $index { - @return str-slice($string, 1, $index - 1) + $replace + - material-icons-str-replace( - str-slice($string, $index + str-length($search)), - $search, - $replace - ); - } - @return $string; -} - -@mixin material-icons-font-class($font-family) { - font-family: $font-family; - font-weight: normal; - font-style: normal; - font-size: $material-icons-font-size; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; // Support for all WebKit browsers - -moz-osx-font-smoothing: grayscale; // Support for Firefox - text-rendering: optimizeLegibility; // Support for Safari and Chrome - font-feature-settings: 'liga'; // Support for IE -} - -@mixin material-icons-font($font-family) { - $class-name: to-lower-case($font-family); - $class-name: material-icons-str-replace($class-name, ' ', '-'); - $font-file: $material-icons-font-path + $class-name; - - @font-face { - font-family: $font-family; - font-style: normal; - font-weight: 400; - font-display: $material-icons-font-display; - src: url('#{$font-file}.woff2') format('woff2'), - url('#{$font-file}.woff') format('woff'); - } - - .#{$class-name} { - @include material-icons-font-class($font-family); - } -} - -@mixin material-icons() { - @warn "material-icons() Sass mixin has been deprecated as of 1.0. Use '@extend .material-icons;' instead of '@include material-icons();'."; - @include material-icons-font-class('Material Icons'); -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/_variables.scss b/packages/themes/mfm/assets/material-icons/iconfont/_variables.scss deleted file mode 100644 index 40bc19f1a3..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/_variables.scss +++ /dev/null @@ -1,3 +0,0 @@ -$material-icons-font-path: './' !default; -$material-icons-font-size: 24px !default; -$material-icons-font-display: block !default; diff --git a/packages/themes/mfm/assets/material-icons/iconfont/filled.css b/packages/themes/mfm/assets/material-icons/iconfont/filled.css deleted file mode 100644 index 75e83a8488..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/filled.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Icons"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons.woff2") format("woff2"), url("./material-icons.woff") format("woff"); -} -.material-icons { - font-family: "Material Icons"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/filled.scss b/packages/themes/mfm/assets/material-icons/iconfont/filled.scss deleted file mode 100644 index e1b258cf37..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/filled.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import 'variables'; -@import 'mixins'; - -@include material-icons-font('Material Icons'); diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-outlined.woff b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-outlined.woff deleted file mode 100644 index edeb9df9c9..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-outlined.woff and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-outlined.woff2 b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-outlined.woff2 deleted file mode 100644 index d44b948667..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-outlined.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-round.woff b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-round.woff deleted file mode 100644 index bc0002b33b..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-round.woff and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-round.woff2 b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-round.woff2 deleted file mode 100644 index e9e305f27d..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-round.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-sharp.woff b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-sharp.woff deleted file mode 100644 index 80d8c991db..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-sharp.woff and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-sharp.woff2 b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-sharp.woff2 deleted file mode 100644 index 4062685271..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-sharp.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-two-tone.woff b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-two-tone.woff deleted file mode 100644 index ddf106c4b8..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-two-tone.woff and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-two-tone.woff2 b/packages/themes/mfm/assets/material-icons/iconfont/material-icons-two-tone.woff2 deleted file mode 100644 index 8f799901c2..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons-two-tone.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.css b/packages/themes/mfm/assets/material-icons/iconfont/material-icons.css deleted file mode 100644 index 3cd7aab976..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.css +++ /dev/null @@ -1,124 +0,0 @@ -@font-face { - font-family: "Material Icons"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons.woff2") format("woff2"), url("./material-icons.woff") format("woff"); -} -.material-icons { - font-family: "Material Icons"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -@font-face { - font-family: "Material Icons Outlined"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-outlined.woff2") format("woff2"), url("./material-icons-outlined.woff") format("woff"); -} -.material-icons-outlined { - font-family: "Material Icons Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -@font-face { - font-family: "Material Icons Round"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-round.woff2") format("woff2"), url("./material-icons-round.woff") format("woff"); -} -.material-icons-round { - font-family: "Material Icons Round"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -@font-face { - font-family: "Material Icons Sharp"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-sharp.woff2") format("woff2"), url("./material-icons-sharp.woff") format("woff"); -} -.material-icons-sharp { - font-family: "Material Icons Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -@font-face { - font-family: "Material Icons Two Tone"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-two-tone.woff2") format("woff2"), url("./material-icons-two-tone.woff") format("woff"); -} -.material-icons-two-tone { - font-family: "Material Icons Two Tone"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.scss b/packages/themes/mfm/assets/material-icons/iconfont/material-icons.scss deleted file mode 100644 index 3a094277ac..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.scss +++ /dev/null @@ -1,5 +0,0 @@ -@import 'filled'; -@import 'outlined'; -@import 'round'; -@import 'sharp'; -@import 'two-tone'; diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.woff b/packages/themes/mfm/assets/material-icons/iconfont/material-icons.woff deleted file mode 100644 index 88fdf4d026..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.woff and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.woff2 b/packages/themes/mfm/assets/material-icons/iconfont/material-icons.woff2 deleted file mode 100644 index 5492a6e759..0000000000 Binary files a/packages/themes/mfm/assets/material-icons/iconfont/material-icons.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-icons/iconfont/outlined.css b/packages/themes/mfm/assets/material-icons/iconfont/outlined.css deleted file mode 100644 index f359e2aa36..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/outlined.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Icons Outlined"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-outlined.woff2") format("woff2"), url("./material-icons-outlined.woff") format("woff"); -} -.material-icons-outlined { - font-family: "Material Icons Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/outlined.scss b/packages/themes/mfm/assets/material-icons/iconfont/outlined.scss deleted file mode 100644 index cabbac092f..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/outlined.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import 'variables'; -@import 'mixins'; - -@include material-icons-font('Material Icons Outlined'); diff --git a/packages/themes/mfm/assets/material-icons/iconfont/round.css b/packages/themes/mfm/assets/material-icons/iconfont/round.css deleted file mode 100644 index c0b13ba7db..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/round.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Icons Round"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-round.woff2") format("woff2"), url("./material-icons-round.woff") format("woff"); -} -.material-icons-round { - font-family: "Material Icons Round"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/round.scss b/packages/themes/mfm/assets/material-icons/iconfont/round.scss deleted file mode 100644 index ba3260cd73..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/round.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import 'variables'; -@import 'mixins'; - -@include material-icons-font('Material Icons Round'); diff --git a/packages/themes/mfm/assets/material-icons/iconfont/sharp.css b/packages/themes/mfm/assets/material-icons/iconfont/sharp.css deleted file mode 100644 index 18e9149638..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/sharp.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Icons Sharp"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-sharp.woff2") format("woff2"), url("./material-icons-sharp.woff") format("woff"); -} -.material-icons-sharp { - font-family: "Material Icons Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/sharp.scss b/packages/themes/mfm/assets/material-icons/iconfont/sharp.scss deleted file mode 100644 index cb6016155c..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/sharp.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import 'variables'; -@import 'mixins'; - -@include material-icons-font('Material Icons Sharp'); diff --git a/packages/themes/mfm/assets/material-icons/iconfont/two-tone.css b/packages/themes/mfm/assets/material-icons/iconfont/two-tone.css deleted file mode 100644 index fb9b4c91f4..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/two-tone.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Icons Two Tone"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-two-tone.woff2") format("woff2"), url("./material-icons-two-tone.woff") format("woff"); -} -.material-icons-two-tone { - font-family: "Material Icons Two Tone"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-icons/iconfont/two-tone.scss b/packages/themes/mfm/assets/material-icons/iconfont/two-tone.scss deleted file mode 100644 index 110f7b6bb8..0000000000 --- a/packages/themes/mfm/assets/material-icons/iconfont/two-tone.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import 'variables'; -@import 'mixins'; - -@include material-icons-font('Material Icons Two Tone'); diff --git a/packages/themes/mfm/assets/material-icons/index.d.ts b/packages/themes/mfm/assets/material-icons/index.d.ts deleted file mode 100644 index f86fc7ea7d..0000000000 --- a/packages/themes/mfm/assets/material-icons/index.d.ts +++ /dev/null @@ -1,2128 +0,0 @@ -type MaterialIcons = [ - "123", - "360", - "10k", - "10mp", - "11mp", - "12mp", - "13mp", - "14mp", - "15mp", - "16mp", - "17mp", - "18_up_rating", - "18mp", - "19mp", - "1k", - "1k_plus", - "1x_mobiledata", - "20mp", - "21mp", - "22mp", - "23mp", - "24mp", - "2k", - "2k_plus", - "2mp", - "30fps", - "30fps_select", - "3d_rotation", - "3g_mobiledata", - "3k", - "3k_plus", - "3mp", - "3p", - "4g_mobiledata", - "4g_plus_mobiledata", - "4k", - "4k_plus", - "4mp", - "5g", - "5k", - "5k_plus", - "5mp", - "60fps", - "60fps_select", - "6_ft_apart", - "6k", - "6k_plus", - "6mp", - "7k", - "7k_plus", - "7mp", - "8k", - "8k_plus", - "8mp", - "9k", - "9k_plus", - "9mp", - "abc", - "ac_unit", - "access_alarm", - "access_alarms", - "access_time", - "access_time_filled", - "accessibility", - "accessibility_new", - "accessible", - "accessible_forward", - "account_balance", - "account_balance_wallet", - "account_box", - "account_circle", - "account_tree", - "ad_units", - "adb", - "add", - "add_a_photo", - "add_alarm", - "add_alert", - "add_box", - "add_business", - "add_card", - "add_chart", - "add_circle", - "add_circle_outline", - "add_comment", - "add_home", - "add_home_work", - "add_ic_call", - "add_link", - "add_location", - "add_location_alt", - "add_moderator", - "add_photo_alternate", - "add_reaction", - "add_road", - "add_shopping_cart", - "add_task", - "add_to_drive", - "add_to_home_screen", - "add_to_photos", - "add_to_queue", - "addchart", - "adf_scanner", - "adjust", - "admin_panel_settings", - "ads_click", - "agriculture", - "air", - "airline_seat_flat", - "airline_seat_flat_angled", - "airline_seat_individual_suite", - "airline_seat_legroom_extra", - "airline_seat_legroom_normal", - "airline_seat_legroom_reduced", - "airline_seat_recline_extra", - "airline_seat_recline_normal", - "airline_stops", - "airlines", - "airplane_ticket", - "airplanemode_active", - "airplanemode_inactive", - "airplay", - "airport_shuttle", - "alarm", - "alarm_add", - "alarm_off", - "alarm_on", - "album", - "align_horizontal_center", - "align_horizontal_left", - "align_horizontal_right", - "align_vertical_bottom", - "align_vertical_center", - "align_vertical_top", - "all_inbox", - "all_inclusive", - "all_out", - "alt_route", - "alternate_email", - "analytics", - "anchor", - "android", - "animation", - "announcement", - "aod", - "apartment", - "api", - "app_blocking", - "app_registration", - "app_settings_alt", - "app_shortcut", - "approval", - "apps", - "apps_outage", - "architecture", - "archive", - "area_chart", - "arrow_back", - "arrow_back_ios", - "arrow_back_ios_new", - "arrow_circle_down", - "arrow_circle_left", - "arrow_circle_right", - "arrow_circle_up", - "arrow_downward", - "arrow_drop_down", - "arrow_drop_down_circle", - "arrow_drop_up", - "arrow_forward", - "arrow_forward_ios", - "arrow_left", - "arrow_outward", - "arrow_right", - "arrow_right_alt", - "arrow_upward", - "art_track", - "article", - "aspect_ratio", - "assessment", - "assignment", - "assignment_ind", - "assignment_late", - "assignment_return", - "assignment_returned", - "assignment_turned_in", - "assist_walker", - "assistant", - "assistant_direction", - "assistant_photo", - "assured_workload", - "atm", - "attach_email", - "attach_file", - "attach_money", - "attachment", - "attractions", - "attribution", - "audio_file", - "audiotrack", - "auto_awesome", - "auto_awesome_mosaic", - "auto_awesome_motion", - "auto_delete", - "auto_fix_high", - "auto_fix_normal", - "auto_fix_off", - "auto_graph", - "auto_mode", - "auto_stories", - "autofps_select", - "autorenew", - "av_timer", - "baby_changing_station", - "back_hand", - "backpack", - "backspace", - "backup", - "backup_table", - "badge", - "bakery_dining", - "balance", - "balcony", - "ballot", - "bar_chart", - "batch_prediction", - "bathroom", - "bathtub", - "battery_0_bar", - "battery_1_bar", - "battery_2_bar", - "battery_3_bar", - "battery_4_bar", - "battery_5_bar", - "battery_6_bar", - "battery_alert", - "battery_charging_full", - "battery_full", - "battery_saver", - "battery_std", - "battery_unknown", - "beach_access", - "bed", - "bedroom_baby", - "bedroom_child", - "bedroom_parent", - "bedtime", - "bedtime_off", - "beenhere", - "bento", - "bike_scooter", - "biotech", - "blender", - "blind", - "blinds", - "blinds_closed", - "block", - "bloodtype", - "bluetooth", - "bluetooth_audio", - "bluetooth_connected", - "bluetooth_disabled", - "bluetooth_drive", - "bluetooth_searching", - "blur_circular", - "blur_linear", - "blur_off", - "blur_on", - "bolt", - "book", - "book_online", - "bookmark", - "bookmark_add", - "bookmark_added", - "bookmark_border", - "bookmark_remove", - "bookmarks", - "border_all", - "border_bottom", - "border_clear", - "border_color", - "border_horizontal", - "border_inner", - "border_left", - "border_outer", - "border_right", - "border_style", - "border_top", - "border_vertical", - "boy", - "branding_watermark", - "breakfast_dining", - "brightness_1", - "brightness_2", - "brightness_3", - "brightness_4", - "brightness_5", - "brightness_6", - "brightness_7", - "brightness_auto", - "brightness_high", - "brightness_low", - "brightness_medium", - "broadcast_on_home", - "broadcast_on_personal", - "broken_image", - "browse_gallery", - "browser_not_supported", - "browser_updated", - "brunch_dining", - "brush", - "bubble_chart", - "bug_report", - "build", - "build_circle", - "bungalow", - "burst_mode", - "bus_alert", - "business", - "business_center", - "cabin", - "cable", - "cached", - "cake", - "calculate", - "calendar_month", - "calendar_today", - "calendar_view_day", - "calendar_view_month", - "calendar_view_week", - "call", - "call_end", - "call_made", - "call_merge", - "call_missed", - "call_missed_outgoing", - "call_received", - "call_split", - "call_to_action", - "camera", - "camera_alt", - "camera_enhance", - "camera_front", - "camera_indoor", - "camera_outdoor", - "camera_rear", - "camera_roll", - "cameraswitch", - "campaign", - "cancel", - "cancel_presentation", - "cancel_schedule_send", - "candlestick_chart", - "car_crash", - "car_rental", - "car_repair", - "card_giftcard", - "card_membership", - "card_travel", - "carpenter", - "cases", - "casino", - "cast", - "cast_connected", - "cast_for_education", - "castle", - "catching_pokemon", - "category", - "celebration", - "cell_tower", - "cell_wifi", - "center_focus_strong", - "center_focus_weak", - "chair", - "chair_alt", - "chalet", - "change_circle", - "change_history", - "charging_station", - "chat", - "chat_bubble", - "chat_bubble_outline", - "check", - "check_box", - "check_box_outline_blank", - "check_circle", - "check_circle_outline", - "checklist", - "checklist_rtl", - "checkroom", - "chevron_left", - "chevron_right", - "child_care", - "child_friendly", - "chrome_reader_mode", - "church", - "circle", - "circle_notifications", - "class", - "clean_hands", - "cleaning_services", - "clear", - "clear_all", - "close", - "close_fullscreen", - "closed_caption", - "closed_caption_disabled", - "closed_caption_off", - "cloud", - "cloud_circle", - "cloud_done", - "cloud_download", - "cloud_off", - "cloud_queue", - "cloud_sync", - "cloud_upload", - "co2", - "co_present", - "code", - "code_off", - "coffee", - "coffee_maker", - "collections", - "collections_bookmark", - "color_lens", - "colorize", - "comment", - "comment_bank", - "comments_disabled", - "commit", - "commute", - "compare", - "compare_arrows", - "compass_calibration", - "compost", - "compress", - "computer", - "confirmation_number", - "connect_without_contact", - "connected_tv", - "connecting_airports", - "construction", - "contact_emergency", - "contact_mail", - "contact_page", - "contact_phone", - "contact_support", - "contactless", - "contacts", - "content_copy", - "content_cut", - "content_paste", - "content_paste_go", - "content_paste_off", - "content_paste_search", - "contrast", - "control_camera", - "control_point", - "control_point_duplicate", - "cookie", - "copy_all", - "copyright", - "coronavirus", - "corporate_fare", - "cottage", - "countertops", - "create", - "create_new_folder", - "credit_card", - "credit_card_off", - "credit_score", - "crib", - "crisis_alert", - "crop", - "crop_16_9", - "crop_3_2", - "crop_5_4", - "crop_7_5", - "crop_din", - "crop_free", - "crop_landscape", - "crop_original", - "crop_portrait", - "crop_rotate", - "crop_square", - "cruelty_free", - "css", - "currency_bitcoin", - "currency_exchange", - "currency_franc", - "currency_lira", - "currency_pound", - "currency_ruble", - "currency_rupee", - "currency_yen", - "currency_yuan", - "curtains", - "curtains_closed", - "cyclone", - "dangerous", - "dark_mode", - "dashboard", - "dashboard_customize", - "data_array", - "data_exploration", - "data_object", - "data_saver_off", - "data_saver_on", - "data_thresholding", - "data_usage", - "dataset", - "dataset_linked", - "date_range", - "deblur", - "deck", - "dehaze", - "delete", - "delete_forever", - "delete_outline", - "delete_sweep", - "delivery_dining", - "density_large", - "density_medium", - "density_small", - "departure_board", - "description", - "deselect", - "design_services", - "desk", - "desktop_access_disabled", - "desktop_mac", - "desktop_windows", - "details", - "developer_board", - "developer_board_off", - "developer_mode", - "device_hub", - "device_thermostat", - "device_unknown", - "devices", - "devices_fold", - "devices_other", - "dialer_sip", - "dialpad", - "diamond", - "difference", - "dining", - "dinner_dining", - "directions", - "directions_bike", - "directions_boat", - "directions_boat_filled", - "directions_bus", - "directions_bus_filled", - "directions_car", - "directions_car_filled", - "directions_off", - "directions_railway", - "directions_railway_filled", - "directions_run", - "directions_subway", - "directions_subway_filled", - "directions_transit", - "directions_transit_filled", - "directions_walk", - "dirty_lens", - "disabled_by_default", - "disabled_visible", - "disc_full", - "discount", - "display_settings", - "diversity_1", - "diversity_2", - "diversity_3", - "dns", - "do_disturb", - "do_disturb_alt", - "do_disturb_off", - "do_disturb_on", - "do_not_disturb", - "do_not_disturb_alt", - "do_not_disturb_off", - "do_not_disturb_on", - "do_not_disturb_on_total_silence", - "do_not_step", - "do_not_touch", - "dock", - "document_scanner", - "domain", - "domain_add", - "domain_disabled", - "domain_verification", - "done", - "done_all", - "done_outline", - "donut_large", - "donut_small", - "door_back", - "door_front", - "door_sliding", - "doorbell", - "double_arrow", - "downhill_skiing", - "download", - "download_done", - "download_for_offline", - "downloading", - "drafts", - "drag_handle", - "drag_indicator", - "draw", - "drive_eta", - "drive_file_move", - "drive_file_move_rtl", - "drive_file_rename_outline", - "drive_folder_upload", - "dry", - "dry_cleaning", - "duo", - "dvr", - "dynamic_feed", - "dynamic_form", - "e_mobiledata", - "earbuds", - "earbuds_battery", - "east", - "edgesensor_high", - "edgesensor_low", - "edit", - "edit_attributes", - "edit_calendar", - "edit_location", - "edit_location_alt", - "edit_note", - "edit_notifications", - "edit_off", - "edit_road", - "egg", - "egg_alt", - "eject", - "elderly", - "elderly_woman", - "electric_bike", - "electric_bolt", - "electric_car", - "electric_meter", - "electric_moped", - "electric_rickshaw", - "electric_scooter", - "electrical_services", - "elevator", - "email", - "emergency", - "emergency_recording", - "emergency_share", - "emoji_emotions", - "emoji_events", - "emoji_food_beverage", - "emoji_nature", - "emoji_objects", - "emoji_people", - "emoji_symbols", - "emoji_transportation", - "energy_savings_leaf", - "engineering", - "enhanced_encryption", - "equalizer", - "error", - "error_outline", - "escalator", - "escalator_warning", - "euro", - "euro_symbol", - "ev_station", - "event", - "event_available", - "event_busy", - "event_note", - "event_repeat", - "event_seat", - "exit_to_app", - "expand", - "expand_circle_down", - "expand_less", - "expand_more", - "explicit", - "explore", - "explore_off", - "exposure", - "exposure_neg_1", - "exposure_neg_2", - "exposure_plus_1", - "exposure_plus_2", - "exposure_zero", - "extension", - "extension_off", - "face", - "face_2", - "face_3", - "face_4", - "face_5", - "face_6", - "face_retouching_natural", - "face_retouching_off", - "fact_check", - "factory", - "family_restroom", - "fast_forward", - "fast_rewind", - "fastfood", - "favorite", - "favorite_border", - "fax", - "featured_play_list", - "featured_video", - "feed", - "feedback", - "female", - "fence", - "festival", - "fiber_dvr", - "fiber_manual_record", - "fiber_new", - "fiber_pin", - "fiber_smart_record", - "file_copy", - "file_download", - "file_download_done", - "file_download_off", - "file_open", - "file_present", - "file_upload", - "filter", - "filter_1", - "filter_2", - "filter_3", - "filter_4", - "filter_5", - "filter_6", - "filter_7", - "filter_8", - "filter_9", - "filter_9_plus", - "filter_alt", - "filter_alt_off", - "filter_b_and_w", - "filter_center_focus", - "filter_drama", - "filter_frames", - "filter_hdr", - "filter_list", - "filter_list_off", - "filter_none", - "filter_tilt_shift", - "filter_vintage", - "find_in_page", - "find_replace", - "fingerprint", - "fire_extinguisher", - "fire_hydrant_alt", - "fire_truck", - "fireplace", - "first_page", - "fit_screen", - "fitbit", - "fitness_center", - "flag", - "flag_circle", - "flaky", - "flare", - "flash_auto", - "flash_off", - "flash_on", - "flashlight_off", - "flashlight_on", - "flatware", - "flight", - "flight_class", - "flight_land", - "flight_takeoff", - "flip", - "flip_camera_android", - "flip_camera_ios", - "flip_to_back", - "flip_to_front", - "flood", - "fluorescent", - "flutter_dash", - "fmd_bad", - "fmd_good", - "folder", - "folder_copy", - "folder_delete", - "folder_off", - "folder_open", - "folder_shared", - "folder_special", - "folder_zip", - "follow_the_signs", - "font_download", - "font_download_off", - "food_bank", - "forest", - "fork_left", - "fork_right", - "format_align_center", - "format_align_justify", - "format_align_left", - "format_align_right", - "format_bold", - "format_clear", - "format_color_fill", - "format_color_reset", - "format_color_text", - "format_indent_decrease", - "format_indent_increase", - "format_italic", - "format_line_spacing", - "format_list_bulleted", - "format_list_numbered", - "format_list_numbered_rtl", - "format_overline", - "format_paint", - "format_quote", - "format_shapes", - "format_size", - "format_strikethrough", - "format_textdirection_l_to_r", - "format_textdirection_r_to_l", - "format_underlined", - "fort", - "forum", - "forward", - "forward_10", - "forward_30", - "forward_5", - "forward_to_inbox", - "foundation", - "free_breakfast", - "free_cancellation", - "front_hand", - "fullscreen", - "fullscreen_exit", - "functions", - "g_mobiledata", - "g_translate", - "gamepad", - "games", - "garage", - "gas_meter", - "gavel", - "generating_tokens", - "gesture", - "get_app", - "gif", - "gif_box", - "girl", - "gite", - "golf_course", - "gpp_bad", - "gpp_good", - "gpp_maybe", - "gps_fixed", - "gps_not_fixed", - "gps_off", - "grade", - "gradient", - "grading", - "grain", - "graphic_eq", - "grass", - "grid_3x3", - "grid_4x4", - "grid_goldenratio", - "grid_off", - "grid_on", - "grid_view", - "group", - "group_add", - "group_off", - "group_remove", - "group_work", - "groups", - "groups_2", - "groups_3", - "h_mobiledata", - "h_plus_mobiledata", - "hail", - "handshake", - "handyman", - "hardware", - "hd", - "hdr_auto", - "hdr_auto_select", - "hdr_enhanced_select", - "hdr_off", - "hdr_off_select", - "hdr_on", - "hdr_on_select", - "hdr_plus", - "hdr_strong", - "hdr_weak", - "headphones", - "headphones_battery", - "headset", - "headset_mic", - "headset_off", - "healing", - "health_and_safety", - "hearing", - "hearing_disabled", - "heart_broken", - "heat_pump", - "height", - "help", - "help_center", - "help_outline", - "hevc", - "hexagon", - "hide_image", - "hide_source", - "high_quality", - "highlight", - "highlight_alt", - "highlight_off", - "hiking", - "history", - "history_edu", - "history_toggle_off", - "hive", - "hls", - "hls_off", - "holiday_village", - "home", - "home_max", - "home_mini", - "home_repair_service", - "home_work", - "horizontal_distribute", - "horizontal_rule", - "horizontal_split", - "hot_tub", - "hotel", - "hotel_class", - "hourglass_bottom", - "hourglass_disabled", - "hourglass_empty", - "hourglass_full", - "hourglass_top", - "house", - "house_siding", - "houseboat", - "how_to_reg", - "how_to_vote", - "html", - "http", - "https", - "hub", - "hvac", - "ice_skating", - "icecream", - "image", - "image_aspect_ratio", - "image_not_supported", - "image_search", - "imagesearch_roller", - "import_contacts", - "import_export", - "important_devices", - "inbox", - "incomplete_circle", - "indeterminate_check_box", - "info", - "input", - "insert_chart", - "insert_chart_outlined", - "insert_comment", - "insert_drive_file", - "insert_emoticon", - "insert_invitation", - "insert_link", - "insert_page_break", - "insert_photo", - "insights", - "install_desktop", - "install_mobile", - "integration_instructions", - "interests", - "interpreter_mode", - "inventory", - "inventory_2", - "invert_colors", - "invert_colors_off", - "ios_share", - "iron", - "iso", - "javascript", - "join_full", - "join_inner", - "join_left", - "join_right", - "kayaking", - "kebab_dining", - "key", - "key_off", - "keyboard", - "keyboard_alt", - "keyboard_arrow_down", - "keyboard_arrow_left", - "keyboard_arrow_right", - "keyboard_arrow_up", - "keyboard_backspace", - "keyboard_capslock", - "keyboard_command_key", - "keyboard_control_key", - "keyboard_double_arrow_down", - "keyboard_double_arrow_left", - "keyboard_double_arrow_right", - "keyboard_double_arrow_up", - "keyboard_hide", - "keyboard_option_key", - "keyboard_return", - "keyboard_tab", - "keyboard_voice", - "king_bed", - "kitchen", - "kitesurfing", - "label", - "label_important", - "label_off", - "lan", - "landscape", - "landslide", - "language", - "laptop", - "laptop_chromebook", - "laptop_mac", - "laptop_windows", - "last_page", - "launch", - "layers", - "layers_clear", - "leaderboard", - "leak_add", - "leak_remove", - "legend_toggle", - "lens", - "lens_blur", - "library_add", - "library_add_check", - "library_books", - "library_music", - "light", - "light_mode", - "lightbulb", - "lightbulb_circle", - "line_axis", - "line_style", - "line_weight", - "linear_scale", - "link", - "link_off", - "linked_camera", - "liquor", - "list", - "list_alt", - "live_help", - "live_tv", - "living", - "local_activity", - "local_airport", - "local_atm", - "local_bar", - "local_cafe", - "local_car_wash", - "local_convenience_store", - "local_dining", - "local_drink", - "local_fire_department", - "local_florist", - "local_gas_station", - "local_grocery_store", - "local_hospital", - "local_hotel", - "local_laundry_service", - "local_library", - "local_mall", - "local_movies", - "local_offer", - "local_parking", - "local_pharmacy", - "local_phone", - "local_pizza", - "local_play", - "local_police", - "local_post_office", - "local_printshop", - "local_see", - "local_shipping", - "local_taxi", - "location_city", - "location_disabled", - "location_off", - "location_on", - "location_searching", - "lock", - "lock_clock", - "lock_open", - "lock_person", - "lock_reset", - "login", - "logo_dev", - "logout", - "looks", - "looks_3", - "looks_4", - "looks_5", - "looks_6", - "looks_one", - "looks_two", - "loop", - "loupe", - "low_priority", - "loyalty", - "lte_mobiledata", - "lte_plus_mobiledata", - "luggage", - "lunch_dining", - "lyrics", - "macro_off", - "mail", - "mail_lock", - "mail_outline", - "male", - "man", - "man_2", - "man_3", - "man_4", - "manage_accounts", - "manage_history", - "manage_search", - "map", - "maps_home_work", - "maps_ugc", - "margin", - "mark_as_unread", - "mark_chat_read", - "mark_chat_unread", - "mark_email_read", - "mark_email_unread", - "mark_unread_chat_alt", - "markunread", - "markunread_mailbox", - "masks", - "maximize", - "media_bluetooth_off", - "media_bluetooth_on", - "mediation", - "medical_information", - "medical_services", - "medication", - "medication_liquid", - "meeting_room", - "memory", - "menu", - "menu_book", - "menu_open", - "merge", - "merge_type", - "message", - "mic", - "mic_external_off", - "mic_external_on", - "mic_none", - "mic_off", - "microwave", - "military_tech", - "minimize", - "minor_crash", - "miscellaneous_services", - "missed_video_call", - "mms", - "mobile_friendly", - "mobile_off", - "mobile_screen_share", - "mobiledata_off", - "mode", - "mode_comment", - "mode_edit", - "mode_edit_outline", - "mode_fan_off", - "mode_night", - "mode_of_travel", - "mode_standby", - "model_training", - "monetization_on", - "money", - "money_off", - "money_off_csred", - "monitor", - "monitor_heart", - "monitor_weight", - "monochrome_photos", - "mood", - "mood_bad", - "moped", - "more", - "more_horiz", - "more_time", - "more_vert", - "mosque", - "motion_photos_auto", - "motion_photos_off", - "motion_photos_on", - "motion_photos_pause", - "motion_photos_paused", - "mouse", - "move_down", - "move_to_inbox", - "move_up", - "movie", - "movie_creation", - "movie_filter", - "moving", - "mp", - "multiline_chart", - "multiple_stop", - "museum", - "music_note", - "music_off", - "music_video", - "my_location", - "nat", - "nature", - "nature_people", - "navigate_before", - "navigate_next", - "navigation", - "near_me", - "near_me_disabled", - "nearby_error", - "nearby_off", - "nest_cam_wired_stand", - "network_cell", - "network_check", - "network_locked", - "network_ping", - "network_wifi", - "network_wifi_1_bar", - "network_wifi_2_bar", - "network_wifi_3_bar", - "new_label", - "new_releases", - "newspaper", - "next_plan", - "next_week", - "nfc", - "night_shelter", - "nightlife", - "nightlight", - "nightlight_round", - "nights_stay", - "no_accounts", - "no_adult_content", - "no_backpack", - "no_cell", - "no_crash", - "no_drinks", - "no_encryption", - "no_encryption_gmailerrorred", - "no_flash", - "no_food", - "no_luggage", - "no_meals", - "no_meeting_room", - "no_photography", - "no_sim", - "no_stroller", - "no_transfer", - "noise_aware", - "noise_control_off", - "nordic_walking", - "north", - "north_east", - "north_west", - "not_accessible", - "not_interested", - "not_listed_location", - "not_started", - "note", - "note_add", - "note_alt", - "notes", - "notification_add", - "notification_important", - "notifications", - "notifications_active", - "notifications_none", - "notifications_off", - "notifications_paused", - "numbers", - "offline_bolt", - "offline_pin", - "offline_share", - "oil_barrel", - "on_device_training", - "ondemand_video", - "online_prediction", - "opacity", - "open_in_browser", - "open_in_full", - "open_in_new", - "open_in_new_off", - "open_with", - "other_houses", - "outbound", - "outbox", - "outdoor_grill", - "outlet", - "outlined_flag", - "output", - "padding", - "pages", - "pageview", - "paid", - "palette", - "pan_tool", - "pan_tool_alt", - "panorama", - "panorama_fish_eye", - "panorama_horizontal", - "panorama_horizontal_select", - "panorama_photosphere", - "panorama_photosphere_select", - "panorama_vertical", - "panorama_vertical_select", - "panorama_wide_angle", - "panorama_wide_angle_select", - "paragliding", - "park", - "party_mode", - "password", - "pattern", - "pause", - "pause_circle", - "pause_circle_filled", - "pause_circle_outline", - "pause_presentation", - "payment", - "payments", - "pedal_bike", - "pending", - "pending_actions", - "pentagon", - "people", - "people_alt", - "people_outline", - "percent", - "perm_camera_mic", - "perm_contact_calendar", - "perm_data_setting", - "perm_device_information", - "perm_identity", - "perm_media", - "perm_phone_msg", - "perm_scan_wifi", - "person", - "person_2", - "person_3", - "person_4", - "person_add", - "person_add_alt", - "person_add_alt_1", - "person_add_disabled", - "person_off", - "person_outline", - "person_pin", - "person_pin_circle", - "person_remove", - "person_remove_alt_1", - "person_search", - "personal_injury", - "personal_video", - "pest_control", - "pest_control_rodent", - "pets", - "phishing", - "phone", - "phone_android", - "phone_bluetooth_speaker", - "phone_callback", - "phone_disabled", - "phone_enabled", - "phone_forwarded", - "phone_iphone", - "phone_locked", - "phone_missed", - "phone_paused", - "phonelink", - "phonelink_erase", - "phonelink_lock", - "phonelink_off", - "phonelink_ring", - "phonelink_setup", - "photo", - "photo_album", - "photo_camera", - "photo_camera_back", - "photo_camera_front", - "photo_filter", - "photo_library", - "photo_size_select_actual", - "photo_size_select_large", - "photo_size_select_small", - "php", - "piano", - "piano_off", - "picture_as_pdf", - "picture_in_picture", - "picture_in_picture_alt", - "pie_chart", - "pie_chart_outline", - "pin", - "pin_drop", - "pin_end", - "pin_invoke", - "pinch", - "pivot_table_chart", - "pix", - "place", - "plagiarism", - "play_arrow", - "play_circle", - "play_circle_filled", - "play_circle_outline", - "play_disabled", - "play_for_work", - "play_lesson", - "playlist_add", - "playlist_add_check", - "playlist_add_check_circle", - "playlist_add_circle", - "playlist_play", - "playlist_remove", - "plumbing", - "plus_one", - "podcasts", - "point_of_sale", - "policy", - "poll", - "polyline", - "polymer", - "pool", - "portable_wifi_off", - "portrait", - "post_add", - "power", - "power_input", - "power_off", - "power_settings_new", - "precision_manufacturing", - "pregnant_woman", - "present_to_all", - "preview", - "price_change", - "price_check", - "print", - "print_disabled", - "priority_high", - "privacy_tip", - "private_connectivity", - "production_quantity_limits", - "propane", - "propane_tank", - "psychology", - "psychology_alt", - "public", - "public_off", - "publish", - "published_with_changes", - "punch_clock", - "push_pin", - "qr_code", - "qr_code_2", - "qr_code_scanner", - "query_builder", - "query_stats", - "question_answer", - "question_mark", - "queue", - "queue_music", - "queue_play_next", - "quickreply", - "quiz", - "r_mobiledata", - "radar", - "radio", - "radio_button_checked", - "radio_button_unchecked", - "railway_alert", - "ramen_dining", - "ramp_left", - "ramp_right", - "rate_review", - "raw_off", - "raw_on", - "read_more", - "real_estate_agent", - "receipt", - "receipt_long", - "recent_actors", - "recommend", - "record_voice_over", - "rectangle", - "recycling", - "redeem", - "redo", - "reduce_capacity", - "refresh", - "remember_me", - "remove", - "remove_circle", - "remove_circle_outline", - "remove_done", - "remove_from_queue", - "remove_moderator", - "remove_red_eye", - "remove_road", - "remove_shopping_cart", - "reorder", - "repartition", - "repeat", - "repeat_on", - "repeat_one", - "repeat_one_on", - "replay", - "replay_10", - "replay_30", - "replay_5", - "replay_circle_filled", - "reply", - "reply_all", - "report", - "report_gmailerrorred", - "report_off", - "report_problem", - "request_page", - "request_quote", - "reset_tv", - "restart_alt", - "restaurant", - "restaurant_menu", - "restore", - "restore_from_trash", - "restore_page", - "reviews", - "rice_bowl", - "ring_volume", - "rocket", - "rocket_launch", - "roller_shades", - "roller_shades_closed", - "roller_skating", - "roofing", - "room", - "room_preferences", - "room_service", - "rotate_90_degrees_ccw", - "rotate_90_degrees_cw", - "rotate_left", - "rotate_right", - "roundabout_left", - "roundabout_right", - "rounded_corner", - "route", - "router", - "rowing", - "rss_feed", - "rsvp", - "rtt", - "rule", - "rule_folder", - "run_circle", - "running_with_errors", - "rv_hookup", - "safety_check", - "safety_divider", - "sailing", - "sanitizer", - "satellite", - "satellite_alt", - "save", - "save_alt", - "save_as", - "saved_search", - "savings", - "scale", - "scanner", - "scatter_plot", - "schedule", - "schedule_send", - "schema", - "school", - "science", - "score", - "scoreboard", - "screen_lock_landscape", - "screen_lock_portrait", - "screen_lock_rotation", - "screen_rotation", - "screen_rotation_alt", - "screen_search_desktop", - "screen_share", - "screenshot", - "screenshot_monitor", - "scuba_diving", - "sd", - "sd_card", - "sd_card_alert", - "sd_storage", - "search", - "search_off", - "security", - "security_update", - "security_update_good", - "security_update_warning", - "segment", - "select_all", - "self_improvement", - "sell", - "send", - "send_and_archive", - "send_time_extension", - "send_to_mobile", - "sensor_door", - "sensor_occupied", - "sensor_window", - "sensors", - "sensors_off", - "sentiment_dissatisfied", - "sentiment_neutral", - "sentiment_satisfied", - "sentiment_satisfied_alt", - "sentiment_very_dissatisfied", - "sentiment_very_satisfied", - "set_meal", - "settings", - "settings_accessibility", - "settings_applications", - "settings_backup_restore", - "settings_bluetooth", - "settings_brightness", - "settings_cell", - "settings_ethernet", - "settings_input_antenna", - "settings_input_component", - "settings_input_composite", - "settings_input_hdmi", - "settings_input_svideo", - "settings_overscan", - "settings_phone", - "settings_power", - "settings_remote", - "settings_suggest", - "settings_system_daydream", - "settings_voice", - "severe_cold", - "shape_line", - "share", - "share_location", - "shield", - "shield_moon", - "shop", - "shop_2", - "shop_two", - "shopping_bag", - "shopping_basket", - "shopping_cart", - "shopping_cart_checkout", - "short_text", - "shortcut", - "show_chart", - "shower", - "shuffle", - "shuffle_on", - "shutter_speed", - "sick", - "sign_language", - "signal_cellular_0_bar", - "signal_cellular_4_bar", - "signal_cellular_alt", - "signal_cellular_alt_1_bar", - "signal_cellular_alt_2_bar", - "signal_cellular_connected_no_internet_0_bar", - "signal_cellular_connected_no_internet_4_bar", - "signal_cellular_no_sim", - "signal_cellular_nodata", - "signal_cellular_null", - "signal_cellular_off", - "signal_wifi_0_bar", - "signal_wifi_4_bar", - "signal_wifi_4_bar_lock", - "signal_wifi_bad", - "signal_wifi_connected_no_internet_4", - "signal_wifi_off", - "signal_wifi_statusbar_4_bar", - "signal_wifi_statusbar_connected_no_internet_4", - "signal_wifi_statusbar_null", - "signpost", - "sim_card", - "sim_card_alert", - "sim_card_download", - "single_bed", - "sip", - "skateboarding", - "skip_next", - "skip_previous", - "sledding", - "slideshow", - "slow_motion_video", - "smart_button", - "smart_display", - "smart_screen", - "smart_toy", - "smartphone", - "smoke_free", - "smoking_rooms", - "sms", - "sms_failed", - "snippet_folder", - "snooze", - "snowboarding", - "snowmobile", - "snowshoeing", - "soap", - "social_distance", - "solar_power", - "sort", - "sort_by_alpha", - "sos", - "soup_kitchen", - "source", - "south", - "south_america", - "south_east", - "south_west", - "spa", - "space_bar", - "space_dashboard", - "spatial_audio", - "spatial_audio_off", - "spatial_tracking", - "speaker", - "speaker_group", - "speaker_notes", - "speaker_notes_off", - "speaker_phone", - "speed", - "spellcheck", - "splitscreen", - "spoke", - "sports", - "sports_bar", - "sports_baseball", - "sports_basketball", - "sports_cricket", - "sports_esports", - "sports_football", - "sports_golf", - "sports_gymnastics", - "sports_handball", - "sports_hockey", - "sports_kabaddi", - "sports_martial_arts", - "sports_mma", - "sports_motorsports", - "sports_rugby", - "sports_score", - "sports_soccer", - "sports_tennis", - "sports_volleyball", - "square", - "square_foot", - "ssid_chart", - "stacked_bar_chart", - "stacked_line_chart", - "stadium", - "stairs", - "star", - "star_border", - "star_border_purple500", - "star_half", - "star_outline", - "star_purple500", - "star_rate", - "stars", - "start", - "stay_current_landscape", - "stay_current_portrait", - "stay_primary_landscape", - "stay_primary_portrait", - "sticky_note_2", - "stop", - "stop_circle", - "stop_screen_share", - "storage", - "store", - "store_mall_directory", - "storefront", - "storm", - "straight", - "straighten", - "stream", - "streetview", - "strikethrough_s", - "stroller", - "style", - "subdirectory_arrow_left", - "subdirectory_arrow_right", - "subject", - "subscript", - "subscriptions", - "subtitles", - "subtitles_off", - "subway", - "summarize", - "superscript", - "supervised_user_circle", - "supervisor_account", - "support", - "support_agent", - "surfing", - "surround_sound", - "swap_calls", - "swap_horiz", - "swap_horizontal_circle", - "swap_vert", - "swap_vertical_circle", - "swipe", - "swipe_down", - "swipe_down_alt", - "swipe_left", - "swipe_left_alt", - "swipe_right", - "swipe_right_alt", - "swipe_up", - "swipe_up_alt", - "swipe_vertical", - "switch_access_shortcut", - "switch_access_shortcut_add", - "switch_account", - "switch_camera", - "switch_left", - "switch_right", - "switch_video", - "synagogue", - "sync", - "sync_alt", - "sync_disabled", - "sync_lock", - "sync_problem", - "system_security_update", - "system_security_update_good", - "system_security_update_warning", - "system_update", - "system_update_alt", - "tab", - "tab_unselected", - "table_bar", - "table_chart", - "table_restaurant", - "table_rows", - "table_view", - "tablet", - "tablet_android", - "tablet_mac", - "tag", - "tag_faces", - "takeout_dining", - "tap_and_play", - "tapas", - "task", - "task_alt", - "taxi_alert", - "temple_buddhist", - "temple_hindu", - "terminal", - "terrain", - "text_decrease", - "text_fields", - "text_format", - "text_increase", - "text_rotate_up", - "text_rotate_vertical", - "text_rotation_angledown", - "text_rotation_angleup", - "text_rotation_down", - "text_rotation_none", - "text_snippet", - "textsms", - "texture", - "theater_comedy", - "theaters", - "thermostat", - "thermostat_auto", - "thumb_down", - "thumb_down_alt", - "thumb_down_off_alt", - "thumb_up", - "thumb_up_alt", - "thumb_up_off_alt", - "thumbs_up_down", - "thunderstorm", - "time_to_leave", - "timelapse", - "timeline", - "timer", - "timer_10", - "timer_10_select", - "timer_3", - "timer_3_select", - "timer_off", - "tips_and_updates", - "tire_repair", - "title", - "toc", - "today", - "toggle_off", - "toggle_on", - "token", - "toll", - "tonality", - "topic", - "tornado", - "touch_app", - "tour", - "toys", - "track_changes", - "traffic", - "train", - "tram", - "transcribe", - "transfer_within_a_station", - "transform", - "transgender", - "transit_enterexit", - "translate", - "travel_explore", - "trending_down", - "trending_flat", - "trending_up", - "trip_origin", - "troubleshoot", - "try", - "tsunami", - "tty", - "tune", - "tungsten", - "turn_left", - "turn_right", - "turn_sharp_left", - "turn_sharp_right", - "turn_slight_left", - "turn_slight_right", - "turned_in", - "turned_in_not", - "tv", - "tv_off", - "two_wheeler", - "type_specimen", - "u_turn_left", - "u_turn_right", - "umbrella", - "unarchive", - "undo", - "unfold_less", - "unfold_less_double", - "unfold_more", - "unfold_more_double", - "unpublished", - "unsubscribe", - "upcoming", - "update", - "update_disabled", - "upgrade", - "upload", - "upload_file", - "usb", - "usb_off", - "vaccines", - "vape_free", - "vaping_rooms", - "verified", - "verified_user", - "vertical_align_bottom", - "vertical_align_center", - "vertical_align_top", - "vertical_distribute", - "vertical_shades", - "vertical_shades_closed", - "vertical_split", - "vibration", - "video_call", - "video_camera_back", - "video_camera_front", - "video_chat", - "video_file", - "video_label", - "video_library", - "video_settings", - "video_stable", - "videocam", - "videocam_off", - "videogame_asset", - "videogame_asset_off", - "view_agenda", - "view_array", - "view_carousel", - "view_column", - "view_comfy", - "view_comfy_alt", - "view_compact", - "view_compact_alt", - "view_cozy", - "view_day", - "view_headline", - "view_in_ar", - "view_kanban", - "view_list", - "view_module", - "view_quilt", - "view_sidebar", - "view_stream", - "view_timeline", - "view_week", - "vignette", - "villa", - "visibility", - "visibility_off", - "voice_chat", - "voice_over_off", - "voicemail", - "volcano", - "volume_down", - "volume_mute", - "volume_off", - "volume_up", - "volunteer_activism", - "vpn_key", - "vpn_key_off", - "vpn_lock", - "vrpano", - "wallet", - "wallpaper", - "warehouse", - "warning", - "warning_amber", - "wash", - "watch", - "watch_later", - "watch_off", - "water", - "water_damage", - "water_drop", - "waterfall_chart", - "waves", - "waving_hand", - "wb_auto", - "wb_cloudy", - "wb_incandescent", - "wb_iridescent", - "wb_shade", - "wb_sunny", - "wb_twilight", - "wc", - "web", - "web_asset", - "web_asset_off", - "web_stories", - "webhook", - "weekend", - "west", - "whatshot", - "wheelchair_pickup", - "where_to_vote", - "widgets", - "width_full", - "width_normal", - "width_wide", - "wifi", - "wifi_1_bar", - "wifi_2_bar", - "wifi_calling", - "wifi_calling_3", - "wifi_channel", - "wifi_find", - "wifi_lock", - "wifi_off", - "wifi_password", - "wifi_protected_setup", - "wifi_tethering", - "wifi_tethering_error", - "wifi_tethering_off", - "wind_power", - "window", - "wine_bar", - "woman", - "woman_2", - "work", - "work_history", - "work_off", - "work_outline", - "workspace_premium", - "workspaces", - "wrap_text", - "wrong_location", - "wysiwyg", - "yard", - "youtube_searched_for", - "zoom_in", - "zoom_in_map", - "zoom_out", - "zoom_out_map" -]; - -type MaterialIcon = MaterialIcons[number]; - -export { MaterialIcon }; diff --git a/packages/themes/mfm/assets/material-icons/package.json b/packages/themes/mfm/assets/material-icons/package.json deleted file mode 100644 index dc904c46ee..0000000000 --- a/packages/themes/mfm/assets/material-icons/package.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "name": "material-icons", - "version": "1.13.4", - "description": "Latest icon fonts and CSS for self-hosting material design icons.", - "browser": "iconfont/material-icons.css", - "sass": "iconfont/material-icons.scss", - "types": "index.d.ts", - "files": [ - "index.d.ts", - "_data/versions.json", - "css/*.{css,scss}", - "iconfont/*.{css,scss,woff,woff2}" - ], - "scripts": { - "check": "npm run download:metadata -- --status --dry-run", - "update": "npm run download && npm run generate && npm run build", - "download": "npm run download:font && npm run download:metadata", - "download:font": "npx @material-design-icons/scripts download font --to iconfont", - "download:metadata": "npx @material-design-icons/scripts download metadata", - "generate": "npm run generate:types", - "generate:types": "npx @material-design-icons/scripts generate types --in .", - "build": "npm run build:codepoints && npm run build:css && npm run build:css:min", - "build:codepoints": "node scripts/codepoints.js", - "build:css": "sass --no-source-map --no-error-css css iconfont", - "build:css:min": "sass --style compressed --no-source-map --no-error-css css/material-icons.scss:css/material-icons.min.css" - }, - "devDependencies": { - "@material-design-icons/scripts": "0.5.1", - "opentype.js": "1.3.4", - "sass": "1.56.1" - }, - "license": "Apache-2.0", - "repository": { - "type": "git", - "url": "git+https://github.com/marella/material-icons.git" - }, - "bugs": { - "url": "https://github.com/marella/material-icons/issues" - }, - "homepage": "https://marella.github.io/material-icons/demo/", - "keywords": [ - "material-icons", - "material-design-icons", - "material-design", - "material", - "icons", - "iconfont", - "font", - "css", - "sass" - ] -} diff --git a/packages/themes/mfm/assets/material-symbols/LICENSE b/packages/themes/mfm/assets/material-symbols/LICENSE deleted file mode 100644 index d645695673..0000000000 --- a/packages/themes/mfm/assets/material-symbols/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/packages/themes/mfm/assets/material-symbols/README.md b/packages/themes/mfm/assets/material-symbols/README.md deleted file mode 100644 index 1813bdd1c8..0000000000 --- a/packages/themes/mfm/assets/material-symbols/README.md +++ /dev/null @@ -1,114 +0,0 @@ -# [material-symbols](https://github.com/marella/material-symbols/tree/main/material-symbols) - -Latest variable icon fonts and CSS for Material Symbols. - -> This package is automatically updated, so it will always have the latest icons from Google. - -> For SVGs, see [`@material-symbols/svg-400`](https://www.npmjs.com/package/@material-symbols/svg-400) - -- [Installation](#installation) -- [Usage](#usage) -- [Available Icons](#available-icons) - -## Installation - -Install the [latest version][releases] using: - -```sh -npm install material-symbols@latest -``` - -## Usage - -Import in JS (example: `src/index.js` in Create React App, `src/main.js` in Vue CLI): - -```js -import 'material-symbols'; -``` - -or import in CSS (example: `src/styles.css` in Angular CLI): - -```css -@import 'material-symbols'; -``` - -or import in HTML: - -```html - -``` - -To display an icon, use one of the following: - -```html -face -face -face -``` - -To customize the variable font axes (fill, weight, grade, and optical size), use: - -```css -.material-symbols-outlined { - font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48; -} -``` - -### Reducing Build Size - -The default `index.css` includes CSS for all fonts. This may cause build tools such as webpack to copy all fonts to the build directory even if you are not using all of them. To reduce the build size, import only the styles you need. For example, if you only need outlined icons, import `outlined.css` instead of the default `index.css`: - -```diff --import 'material-symbols'; -+import 'material-symbols/outlined.css'; -``` - -
    -Show all
    - -Icons | CSS | Sass -:--- | :--- | :--- -Outlined | outlined.css | outlined.scss -Rounded | rounded.css | rounded.scss -Sharp | sharp.css | sharp.scss - -
    - -### Using Sass - -Import in Sass (example: `src/styles.scss` in Angular CLI): - -```scss -@import 'material-symbols'; -``` - -If you are getting errors with webpack or Vue CLI, add this line before importing: - -```scss -$material-symbols-font-path: '~material-symbols/'; -``` - -### Using Angular `mat-icon` - -To display an icon, use one of the following: - -```html -face -face -face -``` - -## Available Icons - -See [demo]. - -## License - -Material Symbols are created by [Google](https://github.com/google/material-design-icons#license). - -> We have made these icons available for you to incorporate into your products under the [Apache License Version 2.0][license]. Feel free to remix and re-share these icons and documentation in your products. -We'd love attribution in your app's *about* screen, but it's not required. - -[releases]: https://github.com/marella/material-symbols/releases -[license]: https://github.com/marella/material-symbols/blob/main/material-symbols/LICENSE -[demo]: https://marella.github.io/material-symbols/demo/ diff --git a/packages/themes/mfm/assets/material-symbols/_core.scss b/packages/themes/mfm/assets/material-symbols/_core.scss deleted file mode 100644 index 55d198f0d4..0000000000 --- a/packages/themes/mfm/assets/material-symbols/_core.scss +++ /dev/null @@ -1,47 +0,0 @@ -$material-symbols-font-path: './' !default; - -// @see https://github.com/twbs/bootstrap/blob/main/scss/_functions.scss -@function material-symbols-str-replace($string, $search, $replace: '') { - $index: str-index($string, $search); - @if $index { - @return str-slice($string, 1, $index - 1) + $replace + - material-symbols-str-replace( - str-slice($string, $index + str-length($search)), - $search, - $replace - ); - } - @return $string; -} - -@mixin material-symbols-font($font-family) { - $class-name: to-lower-case($font-family); - $class-name: material-symbols-str-replace($class-name, ' ', '-'); - $font-file: $material-symbols-font-path + $class-name; - - @font-face { - font-family: $font-family; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url('#{$font-file}.woff2') format('woff2'); - } - - .#{$class-name} { - font-family: $font-family; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; // Support for all WebKit browsers - -moz-osx-font-smoothing: grayscale; // Support for Firefox - text-rendering: optimizeLegibility; // Support for Safari and Chrome - font-feature-settings: 'liga'; // Support for IE - } -} diff --git a/packages/themes/mfm/assets/material-symbols/index.css b/packages/themes/mfm/assets/material-symbols/index.css deleted file mode 100644 index c7b7555f4e..0000000000 --- a/packages/themes/mfm/assets/material-symbols/index.css +++ /dev/null @@ -1,74 +0,0 @@ -@font-face { - font-family: "Material Symbols Outlined"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-outlined.woff2") format("woff2"); -} -.material-symbols-outlined { - font-family: "Material Symbols Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -@font-face { - font-family: "Material Symbols Rounded"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-rounded.woff2") format("woff2"); -} -.material-symbols-rounded { - font-family: "Material Symbols Rounded"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} - -@font-face { - font-family: "Material Symbols Sharp"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-sharp.woff2") format("woff2"); -} -.material-symbols-sharp { - font-family: "Material Symbols Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-symbols/index.d.ts b/packages/themes/mfm/assets/material-symbols/index.d.ts deleted file mode 100644 index 352d8ffc33..0000000000 --- a/packages/themes/mfm/assets/material-symbols/index.d.ts +++ /dev/null @@ -1,2809 +0,0 @@ -type MaterialSymbols = [ - "123", - "360", - "10k", - "10mp", - "11mp", - "12mp", - "13mp", - "14mp", - "15mp", - "16mp", - "17mp", - "18_up_rating", - "18mp", - "19mp", - "1k", - "1k_plus", - "1x_mobiledata", - "1x_mobiledata_badge", - "20mp", - "21mp", - "22mp", - "23mp", - "24mp", - "2k", - "2k_plus", - "2mp", - "30fps", - "30fps_select", - "3d_rotation", - "3g_mobiledata", - "3g_mobiledata_badge", - "3k", - "3k_plus", - "3mp", - "3p", - "4g_mobiledata", - "4g_mobiledata_badge", - "4g_plus_mobiledata", - "4k", - "4k_plus", - "4mp", - "50mp", - "5g", - "5g_mobiledata_badge", - "5k", - "5k_plus", - "5mp", - "60fps", - "60fps_select", - "6_ft_apart", - "6k", - "6k_plus", - "6mp", - "7k", - "7k_plus", - "7mp", - "8k", - "8k_plus", - "8mp", - "9k", - "9k_plus", - "9mp", - "abc", - "ac_unit", - "accessibility", - "accessibility_new", - "accessible", - "accessible_forward", - "account_balance", - "account_balance_wallet", - "account_box", - "account_circle", - "account_circle_off", - "account_tree", - "activity_zone", - "acute", - "ad_off", - "ad_units", - "adb", - "add", - "add_a_photo", - "add_alert", - "add_box", - "add_business", - "add_call", - "add_card", - "add_chart", - "add_circle", - "add_comment", - "add_home", - "add_home_work", - "add_link", - "add_location", - "add_location_alt", - "add_moderator", - "add_notes", - "add_photo_alternate", - "add_reaction", - "add_road", - "add_shopping_cart", - "add_task", - "add_to_drive", - "add_to_home_screen", - "add_to_photos", - "add_to_queue", - "adf_scanner", - "adjust", - "admin_meds", - "admin_panel_settings", - "ads_click", - "agender", - "agriculture", - "air", - "air_freshener", - "air_purifier_gen", - "airline_seat_flat", - "airline_seat_flat_angled", - "airline_seat_individual_suite", - "airline_seat_legroom_extra", - "airline_seat_legroom_normal", - "airline_seat_legroom_reduced", - "airline_seat_recline_extra", - "airline_seat_recline_normal", - "airline_stops", - "airlines", - "airplane_ticket", - "airplanemode_active", - "airplanemode_inactive", - "airplay", - "airport_shuttle", - "airware", - "airwave", - "alarm", - "alarm_add", - "alarm_off", - "alarm_on", - "alarm_smart_wake", - "album", - "align_center", - "align_end", - "align_flex_center", - "align_flex_end", - "align_flex_start", - "align_horizontal_center", - "align_horizontal_left", - "align_horizontal_right", - "align_items_stretch", - "align_justify_center", - "align_justify_flex_end", - "align_justify_flex_start", - "align_justify_space_around", - "align_justify_space_between", - "align_justify_space_even", - "align_justify_stretch", - "align_self_stretch", - "align_space_around", - "align_space_between", - "align_space_even", - "align_start", - "align_stretch", - "align_vertical_bottom", - "align_vertical_center", - "align_vertical_top", - "all_inbox", - "all_inclusive", - "all_match", - "all_out", - "allergies", - "allergy", - "alt_route", - "alternate_email", - "altitude", - "ambient_screen", - "ambulance", - "amend", - "amp_stories", - "analytics", - "anchor", - "android", - "animation", - "aod", - "aod_tablet", - "aod_watch", - "apartment", - "api", - "apk_document", - "apk_install", - "app_badging", - "app_blocking", - "app_registration", - "app_shortcut", - "approval", - "approval_delegation", - "apps", - "apps_outage", - "architecture", - "archive", - "area_chart", - "arming_countdown", - "arrow_back", - "arrow_back_ios", - "arrow_back_ios_new", - "arrow_circle_down", - "arrow_circle_left", - "arrow_circle_right", - "arrow_circle_up", - "arrow_downward", - "arrow_drop_down", - "arrow_drop_down_circle", - "arrow_drop_up", - "arrow_forward", - "arrow_forward_ios", - "arrow_insert", - "arrow_left", - "arrow_outward", - "arrow_range", - "arrow_right", - "arrow_right_alt", - "arrow_selector_tool", - "arrow_top_left", - "arrow_top_right", - "arrow_upward", - "arrows_more_down", - "arrows_more_up", - "arrows_outward", - "art_track", - "article", - "aspect_ratio", - "assignment", - "assignment_add", - "assignment_ind", - "assignment_late", - "assignment_return", - "assignment_returned", - "assignment_turned_in", - "assist_walker", - "assistant", - "assistant_direction", - "assistant_navigation", - "assistant_on_hub", - "assured_workload", - "astrophotography_auto", - "astrophotography_off", - "atm", - "atr", - "attach_email", - "attach_file", - "attach_file_add", - "attach_money", - "attachment", - "attractions", - "attribution", - "audio_file", - "auto_activity_zone", - "auto_awesome", - "auto_awesome_mosaic", - "auto_awesome_motion", - "auto_delete", - "auto_detect_voice", - "auto_fix", - "auto_fix_high", - "auto_fix_normal", - "auto_fix_off", - "auto_graph", - "auto_label", - "auto_meeting_room", - "auto_mode", - "auto_read_pause", - "auto_read_play", - "auto_schedule", - "auto_stories", - "auto_videocam", - "autofps_select", - "autopause", - "autopay", - "autoplay", - "autorenew", - "autostop", - "av_timer", - "avg_pace", - "avg_time", - "azm", - "baby_changing_station", - "back_hand", - "back_to_tab", - "background_dot_large", - "background_grid_small", - "background_replace", - "backlight_high", - "backlight_low", - "backpack", - "backspace", - "backup", - "backup_table", - "badge", - "badge_critical_battery", - "bakery_dining", - "balance", - "balcony", - "ballot", - "bar_chart", - "bar_chart_4_bars", - "barcode", - "barcode_reader", - "barcode_scanner", - "barefoot", - "batch_prediction", - "bath_outdoor", - "bath_private", - "bath_public_large", - "bathroom", - "bathtub", - "battery_0_bar", - "battery_1_bar", - "battery_20", - "battery_2_bar", - "battery_30", - "battery_3_bar", - "battery_4_bar", - "battery_50", - "battery_5_bar", - "battery_60", - "battery_6_bar", - "battery_80", - "battery_90", - "battery_alert", - "battery_change", - "battery_charging_20", - "battery_charging_30", - "battery_charging_50", - "battery_charging_60", - "battery_charging_80", - "battery_charging_90", - "battery_charging_full", - "battery_error", - "battery_full", - "battery_full_alt", - "battery_horiz_000", - "battery_horiz_050", - "battery_horiz_075", - "battery_low", - "battery_plus", - "battery_profile", - "battery_saver", - "battery_unknown", - "battery_vert_005", - "battery_vert_020", - "battery_vert_050", - "battery_very_low", - "beach_access", - "bed", - "bedroom_baby", - "bedroom_child", - "bedroom_parent", - "bedtime", - "bedtime_off", - "beenhere", - "bento", - "bia", - "bike_scooter", - "biotech", - "blanket", - "blender", - "blind", - "blinds", - "blinds_closed", - "block", - "blood_pressure", - "bloodtype", - "bluetooth", - "bluetooth_connected", - "bluetooth_disabled", - "bluetooth_drive", - "bluetooth_searching", - "blur_circular", - "blur_linear", - "blur_medium", - "blur_off", - "blur_on", - "blur_short", - "body_fat", - "body_system", - "bolt", - "book", - "book_online", - "bookmark", - "bookmark_add", - "bookmark_added", - "bookmark_manager", - "bookmark_remove", - "bookmarks", - "border_all", - "border_bottom", - "border_clear", - "border_color", - "border_horizontal", - "border_inner", - "border_left", - "border_outer", - "border_right", - "border_style", - "border_top", - "border_vertical", - "bottom_panel_close", - "bottom_panel_open", - "bottom_right_click", - "boy", - "branding_watermark", - "breakfast_dining", - "breaking_news_alt_1", - "breastfeeding", - "brightness_1", - "brightness_2", - "brightness_3", - "brightness_4", - "brightness_5", - "brightness_6", - "brightness_7", - "brightness_auto", - "brightness_empty", - "brightness_high", - "brightness_low", - "brightness_medium", - "bring_your_own_ip", - "broadcast_on_home", - "broadcast_on_personal", - "broken_image", - "browse_activity", - "browse_gallery", - "browser_updated", - "brunch_dining", - "brush", - "bubble_chart", - "bug_report", - "build", - "build_circle", - "bungalow", - "burst_mode", - "bus_alert", - "business_center", - "business_chip", - "cabin", - "cable", - "cached", - "cake", - "cake_add", - "calculate", - "calendar_add_on", - "calendar_apps_script", - "calendar_month", - "calendar_today", - "calendar_view_day", - "calendar_view_month", - "calendar_view_week", - "call", - "call_end", - "call_made", - "call_merge", - "call_missed", - "call_missed_outgoing", - "call_received", - "call_split", - "call_to_action", - "camera", - "camera_enhance", - "camera_front", - "camera_indoor", - "camera_outdoor", - "camera_rear", - "camera_roll", - "camera_video", - "cameraswitch", - "campaign", - "camping", - "cancel", - "cancel_presentation", - "cancel_schedule_send", - "candlestick_chart", - "captive_portal", - "capture", - "car_crash", - "car_rental", - "car_repair", - "card_membership", - "card_travel", - "cardiology", - "carpenter", - "cases", - "casino", - "cast", - "cast_connected", - "cast_for_education", - "castle", - "category", - "celebration", - "cell_merge", - "cell_tower", - "cell_wifi", - "center_focus_strong", - "center_focus_weak", - "chair", - "chair_alt", - "chalet", - "change_circle", - "change_history", - "charger", - "charging_station", - "chart_data", - "chat", - "chat_add_on", - "chat_apps_script", - "chat_bubble", - "chat_error", - "chat_paste_go", - "check", - "check_box", - "check_box_outline_blank", - "check_circle", - "check_in_out", - "check_indeterminate_small", - "check_small", - "checklist", - "checklist_rtl", - "checkroom", - "cheer", - "chevron_left", - "chevron_right", - "child_care", - "child_friendly", - "chip_extraction", - "chrome_reader_mode", - "chromecast_2", - "chromecast_device", - "chronic", - "church", - "cinematic_blur", - "circle", - "circle_notifications", - "clarify", - "clean_hands", - "cleaning_bucket", - "cleaning_services", - "clear_all", - "clear_day", - "clear_night", - "climate_mini_split", - "clinical_notes", - "clock_loader_10", - "clock_loader_20", - "clock_loader_40", - "clock_loader_60", - "clock_loader_80", - "clock_loader_90", - "close", - "close_fullscreen", - "closed_caption", - "closed_caption_disabled", - "cloud", - "cloud_circle", - "cloud_done", - "cloud_download", - "cloud_off", - "cloud_queue", - "cloud_sync", - "cloud_upload", - "cloudy", - "cloudy_snowing", - "co2", - "co_present", - "code", - "code_blocks", - "code_off", - "coffee", - "coffee_maker", - "cognition", - "collections_bookmark", - "colorize", - "comment", - "comment_bank", - "comments_disabled", - "commit", - "communication", - "commute", - "compare", - "compare_arrows", - "compass_calibration", - "component_exchange", - "compost", - "compress", - "computer", - "conditions", - "confirmation_number", - "congenital", - "connect_without_contact", - "connected_tv", - "connecting_airports", - "construction", - "contact_emergency", - "contact_mail", - "contact_page", - "contact_phone", - "contact_support", - "contactless", - "contactless_off", - "contacts", - "content_copy", - "content_cut", - "content_paste", - "content_paste_go", - "content_paste_off", - "content_paste_search", - "contrast", - "contrast_rtl_off", - "control_camera", - "control_point_duplicate", - "controller_gen", - "conversion_path", - "conversion_path_off", - "conveyor_belt", - "cookie", - "cookie_off", - "cooking", - "cool_to_dry", - "copy_all", - "copyright", - "coronavirus", - "corporate_fare", - "cottage", - "counter_0", - "counter_1", - "counter_2", - "counter_3", - "counter_4", - "counter_5", - "counter_6", - "counter_7", - "counter_8", - "counter_9", - "countertops", - "create_new_folder", - "credit_card", - "credit_card_off", - "credit_score", - "crib", - "crisis_alert", - "crop", - "crop_16_9", - "crop_3_2", - "crop_5_4", - "crop_7_5", - "crop_free", - "crop_landscape", - "crop_portrait", - "crop_rotate", - "crop_square", - "cruelty_free", - "css", - "currency_bitcoin", - "currency_exchange", - "currency_franc", - "currency_lira", - "currency_pound", - "currency_ruble", - "currency_rupee", - "currency_yen", - "currency_yuan", - "curtains", - "curtains_closed", - "cut", - "cycle", - "cyclone", - "dangerous", - "dark_mode", - "dashboard", - "dashboard_customize", - "data_alert", - "data_array", - "data_check", - "data_exploration", - "data_info_alert", - "data_object", - "data_saver_on", - "data_thresholding", - "data_usage", - "database", - "dataset", - "dataset_linked", - "date_range", - "deblur", - "deceased", - "decimal_decrease", - "decimal_increase", - "deck", - "dehaze", - "delete", - "delete_forever", - "delete_sweep", - "demography", - "density_large", - "density_medium", - "density_small", - "dentistry", - "departure_board", - "deployed_code", - "dermatology", - "description", - "deselect", - "design_services", - "desk", - "deskphone", - "desktop_access_disabled", - "desktop_mac", - "desktop_windows", - "details", - "detection_and_zone", - "detector", - "detector_alarm", - "detector_battery", - "detector_co", - "detector_offline", - "detector_smoke", - "detector_status", - "developer_board", - "developer_board_off", - "developer_mode", - "device_hub", - "device_reset", - "device_thermostat", - "device_unknown", - "devices", - "devices_fold", - "devices_off", - "devices_other", - "devices_wearables", - "dew_point", - "diagnosis", - "dialer_sip", - "dialpad", - "diamond", - "difference", - "digital_out_of_home", - "dining", - "dinner_dining", - "directions", - "directions_alt", - "directions_alt_off", - "directions_bike", - "directions_boat", - "directions_bus", - "directions_car", - "directions_off", - "directions_railway", - "directions_run", - "directions_subway", - "directions_walk", - "dirty_lens", - "disabled_by_default", - "disabled_visible", - "disc_full", - "discover_tune", - "dishwasher_gen", - "display_external_input", - "display_settings", - "distance", - "diversity_1", - "diversity_2", - "diversity_3", - "diversity_4", - "dns", - "do_not_disturb_off", - "do_not_disturb_on", - "do_not_disturb_on_total_silence", - "do_not_step", - "do_not_touch", - "dock", - "dock_to_bottom", - "dock_to_left", - "dock_to_right", - "docs_add_on", - "docs_apps_script", - "document_scanner", - "domain", - "domain_add", - "domain_disabled", - "domain_verification", - "domain_verification_off", - "done", - "done_all", - "done_outline", - "donut_large", - "donut_small", - "door_back", - "door_front", - "door_open", - "door_sensor", - "door_sliding", - "doorbell", - "doorbell_3p", - "doorbell_chime", - "double_arrow", - "downhill_skiing", - "download", - "download_done", - "download_for_offline", - "downloading", - "draft", - "draft_orders", - "drafts", - "drag_click", - "drag_handle", - "drag_indicator", - "drag_pan", - "draw", - "draw_abstract", - "draw_collage", - "dresser", - "drive_file_move", - "drive_folder_upload", - "dry", - "dry_cleaning", - "dual_screen", - "duo", - "dvr", - "dynamic_feed", - "dynamic_form", - "e911_avatar", - "e911_emergency", - "e_mobiledata", - "e_mobiledata_badge", - "earbuds", - "earbuds_battery", - "early_on", - "east", - "ecg", - "ecg_heart", - "eco", - "eda", - "edgesensor_high", - "edgesensor_low", - "edit", - "edit_attributes", - "edit_calendar", - "edit_document", - "edit_location", - "edit_location_alt", - "edit_note", - "edit_notifications", - "edit_off", - "edit_road", - "edit_square", - "egg", - "egg_alt", - "eject", - "elderly", - "elderly_woman", - "electric_bike", - "electric_bolt", - "electric_car", - "electric_meter", - "electric_moped", - "electric_rickshaw", - "electric_scooter", - "electrical_services", - "elevation", - "elevator", - "emergency", - "emergency_heat", - "emergency_home", - "emergency_recording", - "emergency_share", - "emoji_flags", - "emoji_food_beverage", - "emoji_nature", - "emoji_objects", - "emoji_people", - "emoji_symbols", - "emoji_transportation", - "emoticon", - "empty_dashboard", - "enable", - "endocrinology", - "energy_program_saving", - "energy_program_time_used", - "energy_savings_leaf", - "engineering", - "enhanced_encryption", - "ent", - "equal", - "equalizer", - "error", - "error_med", - "escalator", - "escalator_warning", - "euro", - "euro_symbol", - "ev_charger", - "ev_mobiledata_badge", - "ev_shadow", - "ev_station", - "event", - "event_available", - "event_busy", - "event_list", - "event_note", - "event_repeat", - "event_seat", - "event_upcoming", - "exclamation", - "exercise", - "exit_to_app", - "expand", - "expand_circle_down", - "expand_content", - "expand_less", - "expand_more", - "explicit", - "explore", - "explore_off", - "explosion", - "export_notes", - "exposure", - "exposure_neg_1", - "exposure_neg_2", - "exposure_plus_1", - "exposure_plus_2", - "exposure_zero", - "extension", - "extension_off", - "eyeglasses", - "face", - "face_2", - "face_3", - "face_4", - "face_5", - "face_6", - "face_retouching_natural", - "face_retouching_off", - "fact_check", - "factory", - "familiar_face_and_zone", - "family_history", - "family_restroom", - "fast_forward", - "fast_rewind", - "fastfood", - "faucet", - "favorite", - "fax", - "featured_play_list", - "featured_video", - "feed", - "female", - "femur", - "femur_alt", - "fence", - "fertile", - "festival", - "fiber_dvr", - "fiber_manual_record", - "fiber_new", - "fiber_pin", - "fiber_smart_record", - "file_copy", - "file_download_done", - "file_download_off", - "file_open", - "file_present", - "file_upload_off", - "filter", - "filter_1", - "filter_2", - "filter_3", - "filter_4", - "filter_5", - "filter_6", - "filter_7", - "filter_8", - "filter_9", - "filter_9_plus", - "filter_alt", - "filter_alt_off", - "filter_b_and_w", - "filter_center_focus", - "filter_drama", - "filter_frames", - "filter_hdr", - "filter_list", - "filter_list_off", - "filter_none", - "filter_tilt_shift", - "filter_vintage", - "finance_chip", - "find_in_page", - "find_replace", - "fingerprint", - "fire_extinguisher", - "fire_hydrant", - "fire_truck", - "fireplace", - "first_page", - "fit_page", - "fit_screen", - "fit_width", - "fitness_center", - "flag", - "flag_circle", - "flaky", - "flare", - "flash_auto", - "flash_off", - "flash_on", - "flashlight_off", - "flashlight_on", - "flatware", - "flex_direction", - "flex_no_wrap", - "flex_wrap", - "flight", - "flight_class", - "flight_land", - "flight_takeoff", - "flip", - "flip_camera_android", - "flip_camera_ios", - "flip_to_back", - "flip_to_front", - "flood", - "floor", - "floor_lamp", - "flowsheet", - "fluid", - "fluid_balance", - "fluid_med", - "fluorescent", - "flutter_dash", - "fmd_bad", - "foggy", - "folder", - "folder_copy", - "folder_delete", - "folder_managed", - "folder_off", - "folder_open", - "folder_shared", - "folder_special", - "folder_supervised", - "folder_zip", - "follow_the_signs", - "font_download", - "font_download_off", - "food_bank", - "foot_bones", - "footprint", - "forest", - "fork_left", - "fork_right", - "forklift", - "format_align_center", - "format_align_justify", - "format_align_left", - "format_align_right", - "format_bold", - "format_clear", - "format_color_fill", - "format_color_reset", - "format_color_text", - "format_h1", - "format_h2", - "format_h3", - "format_h4", - "format_h5", - "format_h6", - "format_image_left", - "format_image_right", - "format_indent_decrease", - "format_indent_increase", - "format_ink_highlighter", - "format_italic", - "format_letter_spacing", - "format_line_spacing", - "format_list_bulleted", - "format_list_bulleted_add", - "format_list_numbered", - "format_list_numbered_rtl", - "format_overline", - "format_paint", - "format_paragraph", - "format_quote", - "format_shapes", - "format_size", - "format_strikethrough", - "format_text_clip", - "format_text_overflow", - "format_text_wrap", - "format_textdirection_l_to_r", - "format_textdirection_r_to_l", - "format_underlined", - "format_underlined_squiggle", - "forms_add_on", - "forms_apps_script", - "fort", - "forum", - "forward", - "forward_10", - "forward_30", - "forward_5", - "forward_circle", - "forward_media", - "forward_to_inbox", - "foundation", - "frame_inspect", - "frame_person", - "frame_person_off", - "frame_reload", - "frame_source", - "free_cancellation", - "front_hand", - "front_loader", - "full_stacked_bar_chart", - "fullscreen", - "fullscreen_exit", - "function", - "functions", - "g_mobiledata", - "g_mobiledata_badge", - "gallery_thumbnail", - "gamepad", - "garage", - "garage_home", - "garden_cart", - "gas_meter", - "gastroenterology", - "gate", - "gavel", - "generating_tokens", - "genetics", - "gesture", - "gif", - "gif_box", - "girl", - "gite", - "glass_cup", - "globe_asia", - "globe_uk", - "glucose", - "glyphs", - "go_to_line", - "golf_course", - "google_wifi", - "gpp_bad", - "gpp_maybe", - "grade", - "gradient", - "grading", - "grain", - "graphic_eq", - "grass", - "grid_3x3", - "grid_4x4", - "grid_goldenratio", - "grid_guides", - "grid_off", - "grid_on", - "grid_view", - "group", - "group_add", - "group_off", - "group_remove", - "group_work", - "grouped_bar_chart", - "groups", - "groups_2", - "groups_3", - "gynecology", - "h_mobiledata", - "h_mobiledata_badge", - "h_plus_mobiledata", - "h_plus_mobiledata_badge", - "hail", - "hand_bones", - "hand_gesture", - "handshake", - "handyman", - "hard_drive", - "hard_drive_2", - "hardware", - "hd", - "hdr_auto", - "hdr_auto_select", - "hdr_enhanced_select", - "hdr_off", - "hdr_off_select", - "hdr_on", - "hdr_on_select", - "hdr_plus", - "hdr_strong", - "hdr_weak", - "headphones", - "headphones_battery", - "headset_mic", - "headset_off", - "healing", - "health_and_safety", - "health_metrics", - "heap_snapshot_large", - "heap_snapshot_multiple", - "heap_snapshot_thumbnail", - "hearing", - "hearing_disabled", - "heart_broken", - "heart_minus", - "heart_plus", - "heat_pump", - "heat_pump_balance", - "height", - "help", - "help_center", - "help_clinic", - "hematology", - "hevc", - "hexagon", - "hide", - "hide_image", - "hide_source", - "high_density", - "high_quality", - "highlight", - "highlighter_size_1", - "highlighter_size_2", - "highlighter_size_3", - "highlighter_size_4", - "highlighter_size_5", - "hiking", - "history", - "history_edu", - "history_toggle_off", - "hive", - "hls", - "hls_off", - "holiday_village", - "home", - "home_app_logo", - "home_health", - "home_iot_device", - "home_max", - "home_max_dots", - "home_mini", - "home_pin", - "home_repair_service", - "home_speaker", - "home_storage", - "home_work", - "horizontal_distribute", - "horizontal_rule", - "horizontal_split", - "hot_tub", - "hotel", - "hotel_class", - "hourglass_bottom", - "hourglass_disabled", - "hourglass_empty", - "hourglass_full", - "hourglass_top", - "house", - "house_siding", - "house_with_shield", - "houseboat", - "how_to_reg", - "how_to_vote", - "hr_resting", - "html", - "http", - "hub", - "humerus", - "humerus_alt", - "humidity_high", - "humidity_low", - "humidity_mid", - "humidity_percentage", - "hvac", - "ice_skating", - "icecream", - "iframe", - "iframe_off", - "image", - "image_aspect_ratio", - "image_not_supported", - "image_search", - "imagesearch_roller", - "imagesmode", - "immunology", - "import_contacts", - "important_devices", - "in_home_mode", - "inactive_order", - "inbox", - "inbox_customize", - "incomplete_circle", - "indeterminate_check_box", - "info", - "infrared", - "inpatient", - "input", - "input_circle", - "insert_chart", - "insert_page_break", - "insert_text", - "insights", - "install_desktop", - "install_mobile", - "integration_instructions", - "interactive_space", - "interests", - "interpreter_mode", - "inventory", - "inventory_2", - "invert_colors", - "invert_colors_off", - "ios_share", - "iron", - "javascript", - "join", - "join_full", - "join_inner", - "join_left", - "join_right", - "jump_to_element", - "kayaking", - "kebab_dining", - "kettle", - "key", - "key_off", - "key_visualizer", - "keyboard", - "keyboard_alt", - "keyboard_arrow_down", - "keyboard_arrow_left", - "keyboard_arrow_right", - "keyboard_arrow_up", - "keyboard_backspace", - "keyboard_capslock", - "keyboard_capslock_badge", - "keyboard_command_key", - "keyboard_control_key", - "keyboard_double_arrow_down", - "keyboard_double_arrow_left", - "keyboard_double_arrow_right", - "keyboard_double_arrow_up", - "keyboard_external_input", - "keyboard_full", - "keyboard_hide", - "keyboard_onscreen", - "keyboard_option_key", - "keyboard_previous_language", - "keyboard_return", - "keyboard_tab", - "keyboard_tab_rtl", - "keyboard_voice", - "king_bed", - "kitchen", - "kitesurfing", - "lab_panel", - "lab_profile", - "lab_research", - "label", - "label_important", - "label_off", - "labs", - "lan", - "landscape", - "landslide", - "language", - "language_chinese_array", - "language_chinese_cangjie", - "language_chinese_dayi", - "language_chinese_pinyin", - "language_chinese_quick", - "language_chinese_wubi", - "language_french", - "language_gb_english", - "language_international", - "language_korean_latin", - "language_pinyin", - "language_us", - "language_us_colemak", - "language_us_dvorak", - "laps", - "laptop_chromebook", - "laptop_mac", - "laptop_windows", - "last_page", - "launcher_assistant_on", - "laundry", - "layers", - "layers_clear", - "lda", - "leaderboard", - "leak_add", - "leak_remove", - "left_click", - "left_panel_close", - "left_panel_open", - "legend_toggle", - "lens", - "lens_blur", - "letter_switch", - "library_add", - "library_add_check", - "library_books", - "library_music", - "lift_to_talk", - "light", - "light_group", - "light_mode", - "lightbulb", - "lightbulb_circle", - "line_axis", - "line_curve", - "line_end", - "line_end_arrow", - "line_end_arrow_notch", - "line_end_circle", - "line_end_diamond", - "line_end_square", - "line_start", - "line_start_arrow", - "line_start_arrow_notch", - "line_start_circle", - "line_start_diamond", - "line_start_square", - "line_style", - "line_weight", - "linear_scale", - "link", - "link_off", - "linked_camera", - "liquor", - "list", - "list_alt", - "list_alt_add", - "live_help", - "live_tv", - "living", - "local_activity", - "local_atm", - "local_bar", - "local_cafe", - "local_car_wash", - "local_convenience_store", - "local_dining", - "local_drink", - "local_fire_department", - "local_florist", - "local_gas_station", - "local_hospital", - "local_laundry_service", - "local_library", - "local_mall", - "local_parking", - "local_pharmacy", - "local_pizza", - "local_police", - "local_post_office", - "local_see", - "local_shipping", - "local_taxi", - "location_automation", - "location_away", - "location_chip", - "location_city", - "location_disabled", - "location_home", - "location_off", - "location_on", - "location_searching", - "lock", - "lock_clock", - "lock_open", - "lock_person", - "lock_reset", - "login", - "logo_dev", - "logout", - "looks", - "looks_3", - "looks_4", - "looks_5", - "looks_6", - "looks_one", - "looks_two", - "loupe", - "low_density", - "low_priority", - "loyalty", - "lte_mobiledata", - "lte_mobiledata_badge", - "lte_plus_mobiledata", - "lte_plus_mobiledata_badge", - "luggage", - "lunch_dining", - "lyrics", - "macro_auto", - "macro_off", - "magic_button", - "magic_exchange", - "magic_tether", - "magnification_large", - "magnification_small", - "magnify_docked", - "magnify_fullscreen", - "mail", - "mail_lock", - "male", - "man", - "man_2", - "man_3", - "man_4", - "manage_accounts", - "manage_history", - "manage_search", - "map", - "maps_ugc", - "margin", - "mark_as_unread", - "mark_chat_read", - "mark_chat_unread", - "mark_email_read", - "mark_email_unread", - "mark_unread_chat_alt", - "markunread_mailbox", - "masks", - "match_case", - "match_word", - "matter", - "maximize", - "measuring_tape", - "media_bluetooth_off", - "media_bluetooth_on", - "media_link", - "mediation", - "medical_information", - "medical_mask", - "medical_services", - "medication", - "medication_liquid", - "meeting_room", - "memory", - "memory_alt", - "menstrual_health", - "menu", - "menu_book", - "menu_open", - "merge", - "merge_type", - "metabolism", - "mfg_nest_yale_lock", - "mic", - "mic_external_off", - "mic_external_on", - "mic_off", - "microbiology", - "microwave", - "microwave_gen", - "military_tech", - "mindfulness", - "minimize", - "minor_crash", - "missed_video_call", - "mixture_med", - "mms", - "mobile_friendly", - "mobile_off", - "mobile_screen_share", - "mobiledata_off", - "mode_comment", - "mode_cool", - "mode_cool_off", - "mode_fan", - "mode_fan_off", - "mode_heat", - "mode_heat_cool", - "mode_heat_off", - "mode_night", - "mode_of_travel", - "mode_off_on", - "mode_standby", - "model_training", - "monetization_on", - "money", - "money_off", - "monitor", - "monitor_heart", - "monitor_weight", - "monitor_weight_gain", - "monitor_weight_loss", - "monitoring", - "monochrome_photos", - "mood", - "mood_bad", - "mop", - "more", - "more_down", - "more_horiz", - "more_time", - "more_up", - "more_vert", - "mosque", - "motion_blur", - "motion_mode", - "motion_photos_auto", - "motion_photos_off", - "motion_photos_paused", - "motion_sensor_active", - "motion_sensor_alert", - "motion_sensor_idle", - "motion_sensor_urgent", - "motorcycle", - "mouse", - "move", - "move_down", - "move_group", - "move_location", - "move_selection_down", - "move_selection_left", - "move_selection_right", - "move_selection_up", - "move_to_inbox", - "move_up", - "movie", - "movie_edit", - "movie_filter", - "moving", - "moving_beds", - "moving_ministry", - "mp", - "multicooker", - "multiline_chart", - "multiple_stop", - "museum", - "music_note", - "music_off", - "music_video", - "my_location", - "nat", - "nature", - "nature_people", - "navigate_before", - "navigate_next", - "navigation", - "near_me", - "near_me_disabled", - "nearby_error", - "nearby_off", - "nephrology", - "nest_audio", - "nest_cam_floodlight", - "nest_cam_indoor", - "nest_cam_iq", - "nest_cam_iq_outdoor", - "nest_cam_magnet_mount", - "nest_cam_outdoor", - "nest_cam_stand", - "nest_cam_wall_mount", - "nest_cam_wired_stand", - "nest_clock_farsight_analog", - "nest_clock_farsight_digital", - "nest_connect", - "nest_detect", - "nest_display", - "nest_display_max", - "nest_doorbell_visitor", - "nest_eco_leaf", - "nest_farsight_weather", - "nest_found_savings", - "nest_heat_link_e", - "nest_heat_link_gen_3", - "nest_hello_doorbell", - "nest_locator_tag", - "nest_mini", - "nest_multi_room", - "nest_remote", - "nest_remote_comfort_sensor", - "nest_secure_alarm", - "nest_sunblock", - "nest_tag", - "nest_thermostat_e_eu", - "nest_thermostat_gen_3", - "nest_thermostat_sensor", - "nest_thermostat_sensor_eu", - "nest_thermostat_zirconium_eu", - "nest_true_radiant", - "nest_wake_on_approach", - "nest_wake_on_press", - "nest_wifi_gale", - "nest_wifi_mistral", - "nest_wifi_point", - "nest_wifi_point_vento", - "nest_wifi_router", - "network_cell", - "network_check", - "network_locked", - "network_manage", - "network_ping", - "network_wifi", - "network_wifi_1_bar", - "network_wifi_2_bar", - "network_wifi_3_bar", - "neurology", - "new_label", - "new_releases", - "new_window", - "newspaper", - "next_plan", - "next_week", - "nfc", - "night_shelter", - "night_sight_auto", - "night_sight_auto_off", - "night_sight_max", - "nightlife", - "nightlight", - "nightlight_off", - "nights_stay", - "no_accounts", - "no_adult_content", - "no_backpack", - "no_crash", - "no_drinks", - "no_encryption", - "no_flash", - "no_food", - "no_luggage", - "no_meals", - "no_meeting_room", - "no_photography", - "no_sim", - "no_stroller", - "no_transfer", - "noise_aware", - "noise_control_off", - "noise_control_on", - "nordic_walking", - "north", - "north_east", - "north_west", - "not_accessible", - "not_listed_location", - "not_started", - "note", - "note_add", - "note_alt", - "notes", - "notification_add", - "notification_important", - "notifications", - "notifications_active", - "notifications_off", - "notifications_paused", - "numbers", - "nutrition", - "offline_bolt", - "offline_pin", - "offline_share", - "oil_barrel", - "on_device_training", - "oncology", - "online_prediction", - "onsen", - "opacity", - "open_in_browser", - "open_in_full", - "open_in_new", - "open_in_new_down", - "open_in_new_off", - "open_with", - "ophthalmology", - "oral_disease", - "order_approve", - "order_play", - "orthopedics", - "other_admission", - "other_houses", - "outbound", - "outbox", - "outdoor_garden", - "outdoor_grill", - "outgoing_mail", - "outlet", - "outpatient", - "outpatient_med", - "output", - "output_circle", - "oven_gen", - "overview", - "overview_key", - "oxygen_saturation", - "pace", - "pacemaker", - "package", - "padding", - "pages", - "pageview", - "paid", - "palette", - "pallet", - "pan_tool", - "pan_tool_alt", - "panorama", - "panorama_fish_eye", - "panorama_horizontal", - "panorama_photosphere", - "panorama_vertical", - "panorama_wide_angle", - "paragliding", - "park", - "partly_cloudy_day", - "partly_cloudy_night", - "partner_exchange", - "party_mode", - "password", - "patient_list", - "pattern", - "pause", - "pause_circle", - "pause_presentation", - "payments", - "pedal_bike", - "pediatrics", - "pen_size_1", - "pen_size_2", - "pen_size_3", - "pen_size_4", - "pen_size_5", - "pending", - "pending_actions", - "pentagon", - "percent", - "pergola", - "perm_camera_mic", - "perm_contact_calendar", - "perm_data_setting", - "perm_device_information", - "perm_media", - "perm_phone_msg", - "perm_scan_wifi", - "person", - "person_2", - "person_3", - "person_4", - "person_add", - "person_add_disabled", - "person_celebrate", - "person_off", - "person_pin", - "person_pin_circle", - "person_play", - "person_remove", - "person_search", - "personal_injury", - "pest_control", - "pest_control_rodent", - "pets", - "phishing", - "phone_android", - "phone_bluetooth_speaker", - "phone_callback", - "phone_disabled", - "phone_enabled", - "phone_forwarded", - "phone_in_talk", - "phone_iphone", - "phone_locked", - "phone_missed", - "phone_paused", - "phonelink_erase", - "phonelink_lock", - "phonelink_off", - "phonelink_ring", - "phonelink_ring_off", - "phonelink_setup", - "photo", - "photo_album", - "photo_camera", - "photo_camera_back", - "photo_camera_front", - "photo_filter", - "photo_frame", - "photo_library", - "photo_size_select_large", - "photo_size_select_small", - "php", - "physical_therapy", - "piano", - "piano_off", - "picture_as_pdf", - "picture_in_picture", - "picture_in_picture_alt", - "pie_chart", - "pill", - "pill_off", - "pin", - "pin_drop", - "pin_end", - "pin_invoke", - "pinch", - "pinch_zoom_in", - "pinch_zoom_out", - "pip_exit", - "pivot_table_chart", - "place_item", - "plagiarism", - "play_arrow", - "play_circle", - "play_disabled", - "play_for_work", - "play_lesson", - "play_pause", - "play_shapes", - "playlist_add", - "playlist_add_check", - "playlist_add_check_circle", - "playlist_add_circle", - "playlist_play", - "playlist_remove", - "plumbing", - "podcasts", - "podiatry", - "podium", - "point_of_sale", - "point_scan", - "policy", - "polyline", - "polymer", - "pool", - "portable_wifi_off", - "position_bottom_left", - "position_bottom_right", - "position_top_right", - "post_add", - "potted_plant", - "power", - "power_input", - "power_off", - "power_rounded", - "power_settings_new", - "prayer_times", - "precision_manufacturing", - "pregnant_woman", - "preliminary", - "prescriptions", - "present_to_all", - "preview", - "preview_off", - "price_change", - "price_check", - "print", - "print_add", - "print_connect", - "print_disabled", - "print_error", - "priority", - "priority_high", - "privacy", - "privacy_tip", - "private_connectivity", - "problem", - "procedure", - "process_chart", - "production_quantity_limits", - "productivity", - "propane", - "propane_tank", - "psychiatry", - "psychology", - "psychology_alt", - "public", - "public_off", - "publish", - "published_with_changes", - "pulmonology", - "punch_clock", - "push_pin", - "qr_code", - "qr_code_2", - "qr_code_scanner", - "query_stats", - "question_exchange", - "question_mark", - "queue_music", - "queue_play_next", - "quick_phrases", - "quick_reference", - "quick_reference_all", - "quickreply", - "quiet_time", - "quiet_time_active", - "quiz", - "r_mobiledata", - "radar", - "radio", - "radio_button_checked", - "radio_button_unchecked", - "radiology", - "railway_alert", - "rainy", - "ramen_dining", - "ramp_left", - "ramp_right", - "range_hood", - "rate_review", - "raw_off", - "raw_on", - "read_more", - "readiness_score", - "real_estate_agent", - "rear_camera", - "rebase", - "rebase_edit", - "receipt", - "receipt_long", - "recent_actors", - "recent_patient", - "recommend", - "record_voice_over", - "rectangle", - "recycling", - "redeem", - "redo", - "reduce_capacity", - "refresh", - "regular_expression", - "relax", - "remember_me", - "remote_gen", - "remove", - "remove_done", - "remove_from_queue", - "remove_moderator", - "remove_road", - "remove_shopping_cart", - "reopen_window", - "reorder", - "repartition", - "repeat", - "repeat_on", - "repeat_one", - "repeat_one_on", - "replay", - "replay_10", - "replay_30", - "replay_5", - "reply", - "reply_all", - "report", - "report_off", - "request_page", - "request_quote", - "reset_image", - "reset_tv", - "resize", - "respiratory_rate", - "restart_alt", - "restaurant", - "restaurant_menu", - "restore_from_trash", - "restore_page", - "resume", - "reviews", - "rheumatology", - "rib_cage", - "rice_bowl", - "right_click", - "right_panel_close", - "right_panel_open", - "ring_volume", - "robot", - "rocket", - "rocket_launch", - "roller_shades", - "roller_shades_closed", - "roller_skating", - "roofing", - "room_preferences", - "room_service", - "rotate_90_degrees_ccw", - "rotate_90_degrees_cw", - "rotate_left", - "rotate_right", - "roundabout_left", - "roundabout_right", - "rounded_corner", - "route", - "router", - "routine", - "rowing", - "rss_feed", - "rsvp", - "rtt", - "rule", - "rule_folder", - "run_circle", - "running_with_errors", - "rv_hookup", - "safety_check", - "safety_divider", - "sailing", - "salinity", - "sanitizer", - "satellite", - "satellite_alt", - "sauna", - "save", - "save_as", - "saved_search", - "savings", - "scale", - "scan", - "scan_delete", - "scanner", - "scatter_plot", - "scene", - "schedule", - "schedule_send", - "schema", - "school", - "science", - "score", - "scoreboard", - "screen_lock_landscape", - "screen_lock_portrait", - "screen_lock_rotation", - "screen_rotation", - "screen_rotation_alt", - "screen_search_desktop", - "screen_share", - "screenshot", - "screenshot_keyboard", - "screenshot_monitor", - "screenshot_region", - "screenshot_tablet", - "scuba_diving", - "sd", - "sd_card", - "sd_card_alert", - "search", - "search_check", - "search_off", - "security", - "security_update_good", - "security_update_warning", - "segment", - "select", - "select_all", - "select_check_box", - "select_to_speak", - "self_care", - "self_improvement", - "sell", - "send", - "send_and_archive", - "send_time_extension", - "send_to_mobile", - "sensor_door", - "sensor_occupied", - "sensor_window", - "sensors", - "sensors_off", - "sentiment_calm", - "sentiment_content", - "sentiment_dissatisfied", - "sentiment_excited", - "sentiment_extremely_dissatisfied", - "sentiment_frustrated", - "sentiment_neutral", - "sentiment_sad", - "sentiment_satisfied", - "sentiment_stressed", - "sentiment_very_dissatisfied", - "sentiment_very_satisfied", - "sentiment_worried", - "set_meal", - "settings", - "settings_accessibility", - "settings_account_box", - "settings_alert", - "settings_applications", - "settings_backup_restore", - "settings_bluetooth", - "settings_brightness", - "settings_cell", - "settings_ethernet", - "settings_input_antenna", - "settings_input_component", - "settings_input_hdmi", - "settings_input_svideo", - "settings_motion_mode", - "settings_night_sight", - "settings_overscan", - "settings_panorama", - "settings_phone", - "settings_photo_camera", - "settings_power", - "settings_remote", - "settings_suggest", - "settings_system_daydream", - "settings_voice", - "settop_component", - "severe_cold", - "shape_line", - "shapes", - "share", - "share_location", - "share_off", - "share_reviews", - "sheets_rtl", - "shelf_auto_hide", - "shelf_position", - "shelves", - "shield", - "shield_lock", - "shield_moon", - "shield_with_heart", - "shield_with_house", - "shift", - "shift_lock", - "shop", - "shop_two", - "shopping_bag", - "shopping_basket", - "shopping_cart", - "shopping_cart_checkout", - "short_stay", - "short_text", - "show_chart", - "shower", - "shuffle", - "shuffle_on", - "shutter_speed", - "sick", - "sign_language", - "signal_cellular_0_bar", - "signal_cellular_1_bar", - "signal_cellular_2_bar", - "signal_cellular_3_bar", - "signal_cellular_4_bar", - "signal_cellular_add", - "signal_cellular_alt", - "signal_cellular_alt_1_bar", - "signal_cellular_alt_2_bar", - "signal_cellular_connected_no_internet_0_bar", - "signal_cellular_connected_no_internet_4_bar", - "signal_cellular_nodata", - "signal_cellular_null", - "signal_cellular_off", - "signal_disconnected", - "signal_wifi_0_bar", - "signal_wifi_4_bar", - "signal_wifi_bad", - "signal_wifi_off", - "signal_wifi_statusbar_not_connected", - "signal_wifi_statusbar_null", - "signature", - "signpost", - "sim_card", - "sim_card_download", - "single_bed", - "sip", - "skateboarding", - "skeleton", - "skip_next", - "skip_previous", - "skull", - "sledding", - "sleep", - "sleep_score", - "slide_library", - "slideshow", - "slow_motion_video", - "smart_button", - "smart_display", - "smart_outlet", - "smart_screen", - "smart_toy", - "smartphone", - "smb_share", - "smoke_free", - "smoking_rooms", - "sms", - "sms_failed", - "snippet_folder", - "snooze", - "snowboarding", - "snowing", - "snowmobile", - "snowshoeing", - "soap", - "social_distance", - "social_leaderboard", - "solar_power", - "sort", - "sort_by_alpha", - "sos", - "sound_detection_dog_barking", - "sound_detection_glass_break", - "sound_detection_loud_sound", - "sound_sampler", - "soup_kitchen", - "source_notes", - "south", - "south_america", - "south_east", - "south_west", - "spa", - "space_bar", - "space_dashboard", - "spatial_audio", - "spatial_audio_off", - "spatial_tracking", - "speaker", - "speaker_group", - "speaker_notes", - "speaker_notes_off", - "speaker_phone", - "special_character", - "specific_gravity", - "speech_to_text", - "speed", - "spellcheck", - "splitscreen", - "spo2", - "spoke", - "sports", - "sports_bar", - "sports_baseball", - "sports_basketball", - "sports_cricket", - "sports_esports", - "sports_football", - "sports_golf", - "sports_gymnastics", - "sports_handball", - "sports_hockey", - "sports_kabaddi", - "sports_martial_arts", - "sports_mma", - "sports_motorsports", - "sports_rugby", - "sports_score", - "sports_soccer", - "sports_tennis", - "sports_volleyball", - "sprinkler", - "sprint", - "square", - "square_foot", - "ssid_chart", - "stacked_bar_chart", - "stacked_line_chart", - "stadia_controller", - "stadium", - "stairs", - "star", - "star_half", - "star_rate", - "star_rate_half", - "stars", - "start", - "stay_current_landscape", - "stay_current_portrait", - "stay_primary_landscape", - "stay_primary_portrait", - "step", - "step_into", - "step_out", - "step_over", - "steps", - "stethoscope", - "stethoscope_arrow", - "stethoscope_check", - "sticky_note_2", - "stop", - "stop_circle", - "stop_screen_share", - "storage", - "store", - "storefront", - "storm", - "straight", - "straighten", - "stream", - "stream_apps", - "streetview", - "stress_management", - "strikethrough_s", - "stroke_full", - "stroke_partial", - "stroller", - "style", - "styler", - "stylus_laser_pointer", - "subdirectory_arrow_left", - "subdirectory_arrow_right", - "subject", - "subscript", - "subscriptions", - "subtitles", - "subtitles_off", - "subway", - "summarize", - "sunny", - "sunny_snowing", - "superscript", - "supervised_user_circle", - "supervisor_account", - "support", - "support_agent", - "surfing", - "surgical", - "surround_sound", - "swap_calls", - "swap_horiz", - "swap_horizontal_circle", - "swap_vert", - "swap_vertical_circle", - "swipe", - "swipe_down", - "swipe_down_alt", - "swipe_left", - "swipe_left_alt", - "swipe_right", - "swipe_right_alt", - "swipe_up", - "swipe_up_alt", - "swipe_vertical", - "switch", - "switch_access", - "switch_access_shortcut", - "switch_access_shortcut_add", - "switch_account", - "switch_camera", - "switch_left", - "switch_right", - "switch_video", - "swords", - "symptoms", - "synagogue", - "sync", - "sync_alt", - "sync_disabled", - "sync_lock", - "sync_problem", - "sync_saved_locally", - "syringe", - "system_update", - "system_update_alt", - "tab", - "tab_close", - "tab_close_right", - "tab_duplicate", - "tab_group", - "tab_move", - "tab_new_right", - "tab_recent", - "tab_unselected", - "table", - "table_bar", - "table_chart", - "table_chart_view", - "table_lamp", - "table_restaurant", - "table_rows", - "table_rows_narrow", - "table_view", - "tablet", - "tablet_android", - "tablet_mac", - "tag", - "takeout_dining", - "tamper_detection_off", - "tamper_detection_on", - "tap_and_play", - "tapas", - "task", - "task_alt", - "taunt", - "taxi_alert", - "team_dashboard", - "temp_preferences_custom", - "temp_preferences_eco", - "temple_buddhist", - "temple_hindu", - "tenancy", - "terminal", - "text_decrease", - "text_fields", - "text_format", - "text_increase", - "text_rotate_up", - "text_rotate_vertical", - "text_rotation_angledown", - "text_rotation_angleup", - "text_rotation_down", - "text_rotation_none", - "text_select_end", - "text_select_jump_to_beginning", - "text_select_jump_to_end", - "text_select_move_back_character", - "text_select_move_back_word", - "text_select_move_down", - "text_select_move_forward_character", - "text_select_move_forward_word", - "text_select_move_up", - "text_select_start", - "text_snippet", - "text_to_speech", - "texture", - "theater_comedy", - "theaters", - "thermometer", - "thermometer_gain", - "thermometer_loss", - "thermostat", - "thermostat_auto", - "thermostat_carbon", - "thumb_down", - "thumb_up", - "thumbnail_bar", - "thumbs_up_down", - "thunderstorm", - "tibia", - "tibia_alt", - "time_auto", - "timelapse", - "timeline", - "timer", - "timer_10", - "timer_10_alt_1", - "timer_10_select", - "timer_3", - "timer_3_alt_1", - "timer_3_select", - "timer_off", - "tips_and_updates", - "tire_repair", - "title", - "toc", - "today", - "toggle_off", - "toggle_on", - "token", - "toll", - "tonality", - "tools_flat_head", - "tools_installation_kit", - "tools_ladder", - "tools_level", - "tools_phillips", - "tools_pliers_wire_stripper", - "tools_power_drill", - "top_panel_close", - "top_panel_open", - "topic", - "tornado", - "total_dissolved_solids", - "touch_app", - "touchpad_mouse", - "tour", - "toys", - "toys_fan", - "track_changes", - "traffic", - "trail_length", - "trail_length_medium", - "trail_length_short", - "train", - "tram", - "transcribe", - "transfer_within_a_station", - "transform", - "transgender", - "transit_enterexit", - "translate", - "transportation", - "travel_explore", - "trending_down", - "trending_flat", - "trending_up", - "trip_origin", - "trolley", - "tsunami", - "tty", - "tune", - "turn_left", - "turn_right", - "turn_sharp_left", - "turn_sharp_right", - "turn_slight_left", - "turn_slight_right", - "tv", - "tv_gen", - "tv_off", - "tv_with_assistant", - "two_wheeler", - "type_specimen", - "u_turn_left", - "u_turn_right", - "ulna_radius", - "ulna_radius_alt", - "umbrella", - "unarchive", - "undo", - "unfold_less", - "unfold_less_double", - "unfold_more", - "unfold_more_double", - "ungroup", - "unknown_document", - "unknown_med", - "unpublished", - "unsubscribe", - "upcoming", - "update", - "update_disabled", - "upgrade", - "upload", - "upload_file", - "urology", - "usb", - "usb_off", - "vaccines", - "valve", - "vape_free", - "vaping_rooms", - "variables", - "ventilator", - "verified", - "verified_user", - "vertical_align_bottom", - "vertical_align_center", - "vertical_align_top", - "vertical_distribute", - "vertical_shades", - "vertical_shades_closed", - "vertical_split", - "vibration", - "video_call", - "video_camera_back", - "video_camera_front", - "video_camera_front_off", - "video_chat", - "video_file", - "video_label", - "video_library", - "video_settings", - "video_stable", - "videocam", - "videocam_off", - "videogame_asset", - "videogame_asset_off", - "view_agenda", - "view_array", - "view_carousel", - "view_column", - "view_column_2", - "view_comfy", - "view_comfy_alt", - "view_compact", - "view_compact_alt", - "view_cozy", - "view_day", - "view_headline", - "view_in_ar", - "view_kanban", - "view_list", - "view_module", - "view_quilt", - "view_sidebar", - "view_stream", - "view_timeline", - "view_week", - "vignette", - "villa", - "visibility", - "visibility_off", - "vital_signs", - "voice_chat", - "voice_over_off", - "voicemail", - "volcano", - "volume_down", - "volume_down_alt", - "volume_mute", - "volume_off", - "volume_up", - "volunteer_activism", - "voting_chip", - "vpn_key", - "vpn_key_alert", - "vpn_key_off", - "vpn_lock", - "vrpano", - "wall_lamp", - "wallet", - "wallpaper", - "ward", - "warehouse", - "warning", - "warning_off", - "wash", - "watch", - "watch_button_press", - "watch_off", - "watch_screentime", - "watch_wake", - "water", - "water_bottle", - "water_bottle_large", - "water_damage", - "water_do", - "water_drop", - "water_ec", - "water_full", - "water_heater", - "water_lock", - "water_loss", - "water_lux", - "water_medium", - "water_orp", - "water_ph", - "water_voc", - "waterfall_chart", - "waves", - "waving_hand", - "wb_auto", - "wb_incandescent", - "wb_iridescent", - "wb_shade", - "wb_sunny", - "wb_twilight", - "wc", - "weather_hail", - "weather_snowy", - "web", - "web_asset", - "web_asset_off", - "web_stories", - "webhook", - "weekend", - "weight", - "west", - "whatshot", - "wheelchair_pickup", - "where_to_vote", - "widgets", - "width", - "width_full", - "width_normal", - "width_wide", - "wifi", - "wifi_1_bar", - "wifi_2_bar", - "wifi_add", - "wifi_calling", - "wifi_calling_1", - "wifi_calling_2", - "wifi_calling_3", - "wifi_channel", - "wifi_find", - "wifi_lock", - "wifi_off", - "wifi_password", - "wifi_protected_setup", - "wifi_proxy", - "wifi_tethering", - "wifi_tethering_error", - "wifi_tethering_off", - "wind_power", - "window", - "window_closed", - "window_open", - "window_sensor", - "wine_bar", - "woman", - "woman_2", - "work", - "work_history", - "workspace_premium", - "workspaces", - "wounds_injuries", - "wrap_text", - "wrist", - "wrong_location", - "wysiwyg", - "yard", - "youtube_activity", - "youtube_searched_for", - "zone_person_alert", - "zone_person_idle", - "zone_person_urgent", - "zoom_in", - "zoom_in_map", - "zoom_out", - "zoom_out_map" -]; - -type MaterialSymbol = MaterialSymbols[number]; - -export { MaterialSymbol }; diff --git a/packages/themes/mfm/assets/material-symbols/index.scss b/packages/themes/mfm/assets/material-symbols/index.scss deleted file mode 100644 index 4dc42644bc..0000000000 --- a/packages/themes/mfm/assets/material-symbols/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import 'outlined'; -@import 'rounded'; -@import 'sharp'; diff --git a/packages/themes/mfm/assets/material-symbols/material-symbols-outlined.woff2 b/packages/themes/mfm/assets/material-symbols/material-symbols-outlined.woff2 deleted file mode 100644 index 54522baf10..0000000000 Binary files a/packages/themes/mfm/assets/material-symbols/material-symbols-outlined.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-symbols/material-symbols-rounded.woff2 b/packages/themes/mfm/assets/material-symbols/material-symbols-rounded.woff2 deleted file mode 100644 index 9a2b63ca60..0000000000 Binary files a/packages/themes/mfm/assets/material-symbols/material-symbols-rounded.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-symbols/material-symbols-sharp.woff2 b/packages/themes/mfm/assets/material-symbols/material-symbols-sharp.woff2 deleted file mode 100644 index 9c0e495873..0000000000 Binary files a/packages/themes/mfm/assets/material-symbols/material-symbols-sharp.woff2 and /dev/null differ diff --git a/packages/themes/mfm/assets/material-symbols/outlined.css b/packages/themes/mfm/assets/material-symbols/outlined.css deleted file mode 100644 index 517afd54a9..0000000000 --- a/packages/themes/mfm/assets/material-symbols/outlined.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Symbols Outlined"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-outlined.woff2") format("woff2"); -} -.material-symbols-outlined { - font-family: "Material Symbols Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-symbols/outlined.scss b/packages/themes/mfm/assets/material-symbols/outlined.scss deleted file mode 100644 index 428f86e4dc..0000000000 --- a/packages/themes/mfm/assets/material-symbols/outlined.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import 'core'; - -@include material-symbols-font('Material Symbols Outlined'); diff --git a/packages/themes/mfm/assets/material-symbols/package.json b/packages/themes/mfm/assets/material-symbols/package.json deleted file mode 100644 index 8aac25b146..0000000000 --- a/packages/themes/mfm/assets/material-symbols/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "material-symbols", - "version": "0.5.5", - "description": "Latest variable icon fonts and CSS for Material Symbols.", - "main": "index.css", - "sass": "index.scss", - "types": "index.d.ts", - "files": [ - "index.d.ts", - "*.{css,scss,woff2}" - ], - "scripts": { - "build": "sass --no-source-map --no-error-css ." - }, - "devDependencies": { - "sass": "1.56.1" - }, - "license": "Apache-2.0", - "repository": { - "type": "git", - "url": "git+https://github.com/marella/material-symbols.git", - "directory": "material-symbols" - }, - "bugs": { - "url": "https://github.com/marella/material-symbols/issues" - }, - "homepage": "https://marella.github.io/material-symbols/demo/", - "keywords": [ - "material-symbols", - "material-icons", - "material-design-icons", - "material-design", - "material", - "symbols", - "icons", - "font" - ], - "publishConfig": { - "access": "public" - } -} diff --git a/packages/themes/mfm/assets/material-symbols/rounded.css b/packages/themes/mfm/assets/material-symbols/rounded.css deleted file mode 100644 index 15cf899725..0000000000 --- a/packages/themes/mfm/assets/material-symbols/rounded.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Symbols Rounded"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-rounded.woff2") format("woff2"); -} -.material-symbols-rounded { - font-family: "Material Symbols Rounded"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-symbols/rounded.scss b/packages/themes/mfm/assets/material-symbols/rounded.scss deleted file mode 100644 index d4130a2c6e..0000000000 --- a/packages/themes/mfm/assets/material-symbols/rounded.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import 'core'; - -@include material-symbols-font('Material Symbols Rounded'); diff --git a/packages/themes/mfm/assets/material-symbols/sharp.css b/packages/themes/mfm/assets/material-symbols/sharp.css deleted file mode 100644 index 0e8f837817..0000000000 --- a/packages/themes/mfm/assets/material-symbols/sharp.css +++ /dev/null @@ -1,24 +0,0 @@ -@font-face { - font-family: "Material Symbols Sharp"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-sharp.woff2") format("woff2"); -} -.material-symbols-sharp { - font-family: "Material Symbols Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; -} diff --git a/packages/themes/mfm/assets/material-symbols/sharp.scss b/packages/themes/mfm/assets/material-symbols/sharp.scss deleted file mode 100644 index 67703061cc..0000000000 --- a/packages/themes/mfm/assets/material-symbols/sharp.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import 'core'; - -@include material-symbols-font('Material Symbols Sharp'); diff --git a/packages/themes/mfm/package.json b/packages/themes/mfm/package.json deleted file mode 100644 index 94c32bef52..0000000000 --- a/packages/themes/mfm/package.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "@public-ui/theme-mfm", - "version": "1.7.8", - "private": true, - "scripts": { - "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*", - "format": "prettier --check src", - "lint": "eslint src && tsc --noemit", - "xtest": "THEME_MODULE=src/index THEME_EXPORT=MFM kolibri-visual-test", - "test-update": "THEME_MODULE=src/index THEME_EXPORT=MFM kolibri-visual-test --update-snapshots theme-snapshots.spec.js" - }, - "devDependencies": { - "@public-ui/schema": "1.7.8", - "@public-ui/visual-tests": "1.7.8", - "@types/node": "ts5.3", - "typescript": "5.3.3" - }, - "peerDependencies": { - "@public-ui/components": "1.7.8" - } -} diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-abbr-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-abbr-basic-firefox-linux.png deleted file mode 100644 index 5fefe229b9..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-abbr-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-basic-firefox-linux.png deleted file mode 100644 index 0f8ef87538..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-header-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-header-firefox-linux.png deleted file mode 100644 index 7ce2a66a98..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-header-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-headlines-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-headlines-firefox-linux.png deleted file mode 100644 index 2db924c9df..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-headlines-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-list-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-list-firefox-linux.png deleted file mode 100644 index 3dfbd13190..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-accordion-list-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-basic-firefox-linux.png deleted file mode 100644 index 8ead1c1b39..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-card-msg-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-card-msg-firefox-linux.png deleted file mode 100644 index 4343a7c599..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-card-msg-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-html-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-html-firefox-linux.png deleted file mode 100644 index 20ab415ca4..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-alert-html-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-avatar-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-avatar-basic-firefox-linux.png deleted file mode 100644 index 09338ad26e..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-avatar-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-badge-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-badge-basic-firefox-linux.png deleted file mode 100644 index 6d4c5c1c72..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-badge-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-badge-button-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-badge-button-firefox-linux.png deleted file mode 100644 index 35c1b5b14a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-badge-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-breadcrumb-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-breadcrumb-basic-firefox-linux.png deleted file mode 100644 index c3bddfe5c0..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-breadcrumb-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-basic-firefox-linux.png deleted file mode 100644 index 02a12306c1..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-group-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-group-basic-firefox-linux.png deleted file mode 100644 index 5900f89e03..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-hide-label-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-hide-label-firefox-linux.png deleted file mode 100644 index f29f5412a2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-hide-label-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-icons-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-icons-firefox-linux.png deleted file mode 100644 index 696e0b6ab9..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-basic-firefox-linux.png deleted file mode 100644 index f071d155a2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-icons-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-icons-firefox-linux.png deleted file mode 100644 index 02bfba5817..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-image-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-image-firefox-linux.png deleted file mode 100644 index 6f70ff7d2c..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-width-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-width-firefox-linux.png deleted file mode 100644 index 647e073fca..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-button-width-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-basic-firefox-linux.png deleted file mode 100644 index ebc22ed99f..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-confirm-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-confirm-firefox-linux.png deleted file mode 100644 index ebdcd73675..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-confirm-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-flex-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-flex-firefox-linux.png deleted file mode 100644 index 5df43be6a0..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-flex-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-selection-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-selection-firefox-linux.png deleted file mode 100644 index 0e7f958095..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-card-selection-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-details-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-details-basic-firefox-linux.png deleted file mode 100644 index d67fa2b11f..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-details-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-handout-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-handout-basic-firefox-linux.png deleted file mode 100644 index 8e2e88aa05..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-handout-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-badge-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-badge-firefox-linux.png deleted file mode 100644 index 3ec5e60b81..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-badge-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-basic-firefox-linux.png deleted file mode 100644 index 774ba4bf2a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-paragraph-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-paragraph-firefox-linux.png deleted file mode 100644 index 6cb6c176f4..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-heading-paragraph-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-icon-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-icon-basic-firefox-linux.png deleted file mode 100644 index c92d08db32..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-icon-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-image-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-image-basic-firefox-linux.png deleted file mode 100644 index 30c52682c4..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-image-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-indented-text-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-indented-text-basic-firefox-linux.png deleted file mode 100644 index 44c6568e4d..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-indented-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-basic-firefox-linux.png deleted file mode 100644 index 88e75d2bd5..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-button-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-button-firefox-linux.png deleted file mode 100644 index 35016b3685..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-switch-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-switch-firefox-linux.png deleted file mode 100644 index ae643a6f49..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-checkbox-switch-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-color-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-color-basic-firefox-linux.png deleted file mode 100644 index 9ba6b3a053..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-color-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-date-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-date-basic-firefox-linux.png deleted file mode 100644 index f84d77127b..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-date-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-email-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-email-basic-firefox-linux.png deleted file mode 100644 index 54e8adc3c8..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-email-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-file-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-file-basic-firefox-linux.png deleted file mode 100644 index ae9261b9cf..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-file-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-number-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-number-basic-firefox-linux.png deleted file mode 100644 index bf2af6cad3..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-number-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-password-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-password-basic-firefox-linux.png deleted file mode 100644 index c3878acd62..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-password-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-password-show-password-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-password-show-password-firefox-linux.png deleted file mode 100644 index 951086a68a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-password-show-password-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-basic-firefox-linux.png deleted file mode 100644 index 65f2fdec7e..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-horizontal-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-horizontal-firefox-linux.png deleted file mode 100644 index 7cbb6ebef2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-select-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-select-firefox-linux.png deleted file mode 100644 index 1bc60bc607..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-radio-select-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-range-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-range-basic-firefox-linux.png deleted file mode 100644 index 387f8b4dfb..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-range-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-basic-firefox-linux.png deleted file mode 100644 index 4297b7ee7b..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-blur-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-blur-firefox-linux.png deleted file mode 100644 index 2b00904210..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-blur-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-focus-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-focus-firefox-linux.png deleted file mode 100644 index be21249992..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-input-text-focus-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-kolibri-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-kolibri-basic-firefox-linux.png deleted file mode 100644 index 46add0527d..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-kolibri-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-basic-firefox-linux.png deleted file mode 100644 index a4a7a96a20..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-button-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-button-basic-firefox-linux.png deleted file mode 100644 index cd9f7a9411..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-group-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-group-basic-firefox-linux.png deleted file mode 100644 index 4050c05136..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-group-horizontal-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-group-horizontal-firefox-linux.png deleted file mode 100644 index da30e797d9..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-group-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-icons-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-icons-firefox-linux.png deleted file mode 100644 index 02bfba5817..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-image-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-image-firefox-linux.png deleted file mode 100644 index 3c7c461d7a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-target-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-target-firefox-linux.png deleted file mode 100644 index 7bc069990a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-link-target-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-logo-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-logo-basic-firefox-linux.png deleted file mode 100644 index 761e3db7aa..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-logo-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-modal-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-modal-basic-firefox-linux.png deleted file mode 100644 index afc1f93916..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-modal-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-active-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-active-firefox-linux.png deleted file mode 100644 index f7e40b316c..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-active-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-aria-current-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-aria-current-firefox-linux.png deleted file mode 100644 index 1e7ce3c3c9..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-aria-current-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-basic-firefox-linux.png deleted file mode 100644 index 290d19ab6b..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-horizontal-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-horizontal-firefox-linux.png deleted file mode 100644 index 91f77d047d..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-nav-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-pagination-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-pagination-basic-firefox-linux.png deleted file mode 100644 index aba0ed62f8..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-pagination-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-progress-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-progress-basic-firefox-linux.png deleted file mode 100644 index f5e58d2a3e..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-progress-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-quote-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-quote-basic-firefox-linux.png deleted file mode 100644 index f8d52c7ca2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-quote-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-quote-block-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-quote-block-firefox-linux.png deleted file mode 100644 index 94eeba0709..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-quote-block-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-select-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-select-basic-firefox-linux.png deleted file mode 100644 index 990ac68702..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-select-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-skip-nav-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-skip-nav-basic-firefox-linux.png deleted file mode 100644 index 56c344104e..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-skip-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-basic-firefox-linux.png deleted file mode 100644 index 09c6bcfdf2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-custom-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-custom-firefox-linux.png deleted file mode 100644 index 97f795d6a7..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-custom-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-cycle-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-cycle-firefox-linux.png deleted file mode 100644 index 16cdf547f1..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-spin-cycle-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-split-button-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-split-button-basic-firefox-linux.png deleted file mode 100644 index 5d4abf5ece..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-split-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-table-render-cell-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-table-render-cell-firefox-linux.png deleted file mode 100644 index f07feab610..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-table-render-cell-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-table-sort-data-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-table-sort-data-firefox-linux.png deleted file mode 100644 index f245aeedd6..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-table-sort-data-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-tabs-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-tabs-basic-firefox-linux.png deleted file mode 100644 index 7834e3efab..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-tabs-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-tabs-icons-only-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-tabs-icons-only-firefox-linux.png deleted file mode 100644 index c591623d30..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-tabs-icons-only-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-adjust-height-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-adjust-height-firefox-linux.png deleted file mode 100644 index cbcafe078f..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-adjust-height-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-basic-firefox-linux.png deleted file mode 100644 index 25de6664dc..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-disabled-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-disabled-firefox-linux.png deleted file mode 100644 index dd7715a38a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-disabled-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-placeholder-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-placeholder-firefox-linux.png deleted file mode 100644 index 0881eee1fa..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-placeholder-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-readonly-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-readonly-firefox-linux.png deleted file mode 100644 index 2eb3a0f4f2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-readonly-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-resize-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-resize-firefox-linux.png deleted file mode 100644 index 6dadf6bc2c..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-resize-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-rows-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-rows-firefox-linux.png deleted file mode 100644 index c0fc04316a..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-rows-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-with-counter-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-with-counter-firefox-linux.png deleted file mode 100644 index 15b03adcd1..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-textarea-with-counter-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-toast-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-toast-basic-firefox-linux.png deleted file mode 100644 index 38bad24cc2..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-toast-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-version-basic-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-version-basic-firefox-linux.png deleted file mode 100644 index bab7dd3378..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-version-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-version-context-firefox-linux.png b/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-version-context-firefox-linux.png deleted file mode 100644 index 1bd1af74e9..0000000000 Binary files a/packages/themes/mfm/snapshots/theme-mfm/snapshot-for-version-context-firefox-linux.png and /dev/null differ diff --git a/packages/themes/mfm/src/index.ts b/packages/themes/mfm/src/index.ts deleted file mode 100644 index 1138a99f45..0000000000 --- a/packages/themes/mfm/src/index.ts +++ /dev/null @@ -1,9587 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -export const MFM = KoliBri.createTheme('mfm', { - GLOBAL: `/* Design Tokens */ - :host { - --border-radius: 5px; - --color-midnight: #004b76; - --color-ocean: #0077b6; - --color-sky: #99c9e2; - --color-ice: #cce4f0; - --color-crystal: #f0f7fb; - --color-crimson: #780f2d; - --color-red: #c0003c; - --color-pink: #f2ccd8; - --color-blossom: #fbf0f3; - --color-olive: #004d38; - --color-green: #005c45; - --color-jungle: #00854a; - --color-lime: #c1ca31; - --color-mint: #ccdeda; - --color-haze: #f0f5f4; - --color-fire: #7a2e1f; - --color-orange: #c44931; - --color-coral: #f5dcd7; - --color-peach: #fdf6f5; - --color-bronze: #6a4a06; - --color-yellow: #f9e03a; - --color-ivory: #fdf3b0; - --color-wine: #3f1d4a; - --color-purple: #6b4479; - --color-lavender: #dfd6de; - --color-black: #202020; - --color-metal: #454d4f; - --color-grey: #576164; - --color-granite: #bec5c9; - --color-silver: #e5e8e9; - --color-smoke: #f2f3f4; - --color-cloud: #f6f7f7; - --color-white: #ffffff; - --font-family: BundesSans Web, Calibri, Verdana, Arial, Helvetica, sans-serif; - --font-size: 16px; - --spacing: 0.25em; - } - :host { - background-color: transparent; /* Reset global background-color defined by components */ - font-family: var(--font-family); /* font-size: var(--font-size); */ - } - * { - box-sizing: border-box; - } - *:not(i) { - font-family: var(--font-family); - } - h1, - h2, - h3, - h4, - h5, - h6 { - font-family: var(--font-family); - font-size: var(--font-size); - margin: 0; - padding: 0; - } - *[tabindex]:focus, - kol-input:not(.checkbox, .radio) .input:focus-within, - kol-input:is(.checkbox, .radio) input:focus, - summary:focus { - cursor: pointer; - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - transition: outline-offset 0.2s linear; - } - @keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } - } - kol-heading-wc { - font-weight: 700; - } - kol-tooltip-wc .tooltip-area { - background-color: var(--color-metal); - color: var(--color-white); - } - kol-tooltip-wc .tooltip-content { - border-radius: var(--border-radius); - line-height: 1.5em; - padding: 0.5rem 0.75rem; - } - kol-span-wc, - kol-span-wc > span { - gap: 0.5em; - }`, - 'KOL-BUTTON': `:is(a, button):focus { - outline: none; - } - :is(a, button):focus kol-span-wc { - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - transition: outline-offset 0.2s linear; - } - :is(a, button) > kol-span-wc { - font-weight: 700; - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - min-height: var(--a11y-min-size); - min-width: var(--a11y-min-size); - padding: 8px 14px; - text-align: center; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - :is(a, button):disabled > kol-span-wc { - cursor: not-allowed; - opacity: 0.5; - } - .primary :is(a, button) > kol-span-wc, - .primary :is(a, button):disabled:hover > kol-span-wc { - background-color: var(--color-midnight); - border-color: var(--color-midnight); - color: var(--color-white); - } - .secondary :is(a, button) > kol-span-wc, - .secondary :is(a, button):disabled:hover > kol-span-wc, - .normal :is(a, button) > kol-span-wc, - .normal :is(a, button):disabled:hover > kol-span-wc { - background-color: var(--color-sky); - border-color: var(--color-sky); - color: var(--color-midnight); - } - .danger :is(a, button) > kol-span-wc, - .danger :is(a, button):disabled:hover > kol-span-wc { - background-color: var(--color-red); - border-color: var(--color-red); - color: var(--color-white); - } - .ghost :is(a, button) > kol-span-wc, - .ghost :is(a, button):disabled:hover > kol-span-wc { - border-color: var(--color-white); - background-color: var(--color-white); - box-shadow: none; - color: var(--color-midnight); - } /*-----------*/ - .primary :is(a, button):active > kol-span-wc, - .primary :is(a, button):hover > kol-span-wc, - .secondary :is(a, button):active > kol-span-wc, - .secondary :is(a, button):hover > kol-span-wc, - .normal :is(a, button):active > kol-span-wc, - .normal :is(a, button):hover > kol-span-wc, - .danger :is(a, button):active > kol-span-wc, - .danger :is(a, button):hover > kol-span-wc, - .ghost :is(a, button):active > kol-span-wc, - .ghost :is(a, button):hover > kol-span-wc { - background-color: var(--color-ocean); - border-color: var(--color-ocean); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - color: var(--color-white); - } - .danger :is(a, button):active > kol-span-wc, - .danger :is(a, button):hover > kol-span-wc { - background-color: var(--color-crimson); - border-color: var(--color-crimson); - } - :is(a, button):disabled:hover > kol-span-wc, - :is(a, button):focus:hover > kol-span-wc { - box-shadow: none; - } - .primary :is(a, button):active > kol-span-wc, - .secondary :is(a, button):active > kol-span-wc, - .normal :is(a, button):active > kol-span-wc, - .danger :is(a, button):active > kol-span-wc, - .ghost :is(a, button):active > kol-span-wc { - border-color: var(--color-white); - box-shadow: none; - outline: none; - } - :is(a, button).hide-label > kol-span-wc { - padding: 8px; - width: unset; - } - :is(a, button).hide-label > kol-span-wc > span > span { - display: none; - } - :is(a, button).loading > kol-span-wc kol-icon { - animation: spin 5s infinite linear; - } /** small ghost button */ - .ghost :is(a, button).small > kol-span-wc { - border: none; - background-color: transparent; - box-shadow: none; - } - .ghost :is(a, button).small > kol-span-wc > span { - border-radius: 1.5em; - border-style: solid; - border-width: 2px; - border-color: var(--color-white); - background-color: var(--color-white); - } - .ghost :is(a, button).small:active > kol-span-wc > span, - .ghost :is(a, button).small:hover > kol-span-wc > span, - .ghost :is(a, button).small.transparent:active > kol-span-wc > span, - .ghost :is(a, button).small.transparent:hover > kol-span-wc > span { - background-color: var(--color-ocean); - border-color: var(--color-ocean); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - color: var(--color-white); - } /** :is(a,button) with transparent background */ - :is(a, button).transparent > kol-span-wc > span, - .ghost :is(a, button).small.transparent > kol-span-wc > span, - :is(a, button).transparent > kol-span-wc { - background-color: transparent; - border-color: transparent; - }`, - 'KOL-INPUT-TEXT': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(input, label) { - opacity: 1; - } - kol-input.disabled :is(input, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - }`, - 'KOL-INPUT-PASSWORD': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(button, input, label, option, select, textarea) { - opacity: 1; - } - kol-input.disabled :is(input, select, textarea, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-INPUT-NUMBER': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(input, label) { - opacity: 1; - } - kol-input.disabled :is(input, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-INPUT-DATE': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(input, label) { - opacity: 1; - } - kol-input.disabled :is(input, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-INPUT-EMAIL': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(input, label) { - opacity: 1; - } - kol-input.disabled :is(input, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-INPUT-FILE': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - kol-input .input input[type="file"] { - padding-top: calc(0.5em + 2px); - } - input { - border: none; - } - input[type="file"] { - background-color: transparent; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(button, input, label, option, select, textarea) { - opacity: 1; - } - kol-input.disabled :is(input, select, textarea, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-TEXTAREA': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - textarea { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - textarea:read-only, - textarea:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - .input { - position: relative; - } - .input textarea ~ span { - position: absolute; - top: -1.5rem; - right: 0; - color: var(--color-grey); - }`, - 'KOL-ALERT': `.msg, - .msg { - border-width: 0; - } - kol-alert-wc { - border-width: 2px; - border-style: solid; - border-radius: 5px; - display: flex; - width: 100%; - overflow: unset; - border-color: transparent; - background-color: white; - } - kol-alert-wc > .heading { - display: flex; - gap: 0.5em; - place-items: center; - } - kol-alert-wc > .heading > div { - display: grid; - gap: var(--kolibri-spacing); - } - .msg > .heading > kol-icon { - place-self: baseline; - } - kol-alert-wc > .heading > div { - display: grid; - gap: var(--spacing); - } - kol-alert-wc > .heading > kol-button-wc.close { - place-self: center; - } - .msg { - align-items: start; - } - .default { - border-color: var(--color-grey); - } - .default.msg .heading-icon { - color: var(--color-grey); - } - .error { - border-color: var(--color-red); - } - .error.msg .heading-icon { - color: var(--color-red); - } - .info { - border-color: var(--color-midnight); - } - .info.msg .heading-icon { - color: var(--color-midnight); - } - .success { - border-color: var(--color-green); - } - .success.msg .heading-icon { - color: var(--color-green); - } - .warning { - border-color: var(--color-orange); - } - .warning.msg .heading-icon { - color: var(--color-orange); - } - .heading-icon { - color: white; - } - kol-alert-wc .heading .heading-icon { - padding: 0; - } - .msg > .heading > .heading-icon { - padding-top: 0; - place-items: baseline; - } - .msg > .heading > .heading-icon::part(icon) { - line-height: 1.375rem; - } - .msg > .heading > div > kol-heading-wc { - line-height: 20px; - padding-top: 0.125rem; - } - .msg.default .heading > div > kol-heading-wc { - color: var(--color-grey); - } - .msg.error .heading > div > kol-heading-wc { - color: var(--color-red); - } - .msg.info .heading > div > kol-heading-wc { - color: var(--color-midnight); - } - .msg.success .heading > div > kol-heading-wc { - color: var(--color-green); - } - .msg.warning .heading > div > kol-heading-wc { - color: var(--color-orange); - } /*.msg > .heading > div {display: grid;grid-template-columns: 1fr auto;}.msg > .heading > div > .content {grid-row: 2;grid-column: 1;}.msg > div > .close {display: flex;}*/ - .msg.default .close .icon { - color: var(--color-grey); - } - .msg.error .close .icon { - color: var(--color-red); - } - .msg.info .close .icon { - color: var(--color-midnight); - } - .msg.success .close .icon { - color: var(--color-green); - } - .msg.warning .close .icon { - color: var(--color-orange); - } - .card { - border-width: 3px; - border-style: solid; - filter: drop-shadow(0px 2px 4px rgba(8, 35, 48, 0.24)); - flex-direction: column; - } - .card > .heading { - padding: 0.5rem 1rem; - } - .card[_has-closer] > .heading { - padding-top: 0; - padding-bottom: 0; - padding-right: 0; - } - .card > .heading > div { - width: 100%; - min-height: 1.25rem; - } - .card > .heading .heading-icon { - justify-self: right; - margin-top: -4px; - } - .card > .heading kol-heading-wc { - width: 100%; - color: white; - display: flex; - font-size: 1.25rem; - line-height: 1.25rem; - } - .card > .heading kol-heading-wc > * { - margin: auto 0; - } - .card > .content { - padding: 0.5rem 1rem; - } - .card.default > .heading { - background-color: var(--color-grey); - } - .card.error > .heading { - background-color: var(--color-red); - } - .card.info > .heading { - background-color: var(--color-midnight); - } - .card.success > .heading { - background-color: var(--color-green); - } - .card.warning > .heading { - background-color: var(--color-orange); - } - :is(.error, .info, .success, .warning) .heading-icon::part(icon) { - font-family: "Font Awesome 6 Free" !important; - font-weight: 900; - height: 1.25rem; - width: 1.25rem; - } - :is(.error, .info, .success, .warning) .heading-icon { - font-size: 1.25rem !important; - } - .error .heading-icon::part(icon)::before { - content: "\\f06a"; - } - .info .heading-icon::part(icon)::before { - content: "\\f05a"; - } - .success .heading-icon::part(icon)::before { - content: "\\f058"; - } - .warning .heading-icon::part(icon)::before { - content: "\\f071"; - } - .card > div > .content { - grid-row: 2; - grid-column: 1 / span 2; - } - .card.default .close { - background-color: var(--color-grey); - } - .card.error .close { - background-color: var(--color-red); - } - .card.info .close { - background-color: var(--color-midnight); - } - .card.success .close { - background-color: var(--color-green); - } - .card.warning .close { - background-color: var(--color-orange); - } - .close > button { - min-width: 44px; - color: var(--color-white); - min-height: 44px; - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-family: var(--font-family); - font-weight: 700; - cursor: pointer; - border-radius: 1.5em; - border-style: solid; - border-width: 2px; - font-size: 1rem; - align-items: center; - padding: 8px 14px; - justify-content: center; - font-style: normal; - text-align: center; - width: inherit; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - background-color: rgba(0, 0, 0, 0); - border-color: rgba(0, 0, 0, 0); - } - .close > button.hide-label { - padding: 8px; - } - .close > button.hide-label kol-icon { - display: flex; - width: 1em; - height: 1em; - font-size: 1rem; - } - .close > button.hide-label kol-icon::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - } - .close > button.hide-label kol-icon::part(icon)::before { - content: "\\f00d"; - } - .close > button:active { - box-shadow: none; - outline: none; - }`, - 'KOL-HEADING': `h1, - h2, - h3, - h4, - h5, - h6 { - color: inherit; - font-style: normal; - margin: 0; - padding: 0; - } - h1, - h2, - h3 { - font-weight: 700; - } - h1 { - font-size: 1.5rem; - line-height: 1.75rem; - } - h2 { - font-size: 1.25rem; - line-height: 1.75rem; - } - h3 { - font-size: 1.125rem; - line-height: 1.5rem; - }`, - 'KOL-BADGE': `:host { - display: inline-block; - } - :host > span { - border-radius: 0.3125rem; - display: inline-flex; - font-size: 1em; - font-style: normal; - line-height: 1.25rem; - } - :host > span.smart-button { - align-items: center; - } - :host > span kol-button-wc:hover > button { - background-color: var(--color-ocean); - color: var(--color-white); - } - :host > span kol-button-wc > button { - color: inherit; - font-size: 1rem; - border-top-right-radius: 0.3125rem; - border-bottom-right-radius: 0.3125rem; - padding: 2px; - } - :host > span kol-span-wc { - padding: 0.25rem 0.75rem; - } - :host > span > kol-span-wc { - align-items: center; - font-style: normal; - gap: 0.5rem; - } - :host > span > kol-span-wc > span { - display: flex; - gap: 0.25rem; - }`, - 'KOL-BUTTON-GROUP': `:host > kol-button-group-wc { - display: flex; - flex-wrap: wrap; - gap: 0.5em; - }`, - 'KOL-INDENTED-TEXT': `:host > div { - background-color: var(--color-white); - border-left: none; - box-shadow: -2px 0px 0px var(--color-ocean); - padding: 0 0.5em; - width: 100%; - }`, - 'KOL-LINK': `:is(a, button) { - color: var(--color-midnight); - font-style: normal; - font-weight: 400; - text-decoration-line: underline; - } - :is(a, button):focus { - outline: none; - } - :is(a, button):focus kol-span-wc { - border-radius: var(--border-radius); - outline: 2px solid; - } - :is(a, button):hover { - text-decoration-thickness: 0.25em; - } - :is(a, button):visited { - color: var(--visited); - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-DETAILS': `details > summary { - border-radius: var(--border-radius); - } - details kol-indented-text { - margin: 0.25em 0px 0px 0.65em; - } - kol-icon::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - margin-right: 0.5rem; - } - details[open] kol-icon::part(icon):before { - content: "\\f078"; - } - details:not([open]) kol-icon::part(icon):before { - content: "\\f054"; - }`, - 'KOL-SPIN': `.spin { - display: inline-block; - height: 1rem; - position: relative; - width: 3rem; - } - .spin span { - animation-timing-function: cubic-bezier(0, 1, 1, 0); - border: 0.1rem solid rgb(255, 255, 255); - border-radius: 50%; - height: 0.8rem; - width: 0.8rem; - top: 0.1rem; - position: absolute; - } - .spin span:nth-child(1) { - background-color: #fc0; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin1; - left: 0.1rem; - } - .spin span:nth-child(2) { - background-color: #f00; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 0.1rem; - } - .spin span:nth-child(3) { - background-color: #000; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 1.1rem; - } - .spin span:nth-child(4) { - background-color: #666; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin3; - left: 2.1rem; - } - @keyframes spin1 { - 0% { - transform: scale(0); - } - 100% { - transform: scale(1); - } - } - @keyframes spin2 { - 0% { - transform: translate(0px, 0px); - } - 100% { - transform: translate(1rem, 0px); - } - } - @keyframes spin3 { - 0% { - transform: scale(1); - } - 100% { - transform: scale(0); - } - }`, - 'KOL-PROGRESS': `:host progress, - :host span { - display: block; - height: 0px; - overflow: hidden; - width: 0px; - } - :host svg line:first-child, - :host svg circle:first-child { - fill: transparent; - stroke: var(--color-ice); - } - :host svg line:last-child, - :host svg circle:last-child { - fill: transparent; - stroke: var(--color-midnight); - }`, - 'KOL-SELECT': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - select { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input.icon-left kol-icon:first-child { - margin-right: 0.5em; - } - .input.icon-right kol-icon:last-child { - margin-left: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - select:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(select, label, option) { - opacity: 1; - } - kol-input.disabled :is(select, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - } - select[multiple] { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-ocean); - color: white; - }`, - 'KOL-INPUT-COLOR': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"] { - background-color: transparent; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 0.5em; - } - .input > kol-icon { - width: 1em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:is(.icon-left, .icon-right) input { - padding-left: 0.5em; - padding-right: 0.5em; - } - .input > input:first-child { - padding-left: 0.375em; - } - .input > input:last-child { - padding-right: 0.375em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(input, label) { - opacity: 1; - } - kol-input.disabled :is(input, .input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-ACCORDION': `kol-span-wc > span { - display: flex; - place-items: baseline center; - text-align: left; - } - :host > div > kol-heading-wc button { - border-radius: var(--border-radius); - min-height: 22px; - padding: 12px 8px; - } - :host > div > kol-heading-wc button kol-span-wc { - font-weight: 700; - font-size: 1.125rem; - line-height: 20px; - gap: 0.5rem; - } - :host > div > kol-heading-wc button kol-span-wc > span { - gap: 0.5em; - } - :host > div > kol-heading-wc button kol-icon::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - color: var(--color-midnight); - } - :host > div.open > kol-heading-wc button kol-icon::part(icon)::before { - content: "\\f078"; - } - :host > div.close > kol-heading-wc button kol-icon::part(icon)::before { - content: "\\f054"; - } - :host > div { - width: 100%; - height: 100%; - display: grid; - } - :host > div div[class="header"], - :host > div[class*="open"] div[class="content"] { - margin: 0; - } - :host > div div[class="content"] { - padding-left: 2.25em; - padding-bottom: 12px; - padding-right: 8px; - } - button:focus { - outline: none; - } - :host > .accordion:focus-within { - border-radius: var(--border-radius); - cursor: pointer; - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - transition: outline-offset 0.2s linear; - }`, - 'KOL-TABLE': `:host * { - hyphens: var(--kolibri-hyphens); - font-family: var(--kolibri-font-family); - line-height: var(--kolibri-line-height); - word-break: break-word; - } - :host > div { - overflow-x: auto; - overflow-y: hidden; - } - caption { - padding: 0.5em; - } - th { - font-weight: normal; - color: var(--color-midnight); - } - :host table thead tr:first-child th, - :host table thead tr:first-child td { - border-width: 0; - border-top-width: 2px; - border-style: solid; - border-color: var(--color-ice); - } - table { - width: 100%; - border-spacing: 0; - } - table, - :host table thead tr:last-child th, - :host table thead tr:last-child td { - border-width: 0; - border-bottom-width: 2px; - border-style: solid; - border-color: var(--color-ice); - } - th { - background-color: var(--color-white); - } - th div { - width: 100%; - display: flex; - gap: 0.5em; - grid-template-columns: 1fr auto; - align-items: center; - } - th div.center { - justify-content: center; - } - th div.right { - justify-content: end; - } - tr:nth-child(even) { - background-color: #f2f2f2; - } - th, - td { - padding: 0.5em; - } - td.center > div { - display: flex; - justify-content: center; - } - td.right > div { - display: flex; - justify-content: end; - } - th[aria-sort="ascending"], - th[aria-sort="descending"] { - font-weight: 700; - } - :host > div:last-child { - padding: 0.5em; - } - :host > div:last-child, - :host > div:last-child > div:last-child { - display: grid; - align-items: center; - justify-items: center; - gap: 1em; - } - @media (min-width: 1024px) { - :host > div:last-child, - :host > div:last-child > div:last-child { - grid-auto-flow: column; - } - :host > div:last-child kol-pagination { - display: flex; - gap: 1rem; - } - }`, - 'KOL-NAV': `* { - margin: 0; - padding: 0; - } - nav { - font-family: var(--font-family); - font-size: var(--font-size); - background-color: var(--color-smoke); - width: 100%; - } - ul { - list-style: none; - } - kol-link-wc, - a { - height: 100%; - min-height: 44px; - display: flex; - place-items: center; - } - .entry > kol-span-wc > span { - width: 100%; - } - .entry > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child { - background-color: var(--color-white); - text-decoration: none; - color: var(--color-midnight); - width: 100%; - display: flex; - align-items: center; - font-style: normal; - line-height: 1.5rem; - min-height: 44px; - min-width: 44px; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - letter-spacing: 0.175px; - } - .entry > :is(kol-link-wc, kol-button-wc):first-child :is(a, button) { - color: var(--color-midnight); - text-decoration: none; - } - .entry > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child:hover { - border-left-color: var(--color-ocean); - background-color: var(--color-ocean); - } - .entry - > :is(kol-link-wc, kol-button-wc, kol-span-wc):first-child:hover - > :is(a, button, span) { - color: var(--color-white); - font-weight: 700; - letter-spacing: unset; - } - .selected > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child { - background-color: var(--color-ice); - color: var(--color-midnight); - font-weight: 700; - } - .selected - > :is(kol-link-wc, kol-button-wc, kol-span-wc):first-child - > :is(a, button, span) { - font-weight: 700; - } - .selected :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child:hover { - color: var(--color-white); - letter-spacing: unset; - } - .entry > kol-span-wc > span, - .entry :is(a, button) { - border-left-color: transparent; - border-left-style: solid; - border-left-width: 0.5rem; - padding: 0.75rem 0.5rem 0.75rem 0.25rem; - } - .selected :is(a, button), - [exportparts*="selected"] a { - border-left-color: var(--color-midnight); - } /** Compact mode */ - .entry.compact :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child { - place-items: center; - } - .entry.compact > kol-span-wc > span { - flex-direction: column; - } - .entry.compact > kol-span-wc > span, - .entry.compact :is(a, button) { - padding-left: 0; - }`, - 'KOL-CARD': `/* https://www.figma.com/file/56JbmrssCRpjpfxoAFeHqT/Design-System-EPLF-(in-progress)?node-id=8225%3A5945 */ - :host > div { - display: grid; - width: 100%; - height: 100%; - background-color: white; - grid-template-rows: min-content 2fr min-content; - box-shadow: 0 0 0.25rem var(--color-grey); - border-radius: 0.25rem; - } - :host kol-heading-wc { - line-height: 1.75rem; - } - :host div.header { - padding: 1rem 1rem 0.5rem 1rem; - } - :host div.content { - padding: 0.5rem 1rem 1rem; - overflow: auto; - } - :host div.footer { - padding: 0.5rem 1rem; - } - :host > div > div.content + div.footer { - border-top: 2px solid var(--color-ice); - }`, - 'KOL-INPUT-CHECKBOX': `/* INPUT */ - :host kol-input { - display: grid; - align-items: center; - justify-items: left; - width: 100%; - min-height: 44px; - gap: 0.4em; - } - :host kol-input.default { - grid-template-columns: 1.5rem auto; - } - :host kol-input.switch { - grid-template-columns: 3.5rem auto; - } - :host kol-input > div.input { - display: inherit; - min-height: 44px; - order: 2; - } - :host kol-input > div.input input { - margin: 0px; - } - :host kol-input > label { - cursor: pointer; - order: 3; - } - :host kol-input > kol-alert.error { - order: 1; - padding-top: 0.25em; - grid-column: span 2 / auto; - } - :host kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - :host kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - outline-color: var(--color-red) !important; - } - :host kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - :host input { - cursor: pointer; - order: 1; - width: 100%; - border-color: var(--color-grey); - border-width: 2px; - border-style: solid; - border-radius: 5px; /* padding: 10px 14px; */ - line-height: 24px; - font-size: 1rem; - } - :host input:hover { - border-color: var(--color-midnight); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - } - :host input:focus:hover { - box-shadow: none; - } - :host input:active { - box-shadow: none; - } - :host kol-alert { - display: block; - width: 100%; - } /* CHECKBOX */ - :host kol-input label span { - margin-top: 0.125rem; - } - :host .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - :host kol-input input[type="checkbox"] { - appearance: none; - background-color: white; - cursor: pointer; - transition: 0.5s; - } - :host kol-input input[type="checkbox"].kol-disabled:before { - cursor: not-allowed; - } - :host kol-input input[type="checkbox"]:before { - content: ""; - cursor: pointer; - } - :host kol-input input[type="checkbox"]:checked { - background-color: var(--color-midnight); - border-color: var(--color-midnight); - } - :host kol-input.default input[type="checkbox"] { - border-radius: var(--border-radius); - height: calc(6 * var(--spacing)); - min-width: calc(6 * var(--spacing)); - width: calc(6 * var(--spacing)); - } - :host kol-input.default input[type="checkbox"]:before { - border-radius: 1.5em; - background-color: transparent; - display: block; - height: calc(6 * var(--spacing)); - position: relative; - width: calc(6 * var(--spacing)); - } - :host kol-input.default input[type="checkbox"]:checked:before { - border-right-width: 3px; - border-bottom-width: 3px; - left: calc(1.5 * var(--spacing) - 2px); - top: calc(2.85 * var(--spacing) - 2px); - transform: rotate(40deg) translate(-50%, -50%); - background-color: transparent; - border-width: 0px 3px 3px 0px; - border-color: white; - border-radius: 1px; - border-style: solid; - height: calc(3 * var(--spacing)); - width: calc(1.5 * var(--spacing)); - } - :host kol-input.default input[type="checkbox"]:indeterminate { - --tw-bg-opacity: 1; - background-color: var(--color-midnight); - } - :host kol-input.default input[type="checkbox"]:indeterminate:before { - background-color: var(--color-white); - height: 0.125rem; - top: 0.6rem; - left: 0.25rem; - width: calc(3 * var(--spacing)); - transform: inherit; - } - :host kol-input.default input[type="checkbox"]:checked:indeterminate:before { - border-width: 0px 1px 1px 0px; - } - :host kol-input.switch input[type="checkbox"] { - min-width: 3.5em; - width: 3.5em; - background-color: var(--color-grey); - border-width: 0; - height: 1.5em; - border-radius: 1.25em; - display: inline-block; - position: relative; - } - :host kol-input.switch input[type="checkbox"]:before { - -webkit-transition: 0.5s; - -moz-transition: 0.5s; - -ms-transition: 0.5s; - transition: 0.5; - width: 1.25em; - height: 1.25em; - left: calc(0.25em - 2px); - top: calc(0.25em - 2px); - border-radius: 1.25em; - background-color: white; - position: absolute; - } - :host kol-input.switch input[type="checkbox"]:checked { - background-color: var(--color-midnight); - } - :host kol-input.switch input[type="checkbox"]:checked:before { - -webkit-transform: translateX(2em); - -moz-transform: translateX(2em); - -ms-transform: translateX(2em); - transform: translateX(2em); - --tw-bg-opacity: 1; - } - :host kol-input.switch input[type="checkbox"]:indeterminate { - --tw-bg-opacity: 1; - } - :host kol-input.switch input[type="checkbox"]:indeterminate:before { - -webkit-transform: translateX(1em); - -moz-transform: translateX(1em); - -ms-transform: translateX(1em); - transform: translateX(1em); - } - :host .disabled { - opacity: 0.33; - } - .button:focus-within { - border-radius: 0.25rem; - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - }`, - 'KOL-INPUT-RADIO': `/* INPUT */ - kol-input { - display: grid; - gap: 0.4em; - } - label { - cursor: pointer; - display: grid; - line-height: 20px; - gap: 8px; - width: 100%; - } - input { - cursor: pointer; - width: 100%; - border-color: var(--color-grey); - border-width: 2px; - border-style: solid; - border-radius: 5px; /* padding: 10px 14px; */ - line-height: 24px; - font-size: 16px; - } - input:hover { - border-color: var(--color-midnight); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - } - input:focus:hover { - box-shadow: none; - } - input:hover { - border-color: var(--color-midnight); - } - kol-alert { - display: block; - width: 100%; - } - .required legend > span::after { - content: "*"; - padding-left: 0.125em; - } /* RADIO */ - fieldset { - border: 0px; - margin: 0px; - padding: 0px; - display: grid; - gap: 0.25em; - } - fieldset div { - cursor: pointer; - display: flex; - flex-direction: row; - align-items: center; - position: relative; - min-height: 44px; - margin: 0; - } - fieldset div label { - cursor: pointer; - display: flex; - padding-left: 0.25em; - width: 100%; - } - fieldset div label span { - margin-top: 0.125em; - } - fieldset div input[type="radio"] { - appearance: none; - transition: 0.5s; - border-radius: 100%; - height: calc(6 * var(--spacing)); - min-width: calc(6 * var(--spacing)); - width: calc(6 * var(--spacing)); - } - fieldset div input[type="radio"]:before { - content: ""; - cursor: pointer; - border-radius: 100%; - display: block; - } - fieldset div input[type="radio"]:checked:before { - background-color: var(--color-midnight); - } - fieldset div input[type="radio"]:disabled { - cursor: not-allowed; - border-color: var(--border-default); - background-color: var(--background-light-grey); - } - kol-alert.error { - order: 1; - } - fieldset legend { - order: 2; - display: contents; - } - fieldset kol-input { - order: 3; - } - fieldset.error { - padding-left: 1em; - border-left: 3px solid var(--color-red); - } - kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - fieldset.error input:focus, - fieldset.error select:focus, - fieldset.error textarea:focus { - outline-color: var(--color-red) !important; - } - fieldset.error kol-alert.error { - margin-left: -0.25em; - color: var(--color-red); - font-weight: 700; - } - .disabled { - opacity: 0.33; - } - fieldset.horizontal { - display: flex; - flex-wrap: wrap; - gap: 0.5rem 1rem; - } - fieldset.horizontal legend { - display: inline-block; - margin-bottom: 0.25em; - } - fieldset .input-slot { - gap: 0.5rem; - } - fieldset div label { - padding-left: 0; - }`, - 'KOL-TOAST': `:host > div { - position: fixed; - top: 0; - right: 0; - width: 100%; - height: 0; - z-index: 200; - } - :host > div > kol-alert { - display: block; - margin-left: auto; - margin-right: unset; - padding: 2rem; - max-width: 750px; - } - :host > div > kol-button-wc { - top: 0; - position: relative; - display: block; - width: 1em; - }`, - 'KOL-TABS': `button:disabled { - opacity: 0.5; - cursor: not-allowed; - } - :host kol-button-group-wc { - display: inline-flex; - gap: 2rem; - flex-wrap: wrap; - } - button { - box-sizing: border-box; - background-color: transparent; - border: 0; - border-radius: 0.25rem; - font-style: normal; - font-weight: 700; - font-size: 18px; - line-height: 22px; - min-height: 44px; - min-width: 44px; - color: var(--color-grey); - padding: 0; - } - button:hover { - color: var(--color-midnight); - } - button.primary, - button.selected { - /* border-bottom: 0.025rem solid var(--color-midnight); */ - color: var(--color-midnight); - } - button kol-span-wc > span { - border-bottom: 0.25em solid; - } - button kol-span-wc > span { - gap: 0.5rem; - } - :host > div > div { - padding: 0.25em 0; - } - .close-button { - display: none; - font-size: 25%; - height: fit-content; - width: 0; - } - .close-button button { - width: 1rem; - position: relative; - height: 1rem; - left: -4.25em; - top: 0.25em; - } - div[role="tabpanel"] { - height: 100%; - } - div.grid { - height: 100%; - } - :host > .tabs-align-right { - display: grid; - grid-template-columns: 1fr auto; - } - :host > .tabs-align-right kol-button-group-wc { - display: grid; - order: 2; - } - :host > .tabs-align-left { - display: grid; - grid-template-columns: auto 1fr; - } - :host > .tabs-align-left kol-button-group-wc { - display: grid; - order: 0; - } - :host > .tabs-align-bottom { - display: grid; - grid-template-rows: 1fr auto; - } - :host > .tabs-align-bottom kol-button-group-wc { - order: 2; - } - :host > .tabs-align-bottom kol-button-group-wc > div { - display: flex; - } - :host > .tabs-align-bottom > kol-button-group-wc > div > div:first-child { - margin: 0px 1em 0px 0px; - } - :host > .tabs-align-bottom > kol-button-group-wc > div > div { - margin: 0px 1em; - } - :host > .tabs-align-top { - display: grid; - grid-template-rows: auto 1fr; - } - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-top kol-button-group-wc > div { - display: flex; - } - :host > .tabs-align-top > kol-button-group-wc > div > div:first-child { - margin: 0px 1em 0px 0px; - } - :host > .tabs-align-top > kol-button-group-wc > div > div { - margin: 0px 1em; - } - :host > div { - display: grid; - } - :host > div.tabs-align-left { - grid-template-columns: auto 1fr; - } - :host > div.tabs-align-right { - grid-template-columns: 1fr auto; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-bottom kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - order: 1; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - gap: inherit; - } - :host > div.tabs-align-left kol-button-group-wc > div, - :host > div.tabs-align-left kol-button-group-wc > div > div, - :host > div.tabs-align-right kol-button-group-wc > div, - :host > div.tabs-align-right kol-button-group-wc > div > div { - display: grid; - } - :host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc, - :host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc { - width: 100%; - } - :host > div.tabs-align-bottom kol-button-group-wc div, - :host > div.tabs-align-top kol-button-group-wc div { - display: flex; - flex-wrap: wrap; - } - :host kol-button-group-wc button { - border: none; - }`, - 'KOL-PAGINATION': `:host { - display: grid; - gap: 1rem; - } - :host .navigation-list { - display: inline-flex; - flex-wrap: wrap; - align-items: center; - gap: 0.5em; - } - :host .selected button { - min-width: 44px; - min-height: 44px; - display: grid; - line-height: 1.5rem; - font-family: var(--font-family); - cursor: not-allowed; - font-weight: 700; - padding: 10px 12px; - border-radius: 1.5em; - border: none; - font-size: 16px; - font-style: normal; - text-align: center; - width: inherit; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - color: var(--color-midnight); - background-color: var(--color-ice); - border-color: var(--color-ice); - } - :host > div > span { - align-self: flex-end; - padding-bottom: 0.5rem; - color: var(--color-midnight); - } - kol-button::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - } - kol-button.first::part(icon):before { - content: "\\f100"; - } - kol-button.previous::part(icon):before { - content: "\\f104"; - } - kol-button.next::part(icon):before { - content: "\\f105"; - } - kol-button.last::part(icon):before { - content: "\\f101"; - }`, - 'KOL-INPUT-RANGE': `kol-input { - gap: 0.25em; - } - kol-input .error { - order: 1; - } - kol-input label { - order: 2; - } - kol-input .input { - order: 3; - } - kol-input .hint { - order: 4; - font-size: 0.875em; - font-style: italic; - } - input { - border: none; - } - input::placeholder { - color: var(--color-grey); - } - .input { - background-color: var(--color-white); - border-color: var(--color-grey); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - padding: 0 1em; - } - .input > kol-icon { - width: 1em; - } - .input.icon-left > kol-icon:first-child { - margin-right: 0.5em; - } - .input.icon-right > kol-icon:last-child { - margin-left: 0.5em; - } - .input:is(.icon-left, .icon-right) { - padding-left: 1em; - padding-right: 1em; - } - .input:hover { - border-color: var(--color-midnight); - } - input:read-only, - input:disabled { - cursor: not-allowed; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input.error { - border-left: 3px solid var(--color-red); - padding-left: 1em; - } - kol-input.error .input:focus-within { - outline-color: var(--color-red) !important; - } - kol-input.error kol-alert.error { - color: var(--color-red); - font-weight: 700; - } - kol-input.disabled :is(input, label) { - opacity: 1; - } - kol-input.disabled :is(.input) { - background-color: var(--color-smoke); - border-color: var(--color-granite); - color: var(--color-black); - }`, - 'KOL-LINK-BUTTON': `:is(a, button):focus { - outline: none; - } - :is(a, button):focus kol-span-wc { - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - transition: outline-offset 0.2s linear; - } - :is(a, button) > kol-span-wc { - font-weight: 700; - border-radius: var(--a11y-min-size); - border-style: solid; - border-width: 2px; - min-height: var(--a11y-min-size); - min-width: var(--a11y-min-size); - padding: 8px 14px; - text-align: center; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - :is(a, button):disabled > kol-span-wc { - cursor: not-allowed; - opacity: 0.5; - } - .primary :is(a, button) > kol-span-wc, - .primary :is(a, button):disabled:hover > kol-span-wc { - background-color: var(--color-midnight); - border-color: var(--color-midnight); - color: var(--color-white); - } - .secondary :is(a, button) > kol-span-wc, - .secondary :is(a, button):disabled:hover > kol-span-wc, - .normal :is(a, button) > kol-span-wc, - .normal :is(a, button):disabled:hover > kol-span-wc { - background-color: var(--color-white); - border-color: var(--color-midnight); - color: var(--color-midnight); - } - .danger :is(a, button) > kol-span-wc, - .danger :is(a, button):disabled:hover > kol-span-wc { - background-color: var(--color-red); - border-color: var(--color-red); - color: var(--color-white); - } - .ghost :is(a, button) > kol-span-wc, - .ghost :is(a, button):disabled:hover > kol-span-wc { - border-color: var(--color-white); - background-color: var(--color-white); - box-shadow: none; - color: var(--color-midnight); - } /*-----------*/ - .primary :is(a, button):active > kol-span-wc, - .primary :is(a, button):hover > kol-span-wc, - .secondary :is(a, button):active > kol-span-wc, - .secondary :is(a, button):hover > kol-span-wc, - .normal :is(a, button):active > kol-span-wc, - .normal :is(a, button):hover > kol-span-wc, - .danger :is(a, button):active > kol-span-wc, - .danger :is(a, button):hover > kol-span-wc, - .ghost :is(a, button):active > kol-span-wc, - .ghost :is(a, button):hover > kol-span-wc { - background-color: var(--color-ocean); - border-color: var(--color-ocean); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - color: var(--color-white); - } - .danger :is(a, button):active > kol-span-wc, - .danger :is(a, button):hover > kol-span-wc { - background-color: var(--color-crimson); - border-color: var(--color-crimson); - } - :is(a, button):disabled:hover > kol-span-wc, - :is(a, button):focus:hover > kol-span-wc { - box-shadow: none; - } - .primary :is(a, button):active > kol-span-wc, - .secondary :is(a, button):active > kol-span-wc, - .normal :is(a, button):active > kol-span-wc, - .danger :is(a, button):active > kol-span-wc, - .ghost :is(a, button):active > kol-span-wc { - border-color: var(--color-white); - box-shadow: none; - outline: none; - } - :is(a, button).hide-label > kol-span-wc { - padding: 8px; - width: unset; - } - :is(a, button).hide-label > kol-span-wc > span > span { - display: none; - } - :is(a, button).loading > kol-span-wc kol-icon { - animation: spin 5s infinite linear; - } /** small ghost button */ - .ghost :is(a, button).small > kol-span-wc { - border: none; - background-color: transparent; - box-shadow: none; - } - .ghost :is(a, button).small > kol-span-wc > span { - border-radius: 1.5em; - border-style: solid; - border-width: 2px; - border-color: var(--color-white); - background-color: var(--color-white); - } - .ghost :is(a, button).small:active > kol-span-wc > span, - .ghost :is(a, button).small:hover > kol-span-wc > span, - .ghost :is(a, button).small.transparent:active > kol-span-wc > span, - .ghost :is(a, button).small.transparent:hover > kol-span-wc > span { - background-color: var(--color-ocean); - border-color: var(--color-ocean); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - color: var(--color-white); - } /** :is(a,button) with transparent background */ - :is(a, button).transparent > kol-span-wc > span, - .ghost :is(a, button).small.transparent > kol-span-wc > span, - :is(a, button).transparent > kol-span-wc { - background-color: transparent; - border-color: transparent; - }`, - 'KOL-BUTTON-LINK': `:is(a, button) { - color: var(--color-midnight); - font-style: normal; - font-weight: 400; - text-decoration-line: underline; - font-size: inherit; - } - :is(a, button):focus { - outline: none; - } - :is(a, button):focus kol-span-wc { - border-radius: var(--border-radius); - outline: 2px solid; - } - :is(a, button):hover { - text-decoration-thickness: 0.25em; - } - :is(a, button):visited { - color: var(--visited); - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-ABBR': `abbr { - border-bottom: dashed var(--color-black) 1px; - text-decoration: none !important; - }`, - 'KOL-BREADCRUMB': `li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon { - font-size: 0.75rem; - } - li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon::part(icon) { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - color: var(--color-grey); - } - li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon::part(icon)::before { - content: "\\f054"; - } - kol-link::part(icon) { - font-size: 1.25rem; - } - ul li > :is(span, kol-link) { - line-height: 1.25rem; - height: 20px; - } - ul li:last-child > span { - color: var(--color-grey); - }`, - 'KOL-MODAL': `:host .overlay .modal { - max-height: 100%; - overflow: auto; - }`, - 'KOL-ICON': `:host { - width: 1em; - height: 1em; - } - :host > i { - width: 1em; - height: 1em; - } - @font-face { - font-family: "Material Icons"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons.woff2") format("woff2"), - url("./material-icons.woff") format("woff"); - } - .material-icons { - font-family: "Material Icons"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Icons Outlined"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-outlined.woff2") format("woff2"), - url("./material-icons-outlined.woff") format("woff"); - } - .material-icons-outlined { - font-family: "Material Icons Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Icons Round"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-round.woff2") format("woff2"), - url("./material-icons-round.woff") format("woff"); - } - .material-icons-round { - font-family: "Material Icons Round"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Icons Sharp"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-sharp.woff2") format("woff2"), - url("./material-icons-sharp.woff") format("woff"); - } - .material-icons-sharp { - font-family: "Material Icons Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Icons Two Tone"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("./material-icons-two-tone.woff2") format("woff2"), - url("./material-icons-two-tone.woff") format("woff"); - } - .material-icons-two-tone { - font-family: "Material Icons Two Tone"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Symbols Outlined"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-outlined.woff2") format("woff2"); - } - .material-symbols-outlined { - font-family: "Material Symbols Outlined"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Symbols Rounded"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-rounded.woff2") format("woff2"); - } - .material-symbols-rounded { - font-family: "Material Symbols Rounded"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - @font-face { - font-family: "Material Symbols Sharp"; - font-style: normal; - font-weight: 100 700; - font-display: block; - src: url("./material-symbols-sharp.woff2") format("woff2"); - } - .material-symbols-sharp { - font-family: "Material Symbols Sharp"; - font-weight: normal; - font-style: normal; - font-size: 24px; - line-height: 1; - letter-spacing: normal; - text-transform: none; - display: inline-block; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "liga"; - } - [class*="material-icons"].home:after { - content: "home"; - } - [class*="material-icons"].east:after { - content: "east"; - } - [class*="material-symbols"].home:after { - content: "home"; - } - [class*="material-symbols"].arrow_right_alt:after { - content: "arrow_right_alt"; - } /*! * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2022 Fonticons, Inc. */ - .fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); - } - .fa, - .fa-brands, - .fa-duotone, - .fa-light, - .fa-regular, - .fa-solid, - .fa-thin, - .fab, - .fad, - .fal, - .far, - .fas, - .fat { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; - } - .fa-1x { - font-size: 1em; - } - .fa-2x { - font-size: 2em; - } - .fa-3x { - font-size: 3em; - } - .fa-4x { - font-size: 4em; - } - .fa-5x { - font-size: 5em; - } - .fa-6x { - font-size: 6em; - } - .fa-7x { - font-size: 7em; - } - .fa-8x { - font-size: 8em; - } - .fa-9x { - font-size: 9em; - } - .fa-10x { - font-size: 10em; - } - .fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; - } - .fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; - } - .fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; - } - .fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; - } - .fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; - } - .fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; - } - .fa-fw { - text-align: center; - width: 1.25em; - } - .fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; - } - .fa-ul > li { - position: relative; - } - .fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; - } - .fa-border { - border-radius: var(--fa-border-radius, 0.1em); - border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) - var(--fa-border-color, #eee); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); - } - .fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); - } - .fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); - } - .fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); - } - .fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.28, 0.84, 0.42, 1) - ); - animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.28, 0.84, 0.42, 1) - ); - } - .fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - } - .fa-beat-fade, - .fa-fade { - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - } - .fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - } - .fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); - } - .fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); - } - .fa-shake, - .fa-spin { - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - } - .fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); - } - .fa-spin-reverse { - --fa-animation-direction: reverse; - } - .fa-pulse, - .fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); - } - @media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-beat-fade, - .fa-bounce, - .fa-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; - } - } - @-webkit-keyframes fa-beat { - 0%, - 90% { - -webkit-transform: scale(1); - transform: scale(1); - } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); - } - } - @keyframes fa-beat { - 0%, - 90% { - -webkit-transform: scale(1); - transform: scale(1); - } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); - } - } - @-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - 10% { - -webkit-transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - } - 30% { - -webkit-transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - } - 50% { - -webkit-transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - } - 57% { - -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - } - 64% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - to { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - } - @keyframes fa-bounce { - 0% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - 10% { - -webkit-transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - } - 30% { - -webkit-transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - } - 50% { - -webkit-transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - } - 57% { - -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - } - 64% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - to { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - } - @-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); - } - } - @keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); - } - } - @-webkit-keyframes fa-beat-fade { - 0%, - to { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); - } - } - @keyframes fa-beat-fade { - 0%, - to { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); - } - } - @-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - } - } - @keyframes fa-flip { - 50% { - -webkit-transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - } - } - @-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); - } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 8%, - 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); - } - 12%, - 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); - } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); - } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); - } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); - } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); - } - 40%, - to { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - } - @keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); - } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 8%, - 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); - } - 12%, - 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); - } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); - } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); - } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); - } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); - } - 40%, - to { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - } - @-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } - } - @keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } - } - .fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - } - .fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - } - .fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); - } - .fa-flip-horizontal { - -webkit-transform: scaleX(-1); - transform: scaleX(-1); - } - .fa-flip-vertical { - -webkit-transform: scaleY(-1); - transform: scaleY(-1); - } - .fa-flip-both, - .fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1); - transform: scale(-1); - } - .fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); - } - .fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; - } - .fa-stack-1x, - .fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); - } - .fa-stack-1x { - line-height: inherit; - } - .fa-stack-2x { - font-size: 2em; - } - .fa-inverse { - color: var(--fa-inverse, #fff); - } - .fa-0:before { - content: "\\30"; - } - .fa-1:before { - content: "\\31"; - } - .fa-2:before { - content: "\\32"; - } - .fa-3:before { - content: "\\33"; - } - .fa-4:before { - content: "\\34"; - } - .fa-5:before { - content: "\\35"; - } - .fa-6:before { - content: "\\36"; - } - .fa-7:before { - content: "\\37"; - } - .fa-8:before { - content: "\\38"; - } - .fa-9:before { - content: "\\39"; - } - .fa-a:before { - content: "\\41"; - } - .fa-address-book:before, - .fa-contact-book:before { - content: "\\f2b9"; - } - .fa-address-card:before, - .fa-contact-card:before, - .fa-vcard:before { - content: "\\f2bb"; - } - .fa-align-center:before { - content: "\\f037"; - } - .fa-align-justify:before { - content: "\\f039"; - } - .fa-align-left:before { - content: "\\f036"; - } - .fa-align-right:before { - content: "\\f038"; - } - .fa-anchor:before { - content: "\\f13d"; - } - .fa-anchor-circle-check:before { - content: "\\e4aa"; - } - .fa-anchor-circle-exclamation:before { - content: "\\e4ab"; - } - .fa-anchor-circle-xmark:before { - content: "\\e4ac"; - } - .fa-anchor-lock:before { - content: "\\e4ad"; - } - .fa-angle-down:before { - content: "\\f107"; - } - .fa-angle-left:before { - content: "\\f104"; - } - .fa-angle-right:before { - content: "\\f105"; - } - .fa-angle-up:before { - content: "\\f106"; - } - .fa-angle-double-down:before, - .fa-angles-down:before { - content: "\\f103"; - } - .fa-angle-double-left:before, - .fa-angles-left:before { - content: "\\f100"; - } - .fa-angle-double-right:before, - .fa-angles-right:before { - content: "\\f101"; - } - .fa-angle-double-up:before, - .fa-angles-up:before { - content: "\\f102"; - } - .fa-ankh:before { - content: "\\f644"; - } - .fa-apple-alt:before, - .fa-apple-whole:before { - content: "\\f5d1"; - } - .fa-archway:before { - content: "\\f557"; - } - .fa-arrow-down:before { - content: "\\f063"; - } - .fa-arrow-down-1-9:before, - .fa-sort-numeric-asc:before, - .fa-sort-numeric-down:before { - content: "\\f162"; - } - .fa-arrow-down-9-1:before, - .fa-sort-numeric-desc:before, - .fa-sort-numeric-down-alt:before { - content: "\\f886"; - } - .fa-arrow-down-a-z:before, - .fa-sort-alpha-asc:before, - .fa-sort-alpha-down:before { - content: "\\f15d"; - } - .fa-arrow-down-long:before, - .fa-long-arrow-down:before { - content: "\\f175"; - } - .fa-arrow-down-short-wide:before, - .fa-sort-amount-desc:before, - .fa-sort-amount-down-alt:before { - content: "\\f884"; - } - .fa-arrow-down-up-across-line:before { - content: "\\e4af"; - } - .fa-arrow-down-up-lock:before { - content: "\\e4b0"; - } - .fa-arrow-down-wide-short:before, - .fa-sort-amount-asc:before, - .fa-sort-amount-down:before { - content: "\\f160"; - } - .fa-arrow-down-z-a:before, - .fa-sort-alpha-desc:before, - .fa-sort-alpha-down-alt:before { - content: "\\f881"; - } - .fa-arrow-left:before { - content: "\\f060"; - } - .fa-arrow-left-long:before, - .fa-long-arrow-left:before { - content: "\\f177"; - } - .fa-arrow-pointer:before, - .fa-mouse-pointer:before { - content: "\\f245"; - } - .fa-arrow-right:before { - content: "\\f061"; - } - .fa-arrow-right-arrow-left:before, - .fa-exchange:before { - content: "\\f0ec"; - } - .fa-arrow-right-from-bracket:before, - .fa-sign-out:before { - content: "\\f08b"; - } - .fa-arrow-right-long:before, - .fa-long-arrow-right:before { - content: "\\f178"; - } - .fa-arrow-right-to-bracket:before, - .fa-sign-in:before { - content: "\\f090"; - } - .fa-arrow-right-to-city:before { - content: "\\e4b3"; - } - .fa-arrow-left-rotate:before, - .fa-arrow-rotate-back:before, - .fa-arrow-rotate-backward:before, - .fa-arrow-rotate-left:before, - .fa-undo:before { - content: "\\f0e2"; - } - .fa-arrow-right-rotate:before, - .fa-arrow-rotate-forward:before, - .fa-arrow-rotate-right:before, - .fa-redo:before { - content: "\\f01e"; - } - .fa-arrow-trend-down:before { - content: "\\e097"; - } - .fa-arrow-trend-up:before { - content: "\\e098"; - } - .fa-arrow-turn-down:before, - .fa-level-down:before { - content: "\\f149"; - } - .fa-arrow-turn-up:before, - .fa-level-up:before { - content: "\\f148"; - } - .fa-arrow-up:before { - content: "\\f062"; - } - .fa-arrow-up-1-9:before, - .fa-sort-numeric-up:before { - content: "\\f163"; - } - .fa-arrow-up-9-1:before, - .fa-sort-numeric-up-alt:before { - content: "\\f887"; - } - .fa-arrow-up-a-z:before, - .fa-sort-alpha-up:before { - content: "\\f15e"; - } - .fa-arrow-up-from-bracket:before { - content: "\\e09a"; - } - .fa-arrow-up-from-ground-water:before { - content: "\\e4b5"; - } - .fa-arrow-up-from-water-pump:before { - content: "\\e4b6"; - } - .fa-arrow-up-long:before, - .fa-long-arrow-up:before { - content: "\\f176"; - } - .fa-arrow-up-right-dots:before { - content: "\\e4b7"; - } - .fa-arrow-up-right-from-square:before, - .fa-external-link:before { - content: "\\f08e"; - } - .fa-arrow-up-short-wide:before, - .fa-sort-amount-up-alt:before { - content: "\\f885"; - } - .fa-arrow-up-wide-short:before, - .fa-sort-amount-up:before { - content: "\\f161"; - } - .fa-arrow-up-z-a:before, - .fa-sort-alpha-up-alt:before { - content: "\\f882"; - } - .fa-arrows-down-to-line:before { - content: "\\e4b8"; - } - .fa-arrows-down-to-people:before { - content: "\\e4b9"; - } - .fa-arrows-h:before, - .fa-arrows-left-right:before { - content: "\\f07e"; - } - .fa-arrows-left-right-to-line:before { - content: "\\e4ba"; - } - .fa-arrows-rotate:before, - .fa-refresh:before, - .fa-sync:before { - content: "\\f021"; - } - .fa-arrows-spin:before { - content: "\\e4bb"; - } - .fa-arrows-split-up-and-left:before { - content: "\\e4bc"; - } - .fa-arrows-to-circle:before { - content: "\\e4bd"; - } - .fa-arrows-to-dot:before { - content: "\\e4be"; - } - .fa-arrows-to-eye:before { - content: "\\e4bf"; - } - .fa-arrows-turn-right:before { - content: "\\e4c0"; - } - .fa-arrows-turn-to-dots:before { - content: "\\e4c1"; - } - .fa-arrows-up-down:before, - .fa-arrows-v:before { - content: "\\f07d"; - } - .fa-arrows-up-down-left-right:before, - .fa-arrows:before { - content: "\\f047"; - } - .fa-arrows-up-to-line:before { - content: "\\e4c2"; - } - .fa-asterisk:before { - content: "\\2a"; - } - .fa-at:before { - content: "\\40"; - } - .fa-atom:before { - content: "\\f5d2"; - } - .fa-audio-description:before { - content: "\\f29e"; - } - .fa-austral-sign:before { - content: "\\e0a9"; - } - .fa-award:before { - content: "\\f559"; - } - .fa-b:before { - content: "\\42"; - } - .fa-baby:before { - content: "\\f77c"; - } - .fa-baby-carriage:before, - .fa-carriage-baby:before { - content: "\\f77d"; - } - .fa-backward:before { - content: "\\f04a"; - } - .fa-backward-fast:before, - .fa-fast-backward:before { - content: "\\f049"; - } - .fa-backward-step:before, - .fa-step-backward:before { - content: "\\f048"; - } - .fa-bacon:before { - content: "\\f7e5"; - } - .fa-bacteria:before { - content: "\\e059"; - } - .fa-bacterium:before { - content: "\\e05a"; - } - .fa-bag-shopping:before, - .fa-shopping-bag:before { - content: "\\f290"; - } - .fa-bahai:before { - content: "\\f666"; - } - .fa-baht-sign:before { - content: "\\e0ac"; - } - .fa-ban:before, - .fa-cancel:before { - content: "\\f05e"; - } - .fa-ban-smoking:before, - .fa-smoking-ban:before { - content: "\\f54d"; - } - .fa-band-aid:before, - .fa-bandage:before { - content: "\\f462"; - } - .fa-barcode:before { - content: "\\f02a"; - } - .fa-bars:before, - .fa-navicon:before { - content: "\\f0c9"; - } - .fa-bars-progress:before, - .fa-tasks-alt:before { - content: "\\f828"; - } - .fa-bars-staggered:before, - .fa-reorder:before, - .fa-stream:before { - content: "\\f550"; - } - .fa-baseball-ball:before, - .fa-baseball:before { - content: "\\f433"; - } - .fa-baseball-bat-ball:before { - content: "\\f432"; - } - .fa-basket-shopping:before, - .fa-shopping-basket:before { - content: "\\f291"; - } - .fa-basketball-ball:before, - .fa-basketball:before { - content: "\\f434"; - } - .fa-bath:before, - .fa-bathtub:before { - content: "\\f2cd"; - } - .fa-battery-0:before, - .fa-battery-empty:before { - content: "\\f244"; - } - .fa-battery-5:before, - .fa-battery-full:before, - .fa-battery:before { - content: "\\f240"; - } - .fa-battery-3:before, - .fa-battery-half:before { - content: "\\f242"; - } - .fa-battery-2:before, - .fa-battery-quarter:before { - content: "\\f243"; - } - .fa-battery-4:before, - .fa-battery-three-quarters:before { - content: "\\f241"; - } - .fa-bed:before { - content: "\\f236"; - } - .fa-bed-pulse:before, - .fa-procedures:before { - content: "\\f487"; - } - .fa-beer-mug-empty:before, - .fa-beer:before { - content: "\\f0fc"; - } - .fa-bell:before { - content: "\\f0f3"; - } - .fa-bell-concierge:before, - .fa-concierge-bell:before { - content: "\\f562"; - } - .fa-bell-slash:before { - content: "\\f1f6"; - } - .fa-bezier-curve:before { - content: "\\f55b"; - } - .fa-bicycle:before { - content: "\\f206"; - } - .fa-binoculars:before { - content: "\\f1e5"; - } - .fa-biohazard:before { - content: "\\f780"; - } - .fa-bitcoin-sign:before { - content: "\\e0b4"; - } - .fa-blender:before { - content: "\\f517"; - } - .fa-blender-phone:before { - content: "\\f6b6"; - } - .fa-blog:before { - content: "\\f781"; - } - .fa-bold:before { - content: "\\f032"; - } - .fa-bolt:before, - .fa-zap:before { - content: "\\f0e7"; - } - .fa-bolt-lightning:before { - content: "\\e0b7"; - } - .fa-bomb:before { - content: "\\f1e2"; - } - .fa-bone:before { - content: "\\f5d7"; - } - .fa-bong:before { - content: "\\f55c"; - } - .fa-book:before { - content: "\\f02d"; - } - .fa-atlas:before, - .fa-book-atlas:before { - content: "\\f558"; - } - .fa-bible:before, - .fa-book-bible:before { - content: "\\f647"; - } - .fa-book-bookmark:before { - content: "\\e0bb"; - } - .fa-book-journal-whills:before, - .fa-journal-whills:before { - content: "\\f66a"; - } - .fa-book-medical:before { - content: "\\f7e6"; - } - .fa-book-open:before { - content: "\\f518"; - } - .fa-book-open-reader:before, - .fa-book-reader:before { - content: "\\f5da"; - } - .fa-book-quran:before, - .fa-quran:before { - content: "\\f687"; - } - .fa-book-dead:before, - .fa-book-skull:before { - content: "\\f6b7"; - } - .fa-bookmark:before { - content: "\\f02e"; - } - .fa-border-all:before { - content: "\\f84c"; - } - .fa-border-none:before { - content: "\\f850"; - } - .fa-border-style:before, - .fa-border-top-left:before { - content: "\\f853"; - } - .fa-bore-hole:before { - content: "\\e4c3"; - } - .fa-bottle-droplet:before { - content: "\\e4c4"; - } - .fa-bottle-water:before { - content: "\\e4c5"; - } - .fa-bowl-food:before { - content: "\\e4c6"; - } - .fa-bowl-rice:before { - content: "\\e2eb"; - } - .fa-bowling-ball:before { - content: "\\f436"; - } - .fa-box:before { - content: "\\f466"; - } - .fa-archive:before, - .fa-box-archive:before { - content: "\\f187"; - } - .fa-box-open:before { - content: "\\f49e"; - } - .fa-box-tissue:before { - content: "\\e05b"; - } - .fa-boxes-packing:before { - content: "\\e4c7"; - } - .fa-boxes-alt:before, - .fa-boxes-stacked:before, - .fa-boxes:before { - content: "\\f468"; - } - .fa-braille:before { - content: "\\f2a1"; - } - .fa-brain:before { - content: "\\f5dc"; - } - .fa-brazilian-real-sign:before { - content: "\\e46c"; - } - .fa-bread-slice:before { - content: "\\f7ec"; - } - .fa-bridge:before { - content: "\\e4c8"; - } - .fa-bridge-circle-check:before { - content: "\\e4c9"; - } - .fa-bridge-circle-exclamation:before { - content: "\\e4ca"; - } - .fa-bridge-circle-xmark:before { - content: "\\e4cb"; - } - .fa-bridge-lock:before { - content: "\\e4cc"; - } - .fa-bridge-water:before { - content: "\\e4ce"; - } - .fa-briefcase:before { - content: "\\f0b1"; - } - .fa-briefcase-medical:before { - content: "\\f469"; - } - .fa-broom:before { - content: "\\f51a"; - } - .fa-broom-ball:before, - .fa-quidditch-broom-ball:before, - .fa-quidditch:before { - content: "\\f458"; - } - .fa-brush:before { - content: "\\f55d"; - } - .fa-bucket:before { - content: "\\e4cf"; - } - .fa-bug:before { - content: "\\f188"; - } - .fa-bug-slash:before { - content: "\\e490"; - } - .fa-bugs:before { - content: "\\e4d0"; - } - .fa-building:before { - content: "\\f1ad"; - } - .fa-building-circle-arrow-right:before { - content: "\\e4d1"; - } - .fa-building-circle-check:before { - content: "\\e4d2"; - } - .fa-building-circle-exclamation:before { - content: "\\e4d3"; - } - .fa-building-circle-xmark:before { - content: "\\e4d4"; - } - .fa-bank:before, - .fa-building-columns:before, - .fa-institution:before, - .fa-museum:before, - .fa-university:before { - content: "\\f19c"; - } - .fa-building-flag:before { - content: "\\e4d5"; - } - .fa-building-lock:before { - content: "\\e4d6"; - } - .fa-building-ngo:before { - content: "\\e4d7"; - } - .fa-building-shield:before { - content: "\\e4d8"; - } - .fa-building-un:before { - content: "\\e4d9"; - } - .fa-building-user:before { - content: "\\e4da"; - } - .fa-building-wheat:before { - content: "\\e4db"; - } - .fa-bullhorn:before { - content: "\\f0a1"; - } - .fa-bullseye:before { - content: "\\f140"; - } - .fa-burger:before, - .fa-hamburger:before { - content: "\\f805"; - } - .fa-burst:before { - content: "\\e4dc"; - } - .fa-bus:before { - content: "\\f207"; - } - .fa-bus-alt:before, - .fa-bus-simple:before { - content: "\\f55e"; - } - .fa-briefcase-clock:before, - .fa-business-time:before { - content: "\\f64a"; - } - .fa-c:before { - content: "\\43"; - } - .fa-birthday-cake:before, - .fa-cake-candles:before, - .fa-cake:before { - content: "\\f1fd"; - } - .fa-calculator:before { - content: "\\f1ec"; - } - .fa-calendar:before { - content: "\\f133"; - } - .fa-calendar-check:before { - content: "\\f274"; - } - .fa-calendar-day:before { - content: "\\f783"; - } - .fa-calendar-alt:before, - .fa-calendar-days:before { - content: "\\f073"; - } - .fa-calendar-minus:before { - content: "\\f272"; - } - .fa-calendar-plus:before { - content: "\\f271"; - } - .fa-calendar-week:before { - content: "\\f784"; - } - .fa-calendar-times:before, - .fa-calendar-xmark:before { - content: "\\f273"; - } - .fa-camera-alt:before, - .fa-camera:before { - content: "\\f030"; - } - .fa-camera-retro:before { - content: "\\f083"; - } - .fa-camera-rotate:before { - content: "\\e0d8"; - } - .fa-campground:before { - content: "\\f6bb"; - } - .fa-candy-cane:before { - content: "\\f786"; - } - .fa-cannabis:before { - content: "\\f55f"; - } - .fa-capsules:before { - content: "\\f46b"; - } - .fa-automobile:before, - .fa-car:before { - content: "\\f1b9"; - } - .fa-battery-car:before, - .fa-car-battery:before { - content: "\\f5df"; - } - .fa-car-burst:before, - .fa-car-crash:before { - content: "\\f5e1"; - } - .fa-car-on:before { - content: "\\e4dd"; - } - .fa-car-alt:before, - .fa-car-rear:before { - content: "\\f5de"; - } - .fa-car-side:before { - content: "\\f5e4"; - } - .fa-car-tunnel:before { - content: "\\e4de"; - } - .fa-caravan:before { - content: "\\f8ff"; - } - .fa-caret-down:before { - content: "\\f0d7"; - } - .fa-caret-left:before { - content: "\\f0d9"; - } - .fa-caret-right:before { - content: "\\f0da"; - } - .fa-caret-up:before { - content: "\\f0d8"; - } - .fa-carrot:before { - content: "\\f787"; - } - .fa-cart-arrow-down:before { - content: "\\f218"; - } - .fa-cart-flatbed:before, - .fa-dolly-flatbed:before { - content: "\\f474"; - } - .fa-cart-flatbed-suitcase:before, - .fa-luggage-cart:before { - content: "\\f59d"; - } - .fa-cart-plus:before { - content: "\\f217"; - } - .fa-cart-shopping:before, - .fa-shopping-cart:before { - content: "\\f07a"; - } - .fa-cash-register:before { - content: "\\f788"; - } - .fa-cat:before { - content: "\\f6be"; - } - .fa-cedi-sign:before { - content: "\\e0df"; - } - .fa-cent-sign:before { - content: "\\e3f5"; - } - .fa-certificate:before { - content: "\\f0a3"; - } - .fa-chair:before { - content: "\\f6c0"; - } - .fa-blackboard:before, - .fa-chalkboard:before { - content: "\\f51b"; - } - .fa-chalkboard-teacher:before, - .fa-chalkboard-user:before { - content: "\\f51c"; - } - .fa-champagne-glasses:before, - .fa-glass-cheers:before { - content: "\\f79f"; - } - .fa-charging-station:before { - content: "\\f5e7"; - } - .fa-area-chart:before, - .fa-chart-area:before { - content: "\\f1fe"; - } - .fa-bar-chart:before, - .fa-chart-bar:before { - content: "\\f080"; - } - .fa-chart-column:before { - content: "\\e0e3"; - } - .fa-chart-gantt:before { - content: "\\e0e4"; - } - .fa-chart-line:before, - .fa-line-chart:before { - content: "\\f201"; - } - .fa-chart-pie:before, - .fa-pie-chart:before { - content: "\\f200"; - } - .fa-chart-simple:before { - content: "\\e473"; - } - .fa-check:before { - content: "\\f00c"; - } - .fa-check-double:before { - content: "\\f560"; - } - .fa-check-to-slot:before, - .fa-vote-yea:before { - content: "\\f772"; - } - .fa-cheese:before { - content: "\\f7ef"; - } - .fa-chess:before { - content: "\\f439"; - } - .fa-chess-bishop:before { - content: "\\f43a"; - } - .fa-chess-board:before { - content: "\\f43c"; - } - .fa-chess-king:before { - content: "\\f43f"; - } - .fa-chess-knight:before { - content: "\\f441"; - } - .fa-chess-pawn:before { - content: "\\f443"; - } - .fa-chess-queen:before { - content: "\\f445"; - } - .fa-chess-rook:before { - content: "\\f447"; - } - .fa-chevron-down:before { - content: "\\f078"; - } - .fa-chevron-left:before { - content: "\\f053"; - } - .fa-chevron-right:before { - content: "\\f054"; - } - .fa-chevron-up:before { - content: "\\f077"; - } - .fa-child:before { - content: "\\f1ae"; - } - .fa-child-dress:before { - content: "\\e59c"; - } - .fa-child-reaching:before { - content: "\\e59d"; - } - .fa-child-rifle:before { - content: "\\e4e0"; - } - .fa-children:before { - content: "\\e4e1"; - } - .fa-church:before { - content: "\\f51d"; - } - .fa-circle:before { - content: "\\f111"; - } - .fa-arrow-circle-down:before, - .fa-circle-arrow-down:before { - content: "\\f0ab"; - } - .fa-arrow-circle-left:before, - .fa-circle-arrow-left:before { - content: "\\f0a8"; - } - .fa-arrow-circle-right:before, - .fa-circle-arrow-right:before { - content: "\\f0a9"; - } - .fa-arrow-circle-up:before, - .fa-circle-arrow-up:before { - content: "\\f0aa"; - } - .fa-check-circle:before, - .fa-circle-check:before { - content: "\\f058"; - } - .fa-chevron-circle-down:before, - .fa-circle-chevron-down:before { - content: "\\f13a"; - } - .fa-chevron-circle-left:before, - .fa-circle-chevron-left:before { - content: "\\f137"; - } - .fa-chevron-circle-right:before, - .fa-circle-chevron-right:before { - content: "\\f138"; - } - .fa-chevron-circle-up:before, - .fa-circle-chevron-up:before { - content: "\\f139"; - } - .fa-circle-dollar-to-slot:before, - .fa-donate:before { - content: "\\f4b9"; - } - .fa-circle-dot:before, - .fa-dot-circle:before { - content: "\\f192"; - } - .fa-arrow-alt-circle-down:before, - .fa-circle-down:before { - content: "\\f358"; - } - .fa-circle-exclamation:before, - .fa-exclamation-circle:before { - content: "\\f06a"; - } - .fa-circle-h:before, - .fa-hospital-symbol:before { - content: "\\f47e"; - } - .fa-adjust:before, - .fa-circle-half-stroke:before { - content: "\\f042"; - } - .fa-circle-info:before, - .fa-info-circle:before { - content: "\\f05a"; - } - .fa-arrow-alt-circle-left:before, - .fa-circle-left:before { - content: "\\f359"; - } - .fa-circle-minus:before, - .fa-minus-circle:before { - content: "\\f056"; - } - .fa-circle-nodes:before { - content: "\\e4e2"; - } - .fa-circle-notch:before { - content: "\\f1ce"; - } - .fa-circle-pause:before, - .fa-pause-circle:before { - content: "\\f28b"; - } - .fa-circle-play:before, - .fa-play-circle:before { - content: "\\f144"; - } - .fa-circle-plus:before, - .fa-plus-circle:before { - content: "\\f055"; - } - .fa-circle-question:before, - .fa-question-circle:before { - content: "\\f059"; - } - .fa-circle-radiation:before, - .fa-radiation-alt:before { - content: "\\f7ba"; - } - .fa-arrow-alt-circle-right:before, - .fa-circle-right:before { - content: "\\f35a"; - } - .fa-circle-stop:before, - .fa-stop-circle:before { - content: "\\f28d"; - } - .fa-arrow-alt-circle-up:before, - .fa-circle-up:before { - content: "\\f35b"; - } - .fa-circle-user:before, - .fa-user-circle:before { - content: "\\f2bd"; - } - .fa-circle-xmark:before, - .fa-times-circle:before, - .fa-xmark-circle:before { - content: "\\f057"; - } - .fa-city:before { - content: "\\f64f"; - } - .fa-clapperboard:before { - content: "\\e131"; - } - .fa-clipboard:before { - content: "\\f328"; - } - .fa-clipboard-check:before { - content: "\\f46c"; - } - .fa-clipboard-list:before { - content: "\\f46d"; - } - .fa-clipboard-question:before { - content: "\\e4e3"; - } - .fa-clipboard-user:before { - content: "\\f7f3"; - } - .fa-clock-four:before, - .fa-clock:before { - content: "\\f017"; - } - .fa-clock-rotate-left:before, - .fa-history:before { - content: "\\f1da"; - } - .fa-clone:before { - content: "\\f24d"; - } - .fa-closed-captioning:before { - content: "\\f20a"; - } - .fa-cloud:before { - content: "\\f0c2"; - } - .fa-cloud-arrow-down:before, - .fa-cloud-download-alt:before, - .fa-cloud-download:before { - content: "\\f0ed"; - } - .fa-cloud-arrow-up:before, - .fa-cloud-upload-alt:before, - .fa-cloud-upload:before { - content: "\\f0ee"; - } - .fa-cloud-bolt:before, - .fa-thunderstorm:before { - content: "\\f76c"; - } - .fa-cloud-meatball:before { - content: "\\f73b"; - } - .fa-cloud-moon:before { - content: "\\f6c3"; - } - .fa-cloud-moon-rain:before { - content: "\\f73c"; - } - .fa-cloud-rain:before { - content: "\\f73d"; - } - .fa-cloud-showers-heavy:before { - content: "\\f740"; - } - .fa-cloud-showers-water:before { - content: "\\e4e4"; - } - .fa-cloud-sun:before { - content: "\\f6c4"; - } - .fa-cloud-sun-rain:before { - content: "\\f743"; - } - .fa-clover:before { - content: "\\e139"; - } - .fa-code:before { - content: "\\f121"; - } - .fa-code-branch:before { - content: "\\f126"; - } - .fa-code-commit:before { - content: "\\f386"; - } - .fa-code-compare:before { - content: "\\e13a"; - } - .fa-code-fork:before { - content: "\\e13b"; - } - .fa-code-merge:before { - content: "\\f387"; - } - .fa-code-pull-request:before { - content: "\\e13c"; - } - .fa-coins:before { - content: "\\f51e"; - } - .fa-colon-sign:before { - content: "\\e140"; - } - .fa-comment:before { - content: "\\f075"; - } - .fa-comment-dollar:before { - content: "\\f651"; - } - .fa-comment-dots:before, - .fa-commenting:before { - content: "\\f4ad"; - } - .fa-comment-medical:before { - content: "\\f7f5"; - } - .fa-comment-slash:before { - content: "\\f4b3"; - } - .fa-comment-sms:before, - .fa-sms:before { - content: "\\f7cd"; - } - .fa-comments:before { - content: "\\f086"; - } - .fa-comments-dollar:before { - content: "\\f653"; - } - .fa-compact-disc:before { - content: "\\f51f"; - } - .fa-compass:before { - content: "\\f14e"; - } - .fa-compass-drafting:before, - .fa-drafting-compass:before { - content: "\\f568"; - } - .fa-compress:before { - content: "\\f066"; - } - .fa-computer:before { - content: "\\e4e5"; - } - .fa-computer-mouse:before, - .fa-mouse:before { - content: "\\f8cc"; - } - .fa-cookie:before { - content: "\\f563"; - } - .fa-cookie-bite:before { - content: "\\f564"; - } - .fa-copy:before { - content: "\\f0c5"; - } - .fa-copyright:before { - content: "\\f1f9"; - } - .fa-couch:before { - content: "\\f4b8"; - } - .fa-cow:before { - content: "\\f6c8"; - } - .fa-credit-card-alt:before, - .fa-credit-card:before { - content: "\\f09d"; - } - .fa-crop:before { - content: "\\f125"; - } - .fa-crop-alt:before, - .fa-crop-simple:before { - content: "\\f565"; - } - .fa-cross:before { - content: "\\f654"; - } - .fa-crosshairs:before { - content: "\\f05b"; - } - .fa-crow:before { - content: "\\f520"; - } - .fa-crown:before { - content: "\\f521"; - } - .fa-crutch:before { - content: "\\f7f7"; - } - .fa-cruzeiro-sign:before { - content: "\\e152"; - } - .fa-cube:before { - content: "\\f1b2"; - } - .fa-cubes:before { - content: "\\f1b3"; - } - .fa-cubes-stacked:before { - content: "\\e4e6"; - } - .fa-d:before { - content: "\\44"; - } - .fa-database:before { - content: "\\f1c0"; - } - .fa-backspace:before, - .fa-delete-left:before { - content: "\\f55a"; - } - .fa-democrat:before { - content: "\\f747"; - } - .fa-desktop-alt:before, - .fa-desktop:before { - content: "\\f390"; - } - .fa-dharmachakra:before { - content: "\\f655"; - } - .fa-diagram-next:before { - content: "\\e476"; - } - .fa-diagram-predecessor:before { - content: "\\e477"; - } - .fa-diagram-project:before, - .fa-project-diagram:before { - content: "\\f542"; - } - .fa-diagram-successor:before { - content: "\\e47a"; - } - .fa-diamond:before { - content: "\\f219"; - } - .fa-diamond-turn-right:before, - .fa-directions:before { - content: "\\f5eb"; - } - .fa-dice:before { - content: "\\f522"; - } - .fa-dice-d20:before { - content: "\\f6cf"; - } - .fa-dice-d6:before { - content: "\\f6d1"; - } - .fa-dice-five:before { - content: "\\f523"; - } - .fa-dice-four:before { - content: "\\f524"; - } - .fa-dice-one:before { - content: "\\f525"; - } - .fa-dice-six:before { - content: "\\f526"; - } - .fa-dice-three:before { - content: "\\f527"; - } - .fa-dice-two:before { - content: "\\f528"; - } - .fa-disease:before { - content: "\\f7fa"; - } - .fa-display:before { - content: "\\e163"; - } - .fa-divide:before { - content: "\\f529"; - } - .fa-dna:before { - content: "\\f471"; - } - .fa-dog:before { - content: "\\f6d3"; - } - .fa-dollar-sign:before, - .fa-dollar:before, - .fa-usd:before { - content: "\\24"; - } - .fa-dolly-box:before, - .fa-dolly:before { - content: "\\f472"; - } - .fa-dong-sign:before { - content: "\\e169"; - } - .fa-door-closed:before { - content: "\\f52a"; - } - .fa-door-open:before { - content: "\\f52b"; - } - .fa-dove:before { - content: "\\f4ba"; - } - .fa-compress-alt:before, - .fa-down-left-and-up-right-to-center:before { - content: "\\f422"; - } - .fa-down-long:before, - .fa-long-arrow-alt-down:before { - content: "\\f309"; - } - .fa-download:before { - content: "\\f019"; - } - .fa-dragon:before { - content: "\\f6d5"; - } - .fa-draw-polygon:before { - content: "\\f5ee"; - } - .fa-droplet:before, - .fa-tint:before { - content: "\\f043"; - } - .fa-droplet-slash:before, - .fa-tint-slash:before { - content: "\\f5c7"; - } - .fa-drum:before { - content: "\\f569"; - } - .fa-drum-steelpan:before { - content: "\\f56a"; - } - .fa-drumstick-bite:before { - content: "\\f6d7"; - } - .fa-dumbbell:before { - content: "\\f44b"; - } - .fa-dumpster:before { - content: "\\f793"; - } - .fa-dumpster-fire:before { - content: "\\f794"; - } - .fa-dungeon:before { - content: "\\f6d9"; - } - .fa-e:before { - content: "\\45"; - } - .fa-deaf:before, - .fa-deafness:before, - .fa-ear-deaf:before, - .fa-hard-of-hearing:before { - content: "\\f2a4"; - } - .fa-assistive-listening-systems:before, - .fa-ear-listen:before { - content: "\\f2a2"; - } - .fa-earth-africa:before, - .fa-globe-africa:before { - content: "\\f57c"; - } - .fa-earth-america:before, - .fa-earth-americas:before, - .fa-earth:before, - .fa-globe-americas:before { - content: "\\f57d"; - } - .fa-earth-asia:before, - .fa-globe-asia:before { - content: "\\f57e"; - } - .fa-earth-europe:before, - .fa-globe-europe:before { - content: "\\f7a2"; - } - .fa-earth-oceania:before, - .fa-globe-oceania:before { - content: "\\e47b"; - } - .fa-egg:before { - content: "\\f7fb"; - } - .fa-eject:before { - content: "\\f052"; - } - .fa-elevator:before { - content: "\\e16d"; - } - .fa-ellipsis-h:before, - .fa-ellipsis:before { - content: "\\f141"; - } - .fa-ellipsis-v:before, - .fa-ellipsis-vertical:before { - content: "\\f142"; - } - .fa-envelope:before { - content: "\\f0e0"; - } - .fa-envelope-circle-check:before { - content: "\\e4e8"; - } - .fa-envelope-open:before { - content: "\\f2b6"; - } - .fa-envelope-open-text:before { - content: "\\f658"; - } - .fa-envelopes-bulk:before, - .fa-mail-bulk:before { - content: "\\f674"; - } - .fa-equals:before { - content: "\\3d"; - } - .fa-eraser:before { - content: "\\f12d"; - } - .fa-ethernet:before { - content: "\\f796"; - } - .fa-eur:before, - .fa-euro-sign:before, - .fa-euro:before { - content: "\\f153"; - } - .fa-exclamation:before { - content: "\\21"; - } - .fa-expand:before { - content: "\\f065"; - } - .fa-explosion:before { - content: "\\e4e9"; - } - .fa-eye:before { - content: "\\f06e"; - } - .fa-eye-dropper-empty:before, - .fa-eye-dropper:before, - .fa-eyedropper:before { - content: "\\f1fb"; - } - .fa-eye-low-vision:before, - .fa-low-vision:before { - content: "\\f2a8"; - } - .fa-eye-slash:before { - content: "\\f070"; - } - .fa-f:before { - content: "\\46"; - } - .fa-angry:before, - .fa-face-angry:before { - content: "\\f556"; - } - .fa-dizzy:before, - .fa-face-dizzy:before { - content: "\\f567"; - } - .fa-face-flushed:before, - .fa-flushed:before { - content: "\\f579"; - } - .fa-face-frown:before, - .fa-frown:before { - content: "\\f119"; - } - .fa-face-frown-open:before, - .fa-frown-open:before { - content: "\\f57a"; - } - .fa-face-grimace:before, - .fa-grimace:before { - content: "\\f57f"; - } - .fa-face-grin:before, - .fa-grin:before { - content: "\\f580"; - } - .fa-face-grin-beam:before, - .fa-grin-beam:before { - content: "\\f582"; - } - .fa-face-grin-beam-sweat:before, - .fa-grin-beam-sweat:before { - content: "\\f583"; - } - .fa-face-grin-hearts:before, - .fa-grin-hearts:before { - content: "\\f584"; - } - .fa-face-grin-squint:before, - .fa-grin-squint:before { - content: "\\f585"; - } - .fa-face-grin-squint-tears:before, - .fa-grin-squint-tears:before { - content: "\\f586"; - } - .fa-face-grin-stars:before, - .fa-grin-stars:before { - content: "\\f587"; - } - .fa-face-grin-tears:before, - .fa-grin-tears:before { - content: "\\f588"; - } - .fa-face-grin-tongue:before, - .fa-grin-tongue:before { - content: "\\f589"; - } - .fa-face-grin-tongue-squint:before, - .fa-grin-tongue-squint:before { - content: "\\f58a"; - } - .fa-face-grin-tongue-wink:before, - .fa-grin-tongue-wink:before { - content: "\\f58b"; - } - .fa-face-grin-wide:before, - .fa-grin-alt:before { - content: "\\f581"; - } - .fa-face-grin-wink:before, - .fa-grin-wink:before { - content: "\\f58c"; - } - .fa-face-kiss:before, - .fa-kiss:before { - content: "\\f596"; - } - .fa-face-kiss-beam:before, - .fa-kiss-beam:before { - content: "\\f597"; - } - .fa-face-kiss-wink-heart:before, - .fa-kiss-wink-heart:before { - content: "\\f598"; - } - .fa-face-laugh:before, - .fa-laugh:before { - content: "\\f599"; - } - .fa-face-laugh-beam:before, - .fa-laugh-beam:before { - content: "\\f59a"; - } - .fa-face-laugh-squint:before, - .fa-laugh-squint:before { - content: "\\f59b"; - } - .fa-face-laugh-wink:before, - .fa-laugh-wink:before { - content: "\\f59c"; - } - .fa-face-meh:before, - .fa-meh:before { - content: "\\f11a"; - } - .fa-face-meh-blank:before, - .fa-meh-blank:before { - content: "\\f5a4"; - } - .fa-face-rolling-eyes:before, - .fa-meh-rolling-eyes:before { - content: "\\f5a5"; - } - .fa-face-sad-cry:before, - .fa-sad-cry:before { - content: "\\f5b3"; - } - .fa-face-sad-tear:before, - .fa-sad-tear:before { - content: "\\f5b4"; - } - .fa-face-smile:before, - .fa-smile:before { - content: "\\f118"; - } - .fa-face-smile-beam:before, - .fa-smile-beam:before { - content: "\\f5b8"; - } - .fa-face-smile-wink:before, - .fa-smile-wink:before { - content: "\\f4da"; - } - .fa-face-surprise:before, - .fa-surprise:before { - content: "\\f5c2"; - } - .fa-face-tired:before, - .fa-tired:before { - content: "\\f5c8"; - } - .fa-fan:before { - content: "\\f863"; - } - .fa-faucet:before { - content: "\\e005"; - } - .fa-faucet-drip:before { - content: "\\e006"; - } - .fa-fax:before { - content: "\\f1ac"; - } - .fa-feather:before { - content: "\\f52d"; - } - .fa-feather-alt:before, - .fa-feather-pointed:before { - content: "\\f56b"; - } - .fa-ferry:before { - content: "\\e4ea"; - } - .fa-file:before { - content: "\\f15b"; - } - .fa-file-arrow-down:before, - .fa-file-download:before { - content: "\\f56d"; - } - .fa-file-arrow-up:before, - .fa-file-upload:before { - content: "\\f574"; - } - .fa-file-audio:before { - content: "\\f1c7"; - } - .fa-file-circle-check:before { - content: "\\e493"; - } - .fa-file-circle-exclamation:before { - content: "\\e4eb"; - } - .fa-file-circle-minus:before { - content: "\\e4ed"; - } - .fa-file-circle-plus:before { - content: "\\e4ee"; - } - .fa-file-circle-question:before { - content: "\\e4ef"; - } - .fa-file-circle-xmark:before { - content: "\\e494"; - } - .fa-file-code:before { - content: "\\f1c9"; - } - .fa-file-contract:before { - content: "\\f56c"; - } - .fa-file-csv:before { - content: "\\f6dd"; - } - .fa-file-excel:before { - content: "\\f1c3"; - } - .fa-arrow-right-from-file:before, - .fa-file-export:before { - content: "\\f56e"; - } - .fa-file-image:before { - content: "\\f1c5"; - } - .fa-arrow-right-to-file:before, - .fa-file-import:before { - content: "\\f56f"; - } - .fa-file-invoice:before { - content: "\\f570"; - } - .fa-file-invoice-dollar:before { - content: "\\f571"; - } - .fa-file-alt:before, - .fa-file-lines:before, - .fa-file-text:before { - content: "\\f15c"; - } - .fa-file-medical:before { - content: "\\f477"; - } - .fa-file-pdf:before { - content: "\\f1c1"; - } - .fa-file-edit:before, - .fa-file-pen:before { - content: "\\f31c"; - } - .fa-file-powerpoint:before { - content: "\\f1c4"; - } - .fa-file-prescription:before { - content: "\\f572"; - } - .fa-file-shield:before { - content: "\\e4f0"; - } - .fa-file-signature:before { - content: "\\f573"; - } - .fa-file-video:before { - content: "\\f1c8"; - } - .fa-file-medical-alt:before, - .fa-file-waveform:before { - content: "\\f478"; - } - .fa-file-word:before { - content: "\\f1c2"; - } - .fa-file-archive:before, - .fa-file-zipper:before { - content: "\\f1c6"; - } - .fa-fill:before { - content: "\\f575"; - } - .fa-fill-drip:before { - content: "\\f576"; - } - .fa-film:before { - content: "\\f008"; - } - .fa-filter:before { - content: "\\f0b0"; - } - .fa-filter-circle-dollar:before, - .fa-funnel-dollar:before { - content: "\\f662"; - } - .fa-filter-circle-xmark:before { - content: "\\e17b"; - } - .fa-fingerprint:before { - content: "\\f577"; - } - .fa-fire:before { - content: "\\f06d"; - } - .fa-fire-burner:before { - content: "\\e4f1"; - } - .fa-fire-extinguisher:before { - content: "\\f134"; - } - .fa-fire-alt:before, - .fa-fire-flame-curved:before { - content: "\\f7e4"; - } - .fa-burn:before, - .fa-fire-flame-simple:before { - content: "\\f46a"; - } - .fa-fish:before { - content: "\\f578"; - } - .fa-fish-fins:before { - content: "\\e4f2"; - } - .fa-flag:before { - content: "\\f024"; - } - .fa-flag-checkered:before { - content: "\\f11e"; - } - .fa-flag-usa:before { - content: "\\f74d"; - } - .fa-flask:before { - content: "\\f0c3"; - } - .fa-flask-vial:before { - content: "\\e4f3"; - } - .fa-floppy-disk:before, - .fa-save:before { - content: "\\f0c7"; - } - .fa-florin-sign:before { - content: "\\e184"; - } - .fa-folder-blank:before, - .fa-folder:before { - content: "\\f07b"; - } - .fa-folder-closed:before { - content: "\\e185"; - } - .fa-folder-minus:before { - content: "\\f65d"; - } - .fa-folder-open:before { - content: "\\f07c"; - } - .fa-folder-plus:before { - content: "\\f65e"; - } - .fa-folder-tree:before { - content: "\\f802"; - } - .fa-font:before { - content: "\\f031"; - } - .fa-football-ball:before, - .fa-football:before { - content: "\\f44e"; - } - .fa-forward:before { - content: "\\f04e"; - } - .fa-fast-forward:before, - .fa-forward-fast:before { - content: "\\f050"; - } - .fa-forward-step:before, - .fa-step-forward:before { - content: "\\f051"; - } - .fa-franc-sign:before { - content: "\\e18f"; - } - .fa-frog:before { - content: "\\f52e"; - } - .fa-futbol-ball:before, - .fa-futbol:before, - .fa-soccer-ball:before { - content: "\\f1e3"; - } - .fa-g:before { - content: "\\47"; - } - .fa-gamepad:before { - content: "\\f11b"; - } - .fa-gas-pump:before { - content: "\\f52f"; - } - .fa-dashboard:before, - .fa-gauge-med:before, - .fa-gauge:before, - .fa-tachometer-alt-average:before { - content: "\\f624"; - } - .fa-gauge-high:before, - .fa-tachometer-alt-fast:before, - .fa-tachometer-alt:before { - content: "\\f625"; - } - .fa-gauge-simple-med:before, - .fa-gauge-simple:before, - .fa-tachometer-average:before { - content: "\\f629"; - } - .fa-gauge-simple-high:before, - .fa-tachometer-fast:before, - .fa-tachometer:before { - content: "\\f62a"; - } - .fa-gavel:before, - .fa-legal:before { - content: "\\f0e3"; - } - .fa-cog:before, - .fa-gear:before { - content: "\\f013"; - } - .fa-cogs:before, - .fa-gears:before { - content: "\\f085"; - } - .fa-gem:before { - content: "\\f3a5"; - } - .fa-genderless:before { - content: "\\f22d"; - } - .fa-ghost:before { - content: "\\f6e2"; - } - .fa-gift:before { - content: "\\f06b"; - } - .fa-gifts:before { - content: "\\f79c"; - } - .fa-glass-water:before { - content: "\\e4f4"; - } - .fa-glass-water-droplet:before { - content: "\\e4f5"; - } - .fa-glasses:before { - content: "\\f530"; - } - .fa-globe:before { - content: "\\f0ac"; - } - .fa-golf-ball-tee:before, - .fa-golf-ball:before { - content: "\\f450"; - } - .fa-gopuram:before { - content: "\\f664"; - } - .fa-graduation-cap:before, - .fa-mortar-board:before { - content: "\\f19d"; - } - .fa-greater-than:before { - content: "\\3e"; - } - .fa-greater-than-equal:before { - content: "\\f532"; - } - .fa-grip-horizontal:before, - .fa-grip:before { - content: "\\f58d"; - } - .fa-grip-lines:before { - content: "\\f7a4"; - } - .fa-grip-lines-vertical:before { - content: "\\f7a5"; - } - .fa-grip-vertical:before { - content: "\\f58e"; - } - .fa-group-arrows-rotate:before { - content: "\\e4f6"; - } - .fa-guarani-sign:before { - content: "\\e19a"; - } - .fa-guitar:before { - content: "\\f7a6"; - } - .fa-gun:before { - content: "\\e19b"; - } - .fa-h:before { - content: "\\48"; - } - .fa-hammer:before { - content: "\\f6e3"; - } - .fa-hamsa:before { - content: "\\f665"; - } - .fa-hand-paper:before, - .fa-hand:before { - content: "\\f256"; - } - .fa-hand-back-fist:before, - .fa-hand-rock:before { - content: "\\f255"; - } - .fa-allergies:before, - .fa-hand-dots:before { - content: "\\f461"; - } - .fa-fist-raised:before, - .fa-hand-fist:before { - content: "\\f6de"; - } - .fa-hand-holding:before { - content: "\\f4bd"; - } - .fa-hand-holding-dollar:before, - .fa-hand-holding-usd:before { - content: "\\f4c0"; - } - .fa-hand-holding-droplet:before, - .fa-hand-holding-water:before { - content: "\\f4c1"; - } - .fa-hand-holding-hand:before { - content: "\\e4f7"; - } - .fa-hand-holding-heart:before { - content: "\\f4be"; - } - .fa-hand-holding-medical:before { - content: "\\e05c"; - } - .fa-hand-lizard:before { - content: "\\f258"; - } - .fa-hand-middle-finger:before { - content: "\\f806"; - } - .fa-hand-peace:before { - content: "\\f25b"; - } - .fa-hand-point-down:before { - content: "\\f0a7"; - } - .fa-hand-point-left:before { - content: "\\f0a5"; - } - .fa-hand-point-right:before { - content: "\\f0a4"; - } - .fa-hand-point-up:before { - content: "\\f0a6"; - } - .fa-hand-pointer:before { - content: "\\f25a"; - } - .fa-hand-scissors:before { - content: "\\f257"; - } - .fa-hand-sparkles:before { - content: "\\e05d"; - } - .fa-hand-spock:before { - content: "\\f259"; - } - .fa-handcuffs:before { - content: "\\e4f8"; - } - .fa-hands:before, - .fa-sign-language:before, - .fa-signing:before { - content: "\\f2a7"; - } - .fa-american-sign-language-interpreting:before, - .fa-asl-interpreting:before, - .fa-hands-american-sign-language-interpreting:before, - .fa-hands-asl-interpreting:before { - content: "\\f2a3"; - } - .fa-hands-bound:before { - content: "\\e4f9"; - } - .fa-hands-bubbles:before, - .fa-hands-wash:before { - content: "\\e05e"; - } - .fa-hands-clapping:before { - content: "\\e1a8"; - } - .fa-hands-holding:before { - content: "\\f4c2"; - } - .fa-hands-holding-child:before { - content: "\\e4fa"; - } - .fa-hands-holding-circle:before { - content: "\\e4fb"; - } - .fa-hands-praying:before, - .fa-praying-hands:before { - content: "\\f684"; - } - .fa-handshake:before { - content: "\\f2b5"; - } - .fa-hands-helping:before, - .fa-handshake-angle:before { - content: "\\f4c4"; - } - .fa-handshake-alt:before, - .fa-handshake-simple:before { - content: "\\f4c6"; - } - .fa-handshake-alt-slash:before, - .fa-handshake-simple-slash:before { - content: "\\e05f"; - } - .fa-handshake-slash:before { - content: "\\e060"; - } - .fa-hanukiah:before { - content: "\\f6e6"; - } - .fa-hard-drive:before, - .fa-hdd:before { - content: "\\f0a0"; - } - .fa-hashtag:before { - content: "\\23"; - } - .fa-hat-cowboy:before { - content: "\\f8c0"; - } - .fa-hat-cowboy-side:before { - content: "\\f8c1"; - } - .fa-hat-wizard:before { - content: "\\f6e8"; - } - .fa-head-side-cough:before { - content: "\\e061"; - } - .fa-head-side-cough-slash:before { - content: "\\e062"; - } - .fa-head-side-mask:before { - content: "\\e063"; - } - .fa-head-side-virus:before { - content: "\\e064"; - } - .fa-header:before, - .fa-heading:before { - content: "\\f1dc"; - } - .fa-headphones:before { - content: "\\f025"; - } - .fa-headphones-alt:before, - .fa-headphones-simple:before { - content: "\\f58f"; - } - .fa-headset:before { - content: "\\f590"; - } - .fa-heart:before { - content: "\\f004"; - } - .fa-heart-circle-bolt:before { - content: "\\e4fc"; - } - .fa-heart-circle-check:before { - content: "\\e4fd"; - } - .fa-heart-circle-exclamation:before { - content: "\\e4fe"; - } - .fa-heart-circle-minus:before { - content: "\\e4ff"; - } - .fa-heart-circle-plus:before { - content: "\\e500"; - } - .fa-heart-circle-xmark:before { - content: "\\e501"; - } - .fa-heart-broken:before, - .fa-heart-crack:before { - content: "\\f7a9"; - } - .fa-heart-pulse:before, - .fa-heartbeat:before { - content: "\\f21e"; - } - .fa-helicopter:before { - content: "\\f533"; - } - .fa-helicopter-symbol:before { - content: "\\e502"; - } - .fa-hard-hat:before, - .fa-hat-hard:before, - .fa-helmet-safety:before { - content: "\\f807"; - } - .fa-helmet-un:before { - content: "\\e503"; - } - .fa-highlighter:before { - content: "\\f591"; - } - .fa-hill-avalanche:before { - content: "\\e507"; - } - .fa-hill-rockslide:before { - content: "\\e508"; - } - .fa-hippo:before { - content: "\\f6ed"; - } - .fa-hockey-puck:before { - content: "\\f453"; - } - .fa-holly-berry:before { - content: "\\f7aa"; - } - .fa-horse:before { - content: "\\f6f0"; - } - .fa-horse-head:before { - content: "\\f7ab"; - } - .fa-hospital-alt:before, - .fa-hospital-wide:before, - .fa-hospital:before { - content: "\\f0f8"; - } - .fa-hospital-user:before { - content: "\\f80d"; - } - .fa-hot-tub-person:before, - .fa-hot-tub:before { - content: "\\f593"; - } - .fa-hotdog:before { - content: "\\f80f"; - } - .fa-hotel:before { - content: "\\f594"; - } - .fa-hourglass-2:before, - .fa-hourglass-half:before, - .fa-hourglass:before { - content: "\\f254"; - } - .fa-hourglass-empty:before { - content: "\\f252"; - } - .fa-hourglass-3:before, - .fa-hourglass-end:before { - content: "\\f253"; - } - .fa-hourglass-1:before, - .fa-hourglass-start:before { - content: "\\f251"; - } - .fa-home-alt:before, - .fa-home-lg-alt:before, - .fa-home:before, - .fa-house:before { - content: "\\f015"; - } - .fa-home-lg:before, - .fa-house-chimney:before { - content: "\\e3af"; - } - .fa-house-chimney-crack:before, - .fa-house-damage:before { - content: "\\f6f1"; - } - .fa-clinic-medical:before, - .fa-house-chimney-medical:before { - content: "\\f7f2"; - } - .fa-house-chimney-user:before { - content: "\\e065"; - } - .fa-house-chimney-window:before { - content: "\\e00d"; - } - .fa-house-circle-check:before { - content: "\\e509"; - } - .fa-house-circle-exclamation:before { - content: "\\e50a"; - } - .fa-house-circle-xmark:before { - content: "\\e50b"; - } - .fa-house-crack:before { - content: "\\e3b1"; - } - .fa-house-fire:before { - content: "\\e50c"; - } - .fa-house-flag:before { - content: "\\e50d"; - } - .fa-house-flood-water:before { - content: "\\e50e"; - } - .fa-house-flood-water-circle-arrow-right:before { - content: "\\e50f"; - } - .fa-house-laptop:before, - .fa-laptop-house:before { - content: "\\e066"; - } - .fa-house-lock:before { - content: "\\e510"; - } - .fa-house-medical:before { - content: "\\e3b2"; - } - .fa-house-medical-circle-check:before { - content: "\\e511"; - } - .fa-house-medical-circle-exclamation:before { - content: "\\e512"; - } - .fa-house-medical-circle-xmark:before { - content: "\\e513"; - } - .fa-house-medical-flag:before { - content: "\\e514"; - } - .fa-house-signal:before { - content: "\\e012"; - } - .fa-house-tsunami:before { - content: "\\e515"; - } - .fa-home-user:before, - .fa-house-user:before { - content: "\\e1b0"; - } - .fa-hryvnia-sign:before, - .fa-hryvnia:before { - content: "\\f6f2"; - } - .fa-hurricane:before { - content: "\\f751"; - } - .fa-i:before { - content: "\\49"; - } - .fa-i-cursor:before { - content: "\\f246"; - } - .fa-ice-cream:before { - content: "\\f810"; - } - .fa-icicles:before { - content: "\\f7ad"; - } - .fa-heart-music-camera-bolt:before, - .fa-icons:before { - content: "\\f86d"; - } - .fa-id-badge:before { - content: "\\f2c1"; - } - .fa-drivers-license:before, - .fa-id-card:before { - content: "\\f2c2"; - } - .fa-id-card-alt:before, - .fa-id-card-clip:before { - content: "\\f47f"; - } - .fa-igloo:before { - content: "\\f7ae"; - } - .fa-image:before { - content: "\\f03e"; - } - .fa-image-portrait:before, - .fa-portrait:before { - content: "\\f3e0"; - } - .fa-images:before { - content: "\\f302"; - } - .fa-inbox:before { - content: "\\f01c"; - } - .fa-indent:before { - content: "\\f03c"; - } - .fa-indian-rupee-sign:before, - .fa-indian-rupee:before, - .fa-inr:before { - content: "\\e1bc"; - } - .fa-industry:before { - content: "\\f275"; - } - .fa-infinity:before { - content: "\\f534"; - } - .fa-info:before { - content: "\\f129"; - } - .fa-italic:before { - content: "\\f033"; - } - .fa-j:before { - content: "\\4a"; - } - .fa-jar:before { - content: "\\e516"; - } - .fa-jar-wheat:before { - content: "\\e517"; - } - .fa-jedi:before { - content: "\\f669"; - } - .fa-fighter-jet:before, - .fa-jet-fighter:before { - content: "\\f0fb"; - } - .fa-jet-fighter-up:before { - content: "\\e518"; - } - .fa-joint:before { - content: "\\f595"; - } - .fa-jug-detergent:before { - content: "\\e519"; - } - .fa-k:before { - content: "\\4b"; - } - .fa-kaaba:before { - content: "\\f66b"; - } - .fa-key:before { - content: "\\f084"; - } - .fa-keyboard:before { - content: "\\f11c"; - } - .fa-khanda:before { - content: "\\f66d"; - } - .fa-kip-sign:before { - content: "\\e1c4"; - } - .fa-first-aid:before, - .fa-kit-medical:before { - content: "\\f479"; - } - .fa-kitchen-set:before { - content: "\\e51a"; - } - .fa-kiwi-bird:before { - content: "\\f535"; - } - .fa-l:before { - content: "\\4c"; - } - .fa-land-mine-on:before { - content: "\\e51b"; - } - .fa-landmark:before { - content: "\\f66f"; - } - .fa-landmark-alt:before, - .fa-landmark-dome:before { - content: "\\f752"; - } - .fa-landmark-flag:before { - content: "\\e51c"; - } - .fa-language:before { - content: "\\f1ab"; - } - .fa-laptop:before { - content: "\\f109"; - } - .fa-laptop-code:before { - content: "\\f5fc"; - } - .fa-laptop-file:before { - content: "\\e51d"; - } - .fa-laptop-medical:before { - content: "\\f812"; - } - .fa-lari-sign:before { - content: "\\e1c8"; - } - .fa-layer-group:before { - content: "\\f5fd"; - } - .fa-leaf:before { - content: "\\f06c"; - } - .fa-left-long:before, - .fa-long-arrow-alt-left:before { - content: "\\f30a"; - } - .fa-arrows-alt-h:before, - .fa-left-right:before { - content: "\\f337"; - } - .fa-lemon:before { - content: "\\f094"; - } - .fa-less-than:before { - content: "\\3c"; - } - .fa-less-than-equal:before { - content: "\\f537"; - } - .fa-life-ring:before { - content: "\\f1cd"; - } - .fa-lightbulb:before { - content: "\\f0eb"; - } - .fa-lines-leaning:before { - content: "\\e51e"; - } - .fa-chain:before, - .fa-link:before { - content: "\\f0c1"; - } - .fa-chain-broken:before, - .fa-chain-slash:before, - .fa-link-slash:before, - .fa-unlink:before { - content: "\\f127"; - } - .fa-lira-sign:before { - content: "\\f195"; - } - .fa-list-squares:before, - .fa-list:before { - content: "\\f03a"; - } - .fa-list-check:before, - .fa-tasks:before { - content: "\\f0ae"; - } - .fa-list-1-2:before, - .fa-list-numeric:before, - .fa-list-ol:before { - content: "\\f0cb"; - } - .fa-list-dots:before, - .fa-list-ul:before { - content: "\\f0ca"; - } - .fa-litecoin-sign:before { - content: "\\e1d3"; - } - .fa-location-arrow:before { - content: "\\f124"; - } - .fa-location-crosshairs:before, - .fa-location:before { - content: "\\f601"; - } - .fa-location-dot:before, - .fa-map-marker-alt:before { - content: "\\f3c5"; - } - .fa-location-pin:before, - .fa-map-marker:before { - content: "\\f041"; - } - .fa-location-pin-lock:before { - content: "\\e51f"; - } - .fa-lock:before { - content: "\\f023"; - } - .fa-lock-open:before { - content: "\\f3c1"; - } - .fa-locust:before { - content: "\\e520"; - } - .fa-lungs:before { - content: "\\f604"; - } - .fa-lungs-virus:before { - content: "\\e067"; - } - .fa-m:before { - content: "\\4d"; - } - .fa-magnet:before { - content: "\\f076"; - } - .fa-magnifying-glass:before, - .fa-search:before { - content: "\\f002"; - } - .fa-magnifying-glass-arrow-right:before { - content: "\\e521"; - } - .fa-magnifying-glass-chart:before { - content: "\\e522"; - } - .fa-magnifying-glass-dollar:before, - .fa-search-dollar:before { - content: "\\f688"; - } - .fa-magnifying-glass-location:before, - .fa-search-location:before { - content: "\\f689"; - } - .fa-magnifying-glass-minus:before, - .fa-search-minus:before { - content: "\\f010"; - } - .fa-magnifying-glass-plus:before, - .fa-search-plus:before { - content: "\\f00e"; - } - .fa-manat-sign:before { - content: "\\e1d5"; - } - .fa-map:before { - content: "\\f279"; - } - .fa-map-location:before, - .fa-map-marked:before { - content: "\\f59f"; - } - .fa-map-location-dot:before, - .fa-map-marked-alt:before { - content: "\\f5a0"; - } - .fa-map-pin:before { - content: "\\f276"; - } - .fa-marker:before { - content: "\\f5a1"; - } - .fa-mars:before { - content: "\\f222"; - } - .fa-mars-and-venus:before { - content: "\\f224"; - } - .fa-mars-and-venus-burst:before { - content: "\\e523"; - } - .fa-mars-double:before { - content: "\\f227"; - } - .fa-mars-stroke:before { - content: "\\f229"; - } - .fa-mars-stroke-h:before, - .fa-mars-stroke-right:before { - content: "\\f22b"; - } - .fa-mars-stroke-up:before, - .fa-mars-stroke-v:before { - content: "\\f22a"; - } - .fa-glass-martini-alt:before, - .fa-martini-glass:before { - content: "\\f57b"; - } - .fa-cocktail:before, - .fa-martini-glass-citrus:before { - content: "\\f561"; - } - .fa-glass-martini:before, - .fa-martini-glass-empty:before { - content: "\\f000"; - } - .fa-mask:before { - content: "\\f6fa"; - } - .fa-mask-face:before { - content: "\\e1d7"; - } - .fa-mask-ventilator:before { - content: "\\e524"; - } - .fa-masks-theater:before, - .fa-theater-masks:before { - content: "\\f630"; - } - .fa-mattress-pillow:before { - content: "\\e525"; - } - .fa-expand-arrows-alt:before, - .fa-maximize:before { - content: "\\f31e"; - } - .fa-medal:before { - content: "\\f5a2"; - } - .fa-memory:before { - content: "\\f538"; - } - .fa-menorah:before { - content: "\\f676"; - } - .fa-mercury:before { - content: "\\f223"; - } - .fa-comment-alt:before, - .fa-message:before { - content: "\\f27a"; - } - .fa-meteor:before { - content: "\\f753"; - } - .fa-microchip:before { - content: "\\f2db"; - } - .fa-microphone:before { - content: "\\f130"; - } - .fa-microphone-alt:before, - .fa-microphone-lines:before { - content: "\\f3c9"; - } - .fa-microphone-alt-slash:before, - .fa-microphone-lines-slash:before { - content: "\\f539"; - } - .fa-microphone-slash:before { - content: "\\f131"; - } - .fa-microscope:before { - content: "\\f610"; - } - .fa-mill-sign:before { - content: "\\e1ed"; - } - .fa-compress-arrows-alt:before, - .fa-minimize:before { - content: "\\f78c"; - } - .fa-minus:before, - .fa-subtract:before { - content: "\\f068"; - } - .fa-mitten:before { - content: "\\f7b5"; - } - .fa-mobile-android:before, - .fa-mobile-phone:before, - .fa-mobile:before { - content: "\\f3ce"; - } - .fa-mobile-button:before { - content: "\\f10b"; - } - .fa-mobile-retro:before { - content: "\\e527"; - } - .fa-mobile-android-alt:before, - .fa-mobile-screen:before { - content: "\\f3cf"; - } - .fa-mobile-alt:before, - .fa-mobile-screen-button:before { - content: "\\f3cd"; - } - .fa-money-bill:before { - content: "\\f0d6"; - } - .fa-money-bill-1:before, - .fa-money-bill-alt:before { - content: "\\f3d1"; - } - .fa-money-bill-1-wave:before, - .fa-money-bill-wave-alt:before { - content: "\\f53b"; - } - .fa-money-bill-transfer:before { - content: "\\e528"; - } - .fa-money-bill-trend-up:before { - content: "\\e529"; - } - .fa-money-bill-wave:before { - content: "\\f53a"; - } - .fa-money-bill-wheat:before { - content: "\\e52a"; - } - .fa-money-bills:before { - content: "\\e1f3"; - } - .fa-money-check:before { - content: "\\f53c"; - } - .fa-money-check-alt:before, - .fa-money-check-dollar:before { - content: "\\f53d"; - } - .fa-monument:before { - content: "\\f5a6"; - } - .fa-moon:before { - content: "\\f186"; - } - .fa-mortar-pestle:before { - content: "\\f5a7"; - } - .fa-mosque:before { - content: "\\f678"; - } - .fa-mosquito:before { - content: "\\e52b"; - } - .fa-mosquito-net:before { - content: "\\e52c"; - } - .fa-motorcycle:before { - content: "\\f21c"; - } - .fa-mound:before { - content: "\\e52d"; - } - .fa-mountain:before { - content: "\\f6fc"; - } - .fa-mountain-city:before { - content: "\\e52e"; - } - .fa-mountain-sun:before { - content: "\\e52f"; - } - .fa-mug-hot:before { - content: "\\f7b6"; - } - .fa-coffee:before, - .fa-mug-saucer:before { - content: "\\f0f4"; - } - .fa-music:before { - content: "\\f001"; - } - .fa-n:before { - content: "\\4e"; - } - .fa-naira-sign:before { - content: "\\e1f6"; - } - .fa-network-wired:before { - content: "\\f6ff"; - } - .fa-neuter:before { - content: "\\f22c"; - } - .fa-newspaper:before { - content: "\\f1ea"; - } - .fa-not-equal:before { - content: "\\f53e"; - } - .fa-note-sticky:before, - .fa-sticky-note:before { - content: "\\f249"; - } - .fa-notes-medical:before { - content: "\\f481"; - } - .fa-o:before { - content: "\\4f"; - } - .fa-object-group:before { - content: "\\f247"; - } - .fa-object-ungroup:before { - content: "\\f248"; - } - .fa-oil-can:before { - content: "\\f613"; - } - .fa-oil-well:before { - content: "\\e532"; - } - .fa-om:before { - content: "\\f679"; - } - .fa-otter:before { - content: "\\f700"; - } - .fa-dedent:before, - .fa-outdent:before { - content: "\\f03b"; - } - .fa-p:before { - content: "\\50"; - } - .fa-pager:before { - content: "\\f815"; - } - .fa-paint-roller:before { - content: "\\f5aa"; - } - .fa-paint-brush:before, - .fa-paintbrush:before { - content: "\\f1fc"; - } - .fa-palette:before { - content: "\\f53f"; - } - .fa-pallet:before { - content: "\\f482"; - } - .fa-panorama:before { - content: "\\e209"; - } - .fa-paper-plane:before { - content: "\\f1d8"; - } - .fa-paperclip:before { - content: "\\f0c6"; - } - .fa-parachute-box:before { - content: "\\f4cd"; - } - .fa-paragraph:before { - content: "\\f1dd"; - } - .fa-passport:before { - content: "\\f5ab"; - } - .fa-file-clipboard:before, - .fa-paste:before { - content: "\\f0ea"; - } - .fa-pause:before { - content: "\\f04c"; - } - .fa-paw:before { - content: "\\f1b0"; - } - .fa-peace:before { - content: "\\f67c"; - } - .fa-pen:before { - content: "\\f304"; - } - .fa-pen-alt:before, - .fa-pen-clip:before { - content: "\\f305"; - } - .fa-pen-fancy:before { - content: "\\f5ac"; - } - .fa-pen-nib:before { - content: "\\f5ad"; - } - .fa-pen-ruler:before, - .fa-pencil-ruler:before { - content: "\\f5ae"; - } - .fa-edit:before, - .fa-pen-to-square:before { - content: "\\f044"; - } - .fa-pencil-alt:before, - .fa-pencil:before { - content: "\\f303"; - } - .fa-people-arrows-left-right:before, - .fa-people-arrows:before { - content: "\\e068"; - } - .fa-people-carry-box:before, - .fa-people-carry:before { - content: "\\f4ce"; - } - .fa-people-group:before { - content: "\\e533"; - } - .fa-people-line:before { - content: "\\e534"; - } - .fa-people-pulling:before { - content: "\\e535"; - } - .fa-people-robbery:before { - content: "\\e536"; - } - .fa-people-roof:before { - content: "\\e537"; - } - .fa-pepper-hot:before { - content: "\\f816"; - } - .fa-percent:before, - .fa-percentage:before { - content: "\\25"; - } - .fa-male:before, - .fa-person:before { - content: "\\f183"; - } - .fa-person-arrow-down-to-line:before { - content: "\\e538"; - } - .fa-person-arrow-up-from-line:before { - content: "\\e539"; - } - .fa-biking:before, - .fa-person-biking:before { - content: "\\f84a"; - } - .fa-person-booth:before { - content: "\\f756"; - } - .fa-person-breastfeeding:before { - content: "\\e53a"; - } - .fa-person-burst:before { - content: "\\e53b"; - } - .fa-person-cane:before { - content: "\\e53c"; - } - .fa-person-chalkboard:before { - content: "\\e53d"; - } - .fa-person-circle-check:before { - content: "\\e53e"; - } - .fa-person-circle-exclamation:before { - content: "\\e53f"; - } - .fa-person-circle-minus:before { - content: "\\e540"; - } - .fa-person-circle-plus:before { - content: "\\e541"; - } - .fa-person-circle-question:before { - content: "\\e542"; - } - .fa-person-circle-xmark:before { - content: "\\e543"; - } - .fa-digging:before, - .fa-person-digging:before { - content: "\\f85e"; - } - .fa-diagnoses:before, - .fa-person-dots-from-line:before { - content: "\\f470"; - } - .fa-female:before, - .fa-person-dress:before { - content: "\\f182"; - } - .fa-person-dress-burst:before { - content: "\\e544"; - } - .fa-person-drowning:before { - content: "\\e545"; - } - .fa-person-falling:before { - content: "\\e546"; - } - .fa-person-falling-burst:before { - content: "\\e547"; - } - .fa-person-half-dress:before { - content: "\\e548"; - } - .fa-person-harassing:before { - content: "\\e549"; - } - .fa-hiking:before, - .fa-person-hiking:before { - content: "\\f6ec"; - } - .fa-person-military-pointing:before { - content: "\\e54a"; - } - .fa-person-military-rifle:before { - content: "\\e54b"; - } - .fa-person-military-to-person:before { - content: "\\e54c"; - } - .fa-person-praying:before, - .fa-pray:before { - content: "\\f683"; - } - .fa-person-pregnant:before { - content: "\\e31e"; - } - .fa-person-rays:before { - content: "\\e54d"; - } - .fa-person-rifle:before { - content: "\\e54e"; - } - .fa-person-running:before, - .fa-running:before { - content: "\\f70c"; - } - .fa-person-shelter:before { - content: "\\e54f"; - } - .fa-person-skating:before, - .fa-skating:before { - content: "\\f7c5"; - } - .fa-person-skiing:before, - .fa-skiing:before { - content: "\\f7c9"; - } - .fa-person-skiing-nordic:before, - .fa-skiing-nordic:before { - content: "\\f7ca"; - } - .fa-person-snowboarding:before, - .fa-snowboarding:before { - content: "\\f7ce"; - } - .fa-person-swimming:before, - .fa-swimmer:before { - content: "\\f5c4"; - } - .fa-person-through-window:before { - content: "\\e433"; - } - .fa-person-walking:before, - .fa-walking:before { - content: "\\f554"; - } - .fa-person-walking-arrow-loop-left:before { - content: "\\e551"; - } - .fa-person-walking-arrow-right:before { - content: "\\e552"; - } - .fa-person-walking-dashed-line-arrow-right:before { - content: "\\e553"; - } - .fa-person-walking-luggage:before { - content: "\\e554"; - } - .fa-blind:before, - .fa-person-walking-with-cane:before { - content: "\\f29d"; - } - .fa-peseta-sign:before { - content: "\\e221"; - } - .fa-peso-sign:before { - content: "\\e222"; - } - .fa-phone:before { - content: "\\f095"; - } - .fa-phone-alt:before, - .fa-phone-flip:before { - content: "\\f879"; - } - .fa-phone-slash:before { - content: "\\f3dd"; - } - .fa-phone-volume:before, - .fa-volume-control-phone:before { - content: "\\f2a0"; - } - .fa-photo-film:before, - .fa-photo-video:before { - content: "\\f87c"; - } - .fa-piggy-bank:before { - content: "\\f4d3"; - } - .fa-pills:before { - content: "\\f484"; - } - .fa-pizza-slice:before { - content: "\\f818"; - } - .fa-place-of-worship:before { - content: "\\f67f"; - } - .fa-plane:before { - content: "\\f072"; - } - .fa-plane-arrival:before { - content: "\\f5af"; - } - .fa-plane-circle-check:before { - content: "\\e555"; - } - .fa-plane-circle-exclamation:before { - content: "\\e556"; - } - .fa-plane-circle-xmark:before { - content: "\\e557"; - } - .fa-plane-departure:before { - content: "\\f5b0"; - } - .fa-plane-lock:before { - content: "\\e558"; - } - .fa-plane-slash:before { - content: "\\e069"; - } - .fa-plane-up:before { - content: "\\e22d"; - } - .fa-plant-wilt:before { - content: "\\e43b"; - } - .fa-plate-wheat:before { - content: "\\e55a"; - } - .fa-play:before { - content: "\\f04b"; - } - .fa-plug:before { - content: "\\f1e6"; - } - .fa-plug-circle-bolt:before { - content: "\\e55b"; - } - .fa-plug-circle-check:before { - content: "\\e55c"; - } - .fa-plug-circle-exclamation:before { - content: "\\e55d"; - } - .fa-plug-circle-minus:before { - content: "\\e55e"; - } - .fa-plug-circle-plus:before { - content: "\\e55f"; - } - .fa-plug-circle-xmark:before { - content: "\\e560"; - } - .fa-add:before, - .fa-plus:before { - content: "\\2b"; - } - .fa-plus-minus:before { - content: "\\e43c"; - } - .fa-podcast:before { - content: "\\f2ce"; - } - .fa-poo:before { - content: "\\f2fe"; - } - .fa-poo-bolt:before, - .fa-poo-storm:before { - content: "\\f75a"; - } - .fa-poop:before { - content: "\\f619"; - } - .fa-power-off:before { - content: "\\f011"; - } - .fa-prescription:before { - content: "\\f5b1"; - } - .fa-prescription-bottle:before { - content: "\\f485"; - } - .fa-prescription-bottle-alt:before, - .fa-prescription-bottle-medical:before { - content: "\\f486"; - } - .fa-print:before { - content: "\\f02f"; - } - .fa-pump-medical:before { - content: "\\e06a"; - } - .fa-pump-soap:before { - content: "\\e06b"; - } - .fa-puzzle-piece:before { - content: "\\f12e"; - } - .fa-q:before { - content: "\\51"; - } - .fa-qrcode:before { - content: "\\f029"; - } - .fa-question:before { - content: "\\3f"; - } - .fa-quote-left-alt:before, - .fa-quote-left:before { - content: "\\f10d"; - } - .fa-quote-right-alt:before, - .fa-quote-right:before { - content: "\\f10e"; - } - .fa-r:before { - content: "\\52"; - } - .fa-radiation:before { - content: "\\f7b9"; - } - .fa-radio:before { - content: "\\f8d7"; - } - .fa-rainbow:before { - content: "\\f75b"; - } - .fa-ranking-star:before { - content: "\\e561"; - } - .fa-receipt:before { - content: "\\f543"; - } - .fa-record-vinyl:before { - content: "\\f8d9"; - } - .fa-ad:before, - .fa-rectangle-ad:before { - content: "\\f641"; - } - .fa-list-alt:before, - .fa-rectangle-list:before { - content: "\\f022"; - } - .fa-rectangle-times:before, - .fa-rectangle-xmark:before, - .fa-times-rectangle:before, - .fa-window-close:before { - content: "\\f410"; - } - .fa-recycle:before { - content: "\\f1b8"; - } - .fa-registered:before { - content: "\\f25d"; - } - .fa-repeat:before { - content: "\\f363"; - } - .fa-mail-reply:before, - .fa-reply:before { - content: "\\f3e5"; - } - .fa-mail-reply-all:before, - .fa-reply-all:before { - content: "\\f122"; - } - .fa-republican:before { - content: "\\f75e"; - } - .fa-restroom:before { - content: "\\f7bd"; - } - .fa-retweet:before { - content: "\\f079"; - } - .fa-ribbon:before { - content: "\\f4d6"; - } - .fa-right-from-bracket:before, - .fa-sign-out-alt:before { - content: "\\f2f5"; - } - .fa-exchange-alt:before, - .fa-right-left:before { - content: "\\f362"; - } - .fa-long-arrow-alt-right:before, - .fa-right-long:before { - content: "\\f30b"; - } - .fa-right-to-bracket:before, - .fa-sign-in-alt:before { - content: "\\f2f6"; - } - .fa-ring:before { - content: "\\f70b"; - } - .fa-road:before { - content: "\\f018"; - } - .fa-road-barrier:before { - content: "\\e562"; - } - .fa-road-bridge:before { - content: "\\e563"; - } - .fa-road-circle-check:before { - content: "\\e564"; - } - .fa-road-circle-exclamation:before { - content: "\\e565"; - } - .fa-road-circle-xmark:before { - content: "\\e566"; - } - .fa-road-lock:before { - content: "\\e567"; - } - .fa-road-spikes:before { - content: "\\e568"; - } - .fa-robot:before { - content: "\\f544"; - } - .fa-rocket:before { - content: "\\f135"; - } - .fa-rotate:before, - .fa-sync-alt:before { - content: "\\f2f1"; - } - .fa-rotate-back:before, - .fa-rotate-backward:before, - .fa-rotate-left:before, - .fa-undo-alt:before { - content: "\\f2ea"; - } - .fa-redo-alt:before, - .fa-rotate-forward:before, - .fa-rotate-right:before { - content: "\\f2f9"; - } - .fa-route:before { - content: "\\f4d7"; - } - .fa-feed:before, - .fa-rss:before { - content: "\\f09e"; - } - .fa-rouble:before, - .fa-rub:before, - .fa-ruble-sign:before, - .fa-ruble:before { - content: "\\f158"; - } - .fa-rug:before { - content: "\\e569"; - } - .fa-ruler:before { - content: "\\f545"; - } - .fa-ruler-combined:before { - content: "\\f546"; - } - .fa-ruler-horizontal:before { - content: "\\f547"; - } - .fa-ruler-vertical:before { - content: "\\f548"; - } - .fa-rupee-sign:before, - .fa-rupee:before { - content: "\\f156"; - } - .fa-rupiah-sign:before { - content: "\\e23d"; - } - .fa-s:before { - content: "\\53"; - } - .fa-sack-dollar:before { - content: "\\f81d"; - } - .fa-sack-xmark:before { - content: "\\e56a"; - } - .fa-sailboat:before { - content: "\\e445"; - } - .fa-satellite:before { - content: "\\f7bf"; - } - .fa-satellite-dish:before { - content: "\\f7c0"; - } - .fa-balance-scale:before, - .fa-scale-balanced:before { - content: "\\f24e"; - } - .fa-balance-scale-left:before, - .fa-scale-unbalanced:before { - content: "\\f515"; - } - .fa-balance-scale-right:before, - .fa-scale-unbalanced-flip:before { - content: "\\f516"; - } - .fa-school:before { - content: "\\f549"; - } - .fa-school-circle-check:before { - content: "\\e56b"; - } - .fa-school-circle-exclamation:before { - content: "\\e56c"; - } - .fa-school-circle-xmark:before { - content: "\\e56d"; - } - .fa-school-flag:before { - content: "\\e56e"; - } - .fa-school-lock:before { - content: "\\e56f"; - } - .fa-cut:before, - .fa-scissors:before { - content: "\\f0c4"; - } - .fa-screwdriver:before { - content: "\\f54a"; - } - .fa-screwdriver-wrench:before, - .fa-tools:before { - content: "\\f7d9"; - } - .fa-scroll:before { - content: "\\f70e"; - } - .fa-scroll-torah:before, - .fa-torah:before { - content: "\\f6a0"; - } - .fa-sd-card:before { - content: "\\f7c2"; - } - .fa-section:before { - content: "\\e447"; - } - .fa-seedling:before, - .fa-sprout:before { - content: "\\f4d8"; - } - .fa-server:before { - content: "\\f233"; - } - .fa-shapes:before, - .fa-triangle-circle-square:before { - content: "\\f61f"; - } - .fa-arrow-turn-right:before, - .fa-mail-forward:before, - .fa-share:before { - content: "\\f064"; - } - .fa-share-from-square:before, - .fa-share-square:before { - content: "\\f14d"; - } - .fa-share-alt:before, - .fa-share-nodes:before { - content: "\\f1e0"; - } - .fa-sheet-plastic:before { - content: "\\e571"; - } - .fa-ils:before, - .fa-shekel-sign:before, - .fa-shekel:before, - .fa-sheqel-sign:before, - .fa-sheqel:before { - content: "\\f20b"; - } - .fa-shield-blank:before, - .fa-shield:before { - content: "\\f132"; - } - .fa-shield-cat:before { - content: "\\e572"; - } - .fa-shield-dog:before { - content: "\\e573"; - } - .fa-shield-alt:before, - .fa-shield-halved:before { - content: "\\f3ed"; - } - .fa-shield-heart:before { - content: "\\e574"; - } - .fa-shield-virus:before { - content: "\\e06c"; - } - .fa-ship:before { - content: "\\f21a"; - } - .fa-shirt:before, - .fa-t-shirt:before, - .fa-tshirt:before { - content: "\\f553"; - } - .fa-shoe-prints:before { - content: "\\f54b"; - } - .fa-shop:before, - .fa-store-alt:before { - content: "\\f54f"; - } - .fa-shop-lock:before { - content: "\\e4a5"; - } - .fa-shop-slash:before, - .fa-store-alt-slash:before { - content: "\\e070"; - } - .fa-shower:before { - content: "\\f2cc"; - } - .fa-shrimp:before { - content: "\\e448"; - } - .fa-random:before, - .fa-shuffle:before { - content: "\\f074"; - } - .fa-shuttle-space:before, - .fa-space-shuttle:before { - content: "\\f197"; - } - .fa-sign-hanging:before, - .fa-sign:before { - content: "\\f4d9"; - } - .fa-signal-5:before, - .fa-signal-perfect:before, - .fa-signal:before { - content: "\\f012"; - } - .fa-signature:before { - content: "\\f5b7"; - } - .fa-map-signs:before, - .fa-signs-post:before { - content: "\\f277"; - } - .fa-sim-card:before { - content: "\\f7c4"; - } - .fa-sink:before { - content: "\\e06d"; - } - .fa-sitemap:before { - content: "\\f0e8"; - } - .fa-skull:before { - content: "\\f54c"; - } - .fa-skull-crossbones:before { - content: "\\f714"; - } - .fa-slash:before { - content: "\\f715"; - } - .fa-sleigh:before { - content: "\\f7cc"; - } - .fa-sliders-h:before, - .fa-sliders:before { - content: "\\f1de"; - } - .fa-smog:before { - content: "\\f75f"; - } - .fa-smoking:before { - content: "\\f48d"; - } - .fa-snowflake:before { - content: "\\f2dc"; - } - .fa-snowman:before { - content: "\\f7d0"; - } - .fa-snowplow:before { - content: "\\f7d2"; - } - .fa-soap:before { - content: "\\e06e"; - } - .fa-socks:before { - content: "\\f696"; - } - .fa-solar-panel:before { - content: "\\f5ba"; - } - .fa-sort:before, - .fa-unsorted:before { - content: "\\f0dc"; - } - .fa-sort-desc:before, - .fa-sort-down:before { - content: "\\f0dd"; - } - .fa-sort-asc:before, - .fa-sort-up:before { - content: "\\f0de"; - } - .fa-spa:before { - content: "\\f5bb"; - } - .fa-pastafarianism:before, - .fa-spaghetti-monster-flying:before { - content: "\\f67b"; - } - .fa-spell-check:before { - content: "\\f891"; - } - .fa-spider:before { - content: "\\f717"; - } - .fa-spinner:before { - content: "\\f110"; - } - .fa-splotch:before { - content: "\\f5bc"; - } - .fa-spoon:before, - .fa-utensil-spoon:before { - content: "\\f2e5"; - } - .fa-spray-can:before { - content: "\\f5bd"; - } - .fa-air-freshener:before, - .fa-spray-can-sparkles:before { - content: "\\f5d0"; - } - .fa-square:before { - content: "\\f0c8"; - } - .fa-external-link-square:before, - .fa-square-arrow-up-right:before { - content: "\\f14c"; - } - .fa-caret-square-down:before, - .fa-square-caret-down:before { - content: "\\f150"; - } - .fa-caret-square-left:before, - .fa-square-caret-left:before { - content: "\\f191"; - } - .fa-caret-square-right:before, - .fa-square-caret-right:before { - content: "\\f152"; - } - .fa-caret-square-up:before, - .fa-square-caret-up:before { - content: "\\f151"; - } - .fa-check-square:before, - .fa-square-check:before { - content: "\\f14a"; - } - .fa-envelope-square:before, - .fa-square-envelope:before { - content: "\\f199"; - } - .fa-square-full:before { - content: "\\f45c"; - } - .fa-h-square:before, - .fa-square-h:before { - content: "\\f0fd"; - } - .fa-minus-square:before, - .fa-square-minus:before { - content: "\\f146"; - } - .fa-square-nfi:before { - content: "\\e576"; - } - .fa-parking:before, - .fa-square-parking:before { - content: "\\f540"; - } - .fa-pen-square:before, - .fa-pencil-square:before, - .fa-square-pen:before { - content: "\\f14b"; - } - .fa-square-person-confined:before { - content: "\\e577"; - } - .fa-phone-square:before, - .fa-square-phone:before { - content: "\\f098"; - } - .fa-phone-square-alt:before, - .fa-square-phone-flip:before { - content: "\\f87b"; - } - .fa-plus-square:before, - .fa-square-plus:before { - content: "\\f0fe"; - } - .fa-poll-h:before, - .fa-square-poll-horizontal:before { - content: "\\f682"; - } - .fa-poll:before, - .fa-square-poll-vertical:before { - content: "\\f681"; - } - .fa-square-root-alt:before, - .fa-square-root-variable:before { - content: "\\f698"; - } - .fa-rss-square:before, - .fa-square-rss:before { - content: "\\f143"; - } - .fa-share-alt-square:before, - .fa-square-share-nodes:before { - content: "\\f1e1"; - } - .fa-external-link-square-alt:before, - .fa-square-up-right:before { - content: "\\f360"; - } - .fa-square-virus:before { - content: "\\e578"; - } - .fa-square-xmark:before, - .fa-times-square:before, - .fa-xmark-square:before { - content: "\\f2d3"; - } - .fa-rod-asclepius:before, - .fa-rod-snake:before, - .fa-staff-aesculapius:before, - .fa-staff-snake:before { - content: "\\e579"; - } - .fa-stairs:before { - content: "\\e289"; - } - .fa-stamp:before { - content: "\\f5bf"; - } - .fa-star:before { - content: "\\f005"; - } - .fa-star-and-crescent:before { - content: "\\f699"; - } - .fa-star-half:before { - content: "\\f089"; - } - .fa-star-half-alt:before, - .fa-star-half-stroke:before { - content: "\\f5c0"; - } - .fa-star-of-david:before { - content: "\\f69a"; - } - .fa-star-of-life:before { - content: "\\f621"; - } - .fa-gbp:before, - .fa-pound-sign:before, - .fa-sterling-sign:before { - content: "\\f154"; - } - .fa-stethoscope:before { - content: "\\f0f1"; - } - .fa-stop:before { - content: "\\f04d"; - } - .fa-stopwatch:before { - content: "\\f2f2"; - } - .fa-stopwatch-20:before { - content: "\\e06f"; - } - .fa-store:before { - content: "\\f54e"; - } - .fa-store-slash:before { - content: "\\e071"; - } - .fa-street-view:before { - content: "\\f21d"; - } - .fa-strikethrough:before { - content: "\\f0cc"; - } - .fa-stroopwafel:before { - content: "\\f551"; - } - .fa-subscript:before { - content: "\\f12c"; - } - .fa-suitcase:before { - content: "\\f0f2"; - } - .fa-medkit:before, - .fa-suitcase-medical:before { - content: "\\f0fa"; - } - .fa-suitcase-rolling:before { - content: "\\f5c1"; - } - .fa-sun:before { - content: "\\f185"; - } - .fa-sun-plant-wilt:before { - content: "\\e57a"; - } - .fa-superscript:before { - content: "\\f12b"; - } - .fa-swatchbook:before { - content: "\\f5c3"; - } - .fa-synagogue:before { - content: "\\f69b"; - } - .fa-syringe:before { - content: "\\f48e"; - } - .fa-t:before { - content: "\\54"; - } - .fa-table:before { - content: "\\f0ce"; - } - .fa-table-cells:before, - .fa-th:before { - content: "\\f00a"; - } - .fa-table-cells-large:before, - .fa-th-large:before { - content: "\\f009"; - } - .fa-columns:before, - .fa-table-columns:before { - content: "\\f0db"; - } - .fa-table-list:before, - .fa-th-list:before { - content: "\\f00b"; - } - .fa-ping-pong-paddle-ball:before, - .fa-table-tennis-paddle-ball:before, - .fa-table-tennis:before { - content: "\\f45d"; - } - .fa-tablet-android:before, - .fa-tablet:before { - content: "\\f3fb"; - } - .fa-tablet-button:before { - content: "\\f10a"; - } - .fa-tablet-alt:before, - .fa-tablet-screen-button:before { - content: "\\f3fa"; - } - .fa-tablets:before { - content: "\\f490"; - } - .fa-digital-tachograph:before, - .fa-tachograph-digital:before { - content: "\\f566"; - } - .fa-tag:before { - content: "\\f02b"; - } - .fa-tags:before { - content: "\\f02c"; - } - .fa-tape:before { - content: "\\f4db"; - } - .fa-tarp:before { - content: "\\e57b"; - } - .fa-tarp-droplet:before { - content: "\\e57c"; - } - .fa-cab:before, - .fa-taxi:before { - content: "\\f1ba"; - } - .fa-teeth:before { - content: "\\f62e"; - } - .fa-teeth-open:before { - content: "\\f62f"; - } - .fa-temperature-arrow-down:before, - .fa-temperature-down:before { - content: "\\e03f"; - } - .fa-temperature-arrow-up:before, - .fa-temperature-up:before { - content: "\\e040"; - } - .fa-temperature-0:before, - .fa-temperature-empty:before, - .fa-thermometer-0:before, - .fa-thermometer-empty:before { - content: "\\f2cb"; - } - .fa-temperature-4:before, - .fa-temperature-full:before, - .fa-thermometer-4:before, - .fa-thermometer-full:before { - content: "\\f2c7"; - } - .fa-temperature-2:before, - .fa-temperature-half:before, - .fa-thermometer-2:before, - .fa-thermometer-half:before { - content: "\\f2c9"; - } - .fa-temperature-high:before { - content: "\\f769"; - } - .fa-temperature-low:before { - content: "\\f76b"; - } - .fa-temperature-1:before, - .fa-temperature-quarter:before, - .fa-thermometer-1:before, - .fa-thermometer-quarter:before { - content: "\\f2ca"; - } - .fa-temperature-3:before, - .fa-temperature-three-quarters:before, - .fa-thermometer-3:before, - .fa-thermometer-three-quarters:before { - content: "\\f2c8"; - } - .fa-tenge-sign:before, - .fa-tenge:before { - content: "\\f7d7"; - } - .fa-tent:before { - content: "\\e57d"; - } - .fa-tent-arrow-down-to-line:before { - content: "\\e57e"; - } - .fa-tent-arrow-left-right:before { - content: "\\e57f"; - } - .fa-tent-arrow-turn-left:before { - content: "\\e580"; - } - .fa-tent-arrows-down:before { - content: "\\e581"; - } - .fa-tents:before { - content: "\\e582"; - } - .fa-terminal:before { - content: "\\f120"; - } - .fa-text-height:before { - content: "\\f034"; - } - .fa-remove-format:before, - .fa-text-slash:before { - content: "\\f87d"; - } - .fa-text-width:before { - content: "\\f035"; - } - .fa-thermometer:before { - content: "\\f491"; - } - .fa-thumbs-down:before { - content: "\\f165"; - } - .fa-thumbs-up:before { - content: "\\f164"; - } - .fa-thumb-tack:before, - .fa-thumbtack:before { - content: "\\f08d"; - } - .fa-ticket:before { - content: "\\f145"; - } - .fa-ticket-alt:before, - .fa-ticket-simple:before { - content: "\\f3ff"; - } - .fa-timeline:before { - content: "\\e29c"; - } - .fa-toggle-off:before { - content: "\\f204"; - } - .fa-toggle-on:before { - content: "\\f205"; - } - .fa-toilet:before { - content: "\\f7d8"; - } - .fa-toilet-paper:before { - content: "\\f71e"; - } - .fa-toilet-paper-slash:before { - content: "\\e072"; - } - .fa-toilet-portable:before { - content: "\\e583"; - } - .fa-toilets-portable:before { - content: "\\e584"; - } - .fa-toolbox:before { - content: "\\f552"; - } - .fa-tooth:before { - content: "\\f5c9"; - } - .fa-torii-gate:before { - content: "\\f6a1"; - } - .fa-tornado:before { - content: "\\f76f"; - } - .fa-broadcast-tower:before, - .fa-tower-broadcast:before { - content: "\\f519"; - } - .fa-tower-cell:before { - content: "\\e585"; - } - .fa-tower-observation:before { - content: "\\e586"; - } - .fa-tractor:before { - content: "\\f722"; - } - .fa-trademark:before { - content: "\\f25c"; - } - .fa-traffic-light:before { - content: "\\f637"; - } - .fa-trailer:before { - content: "\\e041"; - } - .fa-train:before { - content: "\\f238"; - } - .fa-subway:before, - .fa-train-subway:before { - content: "\\f239"; - } - .fa-train-tram:before, - .fa-tram:before { - content: "\\f7da"; - } - .fa-transgender-alt:before, - .fa-transgender:before { - content: "\\f225"; - } - .fa-trash:before { - content: "\\f1f8"; - } - .fa-trash-arrow-up:before, - .fa-trash-restore:before { - content: "\\f829"; - } - .fa-trash-alt:before, - .fa-trash-can:before { - content: "\\f2ed"; - } - .fa-trash-can-arrow-up:before, - .fa-trash-restore-alt:before { - content: "\\f82a"; - } - .fa-tree:before { - content: "\\f1bb"; - } - .fa-tree-city:before { - content: "\\e587"; - } - .fa-exclamation-triangle:before, - .fa-triangle-exclamation:before, - .fa-warning:before { - content: "\\f071"; - } - .fa-trophy:before { - content: "\\f091"; - } - .fa-trowel:before { - content: "\\e589"; - } - .fa-trowel-bricks:before { - content: "\\e58a"; - } - .fa-truck:before { - content: "\\f0d1"; - } - .fa-truck-arrow-right:before { - content: "\\e58b"; - } - .fa-truck-droplet:before { - content: "\\e58c"; - } - .fa-shipping-fast:before, - .fa-truck-fast:before { - content: "\\f48b"; - } - .fa-truck-field:before { - content: "\\e58d"; - } - .fa-truck-field-un:before { - content: "\\e58e"; - } - .fa-truck-front:before { - content: "\\e2b7"; - } - .fa-ambulance:before, - .fa-truck-medical:before { - content: "\\f0f9"; - } - .fa-truck-monster:before { - content: "\\f63b"; - } - .fa-truck-moving:before { - content: "\\f4df"; - } - .fa-truck-pickup:before { - content: "\\f63c"; - } - .fa-truck-plane:before { - content: "\\e58f"; - } - .fa-truck-loading:before, - .fa-truck-ramp-box:before { - content: "\\f4de"; - } - .fa-teletype:before, - .fa-tty:before { - content: "\\f1e4"; - } - .fa-try:before, - .fa-turkish-lira-sign:before, - .fa-turkish-lira:before { - content: "\\e2bb"; - } - .fa-level-down-alt:before, - .fa-turn-down:before { - content: "\\f3be"; - } - .fa-level-up-alt:before, - .fa-turn-up:before { - content: "\\f3bf"; - } - .fa-television:before, - .fa-tv-alt:before, - .fa-tv:before { - content: "\\f26c"; - } - .fa-u:before { - content: "\\55"; - } - .fa-umbrella:before { - content: "\\f0e9"; - } - .fa-umbrella-beach:before { - content: "\\f5ca"; - } - .fa-underline:before { - content: "\\f0cd"; - } - .fa-universal-access:before { - content: "\\f29a"; - } - .fa-unlock:before { - content: "\\f09c"; - } - .fa-unlock-alt:before, - .fa-unlock-keyhole:before { - content: "\\f13e"; - } - .fa-arrows-alt-v:before, - .fa-up-down:before { - content: "\\f338"; - } - .fa-arrows-alt:before, - .fa-up-down-left-right:before { - content: "\\f0b2"; - } - .fa-long-arrow-alt-up:before, - .fa-up-long:before { - content: "\\f30c"; - } - .fa-expand-alt:before, - .fa-up-right-and-down-left-from-center:before { - content: "\\f424"; - } - .fa-external-link-alt:before, - .fa-up-right-from-square:before { - content: "\\f35d"; - } - .fa-upload:before { - content: "\\f093"; - } - .fa-user:before { - content: "\\f007"; - } - .fa-user-astronaut:before { - content: "\\f4fb"; - } - .fa-user-check:before { - content: "\\f4fc"; - } - .fa-user-clock:before { - content: "\\f4fd"; - } - .fa-user-doctor:before, - .fa-user-md:before { - content: "\\f0f0"; - } - .fa-user-cog:before, - .fa-user-gear:before { - content: "\\f4fe"; - } - .fa-user-graduate:before { - content: "\\f501"; - } - .fa-user-friends:before, - .fa-user-group:before { - content: "\\f500"; - } - .fa-user-injured:before { - content: "\\f728"; - } - .fa-user-alt:before, - .fa-user-large:before { - content: "\\f406"; - } - .fa-user-alt-slash:before, - .fa-user-large-slash:before { - content: "\\f4fa"; - } - .fa-user-lock:before { - content: "\\f502"; - } - .fa-user-minus:before { - content: "\\f503"; - } - .fa-user-ninja:before { - content: "\\f504"; - } - .fa-user-nurse:before { - content: "\\f82f"; - } - .fa-user-edit:before, - .fa-user-pen:before { - content: "\\f4ff"; - } - .fa-user-plus:before { - content: "\\f234"; - } - .fa-user-secret:before { - content: "\\f21b"; - } - .fa-user-shield:before { - content: "\\f505"; - } - .fa-user-slash:before { - content: "\\f506"; - } - .fa-user-tag:before { - content: "\\f507"; - } - .fa-user-tie:before { - content: "\\f508"; - } - .fa-user-times:before, - .fa-user-xmark:before { - content: "\\f235"; - } - .fa-users:before { - content: "\\f0c0"; - } - .fa-users-between-lines:before { - content: "\\e591"; - } - .fa-users-cog:before, - .fa-users-gear:before { - content: "\\f509"; - } - .fa-users-line:before { - content: "\\e592"; - } - .fa-users-rays:before { - content: "\\e593"; - } - .fa-users-rectangle:before { - content: "\\e594"; - } - .fa-users-slash:before { - content: "\\e073"; - } - .fa-users-viewfinder:before { - content: "\\e595"; - } - .fa-cutlery:before, - .fa-utensils:before { - content: "\\f2e7"; - } - .fa-v:before { - content: "\\56"; - } - .fa-shuttle-van:before, - .fa-van-shuttle:before { - content: "\\f5b6"; - } - .fa-vault:before { - content: "\\e2c5"; - } - .fa-vector-square:before { - content: "\\f5cb"; - } - .fa-venus:before { - content: "\\f221"; - } - .fa-venus-double:before { - content: "\\f226"; - } - .fa-venus-mars:before { - content: "\\f228"; - } - .fa-vest:before { - content: "\\e085"; - } - .fa-vest-patches:before { - content: "\\e086"; - } - .fa-vial:before { - content: "\\f492"; - } - .fa-vial-circle-check:before { - content: "\\e596"; - } - .fa-vial-virus:before { - content: "\\e597"; - } - .fa-vials:before { - content: "\\f493"; - } - .fa-video-camera:before, - .fa-video:before { - content: "\\f03d"; - } - .fa-video-slash:before { - content: "\\f4e2"; - } - .fa-vihara:before { - content: "\\f6a7"; - } - .fa-virus:before { - content: "\\e074"; - } - .fa-virus-covid:before { - content: "\\e4a8"; - } - .fa-virus-covid-slash:before { - content: "\\e4a9"; - } - .fa-virus-slash:before { - content: "\\e075"; - } - .fa-viruses:before { - content: "\\e076"; - } - .fa-voicemail:before { - content: "\\f897"; - } - .fa-volcano:before { - content: "\\f770"; - } - .fa-volleyball-ball:before, - .fa-volleyball:before { - content: "\\f45f"; - } - .fa-volume-high:before, - .fa-volume-up:before { - content: "\\f028"; - } - .fa-volume-down:before, - .fa-volume-low:before { - content: "\\f027"; - } - .fa-volume-off:before { - content: "\\f026"; - } - .fa-volume-mute:before, - .fa-volume-times:before, - .fa-volume-xmark:before { - content: "\\f6a9"; - } - .fa-vr-cardboard:before { - content: "\\f729"; - } - .fa-w:before { - content: "\\57"; - } - .fa-walkie-talkie:before { - content: "\\f8ef"; - } - .fa-wallet:before { - content: "\\f555"; - } - .fa-magic:before, - .fa-wand-magic:before { - content: "\\f0d0"; - } - .fa-magic-wand-sparkles:before, - .fa-wand-magic-sparkles:before { - content: "\\e2ca"; - } - .fa-wand-sparkles:before { - content: "\\f72b"; - } - .fa-warehouse:before { - content: "\\f494"; - } - .fa-water:before { - content: "\\f773"; - } - .fa-ladder-water:before, - .fa-swimming-pool:before, - .fa-water-ladder:before { - content: "\\f5c5"; - } - .fa-wave-square:before { - content: "\\f83e"; - } - .fa-weight-hanging:before { - content: "\\f5cd"; - } - .fa-weight-scale:before, - .fa-weight:before { - content: "\\f496"; - } - .fa-wheat-alt:before, - .fa-wheat-awn:before { - content: "\\e2cd"; - } - .fa-wheat-awn-circle-exclamation:before { - content: "\\e598"; - } - .fa-wheelchair:before { - content: "\\f193"; - } - .fa-wheelchair-alt:before, - .fa-wheelchair-move:before { - content: "\\e2ce"; - } - .fa-glass-whiskey:before, - .fa-whiskey-glass:before { - content: "\\f7a0"; - } - .fa-wifi-3:before, - .fa-wifi-strong:before, - .fa-wifi:before { - content: "\\f1eb"; - } - .fa-wind:before { - content: "\\f72e"; - } - .fa-window-maximize:before { - content: "\\f2d0"; - } - .fa-window-minimize:before { - content: "\\f2d1"; - } - .fa-window-restore:before { - content: "\\f2d2"; - } - .fa-wine-bottle:before { - content: "\\f72f"; - } - .fa-wine-glass:before { - content: "\\f4e3"; - } - .fa-wine-glass-alt:before, - .fa-wine-glass-empty:before { - content: "\\f5ce"; - } - .fa-krw:before, - .fa-won-sign:before, - .fa-won:before { - content: "\\f159"; - } - .fa-worm:before { - content: "\\e599"; - } - .fa-wrench:before { - content: "\\f0ad"; - } - .fa-x:before { - content: "\\58"; - } - .fa-x-ray:before { - content: "\\f497"; - } - .fa-close:before, - .fa-multiply:before, - .fa-remove:before, - .fa-times:before, - .fa-xmark:before { - content: "\\f00d"; - } - .fa-xmarks-lines:before { - content: "\\e59a"; - } - .fa-y:before { - content: "\\59"; - } - .fa-cny:before, - .fa-jpy:before, - .fa-rmb:before, - .fa-yen-sign:before, - .fa-yen:before { - content: "\\f157"; - } - .fa-yin-yang:before { - content: "\\f6ad"; - } - .fa-z:before { - content: "\\5a"; - } - .fa-sr-only, - .fa-sr-only-focusable:not(:focus), - .sr-only, - .sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; - } - :host, - :root { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; - } - @font-face { - font-family: "Font Awesome 6 Brands"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url(../webfonts/fa-brands-400.woff2) format("woff2"), - url(../webfonts/fa-brands-400.ttf) format("truetype"); - } - .fa-brands, - .fab { - font-family: "Font Awesome 6 Brands"; - font-weight: 400; - } - .fa-42-group:before, - .fa-innosoft:before { - content: "\\e080"; - } - .fa-500px:before { - content: "\\f26e"; - } - .fa-accessible-icon:before { - content: "\\f368"; - } - .fa-accusoft:before { - content: "\\f369"; - } - .fa-adn:before { - content: "\\f170"; - } - .fa-adversal:before { - content: "\\f36a"; - } - .fa-affiliatetheme:before { - content: "\\f36b"; - } - .fa-airbnb:before { - content: "\\f834"; - } - .fa-algolia:before { - content: "\\f36c"; - } - .fa-alipay:before { - content: "\\f642"; - } - .fa-amazon:before { - content: "\\f270"; - } - .fa-amazon-pay:before { - content: "\\f42c"; - } - .fa-amilia:before { - content: "\\f36d"; - } - .fa-android:before { - content: "\\f17b"; - } - .fa-angellist:before { - content: "\\f209"; - } - .fa-angrycreative:before { - content: "\\f36e"; - } - .fa-angular:before { - content: "\\f420"; - } - .fa-app-store:before { - content: "\\f36f"; - } - .fa-app-store-ios:before { - content: "\\f370"; - } - .fa-apper:before { - content: "\\f371"; - } - .fa-apple:before { - content: "\\f179"; - } - .fa-apple-pay:before { - content: "\\f415"; - } - .fa-artstation:before { - content: "\\f77a"; - } - .fa-asymmetrik:before { - content: "\\f372"; - } - .fa-atlassian:before { - content: "\\f77b"; - } - .fa-audible:before { - content: "\\f373"; - } - .fa-autoprefixer:before { - content: "\\f41c"; - } - .fa-avianex:before { - content: "\\f374"; - } - .fa-aviato:before { - content: "\\f421"; - } - .fa-aws:before { - content: "\\f375"; - } - .fa-bandcamp:before { - content: "\\f2d5"; - } - .fa-battle-net:before { - content: "\\f835"; - } - .fa-behance:before { - content: "\\f1b4"; - } - .fa-behance-square:before { - content: "\\f1b5"; - } - .fa-bilibili:before { - content: "\\e3d9"; - } - .fa-bimobject:before { - content: "\\f378"; - } - .fa-bitbucket:before { - content: "\\f171"; - } - .fa-bitcoin:before { - content: "\\f379"; - } - .fa-bity:before { - content: "\\f37a"; - } - .fa-black-tie:before { - content: "\\f27e"; - } - .fa-blackberry:before { - content: "\\f37b"; - } - .fa-blogger:before { - content: "\\f37c"; - } - .fa-blogger-b:before { - content: "\\f37d"; - } - .fa-bluetooth:before { - content: "\\f293"; - } - .fa-bluetooth-b:before { - content: "\\f294"; - } - .fa-bootstrap:before { - content: "\\f836"; - } - .fa-bots:before { - content: "\\e340"; - } - .fa-btc:before { - content: "\\f15a"; - } - .fa-buffer:before { - content: "\\f837"; - } - .fa-buromobelexperte:before { - content: "\\f37f"; - } - .fa-buy-n-large:before { - content: "\\f8a6"; - } - .fa-buysellads:before { - content: "\\f20d"; - } - .fa-canadian-maple-leaf:before { - content: "\\f785"; - } - .fa-cc-amazon-pay:before { - content: "\\f42d"; - } - .fa-cc-amex:before { - content: "\\f1f3"; - } - .fa-cc-apple-pay:before { - content: "\\f416"; - } - .fa-cc-diners-club:before { - content: "\\f24c"; - } - .fa-cc-discover:before { - content: "\\f1f2"; - } - .fa-cc-jcb:before { - content: "\\f24b"; - } - .fa-cc-mastercard:before { - content: "\\f1f1"; - } - .fa-cc-paypal:before { - content: "\\f1f4"; - } - .fa-cc-stripe:before { - content: "\\f1f5"; - } - .fa-cc-visa:before { - content: "\\f1f0"; - } - .fa-centercode:before { - content: "\\f380"; - } - .fa-centos:before { - content: "\\f789"; - } - .fa-chrome:before { - content: "\\f268"; - } - .fa-chromecast:before { - content: "\\f838"; - } - .fa-cloudflare:before { - content: "\\e07d"; - } - .fa-cloudscale:before { - content: "\\f383"; - } - .fa-cloudsmith:before { - content: "\\f384"; - } - .fa-cloudversify:before { - content: "\\f385"; - } - .fa-cmplid:before { - content: "\\e360"; - } - .fa-codepen:before { - content: "\\f1cb"; - } - .fa-codiepie:before { - content: "\\f284"; - } - .fa-confluence:before { - content: "\\f78d"; - } - .fa-connectdevelop:before { - content: "\\f20e"; - } - .fa-contao:before { - content: "\\f26d"; - } - .fa-cotton-bureau:before { - content: "\\f89e"; - } - .fa-cpanel:before { - content: "\\f388"; - } - .fa-creative-commons:before { - content: "\\f25e"; - } - .fa-creative-commons-by:before { - content: "\\f4e7"; - } - .fa-creative-commons-nc:before { - content: "\\f4e8"; - } - .fa-creative-commons-nc-eu:before { - content: "\\f4e9"; - } - .fa-creative-commons-nc-jp:before { - content: "\\f4ea"; - } - .fa-creative-commons-nd:before { - content: "\\f4eb"; - } - .fa-creative-commons-pd:before { - content: "\\f4ec"; - } - .fa-creative-commons-pd-alt:before { - content: "\\f4ed"; - } - .fa-creative-commons-remix:before { - content: "\\f4ee"; - } - .fa-creative-commons-sa:before { - content: "\\f4ef"; - } - .fa-creative-commons-sampling:before { - content: "\\f4f0"; - } - .fa-creative-commons-sampling-plus:before { - content: "\\f4f1"; - } - .fa-creative-commons-share:before { - content: "\\f4f2"; - } - .fa-creative-commons-zero:before { - content: "\\f4f3"; - } - .fa-critical-role:before { - content: "\\f6c9"; - } - .fa-css3:before { - content: "\\f13c"; - } - .fa-css3-alt:before { - content: "\\f38b"; - } - .fa-cuttlefish:before { - content: "\\f38c"; - } - .fa-d-and-d:before { - content: "\\f38d"; - } - .fa-d-and-d-beyond:before { - content: "\\f6ca"; - } - .fa-dailymotion:before { - content: "\\e052"; - } - .fa-dashcube:before { - content: "\\f210"; - } - .fa-deezer:before { - content: "\\e077"; - } - .fa-delicious:before { - content: "\\f1a5"; - } - .fa-deploydog:before { - content: "\\f38e"; - } - .fa-deskpro:before { - content: "\\f38f"; - } - .fa-dev:before { - content: "\\f6cc"; - } - .fa-deviantart:before { - content: "\\f1bd"; - } - .fa-dhl:before { - content: "\\f790"; - } - .fa-diaspora:before { - content: "\\f791"; - } - .fa-digg:before { - content: "\\f1a6"; - } - .fa-digital-ocean:before { - content: "\\f391"; - } - .fa-discord:before { - content: "\\f392"; - } - .fa-discourse:before { - content: "\\f393"; - } - .fa-dochub:before { - content: "\\f394"; - } - .fa-docker:before { - content: "\\f395"; - } - .fa-draft2digital:before { - content: "\\f396"; - } - .fa-dribbble:before { - content: "\\f17d"; - } - .fa-dribbble-square:before { - content: "\\f397"; - } - .fa-dropbox:before { - content: "\\f16b"; - } - .fa-drupal:before { - content: "\\f1a9"; - } - .fa-dyalog:before { - content: "\\f399"; - } - .fa-earlybirds:before { - content: "\\f39a"; - } - .fa-ebay:before { - content: "\\f4f4"; - } - .fa-edge:before { - content: "\\f282"; - } - .fa-edge-legacy:before { - content: "\\e078"; - } - .fa-elementor:before { - content: "\\f430"; - } - .fa-ello:before { - content: "\\f5f1"; - } - .fa-ember:before { - content: "\\f423"; - } - .fa-empire:before { - content: "\\f1d1"; - } - .fa-envira:before { - content: "\\f299"; - } - .fa-erlang:before { - content: "\\f39d"; - } - .fa-ethereum:before { - content: "\\f42e"; - } - .fa-etsy:before { - content: "\\f2d7"; - } - .fa-evernote:before { - content: "\\f839"; - } - .fa-expeditedssl:before { - content: "\\f23e"; - } - .fa-facebook:before { - content: "\\f09a"; - } - .fa-facebook-f:before { - content: "\\f39e"; - } - .fa-facebook-messenger:before { - content: "\\f39f"; - } - .fa-facebook-square:before { - content: "\\f082"; - } - .fa-fantasy-flight-games:before { - content: "\\f6dc"; - } - .fa-fedex:before { - content: "\\f797"; - } - .fa-fedora:before { - content: "\\f798"; - } - .fa-figma:before { - content: "\\f799"; - } - .fa-firefox:before { - content: "\\f269"; - } - .fa-firefox-browser:before { - content: "\\e007"; - } - .fa-first-order:before { - content: "\\f2b0"; - } - .fa-first-order-alt:before { - content: "\\f50a"; - } - .fa-firstdraft:before { - content: "\\f3a1"; - } - .fa-flickr:before { - content: "\\f16e"; - } - .fa-flipboard:before { - content: "\\f44d"; - } - .fa-fly:before { - content: "\\f417"; - } - .fa-font-awesome-flag:before, - .fa-font-awesome-logo-full:before, - .fa-font-awesome:before { - content: "\\f2b4"; - } - .fa-fonticons:before { - content: "\\f280"; - } - .fa-fonticons-fi:before { - content: "\\f3a2"; - } - .fa-fort-awesome:before { - content: "\\f286"; - } - .fa-fort-awesome-alt:before { - content: "\\f3a3"; - } - .fa-forumbee:before { - content: "\\f211"; - } - .fa-foursquare:before { - content: "\\f180"; - } - .fa-free-code-camp:before { - content: "\\f2c5"; - } - .fa-freebsd:before { - content: "\\f3a4"; - } - .fa-fulcrum:before { - content: "\\f50b"; - } - .fa-galactic-republic:before { - content: "\\f50c"; - } - .fa-galactic-senate:before { - content: "\\f50d"; - } - .fa-get-pocket:before { - content: "\\f265"; - } - .fa-gg:before { - content: "\\f260"; - } - .fa-gg-circle:before { - content: "\\f261"; - } - .fa-git:before { - content: "\\f1d3"; - } - .fa-git-alt:before { - content: "\\f841"; - } - .fa-git-square:before { - content: "\\f1d2"; - } - .fa-github:before { - content: "\\f09b"; - } - .fa-github-alt:before { - content: "\\f113"; - } - .fa-github-square:before { - content: "\\f092"; - } - .fa-gitkraken:before { - content: "\\f3a6"; - } - .fa-gitlab:before { - content: "\\f296"; - } - .fa-gitter:before { - content: "\\f426"; - } - .fa-glide:before { - content: "\\f2a5"; - } - .fa-glide-g:before { - content: "\\f2a6"; - } - .fa-gofore:before { - content: "\\f3a7"; - } - .fa-golang:before { - content: "\\e40f"; - } - .fa-goodreads:before { - content: "\\f3a8"; - } - .fa-goodreads-g:before { - content: "\\f3a9"; - } - .fa-google:before { - content: "\\f1a0"; - } - .fa-google-drive:before { - content: "\\f3aa"; - } - .fa-google-pay:before { - content: "\\e079"; - } - .fa-google-play:before { - content: "\\f3ab"; - } - .fa-google-plus:before { - content: "\\f2b3"; - } - .fa-google-plus-g:before { - content: "\\f0d5"; - } - .fa-google-plus-square:before { - content: "\\f0d4"; - } - .fa-google-wallet:before { - content: "\\f1ee"; - } - .fa-gratipay:before { - content: "\\f184"; - } - .fa-grav:before { - content: "\\f2d6"; - } - .fa-gripfire:before { - content: "\\f3ac"; - } - .fa-grunt:before { - content: "\\f3ad"; - } - .fa-guilded:before { - content: "\\e07e"; - } - .fa-gulp:before { - content: "\\f3ae"; - } - .fa-hacker-news:before { - content: "\\f1d4"; - } - .fa-hacker-news-square:before { - content: "\\f3af"; - } - .fa-hackerrank:before { - content: "\\f5f7"; - } - .fa-hashnode:before { - content: "\\e499"; - } - .fa-hips:before { - content: "\\f452"; - } - .fa-hire-a-helper:before { - content: "\\f3b0"; - } - .fa-hive:before { - content: "\\e07f"; - } - .fa-hooli:before { - content: "\\f427"; - } - .fa-hornbill:before { - content: "\\f592"; - } - .fa-hotjar:before { - content: "\\f3b1"; - } - .fa-houzz:before { - content: "\\f27c"; - } - .fa-html5:before { - content: "\\f13b"; - } - .fa-hubspot:before { - content: "\\f3b2"; - } - .fa-ideal:before { - content: "\\e013"; - } - .fa-imdb:before { - content: "\\f2d8"; - } - .fa-instagram:before { - content: "\\f16d"; - } - .fa-instagram-square:before { - content: "\\e055"; - } - .fa-instalod:before { - content: "\\e081"; - } - .fa-intercom:before { - content: "\\f7af"; - } - .fa-internet-explorer:before { - content: "\\f26b"; - } - .fa-invision:before { - content: "\\f7b0"; - } - .fa-ioxhost:before { - content: "\\f208"; - } - .fa-itch-io:before { - content: "\\f83a"; - } - .fa-itunes:before { - content: "\\f3b4"; - } - .fa-itunes-note:before { - content: "\\f3b5"; - } - .fa-java:before { - content: "\\f4e4"; - } - .fa-jedi-order:before { - content: "\\f50e"; - } - .fa-jenkins:before { - content: "\\f3b6"; - } - .fa-jira:before { - content: "\\f7b1"; - } - .fa-joget:before { - content: "\\f3b7"; - } - .fa-joomla:before { - content: "\\f1aa"; - } - .fa-js:before { - content: "\\f3b8"; - } - .fa-js-square:before { - content: "\\f3b9"; - } - .fa-jsfiddle:before { - content: "\\f1cc"; - } - .fa-kaggle:before { - content: "\\f5fa"; - } - .fa-keybase:before { - content: "\\f4f5"; - } - .fa-keycdn:before { - content: "\\f3ba"; - } - .fa-kickstarter:before { - content: "\\f3bb"; - } - .fa-kickstarter-k:before { - content: "\\f3bc"; - } - .fa-korvue:before { - content: "\\f42f"; - } - .fa-laravel:before { - content: "\\f3bd"; - } - .fa-lastfm:before { - content: "\\f202"; - } - .fa-lastfm-square:before { - content: "\\f203"; - } - .fa-leanpub:before { - content: "\\f212"; - } - .fa-less:before { - content: "\\f41d"; - } - .fa-line:before { - content: "\\f3c0"; - } - .fa-linkedin:before { - content: "\\f08c"; - } - .fa-linkedin-in:before { - content: "\\f0e1"; - } - .fa-linode:before { - content: "\\f2b8"; - } - .fa-linux:before { - content: "\\f17c"; - } - .fa-lyft:before { - content: "\\f3c3"; - } - .fa-magento:before { - content: "\\f3c4"; - } - .fa-mailchimp:before { - content: "\\f59e"; - } - .fa-mandalorian:before { - content: "\\f50f"; - } - .fa-markdown:before { - content: "\\f60f"; - } - .fa-mastodon:before { - content: "\\f4f6"; - } - .fa-maxcdn:before { - content: "\\f136"; - } - .fa-mdb:before { - content: "\\f8ca"; - } - .fa-medapps:before { - content: "\\f3c6"; - } - .fa-medium-m:before, - .fa-medium:before { - content: "\\f23a"; - } - .fa-medrt:before { - content: "\\f3c8"; - } - .fa-meetup:before { - content: "\\f2e0"; - } - .fa-megaport:before { - content: "\\f5a3"; - } - .fa-mendeley:before { - content: "\\f7b3"; - } - .fa-microblog:before { - content: "\\e01a"; - } - .fa-microsoft:before { - content: "\\f3ca"; - } - .fa-mix:before { - content: "\\f3cb"; - } - .fa-mixcloud:before { - content: "\\f289"; - } - .fa-mixer:before { - content: "\\e056"; - } - .fa-mizuni:before { - content: "\\f3cc"; - } - .fa-modx:before { - content: "\\f285"; - } - .fa-monero:before { - content: "\\f3d0"; - } - .fa-napster:before { - content: "\\f3d2"; - } - .fa-neos:before { - content: "\\f612"; - } - .fa-nfc-directional:before { - content: "\\e530"; - } - .fa-nfc-symbol:before { - content: "\\e531"; - } - .fa-nimblr:before { - content: "\\f5a8"; - } - .fa-node:before { - content: "\\f419"; - } - .fa-node-js:before { - content: "\\f3d3"; - } - .fa-npm:before { - content: "\\f3d4"; - } - .fa-ns8:before { - content: "\\f3d5"; - } - .fa-nutritionix:before { - content: "\\f3d6"; - } - .fa-octopus-deploy:before { - content: "\\e082"; - } - .fa-odnoklassniki:before { - content: "\\f263"; - } - .fa-odnoklassniki-square:before { - content: "\\f264"; - } - .fa-old-republic:before { - content: "\\f510"; - } - .fa-opencart:before { - content: "\\f23d"; - } - .fa-openid:before { - content: "\\f19b"; - } - .fa-opera:before { - content: "\\f26a"; - } - .fa-optin-monster:before { - content: "\\f23c"; - } - .fa-orcid:before { - content: "\\f8d2"; - } - .fa-osi:before { - content: "\\f41a"; - } - .fa-padlet:before { - content: "\\e4a0"; - } - .fa-page4:before { - content: "\\f3d7"; - } - .fa-pagelines:before { - content: "\\f18c"; - } - .fa-palfed:before { - content: "\\f3d8"; - } - .fa-patreon:before { - content: "\\f3d9"; - } - .fa-paypal:before { - content: "\\f1ed"; - } - .fa-perbyte:before { - content: "\\e083"; - } - .fa-periscope:before { - content: "\\f3da"; - } - .fa-phabricator:before { - content: "\\f3db"; - } - .fa-phoenix-framework:before { - content: "\\f3dc"; - } - .fa-phoenix-squadron:before { - content: "\\f511"; - } - .fa-php:before { - content: "\\f457"; - } - .fa-pied-piper:before { - content: "\\f2ae"; - } - .fa-pied-piper-alt:before { - content: "\\f1a8"; - } - .fa-pied-piper-hat:before { - content: "\\f4e5"; - } - .fa-pied-piper-pp:before { - content: "\\f1a7"; - } - .fa-pied-piper-square:before { - content: "\\e01e"; - } - .fa-pinterest:before { - content: "\\f0d2"; - } - .fa-pinterest-p:before { - content: "\\f231"; - } - .fa-pinterest-square:before { - content: "\\f0d3"; - } - .fa-pix:before { - content: "\\e43a"; - } - .fa-playstation:before { - content: "\\f3df"; - } - .fa-product-hunt:before { - content: "\\f288"; - } - .fa-pushed:before { - content: "\\f3e1"; - } - .fa-python:before { - content: "\\f3e2"; - } - .fa-qq:before { - content: "\\f1d6"; - } - .fa-quinscape:before { - content: "\\f459"; - } - .fa-quora:before { - content: "\\f2c4"; - } - .fa-r-project:before { - content: "\\f4f7"; - } - .fa-raspberry-pi:before { - content: "\\f7bb"; - } - .fa-ravelry:before { - content: "\\f2d9"; - } - .fa-react:before { - content: "\\f41b"; - } - .fa-reacteurope:before { - content: "\\f75d"; - } - .fa-readme:before { - content: "\\f4d5"; - } - .fa-rebel:before { - content: "\\f1d0"; - } - .fa-red-river:before { - content: "\\f3e3"; - } - .fa-reddit:before { - content: "\\f1a1"; - } - .fa-reddit-alien:before { - content: "\\f281"; - } - .fa-reddit-square:before { - content: "\\f1a2"; - } - .fa-redhat:before { - content: "\\f7bc"; - } - .fa-renren:before { - content: "\\f18b"; - } - .fa-replyd:before { - content: "\\f3e6"; - } - .fa-researchgate:before { - content: "\\f4f8"; - } - .fa-resolving:before { - content: "\\f3e7"; - } - .fa-rev:before { - content: "\\f5b2"; - } - .fa-rocketchat:before { - content: "\\f3e8"; - } - .fa-rockrms:before { - content: "\\f3e9"; - } - .fa-rust:before { - content: "\\e07a"; - } - .fa-safari:before { - content: "\\f267"; - } - .fa-salesforce:before { - content: "\\f83b"; - } - .fa-sass:before { - content: "\\f41e"; - } - .fa-schlix:before { - content: "\\f3ea"; - } - .fa-screenpal:before { - content: "\\e570"; - } - .fa-scribd:before { - content: "\\f28a"; - } - .fa-searchengin:before { - content: "\\f3eb"; - } - .fa-sellcast:before { - content: "\\f2da"; - } - .fa-sellsy:before { - content: "\\f213"; - } - .fa-servicestack:before { - content: "\\f3ec"; - } - .fa-shirtsinbulk:before { - content: "\\f214"; - } - .fa-shopify:before { - content: "\\e057"; - } - .fa-shopware:before { - content: "\\f5b5"; - } - .fa-simplybuilt:before { - content: "\\f215"; - } - .fa-sistrix:before { - content: "\\f3ee"; - } - .fa-sith:before { - content: "\\f512"; - } - .fa-sitrox:before { - content: "\\e44a"; - } - .fa-sketch:before { - content: "\\f7c6"; - } - .fa-skyatlas:before { - content: "\\f216"; - } - .fa-skype:before { - content: "\\f17e"; - } - .fa-slack-hash:before, - .fa-slack:before { - content: "\\f198"; - } - .fa-slideshare:before { - content: "\\f1e7"; - } - .fa-snapchat-ghost:before, - .fa-snapchat:before { - content: "\\f2ab"; - } - .fa-snapchat-square:before { - content: "\\f2ad"; - } - .fa-soundcloud:before { - content: "\\f1be"; - } - .fa-sourcetree:before { - content: "\\f7d3"; - } - .fa-speakap:before { - content: "\\f3f3"; - } - .fa-speaker-deck:before { - content: "\\f83c"; - } - .fa-spotify:before { - content: "\\f1bc"; - } - .fa-square-font-awesome:before { - content: "\\f425"; - } - .fa-font-awesome-alt:before, - .fa-square-font-awesome-stroke:before { - content: "\\f35c"; - } - .fa-squarespace:before { - content: "\\f5be"; - } - .fa-stack-exchange:before { - content: "\\f18d"; - } - .fa-stack-overflow:before { - content: "\\f16c"; - } - .fa-stackpath:before { - content: "\\f842"; - } - .fa-staylinked:before { - content: "\\f3f5"; - } - .fa-steam:before { - content: "\\f1b6"; - } - .fa-steam-square:before { - content: "\\f1b7"; - } - .fa-steam-symbol:before { - content: "\\f3f6"; - } - .fa-sticker-mule:before { - content: "\\f3f7"; - } - .fa-strava:before { - content: "\\f428"; - } - .fa-stripe:before { - content: "\\f429"; - } - .fa-stripe-s:before { - content: "\\f42a"; - } - .fa-studiovinari:before { - content: "\\f3f8"; - } - .fa-stumbleupon:before { - content: "\\f1a4"; - } - .fa-stumbleupon-circle:before { - content: "\\f1a3"; - } - .fa-superpowers:before { - content: "\\f2dd"; - } - .fa-supple:before { - content: "\\f3f9"; - } - .fa-suse:before { - content: "\\f7d6"; - } - .fa-swift:before { - content: "\\f8e1"; - } - .fa-symfony:before { - content: "\\f83d"; - } - .fa-teamspeak:before { - content: "\\f4f9"; - } - .fa-telegram-plane:before, - .fa-telegram:before { - content: "\\f2c6"; - } - .fa-tencent-weibo:before { - content: "\\f1d5"; - } - .fa-the-red-yeti:before { - content: "\\f69d"; - } - .fa-themeco:before { - content: "\\f5c6"; - } - .fa-themeisle:before { - content: "\\f2b2"; - } - .fa-think-peaks:before { - content: "\\f731"; - } - .fa-tiktok:before { - content: "\\e07b"; - } - .fa-trade-federation:before { - content: "\\f513"; - } - .fa-trello:before { - content: "\\f181"; - } - .fa-tumblr:before { - content: "\\f173"; - } - .fa-tumblr-square:before { - content: "\\f174"; - } - .fa-twitch:before { - content: "\\f1e8"; - } - .fa-twitter:before { - content: "\\f099"; - } - .fa-twitter-square:before { - content: "\\f081"; - } - .fa-typo3:before { - content: "\\f42b"; - } - .fa-uber:before { - content: "\\f402"; - } - .fa-ubuntu:before { - content: "\\f7df"; - } - .fa-uikit:before { - content: "\\f403"; - } - .fa-umbraco:before { - content: "\\f8e8"; - } - .fa-uncharted:before { - content: "\\e084"; - } - .fa-uniregistry:before { - content: "\\f404"; - } - .fa-unity:before { - content: "\\e049"; - } - .fa-unsplash:before { - content: "\\e07c"; - } - .fa-untappd:before { - content: "\\f405"; - } - .fa-ups:before { - content: "\\f7e0"; - } - .fa-usb:before { - content: "\\f287"; - } - .fa-usps:before { - content: "\\f7e1"; - } - .fa-ussunnah:before { - content: "\\f407"; - } - .fa-vaadin:before { - content: "\\f408"; - } - .fa-viacoin:before { - content: "\\f237"; - } - .fa-viadeo:before { - content: "\\f2a9"; - } - .fa-viadeo-square:before { - content: "\\f2aa"; - } - .fa-viber:before { - content: "\\f409"; - } - .fa-vimeo:before { - content: "\\f40a"; - } - .fa-vimeo-square:before { - content: "\\f194"; - } - .fa-vimeo-v:before { - content: "\\f27d"; - } - .fa-vine:before { - content: "\\f1ca"; - } - .fa-vk:before { - content: "\\f189"; - } - .fa-vnv:before { - content: "\\f40b"; - } - .fa-vuejs:before { - content: "\\f41f"; - } - .fa-watchman-monitoring:before { - content: "\\e087"; - } - .fa-waze:before { - content: "\\f83f"; - } - .fa-weebly:before { - content: "\\f5cc"; - } - .fa-weibo:before { - content: "\\f18a"; - } - .fa-weixin:before { - content: "\\f1d7"; - } - .fa-whatsapp:before { - content: "\\f232"; - } - .fa-whatsapp-square:before { - content: "\\f40c"; - } - .fa-whmcs:before { - content: "\\f40d"; - } - .fa-wikipedia-w:before { - content: "\\f266"; - } - .fa-windows:before { - content: "\\f17a"; - } - .fa-wirsindhandwerk:before, - .fa-wsh:before { - content: "\\e2d0"; - } - .fa-wix:before { - content: "\\f5cf"; - } - .fa-wizards-of-the-coast:before { - content: "\\f730"; - } - .fa-wodu:before { - content: "\\e088"; - } - .fa-wolf-pack-battalion:before { - content: "\\f514"; - } - .fa-wordpress:before { - content: "\\f19a"; - } - .fa-wordpress-simple:before { - content: "\\f411"; - } - .fa-wpbeginner:before { - content: "\\f297"; - } - .fa-wpexplorer:before { - content: "\\f2de"; - } - .fa-wpforms:before { - content: "\\f298"; - } - .fa-wpressr:before { - content: "\\f3e4"; - } - .fa-xbox:before { - content: "\\f412"; - } - .fa-xing:before { - content: "\\f168"; - } - .fa-xing-square:before { - content: "\\f169"; - } - .fa-y-combinator:before { - content: "\\f23b"; - } - .fa-yahoo:before { - content: "\\f19e"; - } - .fa-yammer:before { - content: "\\f840"; - } - .fa-yandex:before { - content: "\\f413"; - } - .fa-yandex-international:before { - content: "\\f414"; - } - .fa-yarn:before { - content: "\\f7e3"; - } - .fa-yelp:before { - content: "\\f1e9"; - } - .fa-yoast:before { - content: "\\f2b1"; - } - .fa-youtube:before { - content: "\\f167"; - } - .fa-youtube-square:before { - content: "\\f431"; - } - .fa-zhihu:before { - content: "\\f63f"; - } - :host, - :root { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; - } - @font-face { - font-family: "Font Awesome 6 Free"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url(../webfonts/fa-regular-400.woff2) format("woff2"), - url(../webfonts/fa-regular-400.ttf) format("truetype"); - } - .fa-regular, - .far { - font-family: "Font Awesome 6 Free"; - font-weight: 400; - } - :host, - :root { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; - } - @font-face { - font-family: "Font Awesome 6 Free"; - font-style: normal; - font-weight: 900; - font-display: block; - src: url(../webfonts/fa-solid-900.woff2) format("woff2"), - url(../webfonts/fa-solid-900.ttf) format("truetype"); - } - .fa-solid, - .fas { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - } - @font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url(../webfonts/fa-brands-400.woff2) format("woff2"), - url(../webfonts/fa-brands-400.ttf) format("truetype"); - } - @font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url(../webfonts/fa-solid-900.woff2) format("woff2"), - url(../webfonts/fa-solid-900.ttf) format("truetype"); - } - @font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url(../webfonts/fa-regular-400.woff2) format("woff2"), - url(../webfonts/fa-regular-400.ttf) format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-solid-900.woff2) format("woff2"), - url(../webfonts/fa-solid-900.ttf) format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-brands-400.woff2) format("woff2"), - url(../webfonts/fa-brands-400.ttf) format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-regular-400.woff2) format("woff2"), - url(../webfonts/fa-regular-400.ttf) format("truetype"); - unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, - u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, - u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, - u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, - u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, - u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, - u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, - u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, - u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc; - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-v4compatibility.woff2) format("woff2"), - url(../webfonts/fa-v4compatibility.ttf) format("truetype"); - unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, - u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, - u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, - u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252, - u+f27a; - }`, - 'KOL-SKIP-NAV': `kol-link-wc > a > kol-span-wc { - border-radius: var(--a11y-min-size); - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - padding: 8px 14px; - background-color: var(--color-ocean); - border-color: var(--color-ocean); - color: var(--color-white); - cursor: pointer; - }`, -}); diff --git a/packages/themes/package.json b/packages/themes/package.json index 9ee455ee84..8fd99c8bc8 100644 --- a/packages/themes/package.json +++ b/packages/themes/package.json @@ -42,7 +42,7 @@ ], "scripts": { "build": "unbuild", - "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*", + "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@public-ui/schema,@types/*", "format": "prettier --check src", "lint": "eslint src && tsc --noemit", "prepack": "unbuild", diff --git a/packages/themes/src/index.ts b/packages/themes/src/index.ts index 2c13d84106..213c758fcf 100644 --- a/packages/themes/src/index.ts +++ b/packages/themes/src/index.ts @@ -1,2 +1,5 @@ -export * from './themes'; -export * from './translations'; +export * from '../bmf/src'; +export * from '../default/src'; +export * from '../ecl/src'; +export * from '../ecl/src'; +export * from '../itzbund/src'; diff --git a/packages/themes/src/themes/bamf.ts b/packages/themes/src/themes/bamf.ts deleted file mode 100644 index 29f2add299..0000000000 --- a/packages/themes/src/themes/bamf.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -// Bundesamt für Migration und Flüchtlinge -export const BAMF = KoliBri.createTheme('bamf', {}); diff --git a/packages/themes/src/themes/desy-v1.ts b/packages/themes/src/themes/desy-v1.ts deleted file mode 100644 index f49119e311..0000000000 --- a/packages/themes/src/themes/desy-v1.ts +++ /dev/null @@ -1,2827 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -// GZD Design System (Desy v1) -export const DESYv1 = KoliBri.createTheme('desy-v1', { - GLOBAL: `:host { - --color-primary: #326cae; - --color-primary-10: #1e538f; - --color-primary-20: #08335e; - --color-yellow-neutral: #ef9e48; - --color-dark-yellow-neutral: #a8672c; - --color-warning: #a94442; - --color-success: #5cb85c; - --color-background: #edf4f7; - --color-black: #000000; - --color-gray-10: #333333; - --color-gray-20: #666666; - --color-gray-30: #737373; - --color-gray-40: #999999; - --color-gray-50: #b3b3b3; - --color-gray-60: #dddddd; - --color-gray-70: #f2f2f2; - --color-white: #ffffff; - --font-family: BundesSans Web, Calibri, Verdana, Arial, Helvetica, sans-serif; - --font-size: 14px; - --spacing: 0.25em; - } - :host { - background-color: transparent; /* Reset global background-color defined by components */ - } - :host * { - box-sizing: border-box; - font-family: var(--font-family); - } - :host h1, - :host h2, - :host h3, - :host h4, - :host h5, - :host h6 { - margin: 0; - font-family: var(--font-family); - } - a, - button { - align-items: center; - background-color: transparent; - border: 0; - color: black; - cursor: pointer; - display: inline-flex; - gap: 0.25rem; - justify-items: center; - } - input, - option, - select, - summary, - textarea { - display: inline-block; - } - a, - button, - input, - option, - select, - summary, - textarea { - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; - letter-spacing: inherit; - word-break: break-word; - } - *[tabindex]:focus, - a:focus, - button:focus, - input:focus, - select:focus, - summary:focus, - textarea:focus { - cursor: pointer; - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 0; - transition: outline-offset 0.2s linear; - } - @keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } - } - kol-heading-wc { - font-weight: 700; - }`, - 'KOL-BUTTON': `a, - button { - background-color: transparent; - border: 0; - cursor: pointer; - display: inline-block; - } - button { - background-color: transparent; - border: 0; - cursor: pointer; - min-width: 44px; - min-height: 44px; - padding: 0; - text-decoration: none !important; - } - button > kol-span-wc { - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-family: Roboto; - font-weight: 700; - cursor: pointer; - font-size: 1rem; - align-items: center; - padding: 6px 8px; - justify-content: center; - font-style: normal; - text-align: center; - outline: none; - border-style: solid; - border-width: 2px; - } - button:active > kol-span-wc { - transform: translateY(1px); - } - button.primary:disabled > kol-span-wc, - button.danger:disabled > kol-span-wc, - button.normal:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-white); - background-color: var(--color-gray-40); - border-color: var(--color-gray-40); - } - button.ghost:disabled > kol-span-wc, - button.loading:disabled > kol-span-wc, - button.help:disabled > kol-span-wc, - button.secondary:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-gray-40); - background-color: var(--color-white); - border-color: var(--color-white); - } - button.primary > kol-span-wc, - button.primary:hover > kol-span-wc, - button.normal > kol-span-wc, - button.normal:hover > kol-span-wc { - background-color: var(--color-primary); - border-color: var(--color-primary); - color: var(--color-white); - } - button.loading > kol-span-wc, - button.loading:hover > kol-span-wc, - button.help > kol-span-wc, - button.help:hover > kol-span-wc, - button.secondary > kol-span-wc, - button.secondary:hover > kol-span-wc { - background-color: var(--color-white); - border-color: var(--color-primary); - color: var(--color-primary); - } - button.danger > kol-span-wc, - button.danger:hover > kol-span-wc { - background-color: var(--color-warning); - border-color: var(--color-warning); - color: var(--color-white); - } - button.ghost, - button.ghost:hover > kol-span-wc { - background-color: transparent; - border-color: transparent; - color: var(--color-primary); - } - button.primary:active > kol-span-wc, - button.primary:focus > kol-span-wc, - button.primary:hover > kol-span-wc, - button.loading:active > kol-span-wc, - button.loading:focus > kol-span-wc, - button.loading:hover > kol-span-wc, - button.help:active > kol-span-wc, - button.help:focus > kol-span-wc, - button.help:hover > kol-span-wc, - button.secondary:active > kol-span-wc, - button.secondary:focus > kol-span-wc, - button.secondary:hover > kol-span-wc, - button.normal:active > kol-span-wc, - button.normal:focus > kol-span-wc, - button.normal:hover > kol-span-wc { - background-color: var(--color-primary-20); - border-color: var(--color-primary-20); - color: var(--color-white); - outline: none; - } - button.loading:active > kol-span-wc, - button.loading:focus > kol-span-wc, - button.loading:hover > kol-span-wc, - button.help:active > kol-span-wc, - button.help:focus > kol-span-wc, - button.help:hover > kol-span-wc, - button.secondary:active > kol-span-wc, - button.secondary:focus > kol-span-wc, - button.secondary:hover > kol-span-wc { - border-color: var(--color-primary-20); - } - button.danger:active > kol-span-wc, - button.danger:hover > kol-span-wc { - background-color: var(--color-dark-yellow-neutral); - border-color: var(--color-dark-yellow-neutral); - color: var(--color-white); - outline: none; - } - button.ghost:active > kol-span-wc, - button.ghost:hover > kol-span-wc { - color: var(--color-primary); - outline: none; - } - button > kol-span-wc > span { - display: flex; - gap: 0.5em; - margin: auto; - align-items: center; - justify-content: center; - letter-spacing: 0.75px; - } - button.hide-label > kol-span-wc { - padding: 8px; - } - button.hide-label > kol-span-wc > span > span { - display: none; - } - button.hide-label > kol-span-wc kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - button.loading > kol-span-wc kol-icon { - animation: spin 5s infinite linear; - } - button.loading > kol-span-wc, - button.help > kol-span-wc { - display: inline-block; - padding: 0; - }`, - 'KOL-BADGE': `:host { - display: inline-block; - } - kol-span-wc { - align-items: center; - border-radius: 0.3125rem; - display: grid; - gap: 0.5rem; - line-height: 1.25rem; - padding: 0.25rem 0.75rem; - } - kol-span-wc span { - display: flex; - gap: 0.25rem; - }`, - 'KOL-HEADING': `h1, - h2, - h3, - h4, - h5, - h6 { - color: inherit; - font-style: normal; - margin: 0; - padding: 0; - } - h1, - h2, - h3 { - font-weight: 700; - } - h1 { - font-size: 1.5rem; - line-height: 3.25rem; - } - h2 { - font-size: 1.25rem; - line-height: 1.75rem; - } - h3 { - font-size: 1.125rem; - line-height: 1.5rem; - }`, - 'KOL-ACCORDION': `:host > div { - font-family: var(--font-family); - font-size: var(--font-size); - padding: 0 0.5rem 0 0; - } - :host > div > kol-heading-wc { - background-color: var(--color-background); - color: var(--color-gray-10); - line-height: 1.75rem; - padding: 16px; - } - :host > div > kol-heading-wc:focus-within, - :host > div > kol-heading-wc:hover { - box-shadow: 0px 0px 0px 2px var(--color-primary) inset; - outline: none; - } - :host > div > kol-heading-wc button { - cursor: pointer; - width: 100%; - margin: 0; - display: flex; - flex-direction: row-reverse; - justify-content: flex-end; - gap: 2em; - border: 0; - align-items: center; - overflow: hidden; - font-size: inherit; - font-weight: normal; - line-height: 1.75em; - background-color: transparent; - padding: 0; - outline: none; - } - :host > div[part*="open"] > kol-heading-wc button { - padding-bottom: 0; - } - :host > div > kol-heading-wc button kol-icon::part(icon) { - font-weight: 900; - font-size: 26px; - color: var(--color-black); - } - :host > div > kol-heading-wc button kol-icon::part(close)::before { - font-family: "Font Awesome 6 Free"; - font-size: 14px; - content: "\f077"; - } - :host > div > kol-heading-wc button kol-icon::part(open)::before { - font-family: "Font Awesome 6 Free"; - font-size: 14px; - content: "\f078"; - } - :host > div { - width: 100%; - height: 100%; - display: grid; - } - :host > div div[part="content"] { - transition: height 200ms; - } - :host > div div[part="header"], - :host > div[part*="open"] div[part="content"] { - margin: 0; - background-color: var(--color-white); - } - :host > div div[part="header"] { - padding: 0 1em; - } - :host > div[part*="open"] div[part="content"] { - padding: 1em; - } - button { - font-weight: inherit; - font-size: inherit; - line-height: inherit; - } - :host > div { - background: var(--color-white); - } - :host > div[part*="open"] { - padding-bottom: 1em; - }`, - 'KOL-ALERT': `:host > div {background-color: white;// border-width: 2px;// border-style: solid;display: flex;overflow: unset;}:host > div.default {border-color: var(--color-gray-30);}:host > div.default > .icon {background-color: var(--color-gray-30);}:host > div.error {border-color: var(--color-warning);}:host > div.error > .icon {background-color: var(--color-warning);}:host > div.info {border-color: var(--color-primary);}:host > div.info > .icon {background-color: var(--color-primary);}:host > div.success {border-color: var(--color-success);}:host > div.success > .icon {background-color: var(--color-success);}:host > div.warning {border-color: var(--color-yellow-neutral);}:host > div.warning > .icon {background-color: var(--color-yellow-neutral);}:host > div.msg > .icon {color: white;padding: 0.5em;align-items: center;display: inline-flex;}:host > div.card {border-width: 2px;border-style: solid;}:host > div.card.default .heading .icon {background-color: var(--color-gray-30);}:host > div.card.error .heading .icon {background-color: var(--color-warning);}:host > div.card.info .heading .icon {background-color: var(--color-primary);}:host > div.card.success .heading .icon {background-color: var(--color-success);}:host > div.card.warning .heading .icon {background-color: var(--color-yellow-neutral);}:host > div.card .heading .icon {color: white;padding: 0.5em;align-items: center;display: inline-flex;}:host > div kol-heading-wc .icon {margin-right: 0.5em;}:host > div.card .heading .icon {border-radius: 0 0 0.25rem 0;}:host > div.msg > div {padding: 0.25em;}:host > div.msg > div > .heading {padding: 0.25em;display: inline-block;}:host > div .content {padding: 0.25em;}:host > div > div {display: grid;grid-template-columns: 1fr auto;}:host > div > div > .content {grid-row: 2;grid-column: 1;}:host > div > div > .close {grid-row: 1 / span 2;}:host > div.card > div > .heading {width: 100%;}.close > button {min-width: 44px;min-height: 44px;display: grid;gap: 0.25em;line-height: 1.5rem;font-family: var(--font-family);font-weight: 700;cursor: pointer;border-radius: 1.5em;border-style: solid;border-width: 2px;font-size: 1rem;align-items: center;padding: 8px 14px;justify-content: center;font-style: normal;text-align: center;text-transform: uppercase;width: inherit;transition-duration: 0.5s;transition-property: background-color, color, border-color;background-color: rgba(0, 0, 0, 0);border-color: rgba(0, 0, 0, 0);}.close > button.hide-label {padding: 8px;}.close > button.hide-label kol-icon {display: inline-block;width: 1.5em;height: 1.5em;}.close > button:active {box-shadow: none;outline: none;}.close kol-icon::part(icon)::before {content: "x";color: var(--color-primary);font-family: "Font Awesome 6 Free";}`, - 'KOL-CARD': `/* https://www.figma.com/file/56JbmrssCRpjpfxoAFeHqT/Design-System-EPLF-(in-progress)?node-id=8225%3A5945 */ - :host > div { - display: grid; - width: 100%; - height: 100%; - background-color: var(--color-background); - grid-template-rows: min-content 2fr min-content; - box-shadow: 0 0 0.25rem var(--color-grey); - padding: 8px; - } - :host kol-heading-wc { - display: inline-flex; - font-style: normal; - font-weight: 700; - font-size: 1.25rem; - line-height: 1.75rem; - } - :host div.content { - padding-top: 1em; - } - :host div.footer { - padding-top: 1em; - }`, - 'KOL-INDENTED-TEXT': `:host > div { - padding: 0.25em 0.5em; - width: 100%; - } - :host > div { - background: var(--color-white); - border: 0; - box-shadow: -4px 0px 0px var(--color-primary); - }`, - 'KOL-DETAILS': `:host details > kol-indented-text { - margin: 0.25em 0 0 0.5em; - }`, - 'KOL-LINK-GROUP': `ul { - list-style: none; - margin: 0px; - padding: 0px; - } - nav.horizontal ul { - display: flex; - flex-wrap: wrap; - } - nav.horizontal li { - margin-left: 1.25rem; - margin-right: 0.25rem; - } - nav.horizontal li:first-child { - margin-left: 0; - } - nav.horizontal li:last-child { - margin-right: 0; - } - nav.vertical li { - margin-left: 1.75rem; - margin-right: 0.5rem; - } - li.list-none { - list-style-type: none !important; - margin-left: 0; - }`, - 'KOL-PROGRESS': `:host progress, - :host span { - display: block; - height: 0px; - overflow: hidden; - width: 0px; - } - svg line:first-child, - svg circle:first-child { - fill: transparent; - stroke: var(--color-gray-60); - } - svg line:last-child, - svg circle:last-child { - stroke: var(--color-primary); - fill: transparent; - } - progress { - display: none; - }`, - 'KOL-SPIN': `.spin { - display: inline-block; - height: 1rem; - position: relative; - width: 3rem; - } - .spin span { - animation-timing-function: cubic-bezier(0, 1, 1, 0); - border: 0.1rem solid rgb(255, 255, 255); - border-radius: 50%; - height: 0.8rem; - width: 0.8rem; - top: 0.1rem; - position: absolute; - } - .spin span:nth-child(1) { - background-color: #fc0; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin1; - left: 0.1rem; - } - .spin span:nth-child(2) { - background-color: #f00; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 0.1rem; - } - .spin span:nth-child(3) { - background-color: #000; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 1.1rem; - } - .spin span:nth-child(4) { - background-color: #666; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin3; - left: 2.1rem; - } - @keyframes spin1 { - 0% { - transform: scale(0); - } - 100% { - transform: scale(1); - } - } - @keyframes spin2 { - 0% { - transform: translate(0px, 0px); - } - 100% { - transform: translate(1rem, 0px); - } - } - @keyframes spin3 { - 0% { - transform: scale(1); - } - 100% { - transform: scale(0); - } - }`, - 'KOL-TABLE': `:host * { - hyphens: var(--kolibri-hyphens); - font-family: var(--kolibri-font-family); - line-height: var(--kolibri-line-height); - word-break: break-word; - } - :host > div { - overflow-x: auto; - overflow-y: hidden; - } - table { - width: 100%; - border-spacing: 0; - border-collapse: collapse; - } - th, - td { - padding: 0.25em 0.5em; - } - th { - background-color: var(--color-gray-70); - } - th > div { - display: grid; - grid-template-columns: 1fr auto; - align-items: center; - gap: 0.25em; - } - :host > div:last-child { - padding: 0.5em; - } - tbody > tr:nth-child(even) { - background-color: var(--color-gray-70); - } - :host > div:last-child, - :host > div:last-child > div:last-child { - display: grid; - align-items: center; - justify-items: center; - gap: 0.5em; - } - @media (min-width: 1024px) { - :host > div:last-child, - :host > div:last-child > div:last-child { - grid-auto-flow: column; - } - :host > div:last-child kol-pagination { - display: flex; - gap: 1rem; - } - }`, - 'KOL-TABS': `button:disabled { - opacity: 0.5; - cursor: not-allowed; - } - kol-button-group > div { - margin: 0 1rem; - } - kol-button-group > div:first-child { - margin-left: 0; - } - kol-button-group > div:last-child { - margin-right: 0; - } - kol-button-group > div { - margin: 0; - } - button { - background-color: transparent; - border: 0; - font-style: normal; - font-weight: normal; - font-size: 18px; - line-height: 22px; - color: var(--color-primary); - padding: 0.3em 1em; - box-shadow: inset 0px -3px 0 0 var(--color-gray-70); - } - button:enabled { - box-shadow: inset 0px -3px 0 0 var(--color-primary-10); - } - button:hover { - color: var(--color-midnight); - } - button.primary { - text-underline-offset: 5px; - text-decoration-thickness: 0.25em; - font-weight: bold; - color: var(--color-gray-10); - box-shadow: inset 0px -3px 0 0 var(--color-gray-70), - inset 0px -6px 0 0 var(--color-primary-10); - } - button:hover, - button:focus { - color: var(--color-gray-10); - box-shadow: inset 0px -6px 0 0 var(--color-primary-10); - outline: none; - } - button:not(.primary) { - cursor: pointer; - } - :host > div > div { - padding: 0.25em 0; - } - .close-button { - display: none; - font-size: 25%; - height: fit-content; - width: 0; - } - .close-button button { - width: 1rem; - position: relative; - height: 1rem; - left: -4.25em; - top: 0.25em; - } - div[role="tabpanel"] { - height: 100%; - } - div.grid { - height: 100%; - } - div.grid { - height: 100%; - } - :host > .tabs-align-right { - display: grid; - grid-template-columns: 1fr auto; - } - :host > .tabs-align-right kol-button-group-wc { - display: grid; - order: 2; - } - :host > .tabs-align-left { - display: grid; - grid-template-columns: auto 1fr; - } - :host > .tabs-align-left kol-button-group-wc { - display: grid; - order: 0; - } - :host > .tabs-align-bottom { - display: grid; - grid-template-rows: 1fr auto; - } - :host > .tabs-align-bottom kol-button-group-wc { - order: 2; - } - :host > .tabs-align-bottom kol-button-group-wc > div { - display: flex; - } - :host > .tabs-align-bottom > kol-button-group-wc > div > div:first-child { - margin: 0px 1em 0px 0px; - } - :host > .tabs-align-bottom > kol-button-group-wc > div > div { - margin: 0px 1em; - } - :host > .tabs-align-top { - display: grid; - grid-template-rows: auto 1fr; - } - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-top kol-button-group-wc > div { - display: flex; - } - :host > .tabs-align-top > kol-button-group-wc > div > div:first-child { - margin: 0px 1em 0px 0px; - } - :host > .tabs-align-top > kol-button-group-wc > div > div { - margin: 0px 1em; - } - :host > div { - display: grid; - } - :host > div.tabs-align-left { - grid-template-columns: auto 1fr; - } - :host > div.tabs-align-right { - grid-template-columns: 1fr auto; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-bottom kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - order: 1; - } - :host > div.tabs-align-left kol-button-group-wc > div, - :host > div.tabs-align-left kol-button-group-wc > div > div, - :host > div.tabs-align-right kol-button-group-wc > div, - :host > div.tabs-align-right kol-button-group-wc > div > div { - display: grid; - } - :host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc, - :host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc { - width: 100%; - } - :host > div.tabs-align-bottom kol-button-group-wc div, - :host > div.tabs-align-top kol-button-group-wc div { - display: flex; - flex-wrap: wrap; - }`, - 'KOL-PAGINATION': `:host { - display: grid; - gap: 1rem; - } - :host .navigation-list { - display: inline-flex; - flex-wrap: wrap; - align-items: center; - gap: 0.5em; - } - :host kol-button-wc.selected button { - min-width: 44px; - min-height: 44px; - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-weight: 700; - cursor: default; - font-size: 1rem; - align-items: center; - padding: 0px 7px; - justify-content: center; - font-style: normal; - text-align: center; - outline: none; - color: var(--color-white); - border: unset; - background-color: var(--color-primary); - } - :host kol-button-wc.selected button:focus, - :host kol-button-wc.selected button:hover { - background-color: var(--color-primary-20); - }`, - 'KOL-LINK': `a, - button { - background-color: transparent; - border: 0; - cursor: pointer; - display: inline-block; - } - kol-link-wc, - kol-link-button-wc { - display: inline-block; - } - a, - button { - color: var(--color-primary); - font-style: normal; - font-weight: 400; - display: inline-flex; - line-height: 1.5em; - text-decoration-line: none !important; - outline: none !important; - } - a:focus-within, - a:hover, - button:focus-within, - button:hover { - box-shadow: inset 0 -1px 0 0 var(--color-primary); - } - kol-icon { - padding: 0 0.25em; - display: inline-block; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-INPUT-TEXT': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-CHECKBOX': `/* INPUT */ - kol-input { - display: grid; - align-items: center; - justify-items: left; - width: 100%; - min-height: 44px; - } - kol-input.default { - grid-template-columns: 2rem auto; - } - kol-input.switch { - grid-template-columns: 4rem auto; - } - kol-input > div.input { - display: inline-flex; - order: 1; - } - kol-input > div.input input { - margin: 0px; - } - kol-input > label { - cursor: pointer; - order: 2; - } - kol-input > kol-alert.error { - order: 3; - padding-top: 0.25em; - margin-bottom: 0.4em; - margin-top: 0.2em; - grid-column: span 2 / auto; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning) !important; - box-shadow: 0 0 0 1px var(--color-warning) inset; - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - input { - cursor: pointer; - order: 1; - width: 100%; - border-color: var(--color-gray-30); - border-width: 1px; - border-style: solid; - line-height: 24px; - font-size: 1rem; - } - input:focus, - input:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus:hover { - box-shadow: none; - } - input:active { - box-shadow: none; - } - kol-alert { - display: block; - width: 100%; - } /* CHECKBOX */ - kol-input label span { - margin-top: 0.125rem; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input input[type="checkbox"] { - appearance: none; - background-color: white; - cursor: pointer; - transition: 0.5s; - } - kol-input input[type="checkbox"].kol-disabled:before { - cursor: not-allowed; - } - kol-input input[type="checkbox"]:before { - content: ""; - cursor: pointer; - } - kol-input input[type="checkbox"]:checked { - background-color: var(--color-primary-20); - border-color: var(--color-primary-20); - } - kol-input.default input[type="checkbox"] { - width: 1rem; - height: 1rem; - } - kol-input.default input[type="checkbox"]:before { - background-color: transparent; - display: block; - height: calc(2 * var(--spacing)); - position: relative; - width: calc(2 * var(--spacing)); - } - kol-input.default input[type="checkbox"]:checked:before { - border-right-width: 1px; - border-bottom-width: 1px; - left: calc(1.2 * var(--spacing) - 2px); - top: calc(2.2 * var(--spacing) - 2px); - transform: rotate(40deg) translate(-50%, -50%); - background-color: transparent; - border-width: 0px 3px 3px 0px; - border-color: white; - border-radius: 1px; - border-style: solid; - height: calc(2 * var(--spacing)); - width: calc(1 * var(--spacing)); - } - kol-input.default input[type="checkbox"]:indeterminate { - --tw-bg-opacity: 1; - background-color: white; - } - kol-input.default input[type="checkbox"]:indeterminate:before { - background-color: var(--color-gray-30); - height: 0.2rem; - top: 0.35rem; - left: 0.15rem; - width: calc(2.5 * var(--spacing)); - } - kol-input.switch input[type="checkbox"] { - min-width: 3.5em; - width: 3.5em; - background-color: var(--color-gray-30); - border-width: 0; - height: 1.5em; - border-radius: 1.25em; - display: inline-block; - position: relative; - } - kol-input.switch input[type="checkbox"]:before { - -webkit-transition: 0.5s; - -moz-transition: 0.5s; - -ms-transition: 0.5s; - transition: 0.5; - width: 1.25em; - height: 1.25em; - left: calc(0.25em - 2px); - top: calc(0.25em - 2px); - border-radius: 1.25em; - background-color: white; - position: absolute; - } - kol-input.switch input[type="checkbox"]:checked { - background-color: var(--color-primary-20); - } - kol-input.switch input[type="checkbox"]:checked:before { - -webkit-transform: translateX(2em); - -moz-transform: translateX(2em); - -ms-transform: translateX(2em); - transform: translateX(2em); - --tw-bg-opacity: 1; - } - kol-input.switch input[type="checkbox"]:indeterminate { - --tw-bg-opacity: 1; - } - kol-input.switch input[type="checkbox"]:indeterminate:before { - -webkit-transform: translateX(1em); - -moz-transform: translateX(1em); - -ms-transform: translateX(1em); - transform: translateX(1em); - } - .disabled { - opacity: 0.33; - }`, - 'KOL-INPUT-RADIO': `/* INPUT */ - label { - cursor: pointer; - display: grid; - line-height: 20px; - gap: 8px; - width: 100%; - } - input { - cursor: pointer; - width: 100%; - border-color: var(--color-grey-20); - border-width: 1px; - border-style: solid; - border-radius: 5px; /* padding: 10px 14px; */ - line-height: 24px; - font-size: 16px; - } - :host fieldset div input[type="radio"]:hover { - border-color: var(--color-midnight); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - } - :host fieldset div input[type="radio"]:focus:hover { - box-shadow: none; - } - :host fieldset div input[type="radio"]:active { - box-shadow: none; - } - kol-alert { - display: block; - width: 100%; - margin-bottom: 0.4em; - } - .required legend > span::after { - content: "*"; - padding-left: 0.125em; - } /* RADIO */ - :host fieldset { - border: 0px; - margin: 0px; - padding: 0px; - display: grid; - gap: 0.25em; - } - :host fieldset div { - cursor: pointer; - display: flex; - flex-direction: row; - align-items: center; - position: relative; - min-height: 44px; - } - :host fieldset div label { - cursor: pointer; - display: flex; - padding-left: 0.25em; - width: 100%; - } - :host fieldset div label span { - margin-top: 0.125em; - } - :host fieldset div input[type="radio"] { - appearance: none; - transition: 0.5s; - border-radius: 100%; - height: 1rem; - min-width: 1rem; - width: 1rem; - } - :host fieldset div input[type="radio"]:before { - content: ""; - cursor: pointer; - left: calc(1 * var(--spacing) - 1px); - top: calc(1 * var(--spacing) - 1px); - position: relative; - border-radius: 100%; - display: block; - height: calc(2 * var(--spacing)); - width: calc(2 * var(--spacing)); - } - :host fieldset div input[type="radio"]:checked:before { - background-color: var(--color-primary-20); - } - :host fieldset div input[type="radio"]:disabled { - cursor: not-allowed; - border-color: var(--border-default); - background-color: var(--background-light-grey); - } - kol-alert.error { - order: 3; - } - :host fieldset legend { - order: 1; - display: contents; - } - :host fieldset kol-input { - order: 2; - } - kol-alert.error { - padding-left: 0.5em; - color: var(--color-warning); - } - fieldset.error input:focus, - fieldset.error select:focus, - fieldset.error textarea:focus { - border-color: var(--color-warning) !important; - box-shadow: 0 0 0 1px var(--color-warning) inset; - } - :host fieldset.error kol-alert.error { - margin-left: -0.25em; - color: var(--color-warning); - } - .disabled { - opacity: 0.33; - } - :host fieldset.horizontal { - display: flex; - flex-wrap: wrap; - } - :host fieldset.horizontal legend { - display: inline-block; - margin-bottom: 0.25em; - }`, - 'KOL-SELECT': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-TEXTAREA': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-PASSWORD': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-NUMBER': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-DATE': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-EMAIL': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-FILE': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-COLOR': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-RANGE': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-NAV': `/* :host * {hyphens: var(--hyphens);font-family: var(--font-family);line-height: var(--line-height);word-break: break-word;} */ - :host .hidden { - display: none; - } - :host > div > nav ul { - list-style: none; - margin: 0px; - padding: 0px; - border-radius: var(--border-radius); - background-color: var(--color-primary); - } - :host > div > nav ul > li { - border-radius: var(--border-radius); - overflow: hidden; - padding: 0.125em; - } - :host > div > nav ul > li[part*="vertical"] + li { - border-radius: 0; - border-top: 0.1em dotted white; - } - :host > div > nav ul > li[part*="vertical selected"] { - border-right: 0.375em solid var(--color-yellow-neutral); - } - :host > div > nav ul > li[part*="horizontal"] + li { - border-radius: 0; - border-left: 0.1em dotted white; - } - :host > div > nav ul > li[part*="horizontal selected"] { - border-bottom: 0.375em solid var(--color-yellow-neutral); - } - :host > div > nav ul > li > div { - height: 100%; - } - :host > div > nav kol-link-wc { - width: 100%; /*height: 100%;font-weight: 600;*/ - display: block; - } - :host > div > nav kol-link-wc a { - border-radius: var(--border-radius); - background-color: var(--color-primary); - border: 1px solid transparent; - grid: flex; - line-height: 2em; - padding: 0.5em; - color: white; - height: 100%; - -webkit-box-align: center; - align-items: center; - display: flex; - cursor: pointer; - text-decoration: inherit; - } - :host > div > nav kol-link-wc[exportparts*="selected"] a { - background-color: var(--color-primary-20); - font-weight: 700; - } - :host > div > nav kol-link-wc a kol-icon.mr-2 { - margin-right: calc(2 * var(--spacing)); - } - :host > div > nav kol-link-wc a kol-icon.ml-2 { - margin-left: calc(2 * var(--spacing)); - } - :host > div > nav kol-link-wc a:focus, - :host > div > nav kol-link-wc a:hover { - border: 1px solid white; - background-color: var(--kolibri-color-focus); - } /* compact button */ - :host > div > div:last-child { - margin-top: 0.5em; - width: 100%; - text-align: center; - } - :host > div > nav kol-link-wc a.text-center { - display: grid; - align-items: center; - justify-items: center; - } /* horizontal */ - ul.flex { - display: flex; - } - li > div > div.absolute { - position: absolute; - } - kol-span-wc { - justify-items: baseline; - }`, - 'KOL-BREADCRUMB': `nav { - width: 100%; - } - ul { - margin: 0; - padding: 0; - list-style: none; - display: flex; - flex-wrap: wrap; - align-items: center; - } - kol-link { - display: inline; - } - :host kol-icon[exportparts*="separator"] { - padding: 0 0.5rem; - } - :host kol-icon::part(icon separator) { - font-weight: 900; - font-size: 0.875rem; - } - :host kol-icon::part(icon separator)::before { - color: black; - content: "\f054"; - font-family: "Font Awesome 6 Free"; - } - :host li > kol-link > kol-link-wc > a { - color: red !important; - }`, - 'KOL-TOAST': `:host > div { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 0; - z-index: 200; - } - :host > div > kol-alert { - display: block; - margin: auto; - padding: 1rem; - max-width: 750px; - } - :host > div > kol-button-wc { - top: 0; - position: relative; - display: block; - margin: auto; - width: 1em; - }`, - 'KOL-LINK-BUTTON': `a { - min-width: 44px; - min-height: 44px; - background-color: transparent; - border: 0; - cursor: pointer; - padding: 0; - display: flex; - gap: 0.25rem; - justify-items: center; - align-items: center; - text-decoration: none !important; - } - a > kol-span-wc { - display: grid; - min-width: 44px; - min-height: 44px; - gap: 0.25em; - line-height: 1.5rem; - font-family: Roboto; - font-weight: 700; - cursor: pointer; - font-size: 1rem; - align-items: center; - padding: 0px 7px; - justify-content: center; - font-style: normal; - text-align: center; - border: none; - outline: none; - } - a:active > kol-span-wc { - transform: translateY(1px); - } - .primary a:disabled > kol-span-wc, - .danger a:disabled > kol-span-wc, - .normal a:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-white); - background-color: var(--color-gray-40); - } - .ghost a:disabled > kol-span-wc, - .loading a:disabled > kol-span-wc, - .secondary a:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-gray-40); - background-color: var(--color-white); - border: var(--color-gray-40) solid 3px; - } - .primary a > kol-span-wc, - .primary a:hover > kol-span-wc, - .normal a > kol-span-wc, - .normal a:hover > kol-span-wc { - background-color: var(--color-primary); - color: var(--color-white); - } - .loading a > kol-span-wc, - .loading a:hover > kol-span-wc, - .secondary a > kol-span-wc, - .secondary a:hover > kol-span-wc { - background-color: var(--color-white); - color: var(--color-primary); - border: 2px solid var(--color-primary); - } - .danger a > kol-span-wc, - .danger a:hover > kol-span-wc { - background-color: var(--color-warning); - border-color: var(--color-warning); - color: var(--color-white); - box-shadow: unset; - } - .ghost a, - .ghost a:hover > kol-span-wc { - background-color: unset; - color: var(--color-primary); - box-shadow: unset; - } - .primary a:active > kol-span-wc, - .primary a:focus > kol-span-wc, - .primary a:hover > kol-span-wc, - .loading a:active > kol-span-wc, - .loading a:focus > kol-span-wc, - .loading a:hover > kol-span-wc, - .secondary a:active > kol-span-wc, - .secondary a:focus > kol-span-wc, - .secondary a:hover > kol-span-wc, - .normal a:active > kol-span-wc, - .normal a:focus > kol-span-wc, - .normal a:hover > kol-span-wc { - background-color: var(--color-primary-20); - color: var(--color-white); - outline: none; - } - .loading a:active > kol-span-wc, - .loading a:focus > kol-span-wc, - .loading a:hover > kol-span-wc, - .secondary a:active > kol-span-wc, - .secondary a:focus > kol-span-wc, - .secondary a:hover > kol-span-wc { - border: 2px solid var(--color-primary-20); - } - .danger a:active > kol-span-wc, - .danger a:hover > kol-span-wc { - color: var(--color-white); - background-color: var(--color-dark-yellow-neutral); - outline: none; - } - .ghost a:active > kol-span-wc, - .ghost a:hover > kol-span-wc { - color: var(--color-primary); - box-shadow: inset 0 0 0 2px var(--color-primary); - outline: none; - } - a > kol-span-wc > span { - display: flex; - gap: 0.5em; - margin: auto; - align-items: center; - justify-content: center; - letter-spacing: 0.75px; - } - a.hide-label > kol-span-wc { - padding: 8px; - } - a.hide-label > kol-span-wc > span > span { - display: none; - } - a.hide-label > kol-span-wc kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - .loading a > kol-span-wc kol-icon { - animation: spin 5s infinite linear; - } - .loading a > kol-span-wc { - min-height: unset !important; - min-width: unset !important; - }`, - 'KOL-BUTTON-LINK': `a, - button { - background-color: transparent; - border: 0; - cursor: pointer; - display: inline-block; - } - kol-link-wc, - kol-link-button-wc { - display: inline-block; - } - a, - button { - color: var(--color-primary); - font-style: normal; - font-weight: 400; - display: inline-flex; - line-height: 1.5em; - text-decoration-line: none !important; - outline: none !important; - } - a:focus-within, - a:hover, - button:focus-within, - button:hover { - box-shadow: inset 0 -1px 0 0 var(--color-primary); - } - kol-icon { - padding: 0 0.25em; - display: inline-block; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-SKIP-NAV': `kol-link-wc > a > kol-span-wc { - border-radius: 2px; - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - padding: 0.75rem 1rem; - background-color: var(--color-primary); - border-color: var(--color-primary-10); - color: white; - cursor: pointer; - }`, -}); diff --git a/packages/themes/src/themes/desy-v2.ts b/packages/themes/src/themes/desy-v2.ts deleted file mode 100644 index 28aedbbba8..0000000000 --- a/packages/themes/src/themes/desy-v2.ts +++ /dev/null @@ -1,2857 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -// GZD Design System (Desy v2) -export const DESYv2 = KoliBri.createTheme('desy-v2', { - GLOBAL: ` - kol-tooltip-wc .tooltip-area { - background-color:#f2f2f2; - } - kol-tooltip-wc .tooltip-arrow { - background-color: #626262; - } - kol-tooltip-wc .tooltip-content { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.25rem; - border-radius: 2px; - border: 1px solid #626262; - } - :host { - --color-primary: #326cae; - --color-primary-10: #1e538f; - --color-primary-20: #08335e; - --color-yellow-neutral: #ef9e48; - --color-dark-yellow-neutral: #a8672c; - --color-warning: #a94442; - --color-success: #5cb85c; - --color-background: #edf4f7; - --color-black: #000000; - --color-gray-10: #333333; - --color-gray-20: #666666; - --color-gray-30: #737373; - --color-gray-40: #999999; - --color-gray-50: #b3b3b3; - --color-gray-60: #dddddd; - --color-gray-70: #f2f2f2; - --color-white: #ffffff; - --font-family: BundesSans Web, Calibri, Verdana, Arial, Helvetica, sans-serif; - --font-size: 14px; - --spacing: 0.25em; - } - :host { - background-color: transparent; /* Reset global background-color defined by components */ - } - :host * { - box-sizing: border-box; - font-family: var(--font-family); - } - :host h1, - :host h2, - :host h3, - :host h4, - :host h5, - :host h6 { - margin: 0; - font-family: var(--font-family); - } - a, - button { - align-items: center; - background-color: transparent; - border: 0; - color: black; - cursor: pointer; - display: inline-flex; - gap: 0.25rem; - justify-items: center; - } - input, - option, - select, - summary, - textarea { - display: inline-block; - } - a, - button, - input, - option, - select, - summary, - textarea { - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; - letter-spacing: inherit; - word-break: break-word; - } - *[tabindex]:focus, - a:focus, - button:focus, - input:focus, - select:focus, - summary:focus, - textarea:focus { - cursor: pointer; - outline-color: var(--color-ocean); - outline-offset: 2px; - outline-style: solid; - outline-width: 0; - transition: outline-offset 0.2s linear; - } - @keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } - } - kol-heading-wc { - font-weight: 700; - }`, - 'KOL-BUTTON': `a, - button { - background-color: transparent; - border: 0; - cursor: pointer; - display: inline-block; - } - button { - background-color: transparent; - border: 0; - cursor: pointer; - min-width: 44px; - min-height: 44px; - padding: 0; - text-decoration: none !important; - } - button > kol-span-wc { - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-family: Roboto; - font-weight: 700; - cursor: pointer; - font-size: 1rem; - align-items: center; - padding: 6px 8px; - justify-content: center; - font-style: normal; - text-align: center; - outline: none; - border-style: solid; - border-width: 2px; - } - button:active > kol-span-wc { - transform: translateY(1px); - } - button.primary:disabled > kol-span-wc, - button.danger:disabled > kol-span-wc, - button.normal:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-white); - background-color: var(--color-gray-40); - border-color: var(--color-gray-40); - } - button.ghost:disabled > kol-span-wc, - button.loading:disabled > kol-span-wc, - button.help:disabled > kol-span-wc, - button.secondary:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-gray-40); - background-color: var(--color-white); - border-color: var(--color-white); - } - button.primary > kol-span-wc, - button.primary:hover > kol-span-wc, - button.normal > kol-span-wc, - button.normal:hover > kol-span-wc { - background-color: var(--color-primary); - border-color: var(--color-primary); - color: var(--color-white); - } - button.loading > kol-span-wc, - button.loading:hover > kol-span-wc, - button.help > kol-span-wc, - button.help:hover > kol-span-wc, - button.secondary > kol-span-wc, - button.secondary:hover > kol-span-wc { - background-color: var(--color-white); - border-color: var(--color-primary); - color: var(--color-primary); - } - button.danger > kol-span-wc, - button.danger:hover > kol-span-wc { - background-color: var(--color-warning); - border-color: var(--color-warning); - color: var(--color-white); - } - button.ghost, - button.ghost:hover > kol-span-wc { - background-color: transparent; - border-color: transparent; - color: var(--color-primary); - } - button.primary:active > kol-span-wc, - button.primary:focus > kol-span-wc, - button.primary:hover > kol-span-wc, - button.loading:active > kol-span-wc, - button.loading:focus > kol-span-wc, - button.loading:hover > kol-span-wc, - button.help:active > kol-span-wc, - button.help:focus > kol-span-wc, - button.help:hover > kol-span-wc, - button.secondary:active > kol-span-wc, - button.secondary:focus > kol-span-wc, - button.secondary:hover > kol-span-wc, - button.normal:active > kol-span-wc, - button.normal:focus > kol-span-wc, - button.normal:hover > kol-span-wc { - background-color: var(--color-primary-20); - border-color: var(--color-primary-20); - color: var(--color-white); - outline: none; - } - button.loading:active > kol-span-wc, - button.loading:focus > kol-span-wc, - button.loading:hover > kol-span-wc, - button.help:active > kol-span-wc, - button.help:focus > kol-span-wc, - button.help:hover > kol-span-wc, - button.secondary:active > kol-span-wc, - button.secondary:focus > kol-span-wc, - button.secondary:hover > kol-span-wc { - border-color: var(--color-primary-20); - } - button.danger:active > kol-span-wc, - button.danger:hover > kol-span-wc { - background-color: var(--color-dark-yellow-neutral); - border-color: var(--color-dark-yellow-neutral); - color: var(--color-white); - outline: none; - } - button.ghost:active > kol-span-wc, - button.ghost:hover > kol-span-wc { - color: var(--color-primary); - outline: none; - } - button > kol-span-wc > span { - display: flex; - gap: 0.5em; - margin: auto; - align-items: center; - justify-content: center; - letter-spacing: 0.75px; - } - button.hide-label > kol-span-wc { - padding: 8px; - } - button.hide-label > kol-span-wc > span > span { - display: none; - } - button.hide-label > kol-span-wc kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - button.loading > kol-span-wc kol-icon { - animation: spin 5s infinite linear; - } - button.loading > kol-span-wc, - button.help > kol-span-wc { - display: inline-block; - padding: 0; - }`, - 'KOL-BADGE': `:host { - display: inline-block; - } - kol-span-wc { - align-items: center; - border-radius: 0.3125rem; - display: grid; - gap: 0.5rem; - line-height: 1.25rem; - padding: 0.25rem 0.75rem; - } - kol-span-wc span { - display: flex; - gap: 0.25rem; - }`, - 'KOL-HEADING': `h1, - h2, - h3, - h4, - h5, - h6 { - color: inherit; - font-style: normal; - margin: 0; - padding: 0; - } - h1, - h2, - h3 { - font-weight: 700; - } - h1 { - font-size: 1.5rem; - line-height: 3.25rem; - } - h2 { - font-size: 1.25rem; - line-height: 1.75rem; - } - h3 { - font-size: 1.125rem; - line-height: 1.5rem; - }`, - 'KOL-ACCORDION': `:host > div { - font-family: var(--font-family); - font-size: var(--font-size); - padding: 0 0.5rem 0 0; - } - :host > div > kol-heading-wc { - background-color: var(--color-background); - color: var(--color-gray-10); - line-height: 1.75rem; - padding: 16px; - } - :host > div > kol-heading-wc:focus-within, - :host > div > kol-heading-wc:hover { - box-shadow: 0px 0px 0px 2px var(--color-primary) inset; - outline: none; - } - :host > div > kol-heading-wc button { - cursor: pointer; - width: 100%; - margin: 0; - display: flex; - flex-direction: row-reverse; - justify-content: flex-end; - gap: 2em; - border: 0; - align-items: center; - overflow: hidden; - font-size: inherit; - font-weight: normal; - line-height: 1.75em; - background-color: transparent; - padding: 0; - outline: none; - } - :host > div[part*="open"] > kol-heading-wc button { - padding-bottom: 0; - } - :host > div > kol-heading-wc button kol-icon::part(icon) { - font-weight: 900; - font-size: 26px; - color: var(--color-black); - } - :host > div > kol-heading-wc button kol-icon::part(close)::before { - font-family: "Font Awesome 6 Free"; - font-size: 14px; - content: "\f077"; - } - :host > div > kol-heading-wc button kol-icon::part(open)::before { - font-family: "Font Awesome 6 Free"; - font-size: 14px; - content: "\f078"; - } - :host > div { - width: 100%; - height: 100%; - display: grid; - } - :host > div div[part="content"] { - transition: height 200ms; - } - :host > div div[part="header"], - :host > div[part*="open"] div[part="content"] { - margin: 0; - background-color: var(--color-white); - } - :host > div div[part="header"] { - padding: 0 1em; - } - :host > div[part*="open"] div[part="content"] { - padding: 1em; - } - button { - font-weight: inherit; - font-size: inherit; - line-height: inherit; - } - :host > div { - background: var(--color-white); - } - :host > div[part*="open"] { - padding-bottom: 1em; - }`, - 'KOL-ALERT': `:host > div {background-color: white;// border-width: 2px;// border-style: solid;display: flex;overflow: unset;}:host > div.default {border-color: var(--color-gray-30);}:host > div.default > .icon {background-color: var(--color-gray-30);}:host > div.error {border-color: var(--color-warning);}:host > div.error > .icon {background-color: var(--color-warning);}:host > div.info {border-color: var(--color-primary);}:host > div.info > .icon {background-color: var(--color-primary);}:host > div.success {border-color: var(--color-success);}:host > div.success > .icon {background-color: var(--color-success);}:host > div.warning {border-color: var(--color-yellow-neutral);}:host > div.warning > .icon {background-color: var(--color-yellow-neutral);}:host > div.msg > .icon {color: white;padding: 0.5em;align-items: center;display: inline-flex;}:host > div.card {border-width: 2px;border-style: solid;}:host > div.card.default .heading .icon {background-color: var(--color-gray-30);}:host > div.card.error .heading .icon {background-color: var(--color-warning);}:host > div.card.info .heading .icon {background-color: var(--color-primary);}:host > div.card.success .heading .icon {background-color: var(--color-success);}:host > div.card.warning .heading .icon {background-color: var(--color-yellow-neutral);}:host > div.card .heading .icon {color: white;padding: 0.5em;align-items: center;display: inline-flex;}:host > div kol-heading-wc .icon {margin-right: 0.5em;}:host > div.card .heading .icon {border-radius: 0 0 0.25rem 0;}:host > div.msg > div {padding: 0.25em;}:host > div.msg > div > .heading {padding: 0.25em;display: inline-block;}:host > div .content {padding: 0.25em;}:host > div > div {display: grid;grid-template-columns: 1fr auto;}:host > div > div > .content {grid-row: 2;grid-column: 1;}:host > div > div > .close {grid-row: 1 / span 2;}:host > div.card > div > .heading {width: 100%;}.close > button {min-width: 44px;min-height: 44px;display: grid;gap: 0.25em;line-height: 1.5rem;font-family: var(--font-family);font-weight: 700;cursor: pointer;border-radius: 1.5em;border-style: solid;border-width: 2px;font-size: 1rem;align-items: center;padding: 8px 14px;justify-content: center;font-style: normal;text-align: center;text-transform: uppercase;width: inherit;transition-duration: 0.5s;transition-property: background-color, color, border-color;background-color: rgba(0, 0, 0, 0);border-color: rgba(0, 0, 0, 0);}.close > button.hide-label {padding: 8px;}.close > button.hide-label kol-icon {display: inline-block;width: 1.5em;height: 1.5em;}.close > button:active {box-shadow: none;outline: none;}.close kol-icon::part(icon)::before {content: "x";color: var(--color-primary);font-family: "Font Awesome 6 Free";}`, - 'KOL-CARD': `/* https://www.figma.com/file/56JbmrssCRpjpfxoAFeHqT/Design-System-EPLF-(in-progress)?node-id=8225%3A5945 */ - :host > div { - display: grid; - width: 100%; - height: 100%; - background-color: var(--color-background); - grid-template-rows: min-content 2fr min-content; - box-shadow: 0 0 0.25rem var(--color-grey); - padding: 8px; - } - :host kol-heading-wc { - display: inline-flex; - font-style: normal; - font-weight: 700; - font-size: 1.25rem; - line-height: 1.75rem; - } - :host div.content { - padding-top: 1em; - } - :host div.footer { - padding-top: 1em; - }`, - 'KOL-INDENTED-TEXT': `:host > div { - padding: 0.25em 0.5em; - width: 100%; - } - :host > div { - background: var(--color-white); - border: 0; - box-shadow: -4px 0px 0px var(--color-primary); - }`, - 'KOL-DETAILS': `:host details > kol-indented-text { - margin: 0.25em 0 0 0.5em; - }`, - 'KOL-LINK-GROUP': `ul { - list-style: none; - margin: 0px; - padding: 0px; - } - nav.horizontal ul { - display: flex; - flex-wrap: wrap; - } - nav.horizontal li { - margin-left: 1.25rem; - margin-right: 0.25rem; - } - nav.horizontal li:first-child { - margin-left: 0; - } - nav.horizontal li:last-child { - margin-right: 0; - } - nav.vertical li { - margin-left: 1.75rem; - margin-right: 0.5rem; - } - li.list-none { - list-style-type: none !important; - margin-left: 0; - }`, - 'KOL-PROGRESS': `:host progress, - :host span { - display: block; - height: 0px; - overflow: hidden; - width: 0px; - } - svg line:first-child, - svg circle:first-child { - fill: transparent; - stroke: var(--color-gray-60); - } - svg line:last-child, - svg circle:last-child { - stroke: var(--color-primary); - fill: transparent; - } - progress { - display: none; - }`, - 'KOL-SPIN': `.spin { - display: inline-block; - height: 1rem; - position: relative; - width: 3rem; - } - .spin span { - animation-timing-function: cubic-bezier(0, 1, 1, 0); - border: 0.1rem solid rgb(255, 255, 255); - border-radius: 50%; - height: 0.8rem; - width: 0.8rem; - top: 0.1rem; - position: absolute; - } - .spin span:nth-child(1) { - background-color: #fc0; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin1; - left: 0.1rem; - } - .spin span:nth-child(2) { - background-color: #f00; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 0.1rem; - } - .spin span:nth-child(3) { - background-color: #000; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 1.1rem; - } - .spin span:nth-child(4) { - background-color: #666; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin3; - left: 2.1rem; - } - @keyframes spin1 { - 0% { - transform: scale(0); - } - 100% { - transform: scale(1); - } - } - @keyframes spin2 { - 0% { - transform: translate(0px, 0px); - } - 100% { - transform: translate(1rem, 0px); - } - } - @keyframes spin3 { - 0% { - transform: scale(1); - } - 100% { - transform: scale(0); - } - }`, - 'KOL-TABLE': `:host * { - hyphens: var(--kolibri-hyphens); - font-family: var(--kolibri-font-family); - line-height: var(--kolibri-line-height); - word-break: break-word; - } - :host > div { - overflow-x: auto; - overflow-y: hidden; - } - table { - width: 100%; - border-spacing: 0; - border-collapse: collapse; - } - th, - td { - padding: 0.25em 0.5em; - } - th { - background-color: var(--color-gray-70); - } - th > div { - display: grid; - grid-template-columns: 1fr auto; - align-items: center; - gap: 0.25em; - } - :host > div:last-child { - padding: 0.5em; - } - tbody > tr:nth-child(even) { - background-color: var(--color-gray-70); - } - :host > div:last-child, - :host > div:last-child > div:last-child { - display: grid; - align-items: center; - justify-items: center; - gap: 0.5em; - } - @media (min-width: 1024px) { - :host > div:last-child, - :host > div:last-child > div:last-child { - grid-auto-flow: column; - } - :host > div:last-child kol-pagination { - display: flex; - gap: 1rem; - } - }`, - 'KOL-TABS': `button:disabled { - opacity: 0.5; - cursor: not-allowed; - } - kol-button-group > div { - margin: 0 1rem; - } - kol-button-group > div:first-child { - margin-left: 0; - } - kol-button-group > div:last-child { - margin-right: 0; - } - kol-button-group > div { - margin: 0; - } - button { - background-color: transparent; - border: 0; - font-style: normal; - font-weight: normal; - font-size: 18px; - line-height: 22px; - color: var(--color-primary); - padding: 0.3em 1em; - box-shadow: inset 0px -3px 0 0 var(--color-gray-70); - } - button:enabled { - box-shadow: inset 0px -3px 0 0 var(--color-primary-10); - } - button:hover { - color: var(--color-midnight); - } - button.primary { - text-underline-offset: 5px; - text-decoration-thickness: 0.25em; - font-weight: bold; - color: var(--color-gray-10); - box-shadow: inset 0px -3px 0 0 var(--color-gray-70), - inset 0px -6px 0 0 var(--color-primary-10); - } - button:hover, - button:focus { - color: var(--color-gray-10); - box-shadow: inset 0px -6px 0 0 var(--color-primary-10); - outline: none; - } - button:not(.primary) { - cursor: pointer; - } - :host > div > div { - padding: 0.25em 0; - } - .close-button { - display: none; - font-size: 25%; - height: fit-content; - width: 0; - } - .close-button button { - width: 1rem; - position: relative; - height: 1rem; - left: -4.25em; - top: 0.25em; - } - div[role="tabpanel"] { - height: 100%; - } - div.grid { - height: 100%; - } - div.grid { - height: 100%; - } - :host > .tabs-align-right { - display: grid; - grid-template-columns: 1fr auto; - } - :host > .tabs-align-right kol-button-group-wc { - display: grid; - order: 2; - } - :host > .tabs-align-left { - display: grid; - grid-template-columns: auto 1fr; - } - :host > .tabs-align-left kol-button-group-wc { - display: grid; - order: 0; - } - :host > .tabs-align-bottom { - display: grid; - grid-template-rows: 1fr auto; - } - :host > .tabs-align-bottom kol-button-group-wc { - order: 2; - } - :host > .tabs-align-bottom kol-button-group-wc > div { - display: flex; - } - :host > .tabs-align-bottom > kol-button-group-wc > div > div:first-child { - margin: 0px 1em 0px 0px; - } - :host > .tabs-align-bottom > kol-button-group-wc > div > div { - margin: 0px 1em; - } - :host > .tabs-align-top { - display: grid; - grid-template-rows: auto 1fr; - } - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-top kol-button-group-wc > div { - display: flex; - } - :host > .tabs-align-top > kol-button-group-wc > div > div:first-child { - margin: 0px 1em 0px 0px; - } - :host > .tabs-align-top > kol-button-group-wc > div > div { - margin: 0px 1em; - } - :host > div { - display: grid; - } - :host > div.tabs-align-left { - grid-template-columns: auto 1fr; - } - :host > div.tabs-align-right { - grid-template-columns: 1fr auto; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-bottom kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - order: 1; - } - :host > div.tabs-align-left kol-button-group-wc > div, - :host > div.tabs-align-left kol-button-group-wc > div > div, - :host > div.tabs-align-right kol-button-group-wc > div, - :host > div.tabs-align-right kol-button-group-wc > div > div { - display: grid; - } - :host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc, - :host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc { - width: 100%; - } - :host > div.tabs-align-bottom kol-button-group-wc div, - :host > div.tabs-align-top kol-button-group-wc div { - display: flex; - flex-wrap: wrap; - }`, - 'KOL-PAGINATION': `:host { - display: grid; - gap: 1rem; - } - :host .navigation-list { - display: inline-flex; - flex-wrap: wrap; - align-items: center; - gap: 0.5em; - } - :host kol-button-wc.selected button { - min-width: 44px; - min-height: 44px; - display: grid; - gap: 0.25em; - line-height: 1.5rem; - font-weight: 700; - cursor: default; - font-size: 1rem; - align-items: center; - padding: 0px 7px; - justify-content: center; - font-style: normal; - text-align: center; - outline: none; - color: var(--color-white); - border: unset; - background-color: var(--color-primary); - } - :host kol-button-wc.selected button:focus, - :host kol-button-wc.selected button:hover { - background-color: var(--color-primary-20); - }`, - 'KOL-LINK': `a, - button { - background-color: transparent; - border: 0; - cursor: pointer; - display: inline-block; - } - kol-link-wc, - kol-link-button-wc { - display: inline-block; - } - a, - button { - color: var(--color-primary); - font-style: normal; - font-weight: 400; - display: inline-flex; - line-height: 1.5em; - text-decoration-line: none !important; - outline: none !important; - } - a:focus-within, - a:hover, - button:focus-within, - button:hover { - box-shadow: inset 0 -1px 0 0 var(--color-primary); - } - kol-icon { - padding: 0 0.25em; - display: inline-block; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-INPUT-TEXT': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-CHECKBOX': `/* INPUT */ - kol-input { - display: grid; - align-items: center; - justify-items: left; - width: 100%; - min-height: 44px; - } - kol-input.default { - grid-template-columns: 2rem auto; - } - kol-input.switch { - grid-template-columns: 4rem auto; - } - kol-input > div.input { - display: inline-flex; - order: 1; - } - kol-input > div.input input { - margin: 0px; - } - kol-input > label { - cursor: pointer; - order: 2; - } - kol-input > kol-alert.error { - order: 3; - padding-top: 0.25em; - margin-bottom: 0.4em; - margin-top: 0.2em; - grid-column: span 2 / auto; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning) !important; - box-shadow: 0 0 0 1px var(--color-warning) inset; - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - input { - cursor: pointer; - order: 1; - width: 100%; - border-color: var(--color-gray-30); - border-width: 1px; - border-style: solid; - line-height: 24px; - font-size: 1rem; - } - input:focus, - input:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus:hover { - box-shadow: none; - } - input:active { - box-shadow: none; - } - kol-alert { - display: block; - width: 100%; - } /* CHECKBOX */ - kol-input label span { - margin-top: 0.125rem; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - kol-input input[type="checkbox"] { - appearance: none; - background-color: white; - cursor: pointer; - transition: 0.5s; - } - kol-input input[type="checkbox"].kol-disabled:before { - cursor: not-allowed; - } - kol-input input[type="checkbox"]:before { - content: ""; - cursor: pointer; - } - kol-input input[type="checkbox"]:checked { - background-color: var(--color-primary-20); - border-color: var(--color-primary-20); - } - kol-input.default input[type="checkbox"] { - width: 1rem; - height: 1rem; - } - kol-input.default input[type="checkbox"]:before { - background-color: transparent; - display: block; - height: calc(2 * var(--spacing)); - position: relative; - width: calc(2 * var(--spacing)); - } - kol-input.default input[type="checkbox"]:checked:before { - border-right-width: 1px; - border-bottom-width: 1px; - left: calc(1.2 * var(--spacing) - 2px); - top: calc(2.2 * var(--spacing) - 2px); - transform: rotate(40deg) translate(-50%, -50%); - background-color: transparent; - border-width: 0px 3px 3px 0px; - border-color: white; - border-radius: 1px; - border-style: solid; - height: calc(2 * var(--spacing)); - width: calc(1 * var(--spacing)); - } - kol-input.default input[type="checkbox"]:indeterminate { - --tw-bg-opacity: 1; - background-color: white; - } - kol-input.default input[type="checkbox"]:indeterminate:before { - background-color: var(--color-gray-30); - height: 0.2rem; - top: 0.35rem; - left: 0.15rem; - width: calc(2.5 * var(--spacing)); - } - kol-input.switch input[type="checkbox"] { - min-width: 3.5em; - width: 3.5em; - background-color: var(--color-gray-30); - border-width: 0; - height: 1.5em; - border-radius: 1.25em; - display: inline-block; - position: relative; - } - kol-input.switch input[type="checkbox"]:before { - -webkit-transition: 0.5s; - -moz-transition: 0.5s; - -ms-transition: 0.5s; - transition: 0.5; - width: 1.25em; - height: 1.25em; - left: calc(0.25em - 2px); - top: calc(0.25em - 2px); - border-radius: 1.25em; - background-color: white; - position: absolute; - } - kol-input.switch input[type="checkbox"]:checked { - background-color: var(--color-primary-20); - } - kol-input.switch input[type="checkbox"]:checked:before { - -webkit-transform: translateX(2em); - -moz-transform: translateX(2em); - -ms-transform: translateX(2em); - transform: translateX(2em); - --tw-bg-opacity: 1; - } - kol-input.switch input[type="checkbox"]:indeterminate { - --tw-bg-opacity: 1; - } - kol-input.switch input[type="checkbox"]:indeterminate:before { - -webkit-transform: translateX(1em); - -moz-transform: translateX(1em); - -ms-transform: translateX(1em); - transform: translateX(1em); - } - .switch { - & .icon { - width: 1.25em; - height: 1.25em; - left: 2px; - } - &.checked .icon { - transform: translate(2em, -50%); - } - &.indeterminate .icon { - transform: translate(1em, -50%); - } - } - .disabled { - opacity: 0.33; - }`, - 'KOL-INPUT-RADIO': `/* INPUT */ - label { - cursor: pointer; - display: grid; - line-height: 20px; - gap: 8px; - width: 100%; - } - input { - cursor: pointer; - width: 100%; - border-color: var(--color-grey-20); - border-width: 1px; - border-style: solid; - border-radius: 5px; /* padding: 10px 14px; */ - line-height: 24px; - font-size: 16px; - } - :host fieldset div input[type="radio"]:hover { - border-color: var(--color-midnight); - box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24); - } - :host fieldset div input[type="radio"]:focus:hover { - box-shadow: none; - } - :host fieldset div input[type="radio"]:active { - box-shadow: none; - } - kol-alert { - display: block; - width: 100%; - margin-bottom: 0.4em; - } - .required legend > span::after { - content: "*"; - padding-left: 0.125em; - } /* RADIO */ - :host fieldset { - border: 0px; - margin: 0px; - padding: 0px; - display: grid; - gap: 0.25em; - } - :host fieldset div { - cursor: pointer; - display: flex; - flex-direction: row; - align-items: center; - position: relative; - min-height: 44px; - } - :host fieldset div label { - cursor: pointer; - display: flex; - padding-left: 0.25em; - width: 100%; - } - :host fieldset div label span { - margin-top: 0.125em; - } - :host fieldset div input[type="radio"] { - appearance: none; - transition: 0.5s; - border-radius: 100%; - height: 1rem; - min-width: 1rem; - width: 1rem; - } - :host fieldset div input[type="radio"]:before { - content: ""; - cursor: pointer; - left: calc(1 * var(--spacing) - 1px); - top: calc(1 * var(--spacing) - 1px); - position: relative; - border-radius: 100%; - display: block; - height: calc(2 * var(--spacing)); - width: calc(2 * var(--spacing)); - } - :host fieldset div input[type="radio"]:checked:before { - background-color: var(--color-primary-20); - } - :host fieldset div input[type="radio"]:disabled { - cursor: not-allowed; - border-color: var(--border-default); - background-color: var(--background-light-grey); - } - kol-alert.error { - order: 3; - } - :host fieldset legend { - order: 1; - display: contents; - } - :host fieldset kol-input { - order: 2; - } - kol-alert.error { - padding-left: 0.5em; - color: var(--color-warning); - } - fieldset.error input:focus, - fieldset.error select:focus, - fieldset.error textarea:focus { - border-color: var(--color-warning) !important; - box-shadow: 0 0 0 1px var(--color-warning) inset; - } - :host fieldset.error kol-alert.error { - margin-left: -0.25em; - color: var(--color-warning); - } - .disabled { - opacity: 0.33; - } - :host fieldset.horizontal { - display: flex; - flex-wrap: wrap; - } - :host fieldset.horizontal legend { - display: inline-block; - margin-bottom: 0.25em; - }`, - 'KOL-SELECT': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-TEXTAREA': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input .counter { - order: 3; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 4; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-PASSWORD': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-NUMBER': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-DATE': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-EMAIL': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-FILE': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-COLOR': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-INPUT-RANGE': `kol-input { - display: grid; - } - kol-input label { - order: 1; - padding: 0.125rem 0 0.4rem; - vertical-align: text-top; - line-height: 1.2; - } - kol-input div.input { - box-sizing: border-box; - order: 2; - background-color: white; - border-radius: 0.3125rem; - } - kol-input kol-alert.error { - margin-bottom: 0.4em; - margin-top: 0.2em; - order: 3; - } - input, - select, - textarea { - font-family: var(--font-family); - background-color: transparent; - box-sizing: border-box; - font-size: 1rem; - display: inline-flex; - border-color: var(--color-grey); - border-width: 1px; - border-style: solid; - overflow: hidden; - width: 100%; - line-height: normal; - padding: 0.4rem 8px; - } - input:hover, - select:hover, - textarea:hover { - border-color: #2d6f9e; - box-shadow: 0 0 0 1px #2d6f9e inset; - } - input:focus, - select:focus, - textarea:focus { - border-color: var(--color-primary-20); - box-shadow: inset 0 0 0 1px var(--color-primary-20); - outline: none; - } - input, - select:not([multiple]) { - height: 2.75em; - } - input::placeholder { - color: var(--color-grey); - } - input:hover { - border-color: var(--color-midnight); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - border-color: var(--border-default); - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .icons { - display: flex; - justify-content: space-between; - height: 0; - } - .icons > * { - margin: 0.75em; - } - .icon-left input, - .icon-left select { - padding-left: 2em; - } - .icon-right input, - .icon-right select { - padding-right: 2em; - } - kol-input.error input:focus, - kol-input.error select:focus, - kol-input.error textarea:focus { - border-color: var(--color-warning); - box-shadow: inset 0 0 0 1px var(--color-warning); - } - kol-input.error kol-alert.error { - color: var(--color-warning); - } - kol-button-wc { - position: relative; - float: right; - z-index: 1000; - margin-top: -2.7em; - } - kol-button-wc button { - border: 0; - height: 2.7em; - box-sizing: border-box; - background-color: transparent; - cursor: pointer; - } - kol-button-wc button:focus, - kol-button-wc button:hover { - background-color: var(--color-primary); - color: var(--color-white); - } - .icon-right kol-button-wc { - margin-right: 2.5em; - } - .disabled { - opacity: 0.33; - } - select[multiple], - textarea { - overflow: auto; - } - textarea { - display: block; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background: var(--color-primary); - color: white; - }`, - 'KOL-NAV': `/* :host * {hyphens: var(--hyphens);font-family: var(--font-family);line-height: var(--line-height);word-break: break-word;} */ - :host .hidden { - display: none; - } - :host > div > nav ul { - list-style: none; - margin: 0px; - padding: 0px; - border-radius: var(--border-radius); - background-color: var(--color-primary); - } - :host > div > nav ul > li { - border-radius: var(--border-radius); - overflow: hidden; - padding: 0.125em; - } - :host > div > nav ul > li[part*="vertical"] + li { - border-radius: 0; - border-top: 0.1em dotted white; - } - :host > div > nav ul > li[part*="vertical selected"] { - border-right: 0.375em solid var(--color-yellow-neutral); - } - :host > div > nav ul > li[part*="horizontal"] + li { - border-radius: 0; - border-left: 0.1em dotted white; - } - :host > div > nav ul > li[part*="horizontal selected"] { - border-bottom: 0.375em solid var(--color-yellow-neutral); - } - :host > div > nav ul > li > div { - height: 100%; - } - :host > div > nav kol-link-wc { - width: 100%; /*height: 100%;font-weight: 600;*/ - display: block; - } - :host > div > nav kol-link-wc a { - border-radius: var(--border-radius); - background-color: var(--color-primary); - border: 1px solid transparent; - grid: flex; - line-height: 2em; - padding: 0.5em; - color: white; - height: 100%; - -webkit-box-align: center; - align-items: center; - display: flex; - cursor: pointer; - text-decoration: inherit; - } - :host > div > nav kol-link-wc[exportparts*="selected"] a { - background-color: var(--color-primary-20); - font-weight: 700; - } - :host > div > nav kol-link-wc a kol-icon.mr-2 { - margin-right: calc(2 * var(--spacing)); - } - :host > div > nav kol-link-wc a kol-icon.ml-2 { - margin-left: calc(2 * var(--spacing)); - } - :host > div > nav kol-link-wc a:focus, - :host > div > nav kol-link-wc a:hover { - border: 1px solid white; - background-color: var(--kolibri-color-focus); - } /* compact button */ - :host > div > div:last-child { - margin-top: 0.5em; - width: 100%; - text-align: center; - } - :host > div > nav kol-link-wc a.text-center { - display: grid; - align-items: center; - justify-items: center; - } /* horizontal */ - ul.flex { - display: flex; - } - li > div > div.absolute { - position: absolute; - } - kol-span-wc { - justify-items: baseline; - }`, - 'KOL-BREADCRUMB': `nav { - width: 100%; - } - ul { - margin: 0; - padding: 0; - list-style: none; - display: flex; - flex-wrap: wrap; - align-items: center; - } - kol-link { - display: inline; - } - :host kol-icon[exportparts*="separator"] { - padding: 0 0.5rem; - } - :host kol-icon::part(icon separator) { - font-weight: 900; - font-size: 0.875rem; - } - :host kol-icon::part(icon separator)::before { - color: black; - content: "\f054"; - font-family: "Font Awesome 6 Free"; - } - :host li > kol-link > kol-link-wc > a { - color: red !important; - }`, - 'KOL-TOAST': `:host > div { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 0; - z-index: 200; - } - :host > div > kol-alert { - display: block; - margin: auto; - padding: 1rem; - max-width: 750px; - } - :host > div > kol-button-wc { - top: 0; - position: relative; - display: block; - margin: auto; - width: 1em; - }`, - 'KOL-LINK-BUTTON': `a { - min-width: 44px; - min-height: 44px; - background-color: transparent; - border: 0; - cursor: pointer; - padding: 0; - display: flex; - gap: 0.25rem; - justify-items: center; - align-items: center; - text-decoration: none !important; - } - a > kol-span-wc { - display: grid; - min-width: 44px; - min-height: 44px; - gap: 0.25em; - line-height: 1.5rem; - font-family: Roboto; - font-weight: 700; - cursor: pointer; - font-size: 1rem; - align-items: center; - padding: 0px 7px; - justify-content: center; - font-style: normal; - text-align: center; - border: none; - outline: none; - } - a:active > kol-span-wc { - transform: translateY(1px); - } - .primary a:disabled > kol-span-wc, - .danger a:disabled > kol-span-wc, - .normal a:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-white); - background-color: var(--color-gray-40); - } - .ghost a:disabled > kol-span-wc, - .loading a:disabled > kol-span-wc, - .secondary a:disabled > kol-span-wc { - cursor: not-allowed; - color: var(--color-gray-40); - background-color: var(--color-white); - border: var(--color-gray-40) solid 3px; - } - .primary a > kol-span-wc, - .primary a:hover > kol-span-wc, - .normal a > kol-span-wc, - .normal a:hover > kol-span-wc { - background-color: var(--color-primary); - color: var(--color-white); - } - .loading a > kol-span-wc, - .loading a:hover > kol-span-wc, - .secondary a > kol-span-wc, - .secondary a:hover > kol-span-wc { - background-color: var(--color-white); - color: var(--color-primary); - border: 2px solid var(--color-primary); - } - .danger a > kol-span-wc, - .danger a:hover > kol-span-wc { - background-color: var(--color-warning); - border-color: var(--color-warning); - color: var(--color-white); - box-shadow: unset; - } - .ghost a, - .ghost a:hover > kol-span-wc { - background-color: unset; - color: var(--color-primary); - box-shadow: unset; - } - .primary a:active > kol-span-wc, - .primary a:focus > kol-span-wc, - .primary a:hover > kol-span-wc, - .loading a:active > kol-span-wc, - .loading a:focus > kol-span-wc, - .loading a:hover > kol-span-wc, - .secondary a:active > kol-span-wc, - .secondary a:focus > kol-span-wc, - .secondary a:hover > kol-span-wc, - .normal a:active > kol-span-wc, - .normal a:focus > kol-span-wc, - .normal a:hover > kol-span-wc { - background-color: var(--color-primary-20); - color: var(--color-white); - outline: none; - } - .loading a:active > kol-span-wc, - .loading a:focus > kol-span-wc, - .loading a:hover > kol-span-wc, - .secondary a:active > kol-span-wc, - .secondary a:focus > kol-span-wc, - .secondary a:hover > kol-span-wc { - border: 2px solid var(--color-primary-20); - } - .danger a:active > kol-span-wc, - .danger a:hover > kol-span-wc { - color: var(--color-white); - background-color: var(--color-dark-yellow-neutral); - outline: none; - } - .ghost a:active > kol-span-wc, - .ghost a:hover > kol-span-wc { - color: var(--color-primary); - box-shadow: inset 0 0 0 2px var(--color-primary); - outline: none; - } - a > kol-span-wc > span { - display: flex; - gap: 0.5em; - margin: auto; - align-items: center; - justify-content: center; - letter-spacing: 0.75px; - } - a.hide-label > kol-span-wc { - padding: 8px; - } - a.hide-label > kol-span-wc > span > span { - display: none; - } - a.hide-label > kol-span-wc kol-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - } - .loading a > kol-span-wc kol-icon { - animation: spin 5s infinite linear; - } - .loading a > kol-span-wc { - min-height: unset !important; - min-width: unset !important; - }`, - 'KOL-BUTTON-LINK': `a, - button { - background-color: transparent; - border: 0; - cursor: pointer; - display: inline-block; - } - kol-link-wc, - kol-link-button-wc { - display: inline-block; - } - a, - button { - color: var(--color-primary); - font-style: normal; - font-weight: 400; - display: inline-flex; - line-height: 1.5em; - text-decoration-line: none !important; - outline: none !important; - } - a:focus-within, - a:hover, - button:focus-within, - button:hover { - box-shadow: inset 0 -1px 0 0 var(--color-primary); - } - kol-icon { - padding: 0 0.25em; - display: inline-block; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-SKIP-NAV': `kol-link-wc > a > kol-span-wc { - border-radius: 2px; - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - padding: 0.75rem 1rem; - background-color: var(--color-primary); - border-color: var(--color-primary-10); - color: white; - cursor: pointer; - }`, -}); diff --git a/packages/themes/src/themes/index.ts b/packages/themes/src/themes/index.ts deleted file mode 100644 index 49c74fb167..0000000000 --- a/packages/themes/src/themes/index.ts +++ /dev/null @@ -1,13 +0,0 @@ -export * from './bamf'; -export * from './desy-v1'; -export * from './desy-v2'; - -// separate theme modules -export * from '../../bzst/src'; -export * from '../../bmf/src'; -export * from '../../default/src'; -export * from '../../ecl/src'; -export * from '../../ecl/src'; -export * from '../../itzbund/src'; -export * from '../../mfm/src'; -export * from '../../zoll/src'; diff --git a/packages/themes/src/translations/de.ts b/packages/themes/src/translations/de.ts deleted file mode 100644 index 1da827ee12..0000000000 --- a/packages/themes/src/translations/de.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -export const DE = KoliBri.createTranslation('de', {}); diff --git a/packages/themes/src/translations/en.ts b/packages/themes/src/translations/en.ts deleted file mode 100644 index 3b25a4afba..0000000000 --- a/packages/themes/src/translations/en.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -export const EN = KoliBri.createTranslation('en', {}); diff --git a/packages/themes/src/translations/index.ts b/packages/themes/src/translations/index.ts deleted file mode 100644 index de482b2db5..0000000000 --- a/packages/themes/src/translations/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './de'; -export * from './en'; diff --git a/packages/themes/zoll/assets/fontawesome-free/LICENSE.txt b/packages/themes/zoll/assets/fontawesome-free/LICENSE.txt deleted file mode 100644 index cc557ece45..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/LICENSE.txt +++ /dev/null @@ -1,165 +0,0 @@ -Fonticons, Inc. (https://fontawesome.com) - --------------------------------------------------------------------------------- - -Font Awesome Free License - -Font Awesome Free is free, open source, and GPL friendly. You can use it for -commercial projects, open source projects, or really almost whatever you want. -Full Font Awesome Free license: https://fontawesome.com/license/free. - --------------------------------------------------------------------------------- - -# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) - -The Font Awesome Free download is licensed under a Creative Commons -Attribution 4.0 International License and applies to all icons packaged -as SVG and JS file types. - --------------------------------------------------------------------------------- - -# Fonts: SIL OFL 1.1 License - -In the Font Awesome Free download, the SIL OFL license applies to all icons -packaged as web and desktop font files. - -Copyright (c) 2022 Fonticons, Inc. (https://fontawesome.com) -with Reserved Font Name: "Font Awesome". - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - -SIL OPEN FONT LICENSE -Version 1.1 - 26 February 2007 - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting — in part or in whole — any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - --------------------------------------------------------------------------------- - -# Code: MIT License (https://opensource.org/licenses/MIT) - -In the Font Awesome Free download, the MIT license applies to all non-font and -non-icon files. - -Copyright 2022 Fonticons, Inc. - -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. - --------------------------------------------------------------------------------- - -# Attribution - -Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font -Awesome Free files already contain embedded comments with sufficient -attribution, so you shouldn't need to do anything additional when using these -files normally. - -We've kept attribution comments terse, so we ask that you do not actively work -to remove them from files, especially code. They're a great way for folks to -learn about Font Awesome. - --------------------------------------------------------------------------------- - -# Brand Icons - -All brand icons are trademarks of their respective owners. The use of these -trademarks does not indicate endorsement of the trademark holder by Font -Awesome, nor vice versa. **Please do not use brand logos for any purpose except -to represent the company, product, or service to which they refer.** diff --git a/packages/themes/zoll/assets/fontawesome-free/css/all.css b/packages/themes/zoll/assets/fontawesome-free/css/all.css deleted file mode 100644 index 9c2adee7ef..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/all.css +++ /dev/null @@ -1,7831 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa, -.fas, -.fa-solid, -.far, -.fa-regular, -.fal, -.fa-light, -.fat, -.fa-thin, -.fad, -.fa-duotone, -.fab, -.fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-a::before { - content: "\41"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-at::before { - content: "\40"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-award::before { - content: "\f559"; } - -.fa-b::before { - content: "\42"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-box::before { - content: "\f466"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-c::before { - content: "\43"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-code::before { - content: "\f121"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-d::before { - content: "\44"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-display::before { - content: "\e163"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-download::before { - content: "\f019"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-e::before { - content: "\45"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-f::before { - content: "\46"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-file-circle-check::before { - content: "\e493"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-file-circle-plus::before { - content: "\e4ee"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-file-circle-xmark::before { - content: "\e494"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-film::before { - content: "\f008"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-font::before { - content: "\f031"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-g::before { - content: "\47"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-h::before { - content: "\48"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-2::before { - content: "\f254"; } - -.fa-hourglass-half::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f252"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-i::before { - content: "\49"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-images::before { - content: "\f302"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-info::before { - content: "\f129"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-j::before { - content: "\4a"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-k::before { - content: "\4b"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-key::before { - content: "\f084"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-l::before { - content: "\4c"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-m::before { - content: "\4d"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-map::before { - content: "\f279"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-music::before { - content: "\f001"; } - -.fa-n::before { - content: "\4e"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-o::before { - content: "\4f"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-om::before { - content: "\f679"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-p::before { - content: "\50"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-person-through-window::before { - content: "\e433"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-plant-wilt::before { - content: "\e43b"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-q::before { - content: "\51"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-question::before { - content: "\3f"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-r::before { - content: "\52"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-road::before { - content: "\f018"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-s::before { - content: "\53"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-school::before { - content: "\f549"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-section::before { - content: "\e447"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-server::before { - content: "\f233"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-share::before { - content: "\f064"; } - -.fa-arrow-turn-right::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-star::before { - content: "\f005"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-t::before { - content: "\54"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-train::before { - content: "\f238"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-train-tram::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-u::before { - content: "\55"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-user::before { - content: "\f007"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-v::before { - content: "\56"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-w::before { - content: "\57"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-water::before { - content: "\f773"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-x::before { - content: "\58"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-y::before { - content: "\59"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-z::before { - content: "\5a"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } -:root, :host { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-node:before { - content: "\f419"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-php:before { - content: "\f457"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-square-font-awesome:before { - content: "\f425"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-zhihu:before { - content: "\f63f"; } -:root, :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; } -@font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/all.min.css b/packages/themes/zoll/assets/fontawesome-free/css/all.min.css deleted file mode 100644 index 9b2ac090a2..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/all.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-a:before{content:"\41"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-anchor:before{content:"\f13d"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-anchor-lock:before{content:"\e4ad"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-ankh:before{content:"\f644"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-archway:before{content:"\f557"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-arrow-trend-down:before{content:"\e097"}.fa-arrow-trend-up:before{content:"\e098"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-arrows-spin:before{content:"\e4bb"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-asterisk:before{content:"\2a"}.fa-at:before{content:"\40"}.fa-atom:before{content:"\f5d2"}.fa-audio-description:before{content:"\f29e"}.fa-austral-sign:before{content:"\e0a9"}.fa-award:before{content:"\f559"}.fa-b:before{content:"\42"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-backward:before{content:"\f04a"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-bahai:before{content:"\f666"}.fa-baht-sign:before{content:"\e0ac"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-barcode:before{content:"\f02a"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-bell:before{content:"\f0f3"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blog:before{content:"\f781"}.fa-bold:before{content:"\f032"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-book-bookmark:before{content:"\e0bb"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-bookmark:before{content:"\f02e"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-bore-hole:before{content:"\e4c3"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-bottle-water:before{content:"\e4c5"}.fa-bowl-food:before{content:"\e4c6"}.fa-bowl-rice:before{content:"\e2eb"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes-packing:before{content:"\e4c7"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-bread-slice:before{content:"\f7ec"}.fa-bridge:before{content:"\e4c8"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-bridge-water:before{content:"\e4ce"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broom:before{content:"\f51a"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-brush:before{content:"\f55d"}.fa-bucket:before{content:"\e4cf"}.fa-bug:before{content:"\f188"}.fa-bug-slash:before{content:"\e490"}.fa-bugs:before{content:"\e4d0"}.fa-building:before{content:"\f1ad"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-building-circle-check:before{content:"\e4d2"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-building-flag:before{content:"\e4d5"}.fa-building-lock:before{content:"\e4d6"}.fa-building-ngo:before{content:"\e4d7"}.fa-building-shield:before{content:"\e4d8"}.fa-building-un:before{content:"\e4d9"}.fa-building-user:before{content:"\e4da"}.fa-building-wheat:before{content:"\e4db"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-burst:before{content:"\e4dc"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-c:before{content:"\43"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-week:before{content:"\f784"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-camera-rotate:before{content:"\e0d8"}.fa-campground:before{content:"\f6bb"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-car-on:before{content:"\e4dd"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-car-side:before{content:"\f5e4"}.fa-car-tunnel:before{content:"\e4de"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-cart-plus:before{content:"\f217"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cedi-sign:before{content:"\e0df"}.fa-cent-sign:before{content:"\e3f5"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-charging-station:before{content:"\f5e7"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-chart-column:before{content:"\e0e3"}.fa-chart-gantt:before{content:"\e0e4"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-chart-simple:before{content:"\e473"}.fa-check:before{content:"\f00c"}.fa-check-double:before{content:"\f560"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-child-dress:before{content:"\e59c"}.fa-child-reaching:before{content:"\e59d"}.fa-child-rifle:before{content:"\e4e0"}.fa-children:before{content:"\e4e1"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-circle-nodes:before{content:"\e4e2"}.fa-circle-notch:before{content:"\f1ce"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-city:before{content:"\f64f"}.fa-clapperboard:before{content:"\e131"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-question:before{content:"\e4e3"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-clover:before{content:"\e139"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-compare:before{content:"\e13a"}.fa-code-fork:before{content:"\e13b"}.fa-code-merge:before{content:"\f387"}.fa-code-pull-request:before{content:"\e13c"}.fa-coins:before{content:"\f51e"}.fa-colon-sign:before{content:"\e140"}.fa-comment:before{content:"\f075"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-compress:before{content:"\f066"}.fa-computer:before{content:"\e4e5"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-d:before{content:"\44"}.fa-database:before{content:"\f1c0"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-democrat:before{content:"\f747"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-dharmachakra:before{content:"\f655"}.fa-diagram-next:before{content:"\e476"}.fa-diagram-predecessor:before{content:"\e477"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-diagram-successor:before{content:"\e47a"}.fa-diamond:before{content:"\f219"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-disease:before{content:"\f7fa"}.fa-display:before{content:"\e163"}.fa-divide:before{content:"\f529"}.fa-dna:before{content:"\f471"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-dong-sign:before{content:"\e169"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dove:before{content:"\f4ba"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-download:before{content:"\f019"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-e:before{content:"\45"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elevator:before{content:"\e16d"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-equals:before{content:"\3d"}.fa-eraser:before{content:"\f12d"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-exclamation:before{content:"\21"}.fa-expand:before{content:"\f065"}.fa-explosion:before{content:"\e4e9"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-eye-slash:before{content:"\f070"}.fa-f:before{content:"\46"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-fan:before{content:"\f863"}.fa-faucet:before{content:"\e005"}.fa-faucet-drip:before{content:"\e006"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-ferry:before{content:"\e4ea"}.fa-file:before{content:"\f15b"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-file-audio:before{content:"\f1c7"}.fa-file-circle-check:before{content:"\e493"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-file-circle-plus:before{content:"\e4ee"}.fa-file-circle-question:before{content:"\e4ef"}.fa-file-circle-xmark:before{content:"\e494"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-excel:before{content:"\f1c3"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-file-medical:before{content:"\f477"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-shield:before{content:"\e4f0"}.fa-file-signature:before{content:"\f573"}.fa-file-video:before{content:"\f1c8"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-file-word:before{content:"\f1c2"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-burner:before{content:"\e4f1"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-fish:before{content:"\f578"}.fa-fish-fins:before{content:"\e4f2"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flask-vial:before{content:"\e4f3"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-florin-sign:before{content:"\e184"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-folder-closed:before{content:"\e185"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-tree:before{content:"\f802"}.fa-font:before{content:"\f031"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-franc-sign:before{content:"\e18f"}.fa-frog:before{content:"\f52e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-g:before{content:"\47"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-glass-water:before{content:"\e4f4"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-glasses:before{content:"\f530"}.fa-globe:before{content:"\f0ac"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-greater-than:before{content:"\3e"}.fa-greater-than-equal:before{content:"\f532"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-guarani-sign:before{content:"\e19a"}.fa-guitar:before{content:"\f7a6"}.fa-gun:before{content:"\e19b"}.fa-h:before{content:"\48"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-handcuffs:before{content:"\e4f8"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-hands-bound:before{content:"\e4f9"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-hands-clapping:before{content:"\e1a8"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-handshake:before{content:"\f2b5"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-hashtag:before{content:"\23"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-heart-circle-plus:before{content:"\e500"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helicopter-symbol:before{content:"\e502"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-helmet-un:before{content:"\e503"}.fa-highlighter:before{content:"\f591"}.fa-hill-avalanche:before{content:"\e507"}.fa-hill-rockslide:before{content:"\e508"}.fa-hippo:before{content:"\f6ed"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hourglass-2:before,.fa-hourglass-half:before,.fa-hourglass:before{content:"\f254"}.fa-hourglass-empty:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-house-chimney-user:before{content:"\e065"}.fa-house-chimney-window:before{content:"\e00d"}.fa-house-circle-check:before{content:"\e509"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-house-crack:before{content:"\e3b1"}.fa-house-fire:before{content:"\e50c"}.fa-house-flag:before{content:"\e50d"}.fa-house-flood-water:before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-house-lock:before{content:"\e510"}.fa-house-medical:before{content:"\e3b2"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-house-medical-flag:before{content:"\e514"}.fa-house-signal:before{content:"\e012"}.fa-house-tsunami:before{content:"\e515"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-hurricane:before{content:"\f751"}.fa-i:before{content:"\49"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-images:before{content:"\f302"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-italic:before{content:"\f033"}.fa-j:before{content:"\4a"}.fa-jar:before{content:"\e516"}.fa-jar-wheat:before{content:"\e517"}.fa-jedi:before{content:"\f669"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-jet-fighter-up:before{content:"\e518"}.fa-joint:before{content:"\f595"}.fa-jug-detergent:before{content:"\e519"}.fa-k:before{content:"\4b"}.fa-kaaba:before{content:"\f66b"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-khanda:before{content:"\f66d"}.fa-kip-sign:before{content:"\e1c4"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-kitchen-set:before{content:"\e51a"}.fa-kiwi-bird:before{content:"\f535"}.fa-l:before{content:"\4c"}.fa-land-mine-on:before{content:"\e51b"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-landmark-flag:before{content:"\e51c"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-file:before{content:"\e51d"}.fa-laptop-medical:before{content:"\f812"}.fa-lari-sign:before{content:"\e1c8"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-lemon:before{content:"\f094"}.fa-less-than:before{content:"\3c"}.fa-less-than-equal:before{content:"\f537"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lines-leaning:before{content:"\e51e"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-lira-sign:before{content:"\f195"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-location-arrow:before{content:"\f124"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-location-pin-lock:before{content:"\e51f"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-locust:before{content:"\e520"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-m:before{content:"\4d"}.fa-magnet:before{content:"\f076"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-manat-sign:before{content:"\e1d5"}.fa-map:before{content:"\f279"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-pin:before{content:"\f276"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-and-venus:before{content:"\f224"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-mask:before{content:"\f6fa"}.fa-mask-face:before{content:"\e1d7"}.fa-mask-ventilator:before{content:"\e524"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-mattress-pillow:before{content:"\e525"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-medal:before{content:"\f5a2"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-mill-sign:before{content:"\e1ed"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-mitten:before{content:"\f7b5"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-mobile-button:before{content:"\f10b"}.fa-mobile-retro:before{content:"\e527"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-money-bills:before{content:"\e1f3"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-mosquito-net:before{content:"\e52c"}.fa-motorcycle:before{content:"\f21c"}.fa-mound:before{content:"\e52d"}.fa-mountain:before{content:"\f6fc"}.fa-mountain-city:before{content:"\e52e"}.fa-mountain-sun:before{content:"\e52f"}.fa-mug-hot:before{content:"\f7b6"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-music:before{content:"\f001"}.fa-n:before{content:"\4e"}.fa-naira-sign:before{content:"\e1f6"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-not-equal:before{content:"\f53e"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-notes-medical:before{content:"\f481"}.fa-o:before{content:"\4f"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-oil-can:before{content:"\f613"}.fa-oil-well:before{content:"\e532"}.fa-om:before{content:"\f679"}.fa-otter:before{content:"\f700"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-p:before{content:"\50"}.fa-pager:before{content:"\f815"}.fa-paint-roller:before{content:"\f5aa"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-palette:before{content:"\f53f"}.fa-pallet:before{content:"\f482"}.fa-panorama:before{content:"\e209"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-passport:before{content:"\f5ab"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-pause:before{content:"\f04c"}.fa-paw:before{content:"\f1b0"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-people-group:before{content:"\e533"}.fa-people-line:before{content:"\e534"}.fa-people-pulling:before{content:"\e535"}.fa-people-robbery:before{content:"\e536"}.fa-people-roof:before{content:"\e537"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-person-booth:before{content:"\f756"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-person-burst:before{content:"\e53b"}.fa-person-cane:before{content:"\e53c"}.fa-person-chalkboard:before{content:"\e53d"}.fa-person-circle-check:before{content:"\e53e"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-person-circle-minus:before{content:"\e540"}.fa-person-circle-plus:before{content:"\e541"}.fa-person-circle-question:before{content:"\e542"}.fa-person-circle-xmark:before{content:"\e543"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-person-dress-burst:before{content:"\e544"}.fa-person-drowning:before{content:"\e545"}.fa-person-falling:before{content:"\e546"}.fa-person-falling-burst:before{content:"\e547"}.fa-person-half-dress:before{content:"\e548"}.fa-person-harassing:before{content:"\e549"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-person-military-pointing:before{content:"\e54a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-person-military-to-person:before{content:"\e54c"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-person-pregnant:before{content:"\e31e"}.fa-person-rays:before{content:"\e54d"}.fa-person-rifle:before{content:"\e54e"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-person-shelter:before{content:"\e54f"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-person-through-window:before{content:"\e433"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-person-walking-luggage:before{content:"\e554"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-peseta-sign:before{content:"\e221"}.fa-peso-sign:before{content:"\e222"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-circle-check:before{content:"\e555"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-lock:before{content:"\e558"}.fa-plane-slash:before{content:"\e069"}.fa-plane-up:before{content:"\e22d"}.fa-plant-wilt:before{content:"\e43b"}.fa-plate-wheat:before{content:"\e55a"}.fa-play:before{content:"\f04b"}.fa-plug:before{content:"\f1e6"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-plug-circle-check:before{content:"\e55c"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-plus-minus:before{content:"\e43c"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-puzzle-piece:before{content:"\f12e"}.fa-q:before{content:"\51"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\3f"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-r:before{content:"\52"}.fa-radiation:before{content:"\f7b9"}.fa-radio:before{content:"\f8d7"}.fa-rainbow:before{content:"\f75b"}.fa-ranking-star:before{content:"\e561"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-recycle:before{content:"\f1b8"}.fa-registered:before{content:"\f25d"}.fa-repeat:before{content:"\f363"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-republican:before{content:"\f75e"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-road-barrier:before{content:"\e562"}.fa-road-bridge:before{content:"\e563"}.fa-road-circle-check:before{content:"\e564"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-road-circle-xmark:before{content:"\e566"}.fa-road-lock:before{content:"\e567"}.fa-road-spikes:before{content:"\e568"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-route:before{content:"\f4d7"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-rug:before{content:"\e569"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-rupiah-sign:before{content:"\e23d"}.fa-s:before{content:"\53"}.fa-sack-dollar:before{content:"\f81d"}.fa-sack-xmark:before{content:"\e56a"}.fa-sailboat:before{content:"\e445"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-school:before{content:"\f549"}.fa-school-circle-check:before{content:"\e56b"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-school-flag:before{content:"\e56e"}.fa-school-lock:before{content:"\e56f"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-screwdriver:before{content:"\f54a"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-scroll:before{content:"\f70e"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-sd-card:before{content:"\f7c2"}.fa-section:before{content:"\e447"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-server:before{content:"\f233"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-sheet-plastic:before{content:"\e571"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-shield-cat:before{content:"\e572"}.fa-shield-dog:before{content:"\e573"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-shield-heart:before{content:"\e574"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-shoe-prints:before{content:"\f54b"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-shop-lock:before{content:"\e4a5"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-shower:before{content:"\f2cc"}.fa-shrimp:before{content:"\e448"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-sim-card:before{content:"\f7c4"}.fa-sink:before{content:"\e06d"}.fa-sitemap:before{content:"\f0e8"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-spa:before{content:"\f5bb"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-spray-can:before{content:"\f5bd"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-square:before{content:"\f0c8"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-square-full:before{content:"\f45c"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-square-nfi:before{content:"\e576"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-square-person-confined:before{content:"\e577"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-square-virus:before{content:"\e578"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-stairs:before{content:"\e289"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-stethoscope:before{content:"\f0f1"}.fa-stop:before{content:"\f04d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-slash:before{content:"\e071"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stroopwafel:before{content:"\f551"}.fa-subscript:before{content:"\f12c"}.fa-suitcase:before{content:"\f0f2"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-superscript:before{content:"\f12b"}.fa-swatchbook:before{content:"\f5c3"}.fa-synagogue:before{content:"\f69b"}.fa-syringe:before{content:"\f48e"}.fa-t:before{content:"\54"}.fa-table:before{content:"\f0ce"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-tablet-button:before{content:"\f10a"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tarp:before{content:"\e57b"}.fa-tarp-droplet:before{content:"\e57c"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-tent:before{content:"\e57d"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tent-arrows-down:before{content:"\e581"}.fa-tents:before{content:"\e582"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-text-width:before{content:"\f035"}.fa-thermometer:before{content:"\f491"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-timeline:before{content:"\e29c"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toilet-portable:before{content:"\e583"}.fa-toilets-portable:before{content:"\e584"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-tower-cell:before{content:"\e585"}.fa-tower-observation:before{content:"\e586"}.fa-tractor:before{content:"\f722"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-train-tram:before,.fa-tram:before{content:"\f7da"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-tree-city:before{content:"\e587"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-trophy:before{content:"\f091"}.fa-trowel:before{content:"\e589"}.fa-trowel-bricks:before{content:"\e58a"}.fa-truck:before{content:"\f0d1"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-truck-droplet:before{content:"\e58c"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-truck-field:before{content:"\e58d"}.fa-truck-field-un:before{content:"\e58e"}.fa-truck-front:before{content:"\e2b7"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plane:before{content:"\e58f"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-u:before{content:"\55"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-universal-access:before{content:"\f29a"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-upload:before{content:"\f093"}.fa-user:before{content:"\f007"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-clock:before{content:"\f4fd"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-user-graduate:before{content:"\f501"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-user-injured:before{content:"\f728"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-user-lock:before{content:"\f502"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-between-lines:before{content:"\e591"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-users-line:before{content:"\e592"}.fa-users-rays:before{content:"\e593"}.fa-users-rectangle:before{content:"\e594"}.fa-users-slash:before{content:"\e073"}.fa-users-viewfinder:before{content:"\e595"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-v:before{content:"\56"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-vault:before{content:"\e2c5"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-vial:before{content:"\f492"}.fa-vial-circle-check:before{content:"\e596"}.fa-vial-virus:before{content:"\e597"}.fa-vials:before{content:"\f493"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-virus:before{content:"\e074"}.fa-virus-covid:before{content:"\e4a8"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-voicemail:before{content:"\f897"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-vr-cardboard:before{content:"\f729"}.fa-w:before{content:"\57"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-wallet:before{content:"\f555"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-wand-sparkles:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-wave-square:before{content:"\f83e"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-wheelchair:before{content:"\f193"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-wind:before{content:"\f72e"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-worm:before{content:"\e599"}.fa-wrench:before{content:"\f0ad"}.fa-x:before{content:"\58"}.fa-x-ray:before{content:"\f497"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-xmarks-lines:before{content:"\e59a"}.fa-y:before{content:"\59"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-z:before{content:"\5a"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-square:before{content:"\f2ad"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-font-awesome:before{content:"\f425"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400}:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f250,u+f252,u+f27a} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/brands.css b/packages/themes/zoll/assets/fontawesome-free/css/brands.css deleted file mode 100644 index e83ed42ac1..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/brands.css +++ /dev/null @@ -1,1432 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -@font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -.fab, -.fa-brands { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa-42-group:before { - content: "\e080"; } - -.fa-innosoft:before { - content: "\e080"; } - -.fa-500px:before { - content: "\f26e"; } - -.fa-accessible-icon:before { - content: "\f368"; } - -.fa-accusoft:before { - content: "\f369"; } - -.fa-adn:before { - content: "\f170"; } - -.fa-adversal:before { - content: "\f36a"; } - -.fa-affiliatetheme:before { - content: "\f36b"; } - -.fa-airbnb:before { - content: "\f834"; } - -.fa-algolia:before { - content: "\f36c"; } - -.fa-alipay:before { - content: "\f642"; } - -.fa-amazon:before { - content: "\f270"; } - -.fa-amazon-pay:before { - content: "\f42c"; } - -.fa-amilia:before { - content: "\f36d"; } - -.fa-android:before { - content: "\f17b"; } - -.fa-angellist:before { - content: "\f209"; } - -.fa-angrycreative:before { - content: "\f36e"; } - -.fa-angular:before { - content: "\f420"; } - -.fa-app-store:before { - content: "\f36f"; } - -.fa-app-store-ios:before { - content: "\f370"; } - -.fa-apper:before { - content: "\f371"; } - -.fa-apple:before { - content: "\f179"; } - -.fa-apple-pay:before { - content: "\f415"; } - -.fa-artstation:before { - content: "\f77a"; } - -.fa-asymmetrik:before { - content: "\f372"; } - -.fa-atlassian:before { - content: "\f77b"; } - -.fa-audible:before { - content: "\f373"; } - -.fa-autoprefixer:before { - content: "\f41c"; } - -.fa-avianex:before { - content: "\f374"; } - -.fa-aviato:before { - content: "\f421"; } - -.fa-aws:before { - content: "\f375"; } - -.fa-bandcamp:before { - content: "\f2d5"; } - -.fa-battle-net:before { - content: "\f835"; } - -.fa-behance:before { - content: "\f1b4"; } - -.fa-behance-square:before { - content: "\f1b5"; } - -.fa-bilibili:before { - content: "\e3d9"; } - -.fa-bimobject:before { - content: "\f378"; } - -.fa-bitbucket:before { - content: "\f171"; } - -.fa-bitcoin:before { - content: "\f379"; } - -.fa-bity:before { - content: "\f37a"; } - -.fa-black-tie:before { - content: "\f27e"; } - -.fa-blackberry:before { - content: "\f37b"; } - -.fa-blogger:before { - content: "\f37c"; } - -.fa-blogger-b:before { - content: "\f37d"; } - -.fa-bluetooth:before { - content: "\f293"; } - -.fa-bluetooth-b:before { - content: "\f294"; } - -.fa-bootstrap:before { - content: "\f836"; } - -.fa-bots:before { - content: "\e340"; } - -.fa-btc:before { - content: "\f15a"; } - -.fa-buffer:before { - content: "\f837"; } - -.fa-buromobelexperte:before { - content: "\f37f"; } - -.fa-buy-n-large:before { - content: "\f8a6"; } - -.fa-buysellads:before { - content: "\f20d"; } - -.fa-canadian-maple-leaf:before { - content: "\f785"; } - -.fa-cc-amazon-pay:before { - content: "\f42d"; } - -.fa-cc-amex:before { - content: "\f1f3"; } - -.fa-cc-apple-pay:before { - content: "\f416"; } - -.fa-cc-diners-club:before { - content: "\f24c"; } - -.fa-cc-discover:before { - content: "\f1f2"; } - -.fa-cc-jcb:before { - content: "\f24b"; } - -.fa-cc-mastercard:before { - content: "\f1f1"; } - -.fa-cc-paypal:before { - content: "\f1f4"; } - -.fa-cc-stripe:before { - content: "\f1f5"; } - -.fa-cc-visa:before { - content: "\f1f0"; } - -.fa-centercode:before { - content: "\f380"; } - -.fa-centos:before { - content: "\f789"; } - -.fa-chrome:before { - content: "\f268"; } - -.fa-chromecast:before { - content: "\f838"; } - -.fa-cloudflare:before { - content: "\e07d"; } - -.fa-cloudscale:before { - content: "\f383"; } - -.fa-cloudsmith:before { - content: "\f384"; } - -.fa-cloudversify:before { - content: "\f385"; } - -.fa-cmplid:before { - content: "\e360"; } - -.fa-codepen:before { - content: "\f1cb"; } - -.fa-codiepie:before { - content: "\f284"; } - -.fa-confluence:before { - content: "\f78d"; } - -.fa-connectdevelop:before { - content: "\f20e"; } - -.fa-contao:before { - content: "\f26d"; } - -.fa-cotton-bureau:before { - content: "\f89e"; } - -.fa-cpanel:before { - content: "\f388"; } - -.fa-creative-commons:before { - content: "\f25e"; } - -.fa-creative-commons-by:before { - content: "\f4e7"; } - -.fa-creative-commons-nc:before { - content: "\f4e8"; } - -.fa-creative-commons-nc-eu:before { - content: "\f4e9"; } - -.fa-creative-commons-nc-jp:before { - content: "\f4ea"; } - -.fa-creative-commons-nd:before { - content: "\f4eb"; } - -.fa-creative-commons-pd:before { - content: "\f4ec"; } - -.fa-creative-commons-pd-alt:before { - content: "\f4ed"; } - -.fa-creative-commons-remix:before { - content: "\f4ee"; } - -.fa-creative-commons-sa:before { - content: "\f4ef"; } - -.fa-creative-commons-sampling:before { - content: "\f4f0"; } - -.fa-creative-commons-sampling-plus:before { - content: "\f4f1"; } - -.fa-creative-commons-share:before { - content: "\f4f2"; } - -.fa-creative-commons-zero:before { - content: "\f4f3"; } - -.fa-critical-role:before { - content: "\f6c9"; } - -.fa-css3:before { - content: "\f13c"; } - -.fa-css3-alt:before { - content: "\f38b"; } - -.fa-cuttlefish:before { - content: "\f38c"; } - -.fa-d-and-d:before { - content: "\f38d"; } - -.fa-d-and-d-beyond:before { - content: "\f6ca"; } - -.fa-dailymotion:before { - content: "\e052"; } - -.fa-dashcube:before { - content: "\f210"; } - -.fa-deezer:before { - content: "\e077"; } - -.fa-delicious:before { - content: "\f1a5"; } - -.fa-deploydog:before { - content: "\f38e"; } - -.fa-deskpro:before { - content: "\f38f"; } - -.fa-dev:before { - content: "\f6cc"; } - -.fa-deviantart:before { - content: "\f1bd"; } - -.fa-dhl:before { - content: "\f790"; } - -.fa-diaspora:before { - content: "\f791"; } - -.fa-digg:before { - content: "\f1a6"; } - -.fa-digital-ocean:before { - content: "\f391"; } - -.fa-discord:before { - content: "\f392"; } - -.fa-discourse:before { - content: "\f393"; } - -.fa-dochub:before { - content: "\f394"; } - -.fa-docker:before { - content: "\f395"; } - -.fa-draft2digital:before { - content: "\f396"; } - -.fa-dribbble:before { - content: "\f17d"; } - -.fa-dribbble-square:before { - content: "\f397"; } - -.fa-dropbox:before { - content: "\f16b"; } - -.fa-drupal:before { - content: "\f1a9"; } - -.fa-dyalog:before { - content: "\f399"; } - -.fa-earlybirds:before { - content: "\f39a"; } - -.fa-ebay:before { - content: "\f4f4"; } - -.fa-edge:before { - content: "\f282"; } - -.fa-edge-legacy:before { - content: "\e078"; } - -.fa-elementor:before { - content: "\f430"; } - -.fa-ello:before { - content: "\f5f1"; } - -.fa-ember:before { - content: "\f423"; } - -.fa-empire:before { - content: "\f1d1"; } - -.fa-envira:before { - content: "\f299"; } - -.fa-erlang:before { - content: "\f39d"; } - -.fa-ethereum:before { - content: "\f42e"; } - -.fa-etsy:before { - content: "\f2d7"; } - -.fa-evernote:before { - content: "\f839"; } - -.fa-expeditedssl:before { - content: "\f23e"; } - -.fa-facebook:before { - content: "\f09a"; } - -.fa-facebook-f:before { - content: "\f39e"; } - -.fa-facebook-messenger:before { - content: "\f39f"; } - -.fa-facebook-square:before { - content: "\f082"; } - -.fa-fantasy-flight-games:before { - content: "\f6dc"; } - -.fa-fedex:before { - content: "\f797"; } - -.fa-fedora:before { - content: "\f798"; } - -.fa-figma:before { - content: "\f799"; } - -.fa-firefox:before { - content: "\f269"; } - -.fa-firefox-browser:before { - content: "\e007"; } - -.fa-first-order:before { - content: "\f2b0"; } - -.fa-first-order-alt:before { - content: "\f50a"; } - -.fa-firstdraft:before { - content: "\f3a1"; } - -.fa-flickr:before { - content: "\f16e"; } - -.fa-flipboard:before { - content: "\f44d"; } - -.fa-fly:before { - content: "\f417"; } - -.fa-font-awesome:before { - content: "\f2b4"; } - -.fa-font-awesome-flag:before { - content: "\f2b4"; } - -.fa-font-awesome-logo-full:before { - content: "\f2b4"; } - -.fa-fonticons:before { - content: "\f280"; } - -.fa-fonticons-fi:before { - content: "\f3a2"; } - -.fa-fort-awesome:before { - content: "\f286"; } - -.fa-fort-awesome-alt:before { - content: "\f3a3"; } - -.fa-forumbee:before { - content: "\f211"; } - -.fa-foursquare:before { - content: "\f180"; } - -.fa-free-code-camp:before { - content: "\f2c5"; } - -.fa-freebsd:before { - content: "\f3a4"; } - -.fa-fulcrum:before { - content: "\f50b"; } - -.fa-galactic-republic:before { - content: "\f50c"; } - -.fa-galactic-senate:before { - content: "\f50d"; } - -.fa-get-pocket:before { - content: "\f265"; } - -.fa-gg:before { - content: "\f260"; } - -.fa-gg-circle:before { - content: "\f261"; } - -.fa-git:before { - content: "\f1d3"; } - -.fa-git-alt:before { - content: "\f841"; } - -.fa-git-square:before { - content: "\f1d2"; } - -.fa-github:before { - content: "\f09b"; } - -.fa-github-alt:before { - content: "\f113"; } - -.fa-github-square:before { - content: "\f092"; } - -.fa-gitkraken:before { - content: "\f3a6"; } - -.fa-gitlab:before { - content: "\f296"; } - -.fa-gitter:before { - content: "\f426"; } - -.fa-glide:before { - content: "\f2a5"; } - -.fa-glide-g:before { - content: "\f2a6"; } - -.fa-gofore:before { - content: "\f3a7"; } - -.fa-golang:before { - content: "\e40f"; } - -.fa-goodreads:before { - content: "\f3a8"; } - -.fa-goodreads-g:before { - content: "\f3a9"; } - -.fa-google:before { - content: "\f1a0"; } - -.fa-google-drive:before { - content: "\f3aa"; } - -.fa-google-pay:before { - content: "\e079"; } - -.fa-google-play:before { - content: "\f3ab"; } - -.fa-google-plus:before { - content: "\f2b3"; } - -.fa-google-plus-g:before { - content: "\f0d5"; } - -.fa-google-plus-square:before { - content: "\f0d4"; } - -.fa-google-wallet:before { - content: "\f1ee"; } - -.fa-gratipay:before { - content: "\f184"; } - -.fa-grav:before { - content: "\f2d6"; } - -.fa-gripfire:before { - content: "\f3ac"; } - -.fa-grunt:before { - content: "\f3ad"; } - -.fa-guilded:before { - content: "\e07e"; } - -.fa-gulp:before { - content: "\f3ae"; } - -.fa-hacker-news:before { - content: "\f1d4"; } - -.fa-hacker-news-square:before { - content: "\f3af"; } - -.fa-hackerrank:before { - content: "\f5f7"; } - -.fa-hashnode:before { - content: "\e499"; } - -.fa-hips:before { - content: "\f452"; } - -.fa-hire-a-helper:before { - content: "\f3b0"; } - -.fa-hive:before { - content: "\e07f"; } - -.fa-hooli:before { - content: "\f427"; } - -.fa-hornbill:before { - content: "\f592"; } - -.fa-hotjar:before { - content: "\f3b1"; } - -.fa-houzz:before { - content: "\f27c"; } - -.fa-html5:before { - content: "\f13b"; } - -.fa-hubspot:before { - content: "\f3b2"; } - -.fa-ideal:before { - content: "\e013"; } - -.fa-imdb:before { - content: "\f2d8"; } - -.fa-instagram:before { - content: "\f16d"; } - -.fa-instagram-square:before { - content: "\e055"; } - -.fa-instalod:before { - content: "\e081"; } - -.fa-intercom:before { - content: "\f7af"; } - -.fa-internet-explorer:before { - content: "\f26b"; } - -.fa-invision:before { - content: "\f7b0"; } - -.fa-ioxhost:before { - content: "\f208"; } - -.fa-itch-io:before { - content: "\f83a"; } - -.fa-itunes:before { - content: "\f3b4"; } - -.fa-itunes-note:before { - content: "\f3b5"; } - -.fa-java:before { - content: "\f4e4"; } - -.fa-jedi-order:before { - content: "\f50e"; } - -.fa-jenkins:before { - content: "\f3b6"; } - -.fa-jira:before { - content: "\f7b1"; } - -.fa-joget:before { - content: "\f3b7"; } - -.fa-joomla:before { - content: "\f1aa"; } - -.fa-js:before { - content: "\f3b8"; } - -.fa-js-square:before { - content: "\f3b9"; } - -.fa-jsfiddle:before { - content: "\f1cc"; } - -.fa-kaggle:before { - content: "\f5fa"; } - -.fa-keybase:before { - content: "\f4f5"; } - -.fa-keycdn:before { - content: "\f3ba"; } - -.fa-kickstarter:before { - content: "\f3bb"; } - -.fa-kickstarter-k:before { - content: "\f3bc"; } - -.fa-korvue:before { - content: "\f42f"; } - -.fa-laravel:before { - content: "\f3bd"; } - -.fa-lastfm:before { - content: "\f202"; } - -.fa-lastfm-square:before { - content: "\f203"; } - -.fa-leanpub:before { - content: "\f212"; } - -.fa-less:before { - content: "\f41d"; } - -.fa-line:before { - content: "\f3c0"; } - -.fa-linkedin:before { - content: "\f08c"; } - -.fa-linkedin-in:before { - content: "\f0e1"; } - -.fa-linode:before { - content: "\f2b8"; } - -.fa-linux:before { - content: "\f17c"; } - -.fa-lyft:before { - content: "\f3c3"; } - -.fa-magento:before { - content: "\f3c4"; } - -.fa-mailchimp:before { - content: "\f59e"; } - -.fa-mandalorian:before { - content: "\f50f"; } - -.fa-markdown:before { - content: "\f60f"; } - -.fa-mastodon:before { - content: "\f4f6"; } - -.fa-maxcdn:before { - content: "\f136"; } - -.fa-mdb:before { - content: "\f8ca"; } - -.fa-medapps:before { - content: "\f3c6"; } - -.fa-medium:before { - content: "\f23a"; } - -.fa-medium-m:before { - content: "\f23a"; } - -.fa-medrt:before { - content: "\f3c8"; } - -.fa-meetup:before { - content: "\f2e0"; } - -.fa-megaport:before { - content: "\f5a3"; } - -.fa-mendeley:before { - content: "\f7b3"; } - -.fa-microblog:before { - content: "\e01a"; } - -.fa-microsoft:before { - content: "\f3ca"; } - -.fa-mix:before { - content: "\f3cb"; } - -.fa-mixcloud:before { - content: "\f289"; } - -.fa-mixer:before { - content: "\e056"; } - -.fa-mizuni:before { - content: "\f3cc"; } - -.fa-modx:before { - content: "\f285"; } - -.fa-monero:before { - content: "\f3d0"; } - -.fa-napster:before { - content: "\f3d2"; } - -.fa-neos:before { - content: "\f612"; } - -.fa-nfc-directional:before { - content: "\e530"; } - -.fa-nfc-symbol:before { - content: "\e531"; } - -.fa-nimblr:before { - content: "\f5a8"; } - -.fa-node:before { - content: "\f419"; } - -.fa-node-js:before { - content: "\f3d3"; } - -.fa-npm:before { - content: "\f3d4"; } - -.fa-ns8:before { - content: "\f3d5"; } - -.fa-nutritionix:before { - content: "\f3d6"; } - -.fa-octopus-deploy:before { - content: "\e082"; } - -.fa-odnoklassniki:before { - content: "\f263"; } - -.fa-odnoklassniki-square:before { - content: "\f264"; } - -.fa-old-republic:before { - content: "\f510"; } - -.fa-opencart:before { - content: "\f23d"; } - -.fa-openid:before { - content: "\f19b"; } - -.fa-opera:before { - content: "\f26a"; } - -.fa-optin-monster:before { - content: "\f23c"; } - -.fa-orcid:before { - content: "\f8d2"; } - -.fa-osi:before { - content: "\f41a"; } - -.fa-padlet:before { - content: "\e4a0"; } - -.fa-page4:before { - content: "\f3d7"; } - -.fa-pagelines:before { - content: "\f18c"; } - -.fa-palfed:before { - content: "\f3d8"; } - -.fa-patreon:before { - content: "\f3d9"; } - -.fa-paypal:before { - content: "\f1ed"; } - -.fa-perbyte:before { - content: "\e083"; } - -.fa-periscope:before { - content: "\f3da"; } - -.fa-phabricator:before { - content: "\f3db"; } - -.fa-phoenix-framework:before { - content: "\f3dc"; } - -.fa-phoenix-squadron:before { - content: "\f511"; } - -.fa-php:before { - content: "\f457"; } - -.fa-pied-piper:before { - content: "\f2ae"; } - -.fa-pied-piper-alt:before { - content: "\f1a8"; } - -.fa-pied-piper-hat:before { - content: "\f4e5"; } - -.fa-pied-piper-pp:before { - content: "\f1a7"; } - -.fa-pied-piper-square:before { - content: "\e01e"; } - -.fa-pinterest:before { - content: "\f0d2"; } - -.fa-pinterest-p:before { - content: "\f231"; } - -.fa-pinterest-square:before { - content: "\f0d3"; } - -.fa-pix:before { - content: "\e43a"; } - -.fa-playstation:before { - content: "\f3df"; } - -.fa-product-hunt:before { - content: "\f288"; } - -.fa-pushed:before { - content: "\f3e1"; } - -.fa-python:before { - content: "\f3e2"; } - -.fa-qq:before { - content: "\f1d6"; } - -.fa-quinscape:before { - content: "\f459"; } - -.fa-quora:before { - content: "\f2c4"; } - -.fa-r-project:before { - content: "\f4f7"; } - -.fa-raspberry-pi:before { - content: "\f7bb"; } - -.fa-ravelry:before { - content: "\f2d9"; } - -.fa-react:before { - content: "\f41b"; } - -.fa-reacteurope:before { - content: "\f75d"; } - -.fa-readme:before { - content: "\f4d5"; } - -.fa-rebel:before { - content: "\f1d0"; } - -.fa-red-river:before { - content: "\f3e3"; } - -.fa-reddit:before { - content: "\f1a1"; } - -.fa-reddit-alien:before { - content: "\f281"; } - -.fa-reddit-square:before { - content: "\f1a2"; } - -.fa-redhat:before { - content: "\f7bc"; } - -.fa-renren:before { - content: "\f18b"; } - -.fa-replyd:before { - content: "\f3e6"; } - -.fa-researchgate:before { - content: "\f4f8"; } - -.fa-resolving:before { - content: "\f3e7"; } - -.fa-rev:before { - content: "\f5b2"; } - -.fa-rocketchat:before { - content: "\f3e8"; } - -.fa-rockrms:before { - content: "\f3e9"; } - -.fa-rust:before { - content: "\e07a"; } - -.fa-safari:before { - content: "\f267"; } - -.fa-salesforce:before { - content: "\f83b"; } - -.fa-sass:before { - content: "\f41e"; } - -.fa-schlix:before { - content: "\f3ea"; } - -.fa-screenpal:before { - content: "\e570"; } - -.fa-scribd:before { - content: "\f28a"; } - -.fa-searchengin:before { - content: "\f3eb"; } - -.fa-sellcast:before { - content: "\f2da"; } - -.fa-sellsy:before { - content: "\f213"; } - -.fa-servicestack:before { - content: "\f3ec"; } - -.fa-shirtsinbulk:before { - content: "\f214"; } - -.fa-shopify:before { - content: "\e057"; } - -.fa-shopware:before { - content: "\f5b5"; } - -.fa-simplybuilt:before { - content: "\f215"; } - -.fa-sistrix:before { - content: "\f3ee"; } - -.fa-sith:before { - content: "\f512"; } - -.fa-sitrox:before { - content: "\e44a"; } - -.fa-sketch:before { - content: "\f7c6"; } - -.fa-skyatlas:before { - content: "\f216"; } - -.fa-skype:before { - content: "\f17e"; } - -.fa-slack:before { - content: "\f198"; } - -.fa-slack-hash:before { - content: "\f198"; } - -.fa-slideshare:before { - content: "\f1e7"; } - -.fa-snapchat:before { - content: "\f2ab"; } - -.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa-snapchat-square:before { - content: "\f2ad"; } - -.fa-soundcloud:before { - content: "\f1be"; } - -.fa-sourcetree:before { - content: "\f7d3"; } - -.fa-speakap:before { - content: "\f3f3"; } - -.fa-speaker-deck:before { - content: "\f83c"; } - -.fa-spotify:before { - content: "\f1bc"; } - -.fa-square-font-awesome:before { - content: "\f425"; } - -.fa-square-font-awesome-stroke:before { - content: "\f35c"; } - -.fa-font-awesome-alt:before { - content: "\f35c"; } - -.fa-squarespace:before { - content: "\f5be"; } - -.fa-stack-exchange:before { - content: "\f18d"; } - -.fa-stack-overflow:before { - content: "\f16c"; } - -.fa-stackpath:before { - content: "\f842"; } - -.fa-staylinked:before { - content: "\f3f5"; } - -.fa-steam:before { - content: "\f1b6"; } - -.fa-steam-square:before { - content: "\f1b7"; } - -.fa-steam-symbol:before { - content: "\f3f6"; } - -.fa-sticker-mule:before { - content: "\f3f7"; } - -.fa-strava:before { - content: "\f428"; } - -.fa-stripe:before { - content: "\f429"; } - -.fa-stripe-s:before { - content: "\f42a"; } - -.fa-studiovinari:before { - content: "\f3f8"; } - -.fa-stumbleupon:before { - content: "\f1a4"; } - -.fa-stumbleupon-circle:before { - content: "\f1a3"; } - -.fa-superpowers:before { - content: "\f2dd"; } - -.fa-supple:before { - content: "\f3f9"; } - -.fa-suse:before { - content: "\f7d6"; } - -.fa-swift:before { - content: "\f8e1"; } - -.fa-symfony:before { - content: "\f83d"; } - -.fa-teamspeak:before { - content: "\f4f9"; } - -.fa-telegram:before { - content: "\f2c6"; } - -.fa-telegram-plane:before { - content: "\f2c6"; } - -.fa-tencent-weibo:before { - content: "\f1d5"; } - -.fa-the-red-yeti:before { - content: "\f69d"; } - -.fa-themeco:before { - content: "\f5c6"; } - -.fa-themeisle:before { - content: "\f2b2"; } - -.fa-think-peaks:before { - content: "\f731"; } - -.fa-tiktok:before { - content: "\e07b"; } - -.fa-trade-federation:before { - content: "\f513"; } - -.fa-trello:before { - content: "\f181"; } - -.fa-tumblr:before { - content: "\f173"; } - -.fa-tumblr-square:before { - content: "\f174"; } - -.fa-twitch:before { - content: "\f1e8"; } - -.fa-twitter:before { - content: "\f099"; } - -.fa-twitter-square:before { - content: "\f081"; } - -.fa-typo3:before { - content: "\f42b"; } - -.fa-uber:before { - content: "\f402"; } - -.fa-ubuntu:before { - content: "\f7df"; } - -.fa-uikit:before { - content: "\f403"; } - -.fa-umbraco:before { - content: "\f8e8"; } - -.fa-uncharted:before { - content: "\e084"; } - -.fa-uniregistry:before { - content: "\f404"; } - -.fa-unity:before { - content: "\e049"; } - -.fa-unsplash:before { - content: "\e07c"; } - -.fa-untappd:before { - content: "\f405"; } - -.fa-ups:before { - content: "\f7e0"; } - -.fa-usb:before { - content: "\f287"; } - -.fa-usps:before { - content: "\f7e1"; } - -.fa-ussunnah:before { - content: "\f407"; } - -.fa-vaadin:before { - content: "\f408"; } - -.fa-viacoin:before { - content: "\f237"; } - -.fa-viadeo:before { - content: "\f2a9"; } - -.fa-viadeo-square:before { - content: "\f2aa"; } - -.fa-viber:before { - content: "\f409"; } - -.fa-vimeo:before { - content: "\f40a"; } - -.fa-vimeo-square:before { - content: "\f194"; } - -.fa-vimeo-v:before { - content: "\f27d"; } - -.fa-vine:before { - content: "\f1ca"; } - -.fa-vk:before { - content: "\f189"; } - -.fa-vnv:before { - content: "\f40b"; } - -.fa-vuejs:before { - content: "\f41f"; } - -.fa-watchman-monitoring:before { - content: "\e087"; } - -.fa-waze:before { - content: "\f83f"; } - -.fa-weebly:before { - content: "\f5cc"; } - -.fa-weibo:before { - content: "\f18a"; } - -.fa-weixin:before { - content: "\f1d7"; } - -.fa-whatsapp:before { - content: "\f232"; } - -.fa-whatsapp-square:before { - content: "\f40c"; } - -.fa-whmcs:before { - content: "\f40d"; } - -.fa-wikipedia-w:before { - content: "\f266"; } - -.fa-windows:before { - content: "\f17a"; } - -.fa-wirsindhandwerk:before { - content: "\e2d0"; } - -.fa-wsh:before { - content: "\e2d0"; } - -.fa-wix:before { - content: "\f5cf"; } - -.fa-wizards-of-the-coast:before { - content: "\f730"; } - -.fa-wodu:before { - content: "\e088"; } - -.fa-wolf-pack-battalion:before { - content: "\f514"; } - -.fa-wordpress:before { - content: "\f19a"; } - -.fa-wordpress-simple:before { - content: "\f411"; } - -.fa-wpbeginner:before { - content: "\f297"; } - -.fa-wpexplorer:before { - content: "\f2de"; } - -.fa-wpforms:before { - content: "\f298"; } - -.fa-wpressr:before { - content: "\f3e4"; } - -.fa-xbox:before { - content: "\f412"; } - -.fa-xing:before { - content: "\f168"; } - -.fa-xing-square:before { - content: "\f169"; } - -.fa-y-combinator:before { - content: "\f23b"; } - -.fa-yahoo:before { - content: "\f19e"; } - -.fa-yammer:before { - content: "\f840"; } - -.fa-yandex:before { - content: "\f413"; } - -.fa-yandex-international:before { - content: "\f414"; } - -.fa-yarn:before { - content: "\f7e3"; } - -.fa-yelp:before { - content: "\f1e9"; } - -.fa-yoast:before { - content: "\f2b1"; } - -.fa-youtube:before { - content: "\f167"; } - -.fa-youtube-square:before { - content: "\f431"; } - -.fa-zhihu:before { - content: "\f63f"; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/brands.min.css b/packages/themes/zoll/assets/fontawesome-free/css/brands.min.css deleted file mode 100644 index 714509e6f9..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/brands.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-square:before{content:"\f2ad"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-font-awesome:before{content:"\f425"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/fontawesome.css b/packages/themes/zoll/assets/fontawesome-free/css/fontawesome.css deleted file mode 100644 index e7eb5fe411..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/fontawesome.css +++ /dev/null @@ -1,6338 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); } - -.fa, -.fas, -.fa-solid, -.far, -.fa-regular, -.fal, -.fa-light, -.fat, -.fa-thin, -.fad, -.fa-duotone, -.fab, -.fa-brands { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); } - -.fa-stack-1x { - line-height: inherit; } - -.fa-stack-2x { - font-size: 2em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-0::before { - content: "\30"; } - -.fa-1::before { - content: "\31"; } - -.fa-2::before { - content: "\32"; } - -.fa-3::before { - content: "\33"; } - -.fa-4::before { - content: "\34"; } - -.fa-5::before { - content: "\35"; } - -.fa-6::before { - content: "\36"; } - -.fa-7::before { - content: "\37"; } - -.fa-8::before { - content: "\38"; } - -.fa-9::before { - content: "\39"; } - -.fa-a::before { - content: "\41"; } - -.fa-address-book::before { - content: "\f2b9"; } - -.fa-contact-book::before { - content: "\f2b9"; } - -.fa-address-card::before { - content: "\f2bb"; } - -.fa-contact-card::before { - content: "\f2bb"; } - -.fa-vcard::before { - content: "\f2bb"; } - -.fa-align-center::before { - content: "\f037"; } - -.fa-align-justify::before { - content: "\f039"; } - -.fa-align-left::before { - content: "\f036"; } - -.fa-align-right::before { - content: "\f038"; } - -.fa-anchor::before { - content: "\f13d"; } - -.fa-anchor-circle-check::before { - content: "\e4aa"; } - -.fa-anchor-circle-exclamation::before { - content: "\e4ab"; } - -.fa-anchor-circle-xmark::before { - content: "\e4ac"; } - -.fa-anchor-lock::before { - content: "\e4ad"; } - -.fa-angle-down::before { - content: "\f107"; } - -.fa-angle-left::before { - content: "\f104"; } - -.fa-angle-right::before { - content: "\f105"; } - -.fa-angle-up::before { - content: "\f106"; } - -.fa-angles-down::before { - content: "\f103"; } - -.fa-angle-double-down::before { - content: "\f103"; } - -.fa-angles-left::before { - content: "\f100"; } - -.fa-angle-double-left::before { - content: "\f100"; } - -.fa-angles-right::before { - content: "\f101"; } - -.fa-angle-double-right::before { - content: "\f101"; } - -.fa-angles-up::before { - content: "\f102"; } - -.fa-angle-double-up::before { - content: "\f102"; } - -.fa-ankh::before { - content: "\f644"; } - -.fa-apple-whole::before { - content: "\f5d1"; } - -.fa-apple-alt::before { - content: "\f5d1"; } - -.fa-archway::before { - content: "\f557"; } - -.fa-arrow-down::before { - content: "\f063"; } - -.fa-arrow-down-1-9::before { - content: "\f162"; } - -.fa-sort-numeric-asc::before { - content: "\f162"; } - -.fa-sort-numeric-down::before { - content: "\f162"; } - -.fa-arrow-down-9-1::before { - content: "\f886"; } - -.fa-sort-numeric-desc::before { - content: "\f886"; } - -.fa-sort-numeric-down-alt::before { - content: "\f886"; } - -.fa-arrow-down-a-z::before { - content: "\f15d"; } - -.fa-sort-alpha-asc::before { - content: "\f15d"; } - -.fa-sort-alpha-down::before { - content: "\f15d"; } - -.fa-arrow-down-long::before { - content: "\f175"; } - -.fa-long-arrow-down::before { - content: "\f175"; } - -.fa-arrow-down-short-wide::before { - content: "\f884"; } - -.fa-sort-amount-desc::before { - content: "\f884"; } - -.fa-sort-amount-down-alt::before { - content: "\f884"; } - -.fa-arrow-down-up-across-line::before { - content: "\e4af"; } - -.fa-arrow-down-up-lock::before { - content: "\e4b0"; } - -.fa-arrow-down-wide-short::before { - content: "\f160"; } - -.fa-sort-amount-asc::before { - content: "\f160"; } - -.fa-sort-amount-down::before { - content: "\f160"; } - -.fa-arrow-down-z-a::before { - content: "\f881"; } - -.fa-sort-alpha-desc::before { - content: "\f881"; } - -.fa-sort-alpha-down-alt::before { - content: "\f881"; } - -.fa-arrow-left::before { - content: "\f060"; } - -.fa-arrow-left-long::before { - content: "\f177"; } - -.fa-long-arrow-left::before { - content: "\f177"; } - -.fa-arrow-pointer::before { - content: "\f245"; } - -.fa-mouse-pointer::before { - content: "\f245"; } - -.fa-arrow-right::before { - content: "\f061"; } - -.fa-arrow-right-arrow-left::before { - content: "\f0ec"; } - -.fa-exchange::before { - content: "\f0ec"; } - -.fa-arrow-right-from-bracket::before { - content: "\f08b"; } - -.fa-sign-out::before { - content: "\f08b"; } - -.fa-arrow-right-long::before { - content: "\f178"; } - -.fa-long-arrow-right::before { - content: "\f178"; } - -.fa-arrow-right-to-bracket::before { - content: "\f090"; } - -.fa-sign-in::before { - content: "\f090"; } - -.fa-arrow-right-to-city::before { - content: "\e4b3"; } - -.fa-arrow-rotate-left::before { - content: "\f0e2"; } - -.fa-arrow-left-rotate::before { - content: "\f0e2"; } - -.fa-arrow-rotate-back::before { - content: "\f0e2"; } - -.fa-arrow-rotate-backward::before { - content: "\f0e2"; } - -.fa-undo::before { - content: "\f0e2"; } - -.fa-arrow-rotate-right::before { - content: "\f01e"; } - -.fa-arrow-right-rotate::before { - content: "\f01e"; } - -.fa-arrow-rotate-forward::before { - content: "\f01e"; } - -.fa-redo::before { - content: "\f01e"; } - -.fa-arrow-trend-down::before { - content: "\e097"; } - -.fa-arrow-trend-up::before { - content: "\e098"; } - -.fa-arrow-turn-down::before { - content: "\f149"; } - -.fa-level-down::before { - content: "\f149"; } - -.fa-arrow-turn-up::before { - content: "\f148"; } - -.fa-level-up::before { - content: "\f148"; } - -.fa-arrow-up::before { - content: "\f062"; } - -.fa-arrow-up-1-9::before { - content: "\f163"; } - -.fa-sort-numeric-up::before { - content: "\f163"; } - -.fa-arrow-up-9-1::before { - content: "\f887"; } - -.fa-sort-numeric-up-alt::before { - content: "\f887"; } - -.fa-arrow-up-a-z::before { - content: "\f15e"; } - -.fa-sort-alpha-up::before { - content: "\f15e"; } - -.fa-arrow-up-from-bracket::before { - content: "\e09a"; } - -.fa-arrow-up-from-ground-water::before { - content: "\e4b5"; } - -.fa-arrow-up-from-water-pump::before { - content: "\e4b6"; } - -.fa-arrow-up-long::before { - content: "\f176"; } - -.fa-long-arrow-up::before { - content: "\f176"; } - -.fa-arrow-up-right-dots::before { - content: "\e4b7"; } - -.fa-arrow-up-right-from-square::before { - content: "\f08e"; } - -.fa-external-link::before { - content: "\f08e"; } - -.fa-arrow-up-short-wide::before { - content: "\f885"; } - -.fa-sort-amount-up-alt::before { - content: "\f885"; } - -.fa-arrow-up-wide-short::before { - content: "\f161"; } - -.fa-sort-amount-up::before { - content: "\f161"; } - -.fa-arrow-up-z-a::before { - content: "\f882"; } - -.fa-sort-alpha-up-alt::before { - content: "\f882"; } - -.fa-arrows-down-to-line::before { - content: "\e4b8"; } - -.fa-arrows-down-to-people::before { - content: "\e4b9"; } - -.fa-arrows-left-right::before { - content: "\f07e"; } - -.fa-arrows-h::before { - content: "\f07e"; } - -.fa-arrows-left-right-to-line::before { - content: "\e4ba"; } - -.fa-arrows-rotate::before { - content: "\f021"; } - -.fa-refresh::before { - content: "\f021"; } - -.fa-sync::before { - content: "\f021"; } - -.fa-arrows-spin::before { - content: "\e4bb"; } - -.fa-arrows-split-up-and-left::before { - content: "\e4bc"; } - -.fa-arrows-to-circle::before { - content: "\e4bd"; } - -.fa-arrows-to-dot::before { - content: "\e4be"; } - -.fa-arrows-to-eye::before { - content: "\e4bf"; } - -.fa-arrows-turn-right::before { - content: "\e4c0"; } - -.fa-arrows-turn-to-dots::before { - content: "\e4c1"; } - -.fa-arrows-up-down::before { - content: "\f07d"; } - -.fa-arrows-v::before { - content: "\f07d"; } - -.fa-arrows-up-down-left-right::before { - content: "\f047"; } - -.fa-arrows::before { - content: "\f047"; } - -.fa-arrows-up-to-line::before { - content: "\e4c2"; } - -.fa-asterisk::before { - content: "\2a"; } - -.fa-at::before { - content: "\40"; } - -.fa-atom::before { - content: "\f5d2"; } - -.fa-audio-description::before { - content: "\f29e"; } - -.fa-austral-sign::before { - content: "\e0a9"; } - -.fa-award::before { - content: "\f559"; } - -.fa-b::before { - content: "\42"; } - -.fa-baby::before { - content: "\f77c"; } - -.fa-baby-carriage::before { - content: "\f77d"; } - -.fa-carriage-baby::before { - content: "\f77d"; } - -.fa-backward::before { - content: "\f04a"; } - -.fa-backward-fast::before { - content: "\f049"; } - -.fa-fast-backward::before { - content: "\f049"; } - -.fa-backward-step::before { - content: "\f048"; } - -.fa-step-backward::before { - content: "\f048"; } - -.fa-bacon::before { - content: "\f7e5"; } - -.fa-bacteria::before { - content: "\e059"; } - -.fa-bacterium::before { - content: "\e05a"; } - -.fa-bag-shopping::before { - content: "\f290"; } - -.fa-shopping-bag::before { - content: "\f290"; } - -.fa-bahai::before { - content: "\f666"; } - -.fa-baht-sign::before { - content: "\e0ac"; } - -.fa-ban::before { - content: "\f05e"; } - -.fa-cancel::before { - content: "\f05e"; } - -.fa-ban-smoking::before { - content: "\f54d"; } - -.fa-smoking-ban::before { - content: "\f54d"; } - -.fa-bandage::before { - content: "\f462"; } - -.fa-band-aid::before { - content: "\f462"; } - -.fa-barcode::before { - content: "\f02a"; } - -.fa-bars::before { - content: "\f0c9"; } - -.fa-navicon::before { - content: "\f0c9"; } - -.fa-bars-progress::before { - content: "\f828"; } - -.fa-tasks-alt::before { - content: "\f828"; } - -.fa-bars-staggered::before { - content: "\f550"; } - -.fa-reorder::before { - content: "\f550"; } - -.fa-stream::before { - content: "\f550"; } - -.fa-baseball::before { - content: "\f433"; } - -.fa-baseball-ball::before { - content: "\f433"; } - -.fa-baseball-bat-ball::before { - content: "\f432"; } - -.fa-basket-shopping::before { - content: "\f291"; } - -.fa-shopping-basket::before { - content: "\f291"; } - -.fa-basketball::before { - content: "\f434"; } - -.fa-basketball-ball::before { - content: "\f434"; } - -.fa-bath::before { - content: "\f2cd"; } - -.fa-bathtub::before { - content: "\f2cd"; } - -.fa-battery-empty::before { - content: "\f244"; } - -.fa-battery-0::before { - content: "\f244"; } - -.fa-battery-full::before { - content: "\f240"; } - -.fa-battery::before { - content: "\f240"; } - -.fa-battery-5::before { - content: "\f240"; } - -.fa-battery-half::before { - content: "\f242"; } - -.fa-battery-3::before { - content: "\f242"; } - -.fa-battery-quarter::before { - content: "\f243"; } - -.fa-battery-2::before { - content: "\f243"; } - -.fa-battery-three-quarters::before { - content: "\f241"; } - -.fa-battery-4::before { - content: "\f241"; } - -.fa-bed::before { - content: "\f236"; } - -.fa-bed-pulse::before { - content: "\f487"; } - -.fa-procedures::before { - content: "\f487"; } - -.fa-beer-mug-empty::before { - content: "\f0fc"; } - -.fa-beer::before { - content: "\f0fc"; } - -.fa-bell::before { - content: "\f0f3"; } - -.fa-bell-concierge::before { - content: "\f562"; } - -.fa-concierge-bell::before { - content: "\f562"; } - -.fa-bell-slash::before { - content: "\f1f6"; } - -.fa-bezier-curve::before { - content: "\f55b"; } - -.fa-bicycle::before { - content: "\f206"; } - -.fa-binoculars::before { - content: "\f1e5"; } - -.fa-biohazard::before { - content: "\f780"; } - -.fa-bitcoin-sign::before { - content: "\e0b4"; } - -.fa-blender::before { - content: "\f517"; } - -.fa-blender-phone::before { - content: "\f6b6"; } - -.fa-blog::before { - content: "\f781"; } - -.fa-bold::before { - content: "\f032"; } - -.fa-bolt::before { - content: "\f0e7"; } - -.fa-zap::before { - content: "\f0e7"; } - -.fa-bolt-lightning::before { - content: "\e0b7"; } - -.fa-bomb::before { - content: "\f1e2"; } - -.fa-bone::before { - content: "\f5d7"; } - -.fa-bong::before { - content: "\f55c"; } - -.fa-book::before { - content: "\f02d"; } - -.fa-book-atlas::before { - content: "\f558"; } - -.fa-atlas::before { - content: "\f558"; } - -.fa-book-bible::before { - content: "\f647"; } - -.fa-bible::before { - content: "\f647"; } - -.fa-book-bookmark::before { - content: "\e0bb"; } - -.fa-book-journal-whills::before { - content: "\f66a"; } - -.fa-journal-whills::before { - content: "\f66a"; } - -.fa-book-medical::before { - content: "\f7e6"; } - -.fa-book-open::before { - content: "\f518"; } - -.fa-book-open-reader::before { - content: "\f5da"; } - -.fa-book-reader::before { - content: "\f5da"; } - -.fa-book-quran::before { - content: "\f687"; } - -.fa-quran::before { - content: "\f687"; } - -.fa-book-skull::before { - content: "\f6b7"; } - -.fa-book-dead::before { - content: "\f6b7"; } - -.fa-bookmark::before { - content: "\f02e"; } - -.fa-border-all::before { - content: "\f84c"; } - -.fa-border-none::before { - content: "\f850"; } - -.fa-border-top-left::before { - content: "\f853"; } - -.fa-border-style::before { - content: "\f853"; } - -.fa-bore-hole::before { - content: "\e4c3"; } - -.fa-bottle-droplet::before { - content: "\e4c4"; } - -.fa-bottle-water::before { - content: "\e4c5"; } - -.fa-bowl-food::before { - content: "\e4c6"; } - -.fa-bowl-rice::before { - content: "\e2eb"; } - -.fa-bowling-ball::before { - content: "\f436"; } - -.fa-box::before { - content: "\f466"; } - -.fa-box-archive::before { - content: "\f187"; } - -.fa-archive::before { - content: "\f187"; } - -.fa-box-open::before { - content: "\f49e"; } - -.fa-box-tissue::before { - content: "\e05b"; } - -.fa-boxes-packing::before { - content: "\e4c7"; } - -.fa-boxes-stacked::before { - content: "\f468"; } - -.fa-boxes::before { - content: "\f468"; } - -.fa-boxes-alt::before { - content: "\f468"; } - -.fa-braille::before { - content: "\f2a1"; } - -.fa-brain::before { - content: "\f5dc"; } - -.fa-brazilian-real-sign::before { - content: "\e46c"; } - -.fa-bread-slice::before { - content: "\f7ec"; } - -.fa-bridge::before { - content: "\e4c8"; } - -.fa-bridge-circle-check::before { - content: "\e4c9"; } - -.fa-bridge-circle-exclamation::before { - content: "\e4ca"; } - -.fa-bridge-circle-xmark::before { - content: "\e4cb"; } - -.fa-bridge-lock::before { - content: "\e4cc"; } - -.fa-bridge-water::before { - content: "\e4ce"; } - -.fa-briefcase::before { - content: "\f0b1"; } - -.fa-briefcase-medical::before { - content: "\f469"; } - -.fa-broom::before { - content: "\f51a"; } - -.fa-broom-ball::before { - content: "\f458"; } - -.fa-quidditch::before { - content: "\f458"; } - -.fa-quidditch-broom-ball::before { - content: "\f458"; } - -.fa-brush::before { - content: "\f55d"; } - -.fa-bucket::before { - content: "\e4cf"; } - -.fa-bug::before { - content: "\f188"; } - -.fa-bug-slash::before { - content: "\e490"; } - -.fa-bugs::before { - content: "\e4d0"; } - -.fa-building::before { - content: "\f1ad"; } - -.fa-building-circle-arrow-right::before { - content: "\e4d1"; } - -.fa-building-circle-check::before { - content: "\e4d2"; } - -.fa-building-circle-exclamation::before { - content: "\e4d3"; } - -.fa-building-circle-xmark::before { - content: "\e4d4"; } - -.fa-building-columns::before { - content: "\f19c"; } - -.fa-bank::before { - content: "\f19c"; } - -.fa-institution::before { - content: "\f19c"; } - -.fa-museum::before { - content: "\f19c"; } - -.fa-university::before { - content: "\f19c"; } - -.fa-building-flag::before { - content: "\e4d5"; } - -.fa-building-lock::before { - content: "\e4d6"; } - -.fa-building-ngo::before { - content: "\e4d7"; } - -.fa-building-shield::before { - content: "\e4d8"; } - -.fa-building-un::before { - content: "\e4d9"; } - -.fa-building-user::before { - content: "\e4da"; } - -.fa-building-wheat::before { - content: "\e4db"; } - -.fa-bullhorn::before { - content: "\f0a1"; } - -.fa-bullseye::before { - content: "\f140"; } - -.fa-burger::before { - content: "\f805"; } - -.fa-hamburger::before { - content: "\f805"; } - -.fa-burst::before { - content: "\e4dc"; } - -.fa-bus::before { - content: "\f207"; } - -.fa-bus-simple::before { - content: "\f55e"; } - -.fa-bus-alt::before { - content: "\f55e"; } - -.fa-business-time::before { - content: "\f64a"; } - -.fa-briefcase-clock::before { - content: "\f64a"; } - -.fa-c::before { - content: "\43"; } - -.fa-cake-candles::before { - content: "\f1fd"; } - -.fa-birthday-cake::before { - content: "\f1fd"; } - -.fa-cake::before { - content: "\f1fd"; } - -.fa-calculator::before { - content: "\f1ec"; } - -.fa-calendar::before { - content: "\f133"; } - -.fa-calendar-check::before { - content: "\f274"; } - -.fa-calendar-day::before { - content: "\f783"; } - -.fa-calendar-days::before { - content: "\f073"; } - -.fa-calendar-alt::before { - content: "\f073"; } - -.fa-calendar-minus::before { - content: "\f272"; } - -.fa-calendar-plus::before { - content: "\f271"; } - -.fa-calendar-week::before { - content: "\f784"; } - -.fa-calendar-xmark::before { - content: "\f273"; } - -.fa-calendar-times::before { - content: "\f273"; } - -.fa-camera::before { - content: "\f030"; } - -.fa-camera-alt::before { - content: "\f030"; } - -.fa-camera-retro::before { - content: "\f083"; } - -.fa-camera-rotate::before { - content: "\e0d8"; } - -.fa-campground::before { - content: "\f6bb"; } - -.fa-candy-cane::before { - content: "\f786"; } - -.fa-cannabis::before { - content: "\f55f"; } - -.fa-capsules::before { - content: "\f46b"; } - -.fa-car::before { - content: "\f1b9"; } - -.fa-automobile::before { - content: "\f1b9"; } - -.fa-car-battery::before { - content: "\f5df"; } - -.fa-battery-car::before { - content: "\f5df"; } - -.fa-car-burst::before { - content: "\f5e1"; } - -.fa-car-crash::before { - content: "\f5e1"; } - -.fa-car-on::before { - content: "\e4dd"; } - -.fa-car-rear::before { - content: "\f5de"; } - -.fa-car-alt::before { - content: "\f5de"; } - -.fa-car-side::before { - content: "\f5e4"; } - -.fa-car-tunnel::before { - content: "\e4de"; } - -.fa-caravan::before { - content: "\f8ff"; } - -.fa-caret-down::before { - content: "\f0d7"; } - -.fa-caret-left::before { - content: "\f0d9"; } - -.fa-caret-right::before { - content: "\f0da"; } - -.fa-caret-up::before { - content: "\f0d8"; } - -.fa-carrot::before { - content: "\f787"; } - -.fa-cart-arrow-down::before { - content: "\f218"; } - -.fa-cart-flatbed::before { - content: "\f474"; } - -.fa-dolly-flatbed::before { - content: "\f474"; } - -.fa-cart-flatbed-suitcase::before { - content: "\f59d"; } - -.fa-luggage-cart::before { - content: "\f59d"; } - -.fa-cart-plus::before { - content: "\f217"; } - -.fa-cart-shopping::before { - content: "\f07a"; } - -.fa-shopping-cart::before { - content: "\f07a"; } - -.fa-cash-register::before { - content: "\f788"; } - -.fa-cat::before { - content: "\f6be"; } - -.fa-cedi-sign::before { - content: "\e0df"; } - -.fa-cent-sign::before { - content: "\e3f5"; } - -.fa-certificate::before { - content: "\f0a3"; } - -.fa-chair::before { - content: "\f6c0"; } - -.fa-chalkboard::before { - content: "\f51b"; } - -.fa-blackboard::before { - content: "\f51b"; } - -.fa-chalkboard-user::before { - content: "\f51c"; } - -.fa-chalkboard-teacher::before { - content: "\f51c"; } - -.fa-champagne-glasses::before { - content: "\f79f"; } - -.fa-glass-cheers::before { - content: "\f79f"; } - -.fa-charging-station::before { - content: "\f5e7"; } - -.fa-chart-area::before { - content: "\f1fe"; } - -.fa-area-chart::before { - content: "\f1fe"; } - -.fa-chart-bar::before { - content: "\f080"; } - -.fa-bar-chart::before { - content: "\f080"; } - -.fa-chart-column::before { - content: "\e0e3"; } - -.fa-chart-gantt::before { - content: "\e0e4"; } - -.fa-chart-line::before { - content: "\f201"; } - -.fa-line-chart::before { - content: "\f201"; } - -.fa-chart-pie::before { - content: "\f200"; } - -.fa-pie-chart::before { - content: "\f200"; } - -.fa-chart-simple::before { - content: "\e473"; } - -.fa-check::before { - content: "\f00c"; } - -.fa-check-double::before { - content: "\f560"; } - -.fa-check-to-slot::before { - content: "\f772"; } - -.fa-vote-yea::before { - content: "\f772"; } - -.fa-cheese::before { - content: "\f7ef"; } - -.fa-chess::before { - content: "\f439"; } - -.fa-chess-bishop::before { - content: "\f43a"; } - -.fa-chess-board::before { - content: "\f43c"; } - -.fa-chess-king::before { - content: "\f43f"; } - -.fa-chess-knight::before { - content: "\f441"; } - -.fa-chess-pawn::before { - content: "\f443"; } - -.fa-chess-queen::before { - content: "\f445"; } - -.fa-chess-rook::before { - content: "\f447"; } - -.fa-chevron-down::before { - content: "\f078"; } - -.fa-chevron-left::before { - content: "\f053"; } - -.fa-chevron-right::before { - content: "\f054"; } - -.fa-chevron-up::before { - content: "\f077"; } - -.fa-child::before { - content: "\f1ae"; } - -.fa-child-dress::before { - content: "\e59c"; } - -.fa-child-reaching::before { - content: "\e59d"; } - -.fa-child-rifle::before { - content: "\e4e0"; } - -.fa-children::before { - content: "\e4e1"; } - -.fa-church::before { - content: "\f51d"; } - -.fa-circle::before { - content: "\f111"; } - -.fa-circle-arrow-down::before { - content: "\f0ab"; } - -.fa-arrow-circle-down::before { - content: "\f0ab"; } - -.fa-circle-arrow-left::before { - content: "\f0a8"; } - -.fa-arrow-circle-left::before { - content: "\f0a8"; } - -.fa-circle-arrow-right::before { - content: "\f0a9"; } - -.fa-arrow-circle-right::before { - content: "\f0a9"; } - -.fa-circle-arrow-up::before { - content: "\f0aa"; } - -.fa-arrow-circle-up::before { - content: "\f0aa"; } - -.fa-circle-check::before { - content: "\f058"; } - -.fa-check-circle::before { - content: "\f058"; } - -.fa-circle-chevron-down::before { - content: "\f13a"; } - -.fa-chevron-circle-down::before { - content: "\f13a"; } - -.fa-circle-chevron-left::before { - content: "\f137"; } - -.fa-chevron-circle-left::before { - content: "\f137"; } - -.fa-circle-chevron-right::before { - content: "\f138"; } - -.fa-chevron-circle-right::before { - content: "\f138"; } - -.fa-circle-chevron-up::before { - content: "\f139"; } - -.fa-chevron-circle-up::before { - content: "\f139"; } - -.fa-circle-dollar-to-slot::before { - content: "\f4b9"; } - -.fa-donate::before { - content: "\f4b9"; } - -.fa-circle-dot::before { - content: "\f192"; } - -.fa-dot-circle::before { - content: "\f192"; } - -.fa-circle-down::before { - content: "\f358"; } - -.fa-arrow-alt-circle-down::before { - content: "\f358"; } - -.fa-circle-exclamation::before { - content: "\f06a"; } - -.fa-exclamation-circle::before { - content: "\f06a"; } - -.fa-circle-h::before { - content: "\f47e"; } - -.fa-hospital-symbol::before { - content: "\f47e"; } - -.fa-circle-half-stroke::before { - content: "\f042"; } - -.fa-adjust::before { - content: "\f042"; } - -.fa-circle-info::before { - content: "\f05a"; } - -.fa-info-circle::before { - content: "\f05a"; } - -.fa-circle-left::before { - content: "\f359"; } - -.fa-arrow-alt-circle-left::before { - content: "\f359"; } - -.fa-circle-minus::before { - content: "\f056"; } - -.fa-minus-circle::before { - content: "\f056"; } - -.fa-circle-nodes::before { - content: "\e4e2"; } - -.fa-circle-notch::before { - content: "\f1ce"; } - -.fa-circle-pause::before { - content: "\f28b"; } - -.fa-pause-circle::before { - content: "\f28b"; } - -.fa-circle-play::before { - content: "\f144"; } - -.fa-play-circle::before { - content: "\f144"; } - -.fa-circle-plus::before { - content: "\f055"; } - -.fa-plus-circle::before { - content: "\f055"; } - -.fa-circle-question::before { - content: "\f059"; } - -.fa-question-circle::before { - content: "\f059"; } - -.fa-circle-radiation::before { - content: "\f7ba"; } - -.fa-radiation-alt::before { - content: "\f7ba"; } - -.fa-circle-right::before { - content: "\f35a"; } - -.fa-arrow-alt-circle-right::before { - content: "\f35a"; } - -.fa-circle-stop::before { - content: "\f28d"; } - -.fa-stop-circle::before { - content: "\f28d"; } - -.fa-circle-up::before { - content: "\f35b"; } - -.fa-arrow-alt-circle-up::before { - content: "\f35b"; } - -.fa-circle-user::before { - content: "\f2bd"; } - -.fa-user-circle::before { - content: "\f2bd"; } - -.fa-circle-xmark::before { - content: "\f057"; } - -.fa-times-circle::before { - content: "\f057"; } - -.fa-xmark-circle::before { - content: "\f057"; } - -.fa-city::before { - content: "\f64f"; } - -.fa-clapperboard::before { - content: "\e131"; } - -.fa-clipboard::before { - content: "\f328"; } - -.fa-clipboard-check::before { - content: "\f46c"; } - -.fa-clipboard-list::before { - content: "\f46d"; } - -.fa-clipboard-question::before { - content: "\e4e3"; } - -.fa-clipboard-user::before { - content: "\f7f3"; } - -.fa-clock::before { - content: "\f017"; } - -.fa-clock-four::before { - content: "\f017"; } - -.fa-clock-rotate-left::before { - content: "\f1da"; } - -.fa-history::before { - content: "\f1da"; } - -.fa-clone::before { - content: "\f24d"; } - -.fa-closed-captioning::before { - content: "\f20a"; } - -.fa-cloud::before { - content: "\f0c2"; } - -.fa-cloud-arrow-down::before { - content: "\f0ed"; } - -.fa-cloud-download::before { - content: "\f0ed"; } - -.fa-cloud-download-alt::before { - content: "\f0ed"; } - -.fa-cloud-arrow-up::before { - content: "\f0ee"; } - -.fa-cloud-upload::before { - content: "\f0ee"; } - -.fa-cloud-upload-alt::before { - content: "\f0ee"; } - -.fa-cloud-bolt::before { - content: "\f76c"; } - -.fa-thunderstorm::before { - content: "\f76c"; } - -.fa-cloud-meatball::before { - content: "\f73b"; } - -.fa-cloud-moon::before { - content: "\f6c3"; } - -.fa-cloud-moon-rain::before { - content: "\f73c"; } - -.fa-cloud-rain::before { - content: "\f73d"; } - -.fa-cloud-showers-heavy::before { - content: "\f740"; } - -.fa-cloud-showers-water::before { - content: "\e4e4"; } - -.fa-cloud-sun::before { - content: "\f6c4"; } - -.fa-cloud-sun-rain::before { - content: "\f743"; } - -.fa-clover::before { - content: "\e139"; } - -.fa-code::before { - content: "\f121"; } - -.fa-code-branch::before { - content: "\f126"; } - -.fa-code-commit::before { - content: "\f386"; } - -.fa-code-compare::before { - content: "\e13a"; } - -.fa-code-fork::before { - content: "\e13b"; } - -.fa-code-merge::before { - content: "\f387"; } - -.fa-code-pull-request::before { - content: "\e13c"; } - -.fa-coins::before { - content: "\f51e"; } - -.fa-colon-sign::before { - content: "\e140"; } - -.fa-comment::before { - content: "\f075"; } - -.fa-comment-dollar::before { - content: "\f651"; } - -.fa-comment-dots::before { - content: "\f4ad"; } - -.fa-commenting::before { - content: "\f4ad"; } - -.fa-comment-medical::before { - content: "\f7f5"; } - -.fa-comment-slash::before { - content: "\f4b3"; } - -.fa-comment-sms::before { - content: "\f7cd"; } - -.fa-sms::before { - content: "\f7cd"; } - -.fa-comments::before { - content: "\f086"; } - -.fa-comments-dollar::before { - content: "\f653"; } - -.fa-compact-disc::before { - content: "\f51f"; } - -.fa-compass::before { - content: "\f14e"; } - -.fa-compass-drafting::before { - content: "\f568"; } - -.fa-drafting-compass::before { - content: "\f568"; } - -.fa-compress::before { - content: "\f066"; } - -.fa-computer::before { - content: "\e4e5"; } - -.fa-computer-mouse::before { - content: "\f8cc"; } - -.fa-mouse::before { - content: "\f8cc"; } - -.fa-cookie::before { - content: "\f563"; } - -.fa-cookie-bite::before { - content: "\f564"; } - -.fa-copy::before { - content: "\f0c5"; } - -.fa-copyright::before { - content: "\f1f9"; } - -.fa-couch::before { - content: "\f4b8"; } - -.fa-cow::before { - content: "\f6c8"; } - -.fa-credit-card::before { - content: "\f09d"; } - -.fa-credit-card-alt::before { - content: "\f09d"; } - -.fa-crop::before { - content: "\f125"; } - -.fa-crop-simple::before { - content: "\f565"; } - -.fa-crop-alt::before { - content: "\f565"; } - -.fa-cross::before { - content: "\f654"; } - -.fa-crosshairs::before { - content: "\f05b"; } - -.fa-crow::before { - content: "\f520"; } - -.fa-crown::before { - content: "\f521"; } - -.fa-crutch::before { - content: "\f7f7"; } - -.fa-cruzeiro-sign::before { - content: "\e152"; } - -.fa-cube::before { - content: "\f1b2"; } - -.fa-cubes::before { - content: "\f1b3"; } - -.fa-cubes-stacked::before { - content: "\e4e6"; } - -.fa-d::before { - content: "\44"; } - -.fa-database::before { - content: "\f1c0"; } - -.fa-delete-left::before { - content: "\f55a"; } - -.fa-backspace::before { - content: "\f55a"; } - -.fa-democrat::before { - content: "\f747"; } - -.fa-desktop::before { - content: "\f390"; } - -.fa-desktop-alt::before { - content: "\f390"; } - -.fa-dharmachakra::before { - content: "\f655"; } - -.fa-diagram-next::before { - content: "\e476"; } - -.fa-diagram-predecessor::before { - content: "\e477"; } - -.fa-diagram-project::before { - content: "\f542"; } - -.fa-project-diagram::before { - content: "\f542"; } - -.fa-diagram-successor::before { - content: "\e47a"; } - -.fa-diamond::before { - content: "\f219"; } - -.fa-diamond-turn-right::before { - content: "\f5eb"; } - -.fa-directions::before { - content: "\f5eb"; } - -.fa-dice::before { - content: "\f522"; } - -.fa-dice-d20::before { - content: "\f6cf"; } - -.fa-dice-d6::before { - content: "\f6d1"; } - -.fa-dice-five::before { - content: "\f523"; } - -.fa-dice-four::before { - content: "\f524"; } - -.fa-dice-one::before { - content: "\f525"; } - -.fa-dice-six::before { - content: "\f526"; } - -.fa-dice-three::before { - content: "\f527"; } - -.fa-dice-two::before { - content: "\f528"; } - -.fa-disease::before { - content: "\f7fa"; } - -.fa-display::before { - content: "\e163"; } - -.fa-divide::before { - content: "\f529"; } - -.fa-dna::before { - content: "\f471"; } - -.fa-dog::before { - content: "\f6d3"; } - -.fa-dollar-sign::before { - content: "\24"; } - -.fa-dollar::before { - content: "\24"; } - -.fa-usd::before { - content: "\24"; } - -.fa-dolly::before { - content: "\f472"; } - -.fa-dolly-box::before { - content: "\f472"; } - -.fa-dong-sign::before { - content: "\e169"; } - -.fa-door-closed::before { - content: "\f52a"; } - -.fa-door-open::before { - content: "\f52b"; } - -.fa-dove::before { - content: "\f4ba"; } - -.fa-down-left-and-up-right-to-center::before { - content: "\f422"; } - -.fa-compress-alt::before { - content: "\f422"; } - -.fa-down-long::before { - content: "\f309"; } - -.fa-long-arrow-alt-down::before { - content: "\f309"; } - -.fa-download::before { - content: "\f019"; } - -.fa-dragon::before { - content: "\f6d5"; } - -.fa-draw-polygon::before { - content: "\f5ee"; } - -.fa-droplet::before { - content: "\f043"; } - -.fa-tint::before { - content: "\f043"; } - -.fa-droplet-slash::before { - content: "\f5c7"; } - -.fa-tint-slash::before { - content: "\f5c7"; } - -.fa-drum::before { - content: "\f569"; } - -.fa-drum-steelpan::before { - content: "\f56a"; } - -.fa-drumstick-bite::before { - content: "\f6d7"; } - -.fa-dumbbell::before { - content: "\f44b"; } - -.fa-dumpster::before { - content: "\f793"; } - -.fa-dumpster-fire::before { - content: "\f794"; } - -.fa-dungeon::before { - content: "\f6d9"; } - -.fa-e::before { - content: "\45"; } - -.fa-ear-deaf::before { - content: "\f2a4"; } - -.fa-deaf::before { - content: "\f2a4"; } - -.fa-deafness::before { - content: "\f2a4"; } - -.fa-hard-of-hearing::before { - content: "\f2a4"; } - -.fa-ear-listen::before { - content: "\f2a2"; } - -.fa-assistive-listening-systems::before { - content: "\f2a2"; } - -.fa-earth-africa::before { - content: "\f57c"; } - -.fa-globe-africa::before { - content: "\f57c"; } - -.fa-earth-americas::before { - content: "\f57d"; } - -.fa-earth::before { - content: "\f57d"; } - -.fa-earth-america::before { - content: "\f57d"; } - -.fa-globe-americas::before { - content: "\f57d"; } - -.fa-earth-asia::before { - content: "\f57e"; } - -.fa-globe-asia::before { - content: "\f57e"; } - -.fa-earth-europe::before { - content: "\f7a2"; } - -.fa-globe-europe::before { - content: "\f7a2"; } - -.fa-earth-oceania::before { - content: "\e47b"; } - -.fa-globe-oceania::before { - content: "\e47b"; } - -.fa-egg::before { - content: "\f7fb"; } - -.fa-eject::before { - content: "\f052"; } - -.fa-elevator::before { - content: "\e16d"; } - -.fa-ellipsis::before { - content: "\f141"; } - -.fa-ellipsis-h::before { - content: "\f141"; } - -.fa-ellipsis-vertical::before { - content: "\f142"; } - -.fa-ellipsis-v::before { - content: "\f142"; } - -.fa-envelope::before { - content: "\f0e0"; } - -.fa-envelope-circle-check::before { - content: "\e4e8"; } - -.fa-envelope-open::before { - content: "\f2b6"; } - -.fa-envelope-open-text::before { - content: "\f658"; } - -.fa-envelopes-bulk::before { - content: "\f674"; } - -.fa-mail-bulk::before { - content: "\f674"; } - -.fa-equals::before { - content: "\3d"; } - -.fa-eraser::before { - content: "\f12d"; } - -.fa-ethernet::before { - content: "\f796"; } - -.fa-euro-sign::before { - content: "\f153"; } - -.fa-eur::before { - content: "\f153"; } - -.fa-euro::before { - content: "\f153"; } - -.fa-exclamation::before { - content: "\21"; } - -.fa-expand::before { - content: "\f065"; } - -.fa-explosion::before { - content: "\e4e9"; } - -.fa-eye::before { - content: "\f06e"; } - -.fa-eye-dropper::before { - content: "\f1fb"; } - -.fa-eye-dropper-empty::before { - content: "\f1fb"; } - -.fa-eyedropper::before { - content: "\f1fb"; } - -.fa-eye-low-vision::before { - content: "\f2a8"; } - -.fa-low-vision::before { - content: "\f2a8"; } - -.fa-eye-slash::before { - content: "\f070"; } - -.fa-f::before { - content: "\46"; } - -.fa-face-angry::before { - content: "\f556"; } - -.fa-angry::before { - content: "\f556"; } - -.fa-face-dizzy::before { - content: "\f567"; } - -.fa-dizzy::before { - content: "\f567"; } - -.fa-face-flushed::before { - content: "\f579"; } - -.fa-flushed::before { - content: "\f579"; } - -.fa-face-frown::before { - content: "\f119"; } - -.fa-frown::before { - content: "\f119"; } - -.fa-face-frown-open::before { - content: "\f57a"; } - -.fa-frown-open::before { - content: "\f57a"; } - -.fa-face-grimace::before { - content: "\f57f"; } - -.fa-grimace::before { - content: "\f57f"; } - -.fa-face-grin::before { - content: "\f580"; } - -.fa-grin::before { - content: "\f580"; } - -.fa-face-grin-beam::before { - content: "\f582"; } - -.fa-grin-beam::before { - content: "\f582"; } - -.fa-face-grin-beam-sweat::before { - content: "\f583"; } - -.fa-grin-beam-sweat::before { - content: "\f583"; } - -.fa-face-grin-hearts::before { - content: "\f584"; } - -.fa-grin-hearts::before { - content: "\f584"; } - -.fa-face-grin-squint::before { - content: "\f585"; } - -.fa-grin-squint::before { - content: "\f585"; } - -.fa-face-grin-squint-tears::before { - content: "\f586"; } - -.fa-grin-squint-tears::before { - content: "\f586"; } - -.fa-face-grin-stars::before { - content: "\f587"; } - -.fa-grin-stars::before { - content: "\f587"; } - -.fa-face-grin-tears::before { - content: "\f588"; } - -.fa-grin-tears::before { - content: "\f588"; } - -.fa-face-grin-tongue::before { - content: "\f589"; } - -.fa-grin-tongue::before { - content: "\f589"; } - -.fa-face-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-grin-tongue-squint::before { - content: "\f58a"; } - -.fa-face-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-grin-tongue-wink::before { - content: "\f58b"; } - -.fa-face-grin-wide::before { - content: "\f581"; } - -.fa-grin-alt::before { - content: "\f581"; } - -.fa-face-grin-wink::before { - content: "\f58c"; } - -.fa-grin-wink::before { - content: "\f58c"; } - -.fa-face-kiss::before { - content: "\f596"; } - -.fa-kiss::before { - content: "\f596"; } - -.fa-face-kiss-beam::before { - content: "\f597"; } - -.fa-kiss-beam::before { - content: "\f597"; } - -.fa-face-kiss-wink-heart::before { - content: "\f598"; } - -.fa-kiss-wink-heart::before { - content: "\f598"; } - -.fa-face-laugh::before { - content: "\f599"; } - -.fa-laugh::before { - content: "\f599"; } - -.fa-face-laugh-beam::before { - content: "\f59a"; } - -.fa-laugh-beam::before { - content: "\f59a"; } - -.fa-face-laugh-squint::before { - content: "\f59b"; } - -.fa-laugh-squint::before { - content: "\f59b"; } - -.fa-face-laugh-wink::before { - content: "\f59c"; } - -.fa-laugh-wink::before { - content: "\f59c"; } - -.fa-face-meh::before { - content: "\f11a"; } - -.fa-meh::before { - content: "\f11a"; } - -.fa-face-meh-blank::before { - content: "\f5a4"; } - -.fa-meh-blank::before { - content: "\f5a4"; } - -.fa-face-rolling-eyes::before { - content: "\f5a5"; } - -.fa-meh-rolling-eyes::before { - content: "\f5a5"; } - -.fa-face-sad-cry::before { - content: "\f5b3"; } - -.fa-sad-cry::before { - content: "\f5b3"; } - -.fa-face-sad-tear::before { - content: "\f5b4"; } - -.fa-sad-tear::before { - content: "\f5b4"; } - -.fa-face-smile::before { - content: "\f118"; } - -.fa-smile::before { - content: "\f118"; } - -.fa-face-smile-beam::before { - content: "\f5b8"; } - -.fa-smile-beam::before { - content: "\f5b8"; } - -.fa-face-smile-wink::before { - content: "\f4da"; } - -.fa-smile-wink::before { - content: "\f4da"; } - -.fa-face-surprise::before { - content: "\f5c2"; } - -.fa-surprise::before { - content: "\f5c2"; } - -.fa-face-tired::before { - content: "\f5c8"; } - -.fa-tired::before { - content: "\f5c8"; } - -.fa-fan::before { - content: "\f863"; } - -.fa-faucet::before { - content: "\e005"; } - -.fa-faucet-drip::before { - content: "\e006"; } - -.fa-fax::before { - content: "\f1ac"; } - -.fa-feather::before { - content: "\f52d"; } - -.fa-feather-pointed::before { - content: "\f56b"; } - -.fa-feather-alt::before { - content: "\f56b"; } - -.fa-ferry::before { - content: "\e4ea"; } - -.fa-file::before { - content: "\f15b"; } - -.fa-file-arrow-down::before { - content: "\f56d"; } - -.fa-file-download::before { - content: "\f56d"; } - -.fa-file-arrow-up::before { - content: "\f574"; } - -.fa-file-upload::before { - content: "\f574"; } - -.fa-file-audio::before { - content: "\f1c7"; } - -.fa-file-circle-check::before { - content: "\e493"; } - -.fa-file-circle-exclamation::before { - content: "\e4eb"; } - -.fa-file-circle-minus::before { - content: "\e4ed"; } - -.fa-file-circle-plus::before { - content: "\e4ee"; } - -.fa-file-circle-question::before { - content: "\e4ef"; } - -.fa-file-circle-xmark::before { - content: "\e494"; } - -.fa-file-code::before { - content: "\f1c9"; } - -.fa-file-contract::before { - content: "\f56c"; } - -.fa-file-csv::before { - content: "\f6dd"; } - -.fa-file-excel::before { - content: "\f1c3"; } - -.fa-file-export::before { - content: "\f56e"; } - -.fa-arrow-right-from-file::before { - content: "\f56e"; } - -.fa-file-image::before { - content: "\f1c5"; } - -.fa-file-import::before { - content: "\f56f"; } - -.fa-arrow-right-to-file::before { - content: "\f56f"; } - -.fa-file-invoice::before { - content: "\f570"; } - -.fa-file-invoice-dollar::before { - content: "\f571"; } - -.fa-file-lines::before { - content: "\f15c"; } - -.fa-file-alt::before { - content: "\f15c"; } - -.fa-file-text::before { - content: "\f15c"; } - -.fa-file-medical::before { - content: "\f477"; } - -.fa-file-pdf::before { - content: "\f1c1"; } - -.fa-file-pen::before { - content: "\f31c"; } - -.fa-file-edit::before { - content: "\f31c"; } - -.fa-file-powerpoint::before { - content: "\f1c4"; } - -.fa-file-prescription::before { - content: "\f572"; } - -.fa-file-shield::before { - content: "\e4f0"; } - -.fa-file-signature::before { - content: "\f573"; } - -.fa-file-video::before { - content: "\f1c8"; } - -.fa-file-waveform::before { - content: "\f478"; } - -.fa-file-medical-alt::before { - content: "\f478"; } - -.fa-file-word::before { - content: "\f1c2"; } - -.fa-file-zipper::before { - content: "\f1c6"; } - -.fa-file-archive::before { - content: "\f1c6"; } - -.fa-fill::before { - content: "\f575"; } - -.fa-fill-drip::before { - content: "\f576"; } - -.fa-film::before { - content: "\f008"; } - -.fa-filter::before { - content: "\f0b0"; } - -.fa-filter-circle-dollar::before { - content: "\f662"; } - -.fa-funnel-dollar::before { - content: "\f662"; } - -.fa-filter-circle-xmark::before { - content: "\e17b"; } - -.fa-fingerprint::before { - content: "\f577"; } - -.fa-fire::before { - content: "\f06d"; } - -.fa-fire-burner::before { - content: "\e4f1"; } - -.fa-fire-extinguisher::before { - content: "\f134"; } - -.fa-fire-flame-curved::before { - content: "\f7e4"; } - -.fa-fire-alt::before { - content: "\f7e4"; } - -.fa-fire-flame-simple::before { - content: "\f46a"; } - -.fa-burn::before { - content: "\f46a"; } - -.fa-fish::before { - content: "\f578"; } - -.fa-fish-fins::before { - content: "\e4f2"; } - -.fa-flag::before { - content: "\f024"; } - -.fa-flag-checkered::before { - content: "\f11e"; } - -.fa-flag-usa::before { - content: "\f74d"; } - -.fa-flask::before { - content: "\f0c3"; } - -.fa-flask-vial::before { - content: "\e4f3"; } - -.fa-floppy-disk::before { - content: "\f0c7"; } - -.fa-save::before { - content: "\f0c7"; } - -.fa-florin-sign::before { - content: "\e184"; } - -.fa-folder::before { - content: "\f07b"; } - -.fa-folder-blank::before { - content: "\f07b"; } - -.fa-folder-closed::before { - content: "\e185"; } - -.fa-folder-minus::before { - content: "\f65d"; } - -.fa-folder-open::before { - content: "\f07c"; } - -.fa-folder-plus::before { - content: "\f65e"; } - -.fa-folder-tree::before { - content: "\f802"; } - -.fa-font::before { - content: "\f031"; } - -.fa-football::before { - content: "\f44e"; } - -.fa-football-ball::before { - content: "\f44e"; } - -.fa-forward::before { - content: "\f04e"; } - -.fa-forward-fast::before { - content: "\f050"; } - -.fa-fast-forward::before { - content: "\f050"; } - -.fa-forward-step::before { - content: "\f051"; } - -.fa-step-forward::before { - content: "\f051"; } - -.fa-franc-sign::before { - content: "\e18f"; } - -.fa-frog::before { - content: "\f52e"; } - -.fa-futbol::before { - content: "\f1e3"; } - -.fa-futbol-ball::before { - content: "\f1e3"; } - -.fa-soccer-ball::before { - content: "\f1e3"; } - -.fa-g::before { - content: "\47"; } - -.fa-gamepad::before { - content: "\f11b"; } - -.fa-gas-pump::before { - content: "\f52f"; } - -.fa-gauge::before { - content: "\f624"; } - -.fa-dashboard::before { - content: "\f624"; } - -.fa-gauge-med::before { - content: "\f624"; } - -.fa-tachometer-alt-average::before { - content: "\f624"; } - -.fa-gauge-high::before { - content: "\f625"; } - -.fa-tachometer-alt::before { - content: "\f625"; } - -.fa-tachometer-alt-fast::before { - content: "\f625"; } - -.fa-gauge-simple::before { - content: "\f629"; } - -.fa-gauge-simple-med::before { - content: "\f629"; } - -.fa-tachometer-average::before { - content: "\f629"; } - -.fa-gauge-simple-high::before { - content: "\f62a"; } - -.fa-tachometer::before { - content: "\f62a"; } - -.fa-tachometer-fast::before { - content: "\f62a"; } - -.fa-gavel::before { - content: "\f0e3"; } - -.fa-legal::before { - content: "\f0e3"; } - -.fa-gear::before { - content: "\f013"; } - -.fa-cog::before { - content: "\f013"; } - -.fa-gears::before { - content: "\f085"; } - -.fa-cogs::before { - content: "\f085"; } - -.fa-gem::before { - content: "\f3a5"; } - -.fa-genderless::before { - content: "\f22d"; } - -.fa-ghost::before { - content: "\f6e2"; } - -.fa-gift::before { - content: "\f06b"; } - -.fa-gifts::before { - content: "\f79c"; } - -.fa-glass-water::before { - content: "\e4f4"; } - -.fa-glass-water-droplet::before { - content: "\e4f5"; } - -.fa-glasses::before { - content: "\f530"; } - -.fa-globe::before { - content: "\f0ac"; } - -.fa-golf-ball-tee::before { - content: "\f450"; } - -.fa-golf-ball::before { - content: "\f450"; } - -.fa-gopuram::before { - content: "\f664"; } - -.fa-graduation-cap::before { - content: "\f19d"; } - -.fa-mortar-board::before { - content: "\f19d"; } - -.fa-greater-than::before { - content: "\3e"; } - -.fa-greater-than-equal::before { - content: "\f532"; } - -.fa-grip::before { - content: "\f58d"; } - -.fa-grip-horizontal::before { - content: "\f58d"; } - -.fa-grip-lines::before { - content: "\f7a4"; } - -.fa-grip-lines-vertical::before { - content: "\f7a5"; } - -.fa-grip-vertical::before { - content: "\f58e"; } - -.fa-group-arrows-rotate::before { - content: "\e4f6"; } - -.fa-guarani-sign::before { - content: "\e19a"; } - -.fa-guitar::before { - content: "\f7a6"; } - -.fa-gun::before { - content: "\e19b"; } - -.fa-h::before { - content: "\48"; } - -.fa-hammer::before { - content: "\f6e3"; } - -.fa-hamsa::before { - content: "\f665"; } - -.fa-hand::before { - content: "\f256"; } - -.fa-hand-paper::before { - content: "\f256"; } - -.fa-hand-back-fist::before { - content: "\f255"; } - -.fa-hand-rock::before { - content: "\f255"; } - -.fa-hand-dots::before { - content: "\f461"; } - -.fa-allergies::before { - content: "\f461"; } - -.fa-hand-fist::before { - content: "\f6de"; } - -.fa-fist-raised::before { - content: "\f6de"; } - -.fa-hand-holding::before { - content: "\f4bd"; } - -.fa-hand-holding-dollar::before { - content: "\f4c0"; } - -.fa-hand-holding-usd::before { - content: "\f4c0"; } - -.fa-hand-holding-droplet::before { - content: "\f4c1"; } - -.fa-hand-holding-water::before { - content: "\f4c1"; } - -.fa-hand-holding-hand::before { - content: "\e4f7"; } - -.fa-hand-holding-heart::before { - content: "\f4be"; } - -.fa-hand-holding-medical::before { - content: "\e05c"; } - -.fa-hand-lizard::before { - content: "\f258"; } - -.fa-hand-middle-finger::before { - content: "\f806"; } - -.fa-hand-peace::before { - content: "\f25b"; } - -.fa-hand-point-down::before { - content: "\f0a7"; } - -.fa-hand-point-left::before { - content: "\f0a5"; } - -.fa-hand-point-right::before { - content: "\f0a4"; } - -.fa-hand-point-up::before { - content: "\f0a6"; } - -.fa-hand-pointer::before { - content: "\f25a"; } - -.fa-hand-scissors::before { - content: "\f257"; } - -.fa-hand-sparkles::before { - content: "\e05d"; } - -.fa-hand-spock::before { - content: "\f259"; } - -.fa-handcuffs::before { - content: "\e4f8"; } - -.fa-hands::before { - content: "\f2a7"; } - -.fa-sign-language::before { - content: "\f2a7"; } - -.fa-signing::before { - content: "\f2a7"; } - -.fa-hands-asl-interpreting::before { - content: "\f2a3"; } - -.fa-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-asl-interpreting::before { - content: "\f2a3"; } - -.fa-hands-american-sign-language-interpreting::before { - content: "\f2a3"; } - -.fa-hands-bound::before { - content: "\e4f9"; } - -.fa-hands-bubbles::before { - content: "\e05e"; } - -.fa-hands-wash::before { - content: "\e05e"; } - -.fa-hands-clapping::before { - content: "\e1a8"; } - -.fa-hands-holding::before { - content: "\f4c2"; } - -.fa-hands-holding-child::before { - content: "\e4fa"; } - -.fa-hands-holding-circle::before { - content: "\e4fb"; } - -.fa-hands-praying::before { - content: "\f684"; } - -.fa-praying-hands::before { - content: "\f684"; } - -.fa-handshake::before { - content: "\f2b5"; } - -.fa-handshake-angle::before { - content: "\f4c4"; } - -.fa-hands-helping::before { - content: "\f4c4"; } - -.fa-handshake-simple::before { - content: "\f4c6"; } - -.fa-handshake-alt::before { - content: "\f4c6"; } - -.fa-handshake-simple-slash::before { - content: "\e05f"; } - -.fa-handshake-alt-slash::before { - content: "\e05f"; } - -.fa-handshake-slash::before { - content: "\e060"; } - -.fa-hanukiah::before { - content: "\f6e6"; } - -.fa-hard-drive::before { - content: "\f0a0"; } - -.fa-hdd::before { - content: "\f0a0"; } - -.fa-hashtag::before { - content: "\23"; } - -.fa-hat-cowboy::before { - content: "\f8c0"; } - -.fa-hat-cowboy-side::before { - content: "\f8c1"; } - -.fa-hat-wizard::before { - content: "\f6e8"; } - -.fa-head-side-cough::before { - content: "\e061"; } - -.fa-head-side-cough-slash::before { - content: "\e062"; } - -.fa-head-side-mask::before { - content: "\e063"; } - -.fa-head-side-virus::before { - content: "\e064"; } - -.fa-heading::before { - content: "\f1dc"; } - -.fa-header::before { - content: "\f1dc"; } - -.fa-headphones::before { - content: "\f025"; } - -.fa-headphones-simple::before { - content: "\f58f"; } - -.fa-headphones-alt::before { - content: "\f58f"; } - -.fa-headset::before { - content: "\f590"; } - -.fa-heart::before { - content: "\f004"; } - -.fa-heart-circle-bolt::before { - content: "\e4fc"; } - -.fa-heart-circle-check::before { - content: "\e4fd"; } - -.fa-heart-circle-exclamation::before { - content: "\e4fe"; } - -.fa-heart-circle-minus::before { - content: "\e4ff"; } - -.fa-heart-circle-plus::before { - content: "\e500"; } - -.fa-heart-circle-xmark::before { - content: "\e501"; } - -.fa-heart-crack::before { - content: "\f7a9"; } - -.fa-heart-broken::before { - content: "\f7a9"; } - -.fa-heart-pulse::before { - content: "\f21e"; } - -.fa-heartbeat::before { - content: "\f21e"; } - -.fa-helicopter::before { - content: "\f533"; } - -.fa-helicopter-symbol::before { - content: "\e502"; } - -.fa-helmet-safety::before { - content: "\f807"; } - -.fa-hard-hat::before { - content: "\f807"; } - -.fa-hat-hard::before { - content: "\f807"; } - -.fa-helmet-un::before { - content: "\e503"; } - -.fa-highlighter::before { - content: "\f591"; } - -.fa-hill-avalanche::before { - content: "\e507"; } - -.fa-hill-rockslide::before { - content: "\e508"; } - -.fa-hippo::before { - content: "\f6ed"; } - -.fa-hockey-puck::before { - content: "\f453"; } - -.fa-holly-berry::before { - content: "\f7aa"; } - -.fa-horse::before { - content: "\f6f0"; } - -.fa-horse-head::before { - content: "\f7ab"; } - -.fa-hospital::before { - content: "\f0f8"; } - -.fa-hospital-alt::before { - content: "\f0f8"; } - -.fa-hospital-wide::before { - content: "\f0f8"; } - -.fa-hospital-user::before { - content: "\f80d"; } - -.fa-hot-tub-person::before { - content: "\f593"; } - -.fa-hot-tub::before { - content: "\f593"; } - -.fa-hotdog::before { - content: "\f80f"; } - -.fa-hotel::before { - content: "\f594"; } - -.fa-hourglass::before { - content: "\f254"; } - -.fa-hourglass-2::before { - content: "\f254"; } - -.fa-hourglass-half::before { - content: "\f254"; } - -.fa-hourglass-empty::before { - content: "\f252"; } - -.fa-hourglass-end::before { - content: "\f253"; } - -.fa-hourglass-3::before { - content: "\f253"; } - -.fa-hourglass-start::before { - content: "\f251"; } - -.fa-hourglass-1::before { - content: "\f251"; } - -.fa-house::before { - content: "\f015"; } - -.fa-home::before { - content: "\f015"; } - -.fa-home-alt::before { - content: "\f015"; } - -.fa-home-lg-alt::before { - content: "\f015"; } - -.fa-house-chimney::before { - content: "\e3af"; } - -.fa-home-lg::before { - content: "\e3af"; } - -.fa-house-chimney-crack::before { - content: "\f6f1"; } - -.fa-house-damage::before { - content: "\f6f1"; } - -.fa-house-chimney-medical::before { - content: "\f7f2"; } - -.fa-clinic-medical::before { - content: "\f7f2"; } - -.fa-house-chimney-user::before { - content: "\e065"; } - -.fa-house-chimney-window::before { - content: "\e00d"; } - -.fa-house-circle-check::before { - content: "\e509"; } - -.fa-house-circle-exclamation::before { - content: "\e50a"; } - -.fa-house-circle-xmark::before { - content: "\e50b"; } - -.fa-house-crack::before { - content: "\e3b1"; } - -.fa-house-fire::before { - content: "\e50c"; } - -.fa-house-flag::before { - content: "\e50d"; } - -.fa-house-flood-water::before { - content: "\e50e"; } - -.fa-house-flood-water-circle-arrow-right::before { - content: "\e50f"; } - -.fa-house-laptop::before { - content: "\e066"; } - -.fa-laptop-house::before { - content: "\e066"; } - -.fa-house-lock::before { - content: "\e510"; } - -.fa-house-medical::before { - content: "\e3b2"; } - -.fa-house-medical-circle-check::before { - content: "\e511"; } - -.fa-house-medical-circle-exclamation::before { - content: "\e512"; } - -.fa-house-medical-circle-xmark::before { - content: "\e513"; } - -.fa-house-medical-flag::before { - content: "\e514"; } - -.fa-house-signal::before { - content: "\e012"; } - -.fa-house-tsunami::before { - content: "\e515"; } - -.fa-house-user::before { - content: "\e1b0"; } - -.fa-home-user::before { - content: "\e1b0"; } - -.fa-hryvnia-sign::before { - content: "\f6f2"; } - -.fa-hryvnia::before { - content: "\f6f2"; } - -.fa-hurricane::before { - content: "\f751"; } - -.fa-i::before { - content: "\49"; } - -.fa-i-cursor::before { - content: "\f246"; } - -.fa-ice-cream::before { - content: "\f810"; } - -.fa-icicles::before { - content: "\f7ad"; } - -.fa-icons::before { - content: "\f86d"; } - -.fa-heart-music-camera-bolt::before { - content: "\f86d"; } - -.fa-id-badge::before { - content: "\f2c1"; } - -.fa-id-card::before { - content: "\f2c2"; } - -.fa-drivers-license::before { - content: "\f2c2"; } - -.fa-id-card-clip::before { - content: "\f47f"; } - -.fa-id-card-alt::before { - content: "\f47f"; } - -.fa-igloo::before { - content: "\f7ae"; } - -.fa-image::before { - content: "\f03e"; } - -.fa-image-portrait::before { - content: "\f3e0"; } - -.fa-portrait::before { - content: "\f3e0"; } - -.fa-images::before { - content: "\f302"; } - -.fa-inbox::before { - content: "\f01c"; } - -.fa-indent::before { - content: "\f03c"; } - -.fa-indian-rupee-sign::before { - content: "\e1bc"; } - -.fa-indian-rupee::before { - content: "\e1bc"; } - -.fa-inr::before { - content: "\e1bc"; } - -.fa-industry::before { - content: "\f275"; } - -.fa-infinity::before { - content: "\f534"; } - -.fa-info::before { - content: "\f129"; } - -.fa-italic::before { - content: "\f033"; } - -.fa-j::before { - content: "\4a"; } - -.fa-jar::before { - content: "\e516"; } - -.fa-jar-wheat::before { - content: "\e517"; } - -.fa-jedi::before { - content: "\f669"; } - -.fa-jet-fighter::before { - content: "\f0fb"; } - -.fa-fighter-jet::before { - content: "\f0fb"; } - -.fa-jet-fighter-up::before { - content: "\e518"; } - -.fa-joint::before { - content: "\f595"; } - -.fa-jug-detergent::before { - content: "\e519"; } - -.fa-k::before { - content: "\4b"; } - -.fa-kaaba::before { - content: "\f66b"; } - -.fa-key::before { - content: "\f084"; } - -.fa-keyboard::before { - content: "\f11c"; } - -.fa-khanda::before { - content: "\f66d"; } - -.fa-kip-sign::before { - content: "\e1c4"; } - -.fa-kit-medical::before { - content: "\f479"; } - -.fa-first-aid::before { - content: "\f479"; } - -.fa-kitchen-set::before { - content: "\e51a"; } - -.fa-kiwi-bird::before { - content: "\f535"; } - -.fa-l::before { - content: "\4c"; } - -.fa-land-mine-on::before { - content: "\e51b"; } - -.fa-landmark::before { - content: "\f66f"; } - -.fa-landmark-dome::before { - content: "\f752"; } - -.fa-landmark-alt::before { - content: "\f752"; } - -.fa-landmark-flag::before { - content: "\e51c"; } - -.fa-language::before { - content: "\f1ab"; } - -.fa-laptop::before { - content: "\f109"; } - -.fa-laptop-code::before { - content: "\f5fc"; } - -.fa-laptop-file::before { - content: "\e51d"; } - -.fa-laptop-medical::before { - content: "\f812"; } - -.fa-lari-sign::before { - content: "\e1c8"; } - -.fa-layer-group::before { - content: "\f5fd"; } - -.fa-leaf::before { - content: "\f06c"; } - -.fa-left-long::before { - content: "\f30a"; } - -.fa-long-arrow-alt-left::before { - content: "\f30a"; } - -.fa-left-right::before { - content: "\f337"; } - -.fa-arrows-alt-h::before { - content: "\f337"; } - -.fa-lemon::before { - content: "\f094"; } - -.fa-less-than::before { - content: "\3c"; } - -.fa-less-than-equal::before { - content: "\f537"; } - -.fa-life-ring::before { - content: "\f1cd"; } - -.fa-lightbulb::before { - content: "\f0eb"; } - -.fa-lines-leaning::before { - content: "\e51e"; } - -.fa-link::before { - content: "\f0c1"; } - -.fa-chain::before { - content: "\f0c1"; } - -.fa-link-slash::before { - content: "\f127"; } - -.fa-chain-broken::before { - content: "\f127"; } - -.fa-chain-slash::before { - content: "\f127"; } - -.fa-unlink::before { - content: "\f127"; } - -.fa-lira-sign::before { - content: "\f195"; } - -.fa-list::before { - content: "\f03a"; } - -.fa-list-squares::before { - content: "\f03a"; } - -.fa-list-check::before { - content: "\f0ae"; } - -.fa-tasks::before { - content: "\f0ae"; } - -.fa-list-ol::before { - content: "\f0cb"; } - -.fa-list-1-2::before { - content: "\f0cb"; } - -.fa-list-numeric::before { - content: "\f0cb"; } - -.fa-list-ul::before { - content: "\f0ca"; } - -.fa-list-dots::before { - content: "\f0ca"; } - -.fa-litecoin-sign::before { - content: "\e1d3"; } - -.fa-location-arrow::before { - content: "\f124"; } - -.fa-location-crosshairs::before { - content: "\f601"; } - -.fa-location::before { - content: "\f601"; } - -.fa-location-dot::before { - content: "\f3c5"; } - -.fa-map-marker-alt::before { - content: "\f3c5"; } - -.fa-location-pin::before { - content: "\f041"; } - -.fa-map-marker::before { - content: "\f041"; } - -.fa-location-pin-lock::before { - content: "\e51f"; } - -.fa-lock::before { - content: "\f023"; } - -.fa-lock-open::before { - content: "\f3c1"; } - -.fa-locust::before { - content: "\e520"; } - -.fa-lungs::before { - content: "\f604"; } - -.fa-lungs-virus::before { - content: "\e067"; } - -.fa-m::before { - content: "\4d"; } - -.fa-magnet::before { - content: "\f076"; } - -.fa-magnifying-glass::before { - content: "\f002"; } - -.fa-search::before { - content: "\f002"; } - -.fa-magnifying-glass-arrow-right::before { - content: "\e521"; } - -.fa-magnifying-glass-chart::before { - content: "\e522"; } - -.fa-magnifying-glass-dollar::before { - content: "\f688"; } - -.fa-search-dollar::before { - content: "\f688"; } - -.fa-magnifying-glass-location::before { - content: "\f689"; } - -.fa-search-location::before { - content: "\f689"; } - -.fa-magnifying-glass-minus::before { - content: "\f010"; } - -.fa-search-minus::before { - content: "\f010"; } - -.fa-magnifying-glass-plus::before { - content: "\f00e"; } - -.fa-search-plus::before { - content: "\f00e"; } - -.fa-manat-sign::before { - content: "\e1d5"; } - -.fa-map::before { - content: "\f279"; } - -.fa-map-location::before { - content: "\f59f"; } - -.fa-map-marked::before { - content: "\f59f"; } - -.fa-map-location-dot::before { - content: "\f5a0"; } - -.fa-map-marked-alt::before { - content: "\f5a0"; } - -.fa-map-pin::before { - content: "\f276"; } - -.fa-marker::before { - content: "\f5a1"; } - -.fa-mars::before { - content: "\f222"; } - -.fa-mars-and-venus::before { - content: "\f224"; } - -.fa-mars-and-venus-burst::before { - content: "\e523"; } - -.fa-mars-double::before { - content: "\f227"; } - -.fa-mars-stroke::before { - content: "\f229"; } - -.fa-mars-stroke-right::before { - content: "\f22b"; } - -.fa-mars-stroke-h::before { - content: "\f22b"; } - -.fa-mars-stroke-up::before { - content: "\f22a"; } - -.fa-mars-stroke-v::before { - content: "\f22a"; } - -.fa-martini-glass::before { - content: "\f57b"; } - -.fa-glass-martini-alt::before { - content: "\f57b"; } - -.fa-martini-glass-citrus::before { - content: "\f561"; } - -.fa-cocktail::before { - content: "\f561"; } - -.fa-martini-glass-empty::before { - content: "\f000"; } - -.fa-glass-martini::before { - content: "\f000"; } - -.fa-mask::before { - content: "\f6fa"; } - -.fa-mask-face::before { - content: "\e1d7"; } - -.fa-mask-ventilator::before { - content: "\e524"; } - -.fa-masks-theater::before { - content: "\f630"; } - -.fa-theater-masks::before { - content: "\f630"; } - -.fa-mattress-pillow::before { - content: "\e525"; } - -.fa-maximize::before { - content: "\f31e"; } - -.fa-expand-arrows-alt::before { - content: "\f31e"; } - -.fa-medal::before { - content: "\f5a2"; } - -.fa-memory::before { - content: "\f538"; } - -.fa-menorah::before { - content: "\f676"; } - -.fa-mercury::before { - content: "\f223"; } - -.fa-message::before { - content: "\f27a"; } - -.fa-comment-alt::before { - content: "\f27a"; } - -.fa-meteor::before { - content: "\f753"; } - -.fa-microchip::before { - content: "\f2db"; } - -.fa-microphone::before { - content: "\f130"; } - -.fa-microphone-lines::before { - content: "\f3c9"; } - -.fa-microphone-alt::before { - content: "\f3c9"; } - -.fa-microphone-lines-slash::before { - content: "\f539"; } - -.fa-microphone-alt-slash::before { - content: "\f539"; } - -.fa-microphone-slash::before { - content: "\f131"; } - -.fa-microscope::before { - content: "\f610"; } - -.fa-mill-sign::before { - content: "\e1ed"; } - -.fa-minimize::before { - content: "\f78c"; } - -.fa-compress-arrows-alt::before { - content: "\f78c"; } - -.fa-minus::before { - content: "\f068"; } - -.fa-subtract::before { - content: "\f068"; } - -.fa-mitten::before { - content: "\f7b5"; } - -.fa-mobile::before { - content: "\f3ce"; } - -.fa-mobile-android::before { - content: "\f3ce"; } - -.fa-mobile-phone::before { - content: "\f3ce"; } - -.fa-mobile-button::before { - content: "\f10b"; } - -.fa-mobile-retro::before { - content: "\e527"; } - -.fa-mobile-screen::before { - content: "\f3cf"; } - -.fa-mobile-android-alt::before { - content: "\f3cf"; } - -.fa-mobile-screen-button::before { - content: "\f3cd"; } - -.fa-mobile-alt::before { - content: "\f3cd"; } - -.fa-money-bill::before { - content: "\f0d6"; } - -.fa-money-bill-1::before { - content: "\f3d1"; } - -.fa-money-bill-alt::before { - content: "\f3d1"; } - -.fa-money-bill-1-wave::before { - content: "\f53b"; } - -.fa-money-bill-wave-alt::before { - content: "\f53b"; } - -.fa-money-bill-transfer::before { - content: "\e528"; } - -.fa-money-bill-trend-up::before { - content: "\e529"; } - -.fa-money-bill-wave::before { - content: "\f53a"; } - -.fa-money-bill-wheat::before { - content: "\e52a"; } - -.fa-money-bills::before { - content: "\e1f3"; } - -.fa-money-check::before { - content: "\f53c"; } - -.fa-money-check-dollar::before { - content: "\f53d"; } - -.fa-money-check-alt::before { - content: "\f53d"; } - -.fa-monument::before { - content: "\f5a6"; } - -.fa-moon::before { - content: "\f186"; } - -.fa-mortar-pestle::before { - content: "\f5a7"; } - -.fa-mosque::before { - content: "\f678"; } - -.fa-mosquito::before { - content: "\e52b"; } - -.fa-mosquito-net::before { - content: "\e52c"; } - -.fa-motorcycle::before { - content: "\f21c"; } - -.fa-mound::before { - content: "\e52d"; } - -.fa-mountain::before { - content: "\f6fc"; } - -.fa-mountain-city::before { - content: "\e52e"; } - -.fa-mountain-sun::before { - content: "\e52f"; } - -.fa-mug-hot::before { - content: "\f7b6"; } - -.fa-mug-saucer::before { - content: "\f0f4"; } - -.fa-coffee::before { - content: "\f0f4"; } - -.fa-music::before { - content: "\f001"; } - -.fa-n::before { - content: "\4e"; } - -.fa-naira-sign::before { - content: "\e1f6"; } - -.fa-network-wired::before { - content: "\f6ff"; } - -.fa-neuter::before { - content: "\f22c"; } - -.fa-newspaper::before { - content: "\f1ea"; } - -.fa-not-equal::before { - content: "\f53e"; } - -.fa-note-sticky::before { - content: "\f249"; } - -.fa-sticky-note::before { - content: "\f249"; } - -.fa-notes-medical::before { - content: "\f481"; } - -.fa-o::before { - content: "\4f"; } - -.fa-object-group::before { - content: "\f247"; } - -.fa-object-ungroup::before { - content: "\f248"; } - -.fa-oil-can::before { - content: "\f613"; } - -.fa-oil-well::before { - content: "\e532"; } - -.fa-om::before { - content: "\f679"; } - -.fa-otter::before { - content: "\f700"; } - -.fa-outdent::before { - content: "\f03b"; } - -.fa-dedent::before { - content: "\f03b"; } - -.fa-p::before { - content: "\50"; } - -.fa-pager::before { - content: "\f815"; } - -.fa-paint-roller::before { - content: "\f5aa"; } - -.fa-paintbrush::before { - content: "\f1fc"; } - -.fa-paint-brush::before { - content: "\f1fc"; } - -.fa-palette::before { - content: "\f53f"; } - -.fa-pallet::before { - content: "\f482"; } - -.fa-panorama::before { - content: "\e209"; } - -.fa-paper-plane::before { - content: "\f1d8"; } - -.fa-paperclip::before { - content: "\f0c6"; } - -.fa-parachute-box::before { - content: "\f4cd"; } - -.fa-paragraph::before { - content: "\f1dd"; } - -.fa-passport::before { - content: "\f5ab"; } - -.fa-paste::before { - content: "\f0ea"; } - -.fa-file-clipboard::before { - content: "\f0ea"; } - -.fa-pause::before { - content: "\f04c"; } - -.fa-paw::before { - content: "\f1b0"; } - -.fa-peace::before { - content: "\f67c"; } - -.fa-pen::before { - content: "\f304"; } - -.fa-pen-clip::before { - content: "\f305"; } - -.fa-pen-alt::before { - content: "\f305"; } - -.fa-pen-fancy::before { - content: "\f5ac"; } - -.fa-pen-nib::before { - content: "\f5ad"; } - -.fa-pen-ruler::before { - content: "\f5ae"; } - -.fa-pencil-ruler::before { - content: "\f5ae"; } - -.fa-pen-to-square::before { - content: "\f044"; } - -.fa-edit::before { - content: "\f044"; } - -.fa-pencil::before { - content: "\f303"; } - -.fa-pencil-alt::before { - content: "\f303"; } - -.fa-people-arrows-left-right::before { - content: "\e068"; } - -.fa-people-arrows::before { - content: "\e068"; } - -.fa-people-carry-box::before { - content: "\f4ce"; } - -.fa-people-carry::before { - content: "\f4ce"; } - -.fa-people-group::before { - content: "\e533"; } - -.fa-people-line::before { - content: "\e534"; } - -.fa-people-pulling::before { - content: "\e535"; } - -.fa-people-robbery::before { - content: "\e536"; } - -.fa-people-roof::before { - content: "\e537"; } - -.fa-pepper-hot::before { - content: "\f816"; } - -.fa-percent::before { - content: "\25"; } - -.fa-percentage::before { - content: "\25"; } - -.fa-person::before { - content: "\f183"; } - -.fa-male::before { - content: "\f183"; } - -.fa-person-arrow-down-to-line::before { - content: "\e538"; } - -.fa-person-arrow-up-from-line::before { - content: "\e539"; } - -.fa-person-biking::before { - content: "\f84a"; } - -.fa-biking::before { - content: "\f84a"; } - -.fa-person-booth::before { - content: "\f756"; } - -.fa-person-breastfeeding::before { - content: "\e53a"; } - -.fa-person-burst::before { - content: "\e53b"; } - -.fa-person-cane::before { - content: "\e53c"; } - -.fa-person-chalkboard::before { - content: "\e53d"; } - -.fa-person-circle-check::before { - content: "\e53e"; } - -.fa-person-circle-exclamation::before { - content: "\e53f"; } - -.fa-person-circle-minus::before { - content: "\e540"; } - -.fa-person-circle-plus::before { - content: "\e541"; } - -.fa-person-circle-question::before { - content: "\e542"; } - -.fa-person-circle-xmark::before { - content: "\e543"; } - -.fa-person-digging::before { - content: "\f85e"; } - -.fa-digging::before { - content: "\f85e"; } - -.fa-person-dots-from-line::before { - content: "\f470"; } - -.fa-diagnoses::before { - content: "\f470"; } - -.fa-person-dress::before { - content: "\f182"; } - -.fa-female::before { - content: "\f182"; } - -.fa-person-dress-burst::before { - content: "\e544"; } - -.fa-person-drowning::before { - content: "\e545"; } - -.fa-person-falling::before { - content: "\e546"; } - -.fa-person-falling-burst::before { - content: "\e547"; } - -.fa-person-half-dress::before { - content: "\e548"; } - -.fa-person-harassing::before { - content: "\e549"; } - -.fa-person-hiking::before { - content: "\f6ec"; } - -.fa-hiking::before { - content: "\f6ec"; } - -.fa-person-military-pointing::before { - content: "\e54a"; } - -.fa-person-military-rifle::before { - content: "\e54b"; } - -.fa-person-military-to-person::before { - content: "\e54c"; } - -.fa-person-praying::before { - content: "\f683"; } - -.fa-pray::before { - content: "\f683"; } - -.fa-person-pregnant::before { - content: "\e31e"; } - -.fa-person-rays::before { - content: "\e54d"; } - -.fa-person-rifle::before { - content: "\e54e"; } - -.fa-person-running::before { - content: "\f70c"; } - -.fa-running::before { - content: "\f70c"; } - -.fa-person-shelter::before { - content: "\e54f"; } - -.fa-person-skating::before { - content: "\f7c5"; } - -.fa-skating::before { - content: "\f7c5"; } - -.fa-person-skiing::before { - content: "\f7c9"; } - -.fa-skiing::before { - content: "\f7c9"; } - -.fa-person-skiing-nordic::before { - content: "\f7ca"; } - -.fa-skiing-nordic::before { - content: "\f7ca"; } - -.fa-person-snowboarding::before { - content: "\f7ce"; } - -.fa-snowboarding::before { - content: "\f7ce"; } - -.fa-person-swimming::before { - content: "\f5c4"; } - -.fa-swimmer::before { - content: "\f5c4"; } - -.fa-person-through-window::before { - content: "\e433"; } - -.fa-person-walking::before { - content: "\f554"; } - -.fa-walking::before { - content: "\f554"; } - -.fa-person-walking-arrow-loop-left::before { - content: "\e551"; } - -.fa-person-walking-arrow-right::before { - content: "\e552"; } - -.fa-person-walking-dashed-line-arrow-right::before { - content: "\e553"; } - -.fa-person-walking-luggage::before { - content: "\e554"; } - -.fa-person-walking-with-cane::before { - content: "\f29d"; } - -.fa-blind::before { - content: "\f29d"; } - -.fa-peseta-sign::before { - content: "\e221"; } - -.fa-peso-sign::before { - content: "\e222"; } - -.fa-phone::before { - content: "\f095"; } - -.fa-phone-flip::before { - content: "\f879"; } - -.fa-phone-alt::before { - content: "\f879"; } - -.fa-phone-slash::before { - content: "\f3dd"; } - -.fa-phone-volume::before { - content: "\f2a0"; } - -.fa-volume-control-phone::before { - content: "\f2a0"; } - -.fa-photo-film::before { - content: "\f87c"; } - -.fa-photo-video::before { - content: "\f87c"; } - -.fa-piggy-bank::before { - content: "\f4d3"; } - -.fa-pills::before { - content: "\f484"; } - -.fa-pizza-slice::before { - content: "\f818"; } - -.fa-place-of-worship::before { - content: "\f67f"; } - -.fa-plane::before { - content: "\f072"; } - -.fa-plane-arrival::before { - content: "\f5af"; } - -.fa-plane-circle-check::before { - content: "\e555"; } - -.fa-plane-circle-exclamation::before { - content: "\e556"; } - -.fa-plane-circle-xmark::before { - content: "\e557"; } - -.fa-plane-departure::before { - content: "\f5b0"; } - -.fa-plane-lock::before { - content: "\e558"; } - -.fa-plane-slash::before { - content: "\e069"; } - -.fa-plane-up::before { - content: "\e22d"; } - -.fa-plant-wilt::before { - content: "\e43b"; } - -.fa-plate-wheat::before { - content: "\e55a"; } - -.fa-play::before { - content: "\f04b"; } - -.fa-plug::before { - content: "\f1e6"; } - -.fa-plug-circle-bolt::before { - content: "\e55b"; } - -.fa-plug-circle-check::before { - content: "\e55c"; } - -.fa-plug-circle-exclamation::before { - content: "\e55d"; } - -.fa-plug-circle-minus::before { - content: "\e55e"; } - -.fa-plug-circle-plus::before { - content: "\e55f"; } - -.fa-plug-circle-xmark::before { - content: "\e560"; } - -.fa-plus::before { - content: "\2b"; } - -.fa-add::before { - content: "\2b"; } - -.fa-plus-minus::before { - content: "\e43c"; } - -.fa-podcast::before { - content: "\f2ce"; } - -.fa-poo::before { - content: "\f2fe"; } - -.fa-poo-storm::before { - content: "\f75a"; } - -.fa-poo-bolt::before { - content: "\f75a"; } - -.fa-poop::before { - content: "\f619"; } - -.fa-power-off::before { - content: "\f011"; } - -.fa-prescription::before { - content: "\f5b1"; } - -.fa-prescription-bottle::before { - content: "\f485"; } - -.fa-prescription-bottle-medical::before { - content: "\f486"; } - -.fa-prescription-bottle-alt::before { - content: "\f486"; } - -.fa-print::before { - content: "\f02f"; } - -.fa-pump-medical::before { - content: "\e06a"; } - -.fa-pump-soap::before { - content: "\e06b"; } - -.fa-puzzle-piece::before { - content: "\f12e"; } - -.fa-q::before { - content: "\51"; } - -.fa-qrcode::before { - content: "\f029"; } - -.fa-question::before { - content: "\3f"; } - -.fa-quote-left::before { - content: "\f10d"; } - -.fa-quote-left-alt::before { - content: "\f10d"; } - -.fa-quote-right::before { - content: "\f10e"; } - -.fa-quote-right-alt::before { - content: "\f10e"; } - -.fa-r::before { - content: "\52"; } - -.fa-radiation::before { - content: "\f7b9"; } - -.fa-radio::before { - content: "\f8d7"; } - -.fa-rainbow::before { - content: "\f75b"; } - -.fa-ranking-star::before { - content: "\e561"; } - -.fa-receipt::before { - content: "\f543"; } - -.fa-record-vinyl::before { - content: "\f8d9"; } - -.fa-rectangle-ad::before { - content: "\f641"; } - -.fa-ad::before { - content: "\f641"; } - -.fa-rectangle-list::before { - content: "\f022"; } - -.fa-list-alt::before { - content: "\f022"; } - -.fa-rectangle-xmark::before { - content: "\f410"; } - -.fa-rectangle-times::before { - content: "\f410"; } - -.fa-times-rectangle::before { - content: "\f410"; } - -.fa-window-close::before { - content: "\f410"; } - -.fa-recycle::before { - content: "\f1b8"; } - -.fa-registered::before { - content: "\f25d"; } - -.fa-repeat::before { - content: "\f363"; } - -.fa-reply::before { - content: "\f3e5"; } - -.fa-mail-reply::before { - content: "\f3e5"; } - -.fa-reply-all::before { - content: "\f122"; } - -.fa-mail-reply-all::before { - content: "\f122"; } - -.fa-republican::before { - content: "\f75e"; } - -.fa-restroom::before { - content: "\f7bd"; } - -.fa-retweet::before { - content: "\f079"; } - -.fa-ribbon::before { - content: "\f4d6"; } - -.fa-right-from-bracket::before { - content: "\f2f5"; } - -.fa-sign-out-alt::before { - content: "\f2f5"; } - -.fa-right-left::before { - content: "\f362"; } - -.fa-exchange-alt::before { - content: "\f362"; } - -.fa-right-long::before { - content: "\f30b"; } - -.fa-long-arrow-alt-right::before { - content: "\f30b"; } - -.fa-right-to-bracket::before { - content: "\f2f6"; } - -.fa-sign-in-alt::before { - content: "\f2f6"; } - -.fa-ring::before { - content: "\f70b"; } - -.fa-road::before { - content: "\f018"; } - -.fa-road-barrier::before { - content: "\e562"; } - -.fa-road-bridge::before { - content: "\e563"; } - -.fa-road-circle-check::before { - content: "\e564"; } - -.fa-road-circle-exclamation::before { - content: "\e565"; } - -.fa-road-circle-xmark::before { - content: "\e566"; } - -.fa-road-lock::before { - content: "\e567"; } - -.fa-road-spikes::before { - content: "\e568"; } - -.fa-robot::before { - content: "\f544"; } - -.fa-rocket::before { - content: "\f135"; } - -.fa-rotate::before { - content: "\f2f1"; } - -.fa-sync-alt::before { - content: "\f2f1"; } - -.fa-rotate-left::before { - content: "\f2ea"; } - -.fa-rotate-back::before { - content: "\f2ea"; } - -.fa-rotate-backward::before { - content: "\f2ea"; } - -.fa-undo-alt::before { - content: "\f2ea"; } - -.fa-rotate-right::before { - content: "\f2f9"; } - -.fa-redo-alt::before { - content: "\f2f9"; } - -.fa-rotate-forward::before { - content: "\f2f9"; } - -.fa-route::before { - content: "\f4d7"; } - -.fa-rss::before { - content: "\f09e"; } - -.fa-feed::before { - content: "\f09e"; } - -.fa-ruble-sign::before { - content: "\f158"; } - -.fa-rouble::before { - content: "\f158"; } - -.fa-rub::before { - content: "\f158"; } - -.fa-ruble::before { - content: "\f158"; } - -.fa-rug::before { - content: "\e569"; } - -.fa-ruler::before { - content: "\f545"; } - -.fa-ruler-combined::before { - content: "\f546"; } - -.fa-ruler-horizontal::before { - content: "\f547"; } - -.fa-ruler-vertical::before { - content: "\f548"; } - -.fa-rupee-sign::before { - content: "\f156"; } - -.fa-rupee::before { - content: "\f156"; } - -.fa-rupiah-sign::before { - content: "\e23d"; } - -.fa-s::before { - content: "\53"; } - -.fa-sack-dollar::before { - content: "\f81d"; } - -.fa-sack-xmark::before { - content: "\e56a"; } - -.fa-sailboat::before { - content: "\e445"; } - -.fa-satellite::before { - content: "\f7bf"; } - -.fa-satellite-dish::before { - content: "\f7c0"; } - -.fa-scale-balanced::before { - content: "\f24e"; } - -.fa-balance-scale::before { - content: "\f24e"; } - -.fa-scale-unbalanced::before { - content: "\f515"; } - -.fa-balance-scale-left::before { - content: "\f515"; } - -.fa-scale-unbalanced-flip::before { - content: "\f516"; } - -.fa-balance-scale-right::before { - content: "\f516"; } - -.fa-school::before { - content: "\f549"; } - -.fa-school-circle-check::before { - content: "\e56b"; } - -.fa-school-circle-exclamation::before { - content: "\e56c"; } - -.fa-school-circle-xmark::before { - content: "\e56d"; } - -.fa-school-flag::before { - content: "\e56e"; } - -.fa-school-lock::before { - content: "\e56f"; } - -.fa-scissors::before { - content: "\f0c4"; } - -.fa-cut::before { - content: "\f0c4"; } - -.fa-screwdriver::before { - content: "\f54a"; } - -.fa-screwdriver-wrench::before { - content: "\f7d9"; } - -.fa-tools::before { - content: "\f7d9"; } - -.fa-scroll::before { - content: "\f70e"; } - -.fa-scroll-torah::before { - content: "\f6a0"; } - -.fa-torah::before { - content: "\f6a0"; } - -.fa-sd-card::before { - content: "\f7c2"; } - -.fa-section::before { - content: "\e447"; } - -.fa-seedling::before { - content: "\f4d8"; } - -.fa-sprout::before { - content: "\f4d8"; } - -.fa-server::before { - content: "\f233"; } - -.fa-shapes::before { - content: "\f61f"; } - -.fa-triangle-circle-square::before { - content: "\f61f"; } - -.fa-share::before { - content: "\f064"; } - -.fa-arrow-turn-right::before { - content: "\f064"; } - -.fa-mail-forward::before { - content: "\f064"; } - -.fa-share-from-square::before { - content: "\f14d"; } - -.fa-share-square::before { - content: "\f14d"; } - -.fa-share-nodes::before { - content: "\f1e0"; } - -.fa-share-alt::before { - content: "\f1e0"; } - -.fa-sheet-plastic::before { - content: "\e571"; } - -.fa-shekel-sign::before { - content: "\f20b"; } - -.fa-ils::before { - content: "\f20b"; } - -.fa-shekel::before { - content: "\f20b"; } - -.fa-sheqel::before { - content: "\f20b"; } - -.fa-sheqel-sign::before { - content: "\f20b"; } - -.fa-shield::before { - content: "\f132"; } - -.fa-shield-blank::before { - content: "\f132"; } - -.fa-shield-cat::before { - content: "\e572"; } - -.fa-shield-dog::before { - content: "\e573"; } - -.fa-shield-halved::before { - content: "\f3ed"; } - -.fa-shield-alt::before { - content: "\f3ed"; } - -.fa-shield-heart::before { - content: "\e574"; } - -.fa-shield-virus::before { - content: "\e06c"; } - -.fa-ship::before { - content: "\f21a"; } - -.fa-shirt::before { - content: "\f553"; } - -.fa-t-shirt::before { - content: "\f553"; } - -.fa-tshirt::before { - content: "\f553"; } - -.fa-shoe-prints::before { - content: "\f54b"; } - -.fa-shop::before { - content: "\f54f"; } - -.fa-store-alt::before { - content: "\f54f"; } - -.fa-shop-lock::before { - content: "\e4a5"; } - -.fa-shop-slash::before { - content: "\e070"; } - -.fa-store-alt-slash::before { - content: "\e070"; } - -.fa-shower::before { - content: "\f2cc"; } - -.fa-shrimp::before { - content: "\e448"; } - -.fa-shuffle::before { - content: "\f074"; } - -.fa-random::before { - content: "\f074"; } - -.fa-shuttle-space::before { - content: "\f197"; } - -.fa-space-shuttle::before { - content: "\f197"; } - -.fa-sign-hanging::before { - content: "\f4d9"; } - -.fa-sign::before { - content: "\f4d9"; } - -.fa-signal::before { - content: "\f012"; } - -.fa-signal-5::before { - content: "\f012"; } - -.fa-signal-perfect::before { - content: "\f012"; } - -.fa-signature::before { - content: "\f5b7"; } - -.fa-signs-post::before { - content: "\f277"; } - -.fa-map-signs::before { - content: "\f277"; } - -.fa-sim-card::before { - content: "\f7c4"; } - -.fa-sink::before { - content: "\e06d"; } - -.fa-sitemap::before { - content: "\f0e8"; } - -.fa-skull::before { - content: "\f54c"; } - -.fa-skull-crossbones::before { - content: "\f714"; } - -.fa-slash::before { - content: "\f715"; } - -.fa-sleigh::before { - content: "\f7cc"; } - -.fa-sliders::before { - content: "\f1de"; } - -.fa-sliders-h::before { - content: "\f1de"; } - -.fa-smog::before { - content: "\f75f"; } - -.fa-smoking::before { - content: "\f48d"; } - -.fa-snowflake::before { - content: "\f2dc"; } - -.fa-snowman::before { - content: "\f7d0"; } - -.fa-snowplow::before { - content: "\f7d2"; } - -.fa-soap::before { - content: "\e06e"; } - -.fa-socks::before { - content: "\f696"; } - -.fa-solar-panel::before { - content: "\f5ba"; } - -.fa-sort::before { - content: "\f0dc"; } - -.fa-unsorted::before { - content: "\f0dc"; } - -.fa-sort-down::before { - content: "\f0dd"; } - -.fa-sort-desc::before { - content: "\f0dd"; } - -.fa-sort-up::before { - content: "\f0de"; } - -.fa-sort-asc::before { - content: "\f0de"; } - -.fa-spa::before { - content: "\f5bb"; } - -.fa-spaghetti-monster-flying::before { - content: "\f67b"; } - -.fa-pastafarianism::before { - content: "\f67b"; } - -.fa-spell-check::before { - content: "\f891"; } - -.fa-spider::before { - content: "\f717"; } - -.fa-spinner::before { - content: "\f110"; } - -.fa-splotch::before { - content: "\f5bc"; } - -.fa-spoon::before { - content: "\f2e5"; } - -.fa-utensil-spoon::before { - content: "\f2e5"; } - -.fa-spray-can::before { - content: "\f5bd"; } - -.fa-spray-can-sparkles::before { - content: "\f5d0"; } - -.fa-air-freshener::before { - content: "\f5d0"; } - -.fa-square::before { - content: "\f0c8"; } - -.fa-square-arrow-up-right::before { - content: "\f14c"; } - -.fa-external-link-square::before { - content: "\f14c"; } - -.fa-square-caret-down::before { - content: "\f150"; } - -.fa-caret-square-down::before { - content: "\f150"; } - -.fa-square-caret-left::before { - content: "\f191"; } - -.fa-caret-square-left::before { - content: "\f191"; } - -.fa-square-caret-right::before { - content: "\f152"; } - -.fa-caret-square-right::before { - content: "\f152"; } - -.fa-square-caret-up::before { - content: "\f151"; } - -.fa-caret-square-up::before { - content: "\f151"; } - -.fa-square-check::before { - content: "\f14a"; } - -.fa-check-square::before { - content: "\f14a"; } - -.fa-square-envelope::before { - content: "\f199"; } - -.fa-envelope-square::before { - content: "\f199"; } - -.fa-square-full::before { - content: "\f45c"; } - -.fa-square-h::before { - content: "\f0fd"; } - -.fa-h-square::before { - content: "\f0fd"; } - -.fa-square-minus::before { - content: "\f146"; } - -.fa-minus-square::before { - content: "\f146"; } - -.fa-square-nfi::before { - content: "\e576"; } - -.fa-square-parking::before { - content: "\f540"; } - -.fa-parking::before { - content: "\f540"; } - -.fa-square-pen::before { - content: "\f14b"; } - -.fa-pen-square::before { - content: "\f14b"; } - -.fa-pencil-square::before { - content: "\f14b"; } - -.fa-square-person-confined::before { - content: "\e577"; } - -.fa-square-phone::before { - content: "\f098"; } - -.fa-phone-square::before { - content: "\f098"; } - -.fa-square-phone-flip::before { - content: "\f87b"; } - -.fa-phone-square-alt::before { - content: "\f87b"; } - -.fa-square-plus::before { - content: "\f0fe"; } - -.fa-plus-square::before { - content: "\f0fe"; } - -.fa-square-poll-horizontal::before { - content: "\f682"; } - -.fa-poll-h::before { - content: "\f682"; } - -.fa-square-poll-vertical::before { - content: "\f681"; } - -.fa-poll::before { - content: "\f681"; } - -.fa-square-root-variable::before { - content: "\f698"; } - -.fa-square-root-alt::before { - content: "\f698"; } - -.fa-square-rss::before { - content: "\f143"; } - -.fa-rss-square::before { - content: "\f143"; } - -.fa-square-share-nodes::before { - content: "\f1e1"; } - -.fa-share-alt-square::before { - content: "\f1e1"; } - -.fa-square-up-right::before { - content: "\f360"; } - -.fa-external-link-square-alt::before { - content: "\f360"; } - -.fa-square-virus::before { - content: "\e578"; } - -.fa-square-xmark::before { - content: "\f2d3"; } - -.fa-times-square::before { - content: "\f2d3"; } - -.fa-xmark-square::before { - content: "\f2d3"; } - -.fa-staff-aesculapius::before { - content: "\e579"; } - -.fa-rod-asclepius::before { - content: "\e579"; } - -.fa-rod-snake::before { - content: "\e579"; } - -.fa-staff-snake::before { - content: "\e579"; } - -.fa-stairs::before { - content: "\e289"; } - -.fa-stamp::before { - content: "\f5bf"; } - -.fa-star::before { - content: "\f005"; } - -.fa-star-and-crescent::before { - content: "\f699"; } - -.fa-star-half::before { - content: "\f089"; } - -.fa-star-half-stroke::before { - content: "\f5c0"; } - -.fa-star-half-alt::before { - content: "\f5c0"; } - -.fa-star-of-david::before { - content: "\f69a"; } - -.fa-star-of-life::before { - content: "\f621"; } - -.fa-sterling-sign::before { - content: "\f154"; } - -.fa-gbp::before { - content: "\f154"; } - -.fa-pound-sign::before { - content: "\f154"; } - -.fa-stethoscope::before { - content: "\f0f1"; } - -.fa-stop::before { - content: "\f04d"; } - -.fa-stopwatch::before { - content: "\f2f2"; } - -.fa-stopwatch-20::before { - content: "\e06f"; } - -.fa-store::before { - content: "\f54e"; } - -.fa-store-slash::before { - content: "\e071"; } - -.fa-street-view::before { - content: "\f21d"; } - -.fa-strikethrough::before { - content: "\f0cc"; } - -.fa-stroopwafel::before { - content: "\f551"; } - -.fa-subscript::before { - content: "\f12c"; } - -.fa-suitcase::before { - content: "\f0f2"; } - -.fa-suitcase-medical::before { - content: "\f0fa"; } - -.fa-medkit::before { - content: "\f0fa"; } - -.fa-suitcase-rolling::before { - content: "\f5c1"; } - -.fa-sun::before { - content: "\f185"; } - -.fa-sun-plant-wilt::before { - content: "\e57a"; } - -.fa-superscript::before { - content: "\f12b"; } - -.fa-swatchbook::before { - content: "\f5c3"; } - -.fa-synagogue::before { - content: "\f69b"; } - -.fa-syringe::before { - content: "\f48e"; } - -.fa-t::before { - content: "\54"; } - -.fa-table::before { - content: "\f0ce"; } - -.fa-table-cells::before { - content: "\f00a"; } - -.fa-th::before { - content: "\f00a"; } - -.fa-table-cells-large::before { - content: "\f009"; } - -.fa-th-large::before { - content: "\f009"; } - -.fa-table-columns::before { - content: "\f0db"; } - -.fa-columns::before { - content: "\f0db"; } - -.fa-table-list::before { - content: "\f00b"; } - -.fa-th-list::before { - content: "\f00b"; } - -.fa-table-tennis-paddle-ball::before { - content: "\f45d"; } - -.fa-ping-pong-paddle-ball::before { - content: "\f45d"; } - -.fa-table-tennis::before { - content: "\f45d"; } - -.fa-tablet::before { - content: "\f3fb"; } - -.fa-tablet-android::before { - content: "\f3fb"; } - -.fa-tablet-button::before { - content: "\f10a"; } - -.fa-tablet-screen-button::before { - content: "\f3fa"; } - -.fa-tablet-alt::before { - content: "\f3fa"; } - -.fa-tablets::before { - content: "\f490"; } - -.fa-tachograph-digital::before { - content: "\f566"; } - -.fa-digital-tachograph::before { - content: "\f566"; } - -.fa-tag::before { - content: "\f02b"; } - -.fa-tags::before { - content: "\f02c"; } - -.fa-tape::before { - content: "\f4db"; } - -.fa-tarp::before { - content: "\e57b"; } - -.fa-tarp-droplet::before { - content: "\e57c"; } - -.fa-taxi::before { - content: "\f1ba"; } - -.fa-cab::before { - content: "\f1ba"; } - -.fa-teeth::before { - content: "\f62e"; } - -.fa-teeth-open::before { - content: "\f62f"; } - -.fa-temperature-arrow-down::before { - content: "\e03f"; } - -.fa-temperature-down::before { - content: "\e03f"; } - -.fa-temperature-arrow-up::before { - content: "\e040"; } - -.fa-temperature-up::before { - content: "\e040"; } - -.fa-temperature-empty::before { - content: "\f2cb"; } - -.fa-temperature-0::before { - content: "\f2cb"; } - -.fa-thermometer-0::before { - content: "\f2cb"; } - -.fa-thermometer-empty::before { - content: "\f2cb"; } - -.fa-temperature-full::before { - content: "\f2c7"; } - -.fa-temperature-4::before { - content: "\f2c7"; } - -.fa-thermometer-4::before { - content: "\f2c7"; } - -.fa-thermometer-full::before { - content: "\f2c7"; } - -.fa-temperature-half::before { - content: "\f2c9"; } - -.fa-temperature-2::before { - content: "\f2c9"; } - -.fa-thermometer-2::before { - content: "\f2c9"; } - -.fa-thermometer-half::before { - content: "\f2c9"; } - -.fa-temperature-high::before { - content: "\f769"; } - -.fa-temperature-low::before { - content: "\f76b"; } - -.fa-temperature-quarter::before { - content: "\f2ca"; } - -.fa-temperature-1::before { - content: "\f2ca"; } - -.fa-thermometer-1::before { - content: "\f2ca"; } - -.fa-thermometer-quarter::before { - content: "\f2ca"; } - -.fa-temperature-three-quarters::before { - content: "\f2c8"; } - -.fa-temperature-3::before { - content: "\f2c8"; } - -.fa-thermometer-3::before { - content: "\f2c8"; } - -.fa-thermometer-three-quarters::before { - content: "\f2c8"; } - -.fa-tenge-sign::before { - content: "\f7d7"; } - -.fa-tenge::before { - content: "\f7d7"; } - -.fa-tent::before { - content: "\e57d"; } - -.fa-tent-arrow-down-to-line::before { - content: "\e57e"; } - -.fa-tent-arrow-left-right::before { - content: "\e57f"; } - -.fa-tent-arrow-turn-left::before { - content: "\e580"; } - -.fa-tent-arrows-down::before { - content: "\e581"; } - -.fa-tents::before { - content: "\e582"; } - -.fa-terminal::before { - content: "\f120"; } - -.fa-text-height::before { - content: "\f034"; } - -.fa-text-slash::before { - content: "\f87d"; } - -.fa-remove-format::before { - content: "\f87d"; } - -.fa-text-width::before { - content: "\f035"; } - -.fa-thermometer::before { - content: "\f491"; } - -.fa-thumbs-down::before { - content: "\f165"; } - -.fa-thumbs-up::before { - content: "\f164"; } - -.fa-thumbtack::before { - content: "\f08d"; } - -.fa-thumb-tack::before { - content: "\f08d"; } - -.fa-ticket::before { - content: "\f145"; } - -.fa-ticket-simple::before { - content: "\f3ff"; } - -.fa-ticket-alt::before { - content: "\f3ff"; } - -.fa-timeline::before { - content: "\e29c"; } - -.fa-toggle-off::before { - content: "\f204"; } - -.fa-toggle-on::before { - content: "\f205"; } - -.fa-toilet::before { - content: "\f7d8"; } - -.fa-toilet-paper::before { - content: "\f71e"; } - -.fa-toilet-paper-slash::before { - content: "\e072"; } - -.fa-toilet-portable::before { - content: "\e583"; } - -.fa-toilets-portable::before { - content: "\e584"; } - -.fa-toolbox::before { - content: "\f552"; } - -.fa-tooth::before { - content: "\f5c9"; } - -.fa-torii-gate::before { - content: "\f6a1"; } - -.fa-tornado::before { - content: "\f76f"; } - -.fa-tower-broadcast::before { - content: "\f519"; } - -.fa-broadcast-tower::before { - content: "\f519"; } - -.fa-tower-cell::before { - content: "\e585"; } - -.fa-tower-observation::before { - content: "\e586"; } - -.fa-tractor::before { - content: "\f722"; } - -.fa-trademark::before { - content: "\f25c"; } - -.fa-traffic-light::before { - content: "\f637"; } - -.fa-trailer::before { - content: "\e041"; } - -.fa-train::before { - content: "\f238"; } - -.fa-train-subway::before { - content: "\f239"; } - -.fa-subway::before { - content: "\f239"; } - -.fa-train-tram::before { - content: "\f7da"; } - -.fa-tram::before { - content: "\f7da"; } - -.fa-transgender::before { - content: "\f225"; } - -.fa-transgender-alt::before { - content: "\f225"; } - -.fa-trash::before { - content: "\f1f8"; } - -.fa-trash-arrow-up::before { - content: "\f829"; } - -.fa-trash-restore::before { - content: "\f829"; } - -.fa-trash-can::before { - content: "\f2ed"; } - -.fa-trash-alt::before { - content: "\f2ed"; } - -.fa-trash-can-arrow-up::before { - content: "\f82a"; } - -.fa-trash-restore-alt::before { - content: "\f82a"; } - -.fa-tree::before { - content: "\f1bb"; } - -.fa-tree-city::before { - content: "\e587"; } - -.fa-triangle-exclamation::before { - content: "\f071"; } - -.fa-exclamation-triangle::before { - content: "\f071"; } - -.fa-warning::before { - content: "\f071"; } - -.fa-trophy::before { - content: "\f091"; } - -.fa-trowel::before { - content: "\e589"; } - -.fa-trowel-bricks::before { - content: "\e58a"; } - -.fa-truck::before { - content: "\f0d1"; } - -.fa-truck-arrow-right::before { - content: "\e58b"; } - -.fa-truck-droplet::before { - content: "\e58c"; } - -.fa-truck-fast::before { - content: "\f48b"; } - -.fa-shipping-fast::before { - content: "\f48b"; } - -.fa-truck-field::before { - content: "\e58d"; } - -.fa-truck-field-un::before { - content: "\e58e"; } - -.fa-truck-front::before { - content: "\e2b7"; } - -.fa-truck-medical::before { - content: "\f0f9"; } - -.fa-ambulance::before { - content: "\f0f9"; } - -.fa-truck-monster::before { - content: "\f63b"; } - -.fa-truck-moving::before { - content: "\f4df"; } - -.fa-truck-pickup::before { - content: "\f63c"; } - -.fa-truck-plane::before { - content: "\e58f"; } - -.fa-truck-ramp-box::before { - content: "\f4de"; } - -.fa-truck-loading::before { - content: "\f4de"; } - -.fa-tty::before { - content: "\f1e4"; } - -.fa-teletype::before { - content: "\f1e4"; } - -.fa-turkish-lira-sign::before { - content: "\e2bb"; } - -.fa-try::before { - content: "\e2bb"; } - -.fa-turkish-lira::before { - content: "\e2bb"; } - -.fa-turn-down::before { - content: "\f3be"; } - -.fa-level-down-alt::before { - content: "\f3be"; } - -.fa-turn-up::before { - content: "\f3bf"; } - -.fa-level-up-alt::before { - content: "\f3bf"; } - -.fa-tv::before { - content: "\f26c"; } - -.fa-television::before { - content: "\f26c"; } - -.fa-tv-alt::before { - content: "\f26c"; } - -.fa-u::before { - content: "\55"; } - -.fa-umbrella::before { - content: "\f0e9"; } - -.fa-umbrella-beach::before { - content: "\f5ca"; } - -.fa-underline::before { - content: "\f0cd"; } - -.fa-universal-access::before { - content: "\f29a"; } - -.fa-unlock::before { - content: "\f09c"; } - -.fa-unlock-keyhole::before { - content: "\f13e"; } - -.fa-unlock-alt::before { - content: "\f13e"; } - -.fa-up-down::before { - content: "\f338"; } - -.fa-arrows-alt-v::before { - content: "\f338"; } - -.fa-up-down-left-right::before { - content: "\f0b2"; } - -.fa-arrows-alt::before { - content: "\f0b2"; } - -.fa-up-long::before { - content: "\f30c"; } - -.fa-long-arrow-alt-up::before { - content: "\f30c"; } - -.fa-up-right-and-down-left-from-center::before { - content: "\f424"; } - -.fa-expand-alt::before { - content: "\f424"; } - -.fa-up-right-from-square::before { - content: "\f35d"; } - -.fa-external-link-alt::before { - content: "\f35d"; } - -.fa-upload::before { - content: "\f093"; } - -.fa-user::before { - content: "\f007"; } - -.fa-user-astronaut::before { - content: "\f4fb"; } - -.fa-user-check::before { - content: "\f4fc"; } - -.fa-user-clock::before { - content: "\f4fd"; } - -.fa-user-doctor::before { - content: "\f0f0"; } - -.fa-user-md::before { - content: "\f0f0"; } - -.fa-user-gear::before { - content: "\f4fe"; } - -.fa-user-cog::before { - content: "\f4fe"; } - -.fa-user-graduate::before { - content: "\f501"; } - -.fa-user-group::before { - content: "\f500"; } - -.fa-user-friends::before { - content: "\f500"; } - -.fa-user-injured::before { - content: "\f728"; } - -.fa-user-large::before { - content: "\f406"; } - -.fa-user-alt::before { - content: "\f406"; } - -.fa-user-large-slash::before { - content: "\f4fa"; } - -.fa-user-alt-slash::before { - content: "\f4fa"; } - -.fa-user-lock::before { - content: "\f502"; } - -.fa-user-minus::before { - content: "\f503"; } - -.fa-user-ninja::before { - content: "\f504"; } - -.fa-user-nurse::before { - content: "\f82f"; } - -.fa-user-pen::before { - content: "\f4ff"; } - -.fa-user-edit::before { - content: "\f4ff"; } - -.fa-user-plus::before { - content: "\f234"; } - -.fa-user-secret::before { - content: "\f21b"; } - -.fa-user-shield::before { - content: "\f505"; } - -.fa-user-slash::before { - content: "\f506"; } - -.fa-user-tag::before { - content: "\f507"; } - -.fa-user-tie::before { - content: "\f508"; } - -.fa-user-xmark::before { - content: "\f235"; } - -.fa-user-times::before { - content: "\f235"; } - -.fa-users::before { - content: "\f0c0"; } - -.fa-users-between-lines::before { - content: "\e591"; } - -.fa-users-gear::before { - content: "\f509"; } - -.fa-users-cog::before { - content: "\f509"; } - -.fa-users-line::before { - content: "\e592"; } - -.fa-users-rays::before { - content: "\e593"; } - -.fa-users-rectangle::before { - content: "\e594"; } - -.fa-users-slash::before { - content: "\e073"; } - -.fa-users-viewfinder::before { - content: "\e595"; } - -.fa-utensils::before { - content: "\f2e7"; } - -.fa-cutlery::before { - content: "\f2e7"; } - -.fa-v::before { - content: "\56"; } - -.fa-van-shuttle::before { - content: "\f5b6"; } - -.fa-shuttle-van::before { - content: "\f5b6"; } - -.fa-vault::before { - content: "\e2c5"; } - -.fa-vector-square::before { - content: "\f5cb"; } - -.fa-venus::before { - content: "\f221"; } - -.fa-venus-double::before { - content: "\f226"; } - -.fa-venus-mars::before { - content: "\f228"; } - -.fa-vest::before { - content: "\e085"; } - -.fa-vest-patches::before { - content: "\e086"; } - -.fa-vial::before { - content: "\f492"; } - -.fa-vial-circle-check::before { - content: "\e596"; } - -.fa-vial-virus::before { - content: "\e597"; } - -.fa-vials::before { - content: "\f493"; } - -.fa-video::before { - content: "\f03d"; } - -.fa-video-camera::before { - content: "\f03d"; } - -.fa-video-slash::before { - content: "\f4e2"; } - -.fa-vihara::before { - content: "\f6a7"; } - -.fa-virus::before { - content: "\e074"; } - -.fa-virus-covid::before { - content: "\e4a8"; } - -.fa-virus-covid-slash::before { - content: "\e4a9"; } - -.fa-virus-slash::before { - content: "\e075"; } - -.fa-viruses::before { - content: "\e076"; } - -.fa-voicemail::before { - content: "\f897"; } - -.fa-volcano::before { - content: "\f770"; } - -.fa-volleyball::before { - content: "\f45f"; } - -.fa-volleyball-ball::before { - content: "\f45f"; } - -.fa-volume-high::before { - content: "\f028"; } - -.fa-volume-up::before { - content: "\f028"; } - -.fa-volume-low::before { - content: "\f027"; } - -.fa-volume-down::before { - content: "\f027"; } - -.fa-volume-off::before { - content: "\f026"; } - -.fa-volume-xmark::before { - content: "\f6a9"; } - -.fa-volume-mute::before { - content: "\f6a9"; } - -.fa-volume-times::before { - content: "\f6a9"; } - -.fa-vr-cardboard::before { - content: "\f729"; } - -.fa-w::before { - content: "\57"; } - -.fa-walkie-talkie::before { - content: "\f8ef"; } - -.fa-wallet::before { - content: "\f555"; } - -.fa-wand-magic::before { - content: "\f0d0"; } - -.fa-magic::before { - content: "\f0d0"; } - -.fa-wand-magic-sparkles::before { - content: "\e2ca"; } - -.fa-magic-wand-sparkles::before { - content: "\e2ca"; } - -.fa-wand-sparkles::before { - content: "\f72b"; } - -.fa-warehouse::before { - content: "\f494"; } - -.fa-water::before { - content: "\f773"; } - -.fa-water-ladder::before { - content: "\f5c5"; } - -.fa-ladder-water::before { - content: "\f5c5"; } - -.fa-swimming-pool::before { - content: "\f5c5"; } - -.fa-wave-square::before { - content: "\f83e"; } - -.fa-weight-hanging::before { - content: "\f5cd"; } - -.fa-weight-scale::before { - content: "\f496"; } - -.fa-weight::before { - content: "\f496"; } - -.fa-wheat-awn::before { - content: "\e2cd"; } - -.fa-wheat-alt::before { - content: "\e2cd"; } - -.fa-wheat-awn-circle-exclamation::before { - content: "\e598"; } - -.fa-wheelchair::before { - content: "\f193"; } - -.fa-wheelchair-move::before { - content: "\e2ce"; } - -.fa-wheelchair-alt::before { - content: "\e2ce"; } - -.fa-whiskey-glass::before { - content: "\f7a0"; } - -.fa-glass-whiskey::before { - content: "\f7a0"; } - -.fa-wifi::before { - content: "\f1eb"; } - -.fa-wifi-3::before { - content: "\f1eb"; } - -.fa-wifi-strong::before { - content: "\f1eb"; } - -.fa-wind::before { - content: "\f72e"; } - -.fa-window-maximize::before { - content: "\f2d0"; } - -.fa-window-minimize::before { - content: "\f2d1"; } - -.fa-window-restore::before { - content: "\f2d2"; } - -.fa-wine-bottle::before { - content: "\f72f"; } - -.fa-wine-glass::before { - content: "\f4e3"; } - -.fa-wine-glass-empty::before { - content: "\f5ce"; } - -.fa-wine-glass-alt::before { - content: "\f5ce"; } - -.fa-won-sign::before { - content: "\f159"; } - -.fa-krw::before { - content: "\f159"; } - -.fa-won::before { - content: "\f159"; } - -.fa-worm::before { - content: "\e599"; } - -.fa-wrench::before { - content: "\f0ad"; } - -.fa-x::before { - content: "\58"; } - -.fa-x-ray::before { - content: "\f497"; } - -.fa-xmark::before { - content: "\f00d"; } - -.fa-close::before { - content: "\f00d"; } - -.fa-multiply::before { - content: "\f00d"; } - -.fa-remove::before { - content: "\f00d"; } - -.fa-times::before { - content: "\f00d"; } - -.fa-xmarks-lines::before { - content: "\e59a"; } - -.fa-y::before { - content: "\59"; } - -.fa-yen-sign::before { - content: "\f157"; } - -.fa-cny::before { - content: "\f157"; } - -.fa-jpy::before { - content: "\f157"; } - -.fa-rmb::before { - content: "\f157"; } - -.fa-yen::before { - content: "\f157"; } - -.fa-yin-yang::before { - content: "\f6ad"; } - -.fa-z::before { - content: "\5a"; } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/fontawesome.min.css b/packages/themes/zoll/assets/fontawesome-free/css/fontawesome.min.css deleted file mode 100644 index b16f0a06aa..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/fontawesome.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-a:before{content:"\41"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-anchor:before{content:"\f13d"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-anchor-lock:before{content:"\e4ad"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-ankh:before{content:"\f644"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-archway:before{content:"\f557"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-arrow-trend-down:before{content:"\e097"}.fa-arrow-trend-up:before{content:"\e098"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-arrows-spin:before{content:"\e4bb"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-asterisk:before{content:"\2a"}.fa-at:before{content:"\40"}.fa-atom:before{content:"\f5d2"}.fa-audio-description:before{content:"\f29e"}.fa-austral-sign:before{content:"\e0a9"}.fa-award:before{content:"\f559"}.fa-b:before{content:"\42"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-backward:before{content:"\f04a"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-bahai:before{content:"\f666"}.fa-baht-sign:before{content:"\e0ac"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-barcode:before{content:"\f02a"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-bell:before{content:"\f0f3"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blog:before{content:"\f781"}.fa-bold:before{content:"\f032"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-book-bookmark:before{content:"\e0bb"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-bookmark:before{content:"\f02e"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-bore-hole:before{content:"\e4c3"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-bottle-water:before{content:"\e4c5"}.fa-bowl-food:before{content:"\e4c6"}.fa-bowl-rice:before{content:"\e2eb"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes-packing:before{content:"\e4c7"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-bread-slice:before{content:"\f7ec"}.fa-bridge:before{content:"\e4c8"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-bridge-water:before{content:"\e4ce"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broom:before{content:"\f51a"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-brush:before{content:"\f55d"}.fa-bucket:before{content:"\e4cf"}.fa-bug:before{content:"\f188"}.fa-bug-slash:before{content:"\e490"}.fa-bugs:before{content:"\e4d0"}.fa-building:before{content:"\f1ad"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-building-circle-check:before{content:"\e4d2"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-building-flag:before{content:"\e4d5"}.fa-building-lock:before{content:"\e4d6"}.fa-building-ngo:before{content:"\e4d7"}.fa-building-shield:before{content:"\e4d8"}.fa-building-un:before{content:"\e4d9"}.fa-building-user:before{content:"\e4da"}.fa-building-wheat:before{content:"\e4db"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-burst:before{content:"\e4dc"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-c:before{content:"\43"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-week:before{content:"\f784"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-camera-rotate:before{content:"\e0d8"}.fa-campground:before{content:"\f6bb"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-car-on:before{content:"\e4dd"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-car-side:before{content:"\f5e4"}.fa-car-tunnel:before{content:"\e4de"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-cart-plus:before{content:"\f217"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cedi-sign:before{content:"\e0df"}.fa-cent-sign:before{content:"\e3f5"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-charging-station:before{content:"\f5e7"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-chart-column:before{content:"\e0e3"}.fa-chart-gantt:before{content:"\e0e4"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-chart-simple:before{content:"\e473"}.fa-check:before{content:"\f00c"}.fa-check-double:before{content:"\f560"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-child-dress:before{content:"\e59c"}.fa-child-reaching:before{content:"\e59d"}.fa-child-rifle:before{content:"\e4e0"}.fa-children:before{content:"\e4e1"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-circle-nodes:before{content:"\e4e2"}.fa-circle-notch:before{content:"\f1ce"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-city:before{content:"\f64f"}.fa-clapperboard:before{content:"\e131"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-question:before{content:"\e4e3"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-clover:before{content:"\e139"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-compare:before{content:"\e13a"}.fa-code-fork:before{content:"\e13b"}.fa-code-merge:before{content:"\f387"}.fa-code-pull-request:before{content:"\e13c"}.fa-coins:before{content:"\f51e"}.fa-colon-sign:before{content:"\e140"}.fa-comment:before{content:"\f075"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-compress:before{content:"\f066"}.fa-computer:before{content:"\e4e5"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-d:before{content:"\44"}.fa-database:before{content:"\f1c0"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-democrat:before{content:"\f747"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-dharmachakra:before{content:"\f655"}.fa-diagram-next:before{content:"\e476"}.fa-diagram-predecessor:before{content:"\e477"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-diagram-successor:before{content:"\e47a"}.fa-diamond:before{content:"\f219"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-disease:before{content:"\f7fa"}.fa-display:before{content:"\e163"}.fa-divide:before{content:"\f529"}.fa-dna:before{content:"\f471"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-dong-sign:before{content:"\e169"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dove:before{content:"\f4ba"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-download:before{content:"\f019"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-e:before{content:"\45"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elevator:before{content:"\e16d"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-equals:before{content:"\3d"}.fa-eraser:before{content:"\f12d"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-exclamation:before{content:"\21"}.fa-expand:before{content:"\f065"}.fa-explosion:before{content:"\e4e9"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-eye-slash:before{content:"\f070"}.fa-f:before{content:"\46"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-fan:before{content:"\f863"}.fa-faucet:before{content:"\e005"}.fa-faucet-drip:before{content:"\e006"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-ferry:before{content:"\e4ea"}.fa-file:before{content:"\f15b"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-file-audio:before{content:"\f1c7"}.fa-file-circle-check:before{content:"\e493"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-file-circle-plus:before{content:"\e4ee"}.fa-file-circle-question:before{content:"\e4ef"}.fa-file-circle-xmark:before{content:"\e494"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-excel:before{content:"\f1c3"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-file-medical:before{content:"\f477"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-shield:before{content:"\e4f0"}.fa-file-signature:before{content:"\f573"}.fa-file-video:before{content:"\f1c8"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-file-word:before{content:"\f1c2"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-burner:before{content:"\e4f1"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-fish:before{content:"\f578"}.fa-fish-fins:before{content:"\e4f2"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flask-vial:before{content:"\e4f3"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-florin-sign:before{content:"\e184"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-folder-closed:before{content:"\e185"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-tree:before{content:"\f802"}.fa-font:before{content:"\f031"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-franc-sign:before{content:"\e18f"}.fa-frog:before{content:"\f52e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-g:before{content:"\47"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-glass-water:before{content:"\e4f4"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-glasses:before{content:"\f530"}.fa-globe:before{content:"\f0ac"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-greater-than:before{content:"\3e"}.fa-greater-than-equal:before{content:"\f532"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-guarani-sign:before{content:"\e19a"}.fa-guitar:before{content:"\f7a6"}.fa-gun:before{content:"\e19b"}.fa-h:before{content:"\48"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-handcuffs:before{content:"\e4f8"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-hands-bound:before{content:"\e4f9"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-hands-clapping:before{content:"\e1a8"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-handshake:before{content:"\f2b5"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-hashtag:before{content:"\23"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-heart-circle-plus:before{content:"\e500"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helicopter-symbol:before{content:"\e502"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-helmet-un:before{content:"\e503"}.fa-highlighter:before{content:"\f591"}.fa-hill-avalanche:before{content:"\e507"}.fa-hill-rockslide:before{content:"\e508"}.fa-hippo:before{content:"\f6ed"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hourglass-2:before,.fa-hourglass-half:before,.fa-hourglass:before{content:"\f254"}.fa-hourglass-empty:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-house-chimney-user:before{content:"\e065"}.fa-house-chimney-window:before{content:"\e00d"}.fa-house-circle-check:before{content:"\e509"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-house-crack:before{content:"\e3b1"}.fa-house-fire:before{content:"\e50c"}.fa-house-flag:before{content:"\e50d"}.fa-house-flood-water:before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-house-lock:before{content:"\e510"}.fa-house-medical:before{content:"\e3b2"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-house-medical-flag:before{content:"\e514"}.fa-house-signal:before{content:"\e012"}.fa-house-tsunami:before{content:"\e515"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-hurricane:before{content:"\f751"}.fa-i:before{content:"\49"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-images:before{content:"\f302"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-italic:before{content:"\f033"}.fa-j:before{content:"\4a"}.fa-jar:before{content:"\e516"}.fa-jar-wheat:before{content:"\e517"}.fa-jedi:before{content:"\f669"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-jet-fighter-up:before{content:"\e518"}.fa-joint:before{content:"\f595"}.fa-jug-detergent:before{content:"\e519"}.fa-k:before{content:"\4b"}.fa-kaaba:before{content:"\f66b"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-khanda:before{content:"\f66d"}.fa-kip-sign:before{content:"\e1c4"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-kitchen-set:before{content:"\e51a"}.fa-kiwi-bird:before{content:"\f535"}.fa-l:before{content:"\4c"}.fa-land-mine-on:before{content:"\e51b"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-landmark-flag:before{content:"\e51c"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-file:before{content:"\e51d"}.fa-laptop-medical:before{content:"\f812"}.fa-lari-sign:before{content:"\e1c8"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-lemon:before{content:"\f094"}.fa-less-than:before{content:"\3c"}.fa-less-than-equal:before{content:"\f537"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lines-leaning:before{content:"\e51e"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-lira-sign:before{content:"\f195"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-location-arrow:before{content:"\f124"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-location-pin-lock:before{content:"\e51f"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-locust:before{content:"\e520"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-m:before{content:"\4d"}.fa-magnet:before{content:"\f076"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-manat-sign:before{content:"\e1d5"}.fa-map:before{content:"\f279"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-pin:before{content:"\f276"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-and-venus:before{content:"\f224"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-mask:before{content:"\f6fa"}.fa-mask-face:before{content:"\e1d7"}.fa-mask-ventilator:before{content:"\e524"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-mattress-pillow:before{content:"\e525"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-medal:before{content:"\f5a2"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-mill-sign:before{content:"\e1ed"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-mitten:before{content:"\f7b5"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-mobile-button:before{content:"\f10b"}.fa-mobile-retro:before{content:"\e527"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-money-bills:before{content:"\e1f3"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-mosquito-net:before{content:"\e52c"}.fa-motorcycle:before{content:"\f21c"}.fa-mound:before{content:"\e52d"}.fa-mountain:before{content:"\f6fc"}.fa-mountain-city:before{content:"\e52e"}.fa-mountain-sun:before{content:"\e52f"}.fa-mug-hot:before{content:"\f7b6"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-music:before{content:"\f001"}.fa-n:before{content:"\4e"}.fa-naira-sign:before{content:"\e1f6"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-not-equal:before{content:"\f53e"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-notes-medical:before{content:"\f481"}.fa-o:before{content:"\4f"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-oil-can:before{content:"\f613"}.fa-oil-well:before{content:"\e532"}.fa-om:before{content:"\f679"}.fa-otter:before{content:"\f700"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-p:before{content:"\50"}.fa-pager:before{content:"\f815"}.fa-paint-roller:before{content:"\f5aa"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-palette:before{content:"\f53f"}.fa-pallet:before{content:"\f482"}.fa-panorama:before{content:"\e209"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-passport:before{content:"\f5ab"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-pause:before{content:"\f04c"}.fa-paw:before{content:"\f1b0"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-people-group:before{content:"\e533"}.fa-people-line:before{content:"\e534"}.fa-people-pulling:before{content:"\e535"}.fa-people-robbery:before{content:"\e536"}.fa-people-roof:before{content:"\e537"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-person-booth:before{content:"\f756"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-person-burst:before{content:"\e53b"}.fa-person-cane:before{content:"\e53c"}.fa-person-chalkboard:before{content:"\e53d"}.fa-person-circle-check:before{content:"\e53e"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-person-circle-minus:before{content:"\e540"}.fa-person-circle-plus:before{content:"\e541"}.fa-person-circle-question:before{content:"\e542"}.fa-person-circle-xmark:before{content:"\e543"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-person-dress-burst:before{content:"\e544"}.fa-person-drowning:before{content:"\e545"}.fa-person-falling:before{content:"\e546"}.fa-person-falling-burst:before{content:"\e547"}.fa-person-half-dress:before{content:"\e548"}.fa-person-harassing:before{content:"\e549"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-person-military-pointing:before{content:"\e54a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-person-military-to-person:before{content:"\e54c"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-person-pregnant:before{content:"\e31e"}.fa-person-rays:before{content:"\e54d"}.fa-person-rifle:before{content:"\e54e"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-person-shelter:before{content:"\e54f"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-person-through-window:before{content:"\e433"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-person-walking-luggage:before{content:"\e554"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-peseta-sign:before{content:"\e221"}.fa-peso-sign:before{content:"\e222"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-circle-check:before{content:"\e555"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-lock:before{content:"\e558"}.fa-plane-slash:before{content:"\e069"}.fa-plane-up:before{content:"\e22d"}.fa-plant-wilt:before{content:"\e43b"}.fa-plate-wheat:before{content:"\e55a"}.fa-play:before{content:"\f04b"}.fa-plug:before{content:"\f1e6"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-plug-circle-check:before{content:"\e55c"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-plus-minus:before{content:"\e43c"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-puzzle-piece:before{content:"\f12e"}.fa-q:before{content:"\51"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\3f"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-r:before{content:"\52"}.fa-radiation:before{content:"\f7b9"}.fa-radio:before{content:"\f8d7"}.fa-rainbow:before{content:"\f75b"}.fa-ranking-star:before{content:"\e561"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-recycle:before{content:"\f1b8"}.fa-registered:before{content:"\f25d"}.fa-repeat:before{content:"\f363"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-republican:before{content:"\f75e"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-road-barrier:before{content:"\e562"}.fa-road-bridge:before{content:"\e563"}.fa-road-circle-check:before{content:"\e564"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-road-circle-xmark:before{content:"\e566"}.fa-road-lock:before{content:"\e567"}.fa-road-spikes:before{content:"\e568"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-route:before{content:"\f4d7"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-rug:before{content:"\e569"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-rupiah-sign:before{content:"\e23d"}.fa-s:before{content:"\53"}.fa-sack-dollar:before{content:"\f81d"}.fa-sack-xmark:before{content:"\e56a"}.fa-sailboat:before{content:"\e445"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-school:before{content:"\f549"}.fa-school-circle-check:before{content:"\e56b"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-school-flag:before{content:"\e56e"}.fa-school-lock:before{content:"\e56f"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-screwdriver:before{content:"\f54a"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-scroll:before{content:"\f70e"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-sd-card:before{content:"\f7c2"}.fa-section:before{content:"\e447"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-server:before{content:"\f233"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-sheet-plastic:before{content:"\e571"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-shield-cat:before{content:"\e572"}.fa-shield-dog:before{content:"\e573"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-shield-heart:before{content:"\e574"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-shoe-prints:before{content:"\f54b"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-shop-lock:before{content:"\e4a5"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-shower:before{content:"\f2cc"}.fa-shrimp:before{content:"\e448"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-sim-card:before{content:"\f7c4"}.fa-sink:before{content:"\e06d"}.fa-sitemap:before{content:"\f0e8"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-spa:before{content:"\f5bb"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-spray-can:before{content:"\f5bd"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-square:before{content:"\f0c8"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-square-full:before{content:"\f45c"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-square-nfi:before{content:"\e576"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-square-person-confined:before{content:"\e577"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-square-virus:before{content:"\e578"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-stairs:before{content:"\e289"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-stethoscope:before{content:"\f0f1"}.fa-stop:before{content:"\f04d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-slash:before{content:"\e071"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stroopwafel:before{content:"\f551"}.fa-subscript:before{content:"\f12c"}.fa-suitcase:before{content:"\f0f2"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-superscript:before{content:"\f12b"}.fa-swatchbook:before{content:"\f5c3"}.fa-synagogue:before{content:"\f69b"}.fa-syringe:before{content:"\f48e"}.fa-t:before{content:"\54"}.fa-table:before{content:"\f0ce"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-tablet-button:before{content:"\f10a"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tarp:before{content:"\e57b"}.fa-tarp-droplet:before{content:"\e57c"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-tent:before{content:"\e57d"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tent-arrows-down:before{content:"\e581"}.fa-tents:before{content:"\e582"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-text-width:before{content:"\f035"}.fa-thermometer:before{content:"\f491"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-timeline:before{content:"\e29c"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toilet-portable:before{content:"\e583"}.fa-toilets-portable:before{content:"\e584"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-tower-cell:before{content:"\e585"}.fa-tower-observation:before{content:"\e586"}.fa-tractor:before{content:"\f722"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-train-tram:before,.fa-tram:before{content:"\f7da"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-tree-city:before{content:"\e587"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-trophy:before{content:"\f091"}.fa-trowel:before{content:"\e589"}.fa-trowel-bricks:before{content:"\e58a"}.fa-truck:before{content:"\f0d1"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-truck-droplet:before{content:"\e58c"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-truck-field:before{content:"\e58d"}.fa-truck-field-un:before{content:"\e58e"}.fa-truck-front:before{content:"\e2b7"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plane:before{content:"\e58f"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-u:before{content:"\55"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-universal-access:before{content:"\f29a"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-upload:before{content:"\f093"}.fa-user:before{content:"\f007"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-clock:before{content:"\f4fd"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-user-graduate:before{content:"\f501"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-user-injured:before{content:"\f728"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-user-lock:before{content:"\f502"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-between-lines:before{content:"\e591"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-users-line:before{content:"\e592"}.fa-users-rays:before{content:"\e593"}.fa-users-rectangle:before{content:"\e594"}.fa-users-slash:before{content:"\e073"}.fa-users-viewfinder:before{content:"\e595"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-v:before{content:"\56"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-vault:before{content:"\e2c5"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-vial:before{content:"\f492"}.fa-vial-circle-check:before{content:"\e596"}.fa-vial-virus:before{content:"\e597"}.fa-vials:before{content:"\f493"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-virus:before{content:"\e074"}.fa-virus-covid:before{content:"\e4a8"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-voicemail:before{content:"\f897"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-vr-cardboard:before{content:"\f729"}.fa-w:before{content:"\57"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-wallet:before{content:"\f555"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-wand-sparkles:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-wave-square:before{content:"\f83e"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-wheelchair:before{content:"\f193"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-wind:before{content:"\f72e"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-worm:before{content:"\e599"}.fa-wrench:before{content:"\f0ad"}.fa-x:before{content:"\58"}.fa-x-ray:before{content:"\f497"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-xmarks-lines:before{content:"\e59a"}.fa-y:before{content:"\59"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-z:before{content:"\5a"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/regular.css b/packages/themes/zoll/assets/fontawesome-free/css/regular.css deleted file mode 100644 index ed7304da35..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/regular.css +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } - -.far, -.fa-regular { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/regular.min.css b/packages/themes/zoll/assets/fontawesome-free/css/regular.min.css deleted file mode 100644 index f98b44af6c..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/regular.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/solid.css b/packages/themes/zoll/assets/fontawesome-free/css/solid.css deleted file mode 100644 index 85f9b8503d..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/solid.css +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } - -@font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -.fas, -.fa-solid { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/solid.min.css b/packages/themes/zoll/assets/fontawesome-free/css/solid.min.css deleted file mode 100644 index 793fd43738..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/solid.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/svg-with-js.css b/packages/themes/zoll/assets/fontawesome-free/css/svg-with-js.css deleted file mode 100644 index 0f96c4860c..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/svg-with-js.css +++ /dev/null @@ -1,634 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:root, :host { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid"; - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular"; - --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light"; - --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin"; - --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone"; - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } - -svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa { - overflow: visible; - box-sizing: content-box; } - -.svg-inline--fa { - display: var(--fa-display, inline-block); - height: 1em; - overflow: visible; - vertical-align: -.125em; } - .svg-inline--fa.fa-2xs { - vertical-align: 0.1em; } - .svg-inline--fa.fa-xs { - vertical-align: 0em; } - .svg-inline--fa.fa-sm { - vertical-align: -0.07143em; } - .svg-inline--fa.fa-lg { - vertical-align: -0.2em; } - .svg-inline--fa.fa-xl { - vertical-align: -0.25em; } - .svg-inline--fa.fa-2xl { - vertical-align: -0.3125em; } - .svg-inline--fa.fa-pull-left { - margin-right: var(--fa-pull-margin, 0.3em); - width: auto; } - .svg-inline--fa.fa-pull-right { - margin-left: var(--fa-pull-margin, 0.3em); - width: auto; } - .svg-inline--fa.fa-li { - width: var(--fa-li-width, 2em); - top: 0.25em; } - .svg-inline--fa.fa-fw { - width: var(--fa-fw-width, 1.25em); } - -.fa-layers svg.svg-inline--fa { - bottom: 0; - left: 0; - margin: auto; - position: absolute; - right: 0; - top: 0; } - -.fa-layers-text, .fa-layers-counter { - display: inline-block; - position: absolute; - text-align: center; } - -.fa-layers { - display: inline-block; - height: 1em; - position: relative; - text-align: center; - vertical-align: -.125em; - width: 1em; } - .fa-layers svg.svg-inline--fa { - -webkit-transform-origin: center center; - transform-origin: center center; } - -.fa-layers-text { - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - -webkit-transform-origin: center center; - transform-origin: center center; } - -.fa-layers-counter { - background-color: var(--fa-counter-background-color, #ff253a); - border-radius: var(--fa-counter-border-radius, 1em); - box-sizing: border-box; - color: var(--fa-inverse, #fff); - line-height: var(--fa-counter-line-height, 1); - max-width: var(--fa-counter-max-width, 5em); - min-width: var(--fa-counter-min-width, 1.5em); - overflow: hidden; - padding: var(--fa-counter-padding, 0.25em 0.5em); - right: var(--fa-right, 0); - text-overflow: ellipsis; - top: var(--fa-top, 0); - -webkit-transform: scale(var(--fa-counter-scale, 0.25)); - transform: scale(var(--fa-counter-scale, 0.25)); - -webkit-transform-origin: top right; - transform-origin: top right; } - -.fa-layers-bottom-right { - bottom: var(--fa-bottom, 0); - right: var(--fa-right, 0); - top: auto; - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: bottom right; - transform-origin: bottom right; } - -.fa-layers-bottom-left { - bottom: var(--fa-bottom, 0); - left: var(--fa-left, 0); - right: auto; - top: auto; - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: bottom left; - transform-origin: bottom left; } - -.fa-layers-top-right { - top: var(--fa-top, 0); - right: var(--fa-right, 0); - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: top right; - transform-origin: top right; } - -.fa-layers-top-left { - left: var(--fa-left, 0); - right: auto; - top: var(--fa-top, 0); - -webkit-transform: scale(var(--fa-layers-scale, 0.25)); - transform: scale(var(--fa-layers-scale, 0.25)); - -webkit-transform-origin: top left; - transform-origin: top left; } - -.fa-1x { - font-size: 1em; } - -.fa-2x { - font-size: 2em; } - -.fa-3x { - font-size: 3em; } - -.fa-4x { - font-size: 4em; } - -.fa-5x { - font-size: 5em; } - -.fa-6x { - font-size: 6em; } - -.fa-7x { - font-size: 7em; } - -.fa-8x { - font-size: 8em; } - -.fa-9x { - font-size: 9em; } - -.fa-10x { - font-size: 10em; } - -.fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; } - -.fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; } - -.fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; } - -.fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; } - -.fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; } - -.fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; } - -.fa-fw { - text-align: center; - width: 1.25em; } - -.fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; } - .fa-ul > li { - position: relative; } - -.fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; } - -.fa-border { - border-color: var(--fa-border-color, #eee); - border-radius: var(--fa-border-radius, 0.1em); - border-style: var(--fa-border-style, solid); - border-width: var(--fa-border-width, 0.08em); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } - -.fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); } - -.fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); } - -.fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } - -.fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } - -.fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); } - -.fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); } - -.fa-spin-reverse { - --fa-animation-direction: reverse; } - -.fa-pulse, -.fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); } - -@media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-bounce, - .fa-fade, - .fa-beat-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; } } - -@-webkit-keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@keyframes fa-beat { - 0%, 90% { - -webkit-transform: scale(1); - transform: scale(1); } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); } } - -@-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@keyframes fa-bounce { - 0% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } - 57% { - -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } - 64% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } - 100% { - -webkit-transform: scale(1, 1) translateY(0); - transform: scale(1, 1) translateY(0); } } - -@-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); } } - -@-webkit-keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@keyframes fa-beat-fade { - 0%, 100% { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); } } - -@-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } - -@-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); } - 8%, 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); } - 12%, 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); } - 40%, 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } } - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); } } - -.fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); } - -.fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); } - -.fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); } - -.fa-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); } - -.fa-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); } - -.fa-flip-both, -.fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); } - -.fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); } - -.fa-stack { - display: inline-block; - vertical-align: middle; - height: 2em; - position: relative; - width: 2.5em; } - -.fa-stack-1x, -.fa-stack-2x { - bottom: 0; - left: 0; - margin: auto; - position: absolute; - right: 0; - top: 0; - z-index: var(--fa-stack-z-index, auto); } - -.svg-inline--fa.fa-stack-1x { - height: 1em; - width: 1.25em; } - -.svg-inline--fa.fa-stack-2x { - height: 2em; - width: 2.5em; } - -.fa-inverse { - color: var(--fa-inverse, #fff); } - -.sr-only, -.fa-sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.sr-only-focusable:not(:focus), -.fa-sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; } - -.svg-inline--fa .fa-primary { - fill: var(--fa-primary-color, currentColor); - opacity: var(--fa-primary-opacity, 1); } - -.svg-inline--fa .fa-secondary { - fill: var(--fa-secondary-color, currentColor); - opacity: var(--fa-secondary-opacity, 0.4); } - -.svg-inline--fa.fa-swap-opacity .fa-primary { - opacity: var(--fa-secondary-opacity, 0.4); } - -.svg-inline--fa.fa-swap-opacity .fa-secondary { - opacity: var(--fa-primary-opacity, 1); } - -.svg-inline--fa mask .fa-primary, -.svg-inline--fa mask .fa-secondary { - fill: black; } - -.fad.fa-inverse, -.fa-duotone.fa-inverse { - color: var(--fa-inverse, #fff); } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/svg-with-js.min.css b/packages/themes/zoll/assets/fontawesome-free/css/svg-with-js.min.css deleted file mode 100644 index 1e5aa4699f..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/svg-with-js.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";--fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";--fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";--fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display,inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0}.svg-inline--fa.fa-sm{vertical-align:-.07143em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width,2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--fa-fw-width,1.25em)}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-text{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform-origin:center center;transform-origin:center center}.fa-layers-counter{background-color:var(--fa-counter-background-color,#ff253a);border-radius:var(--fa-counter-border-radius,1em);box-sizing:border-box;color:var(--fa-inverse,#fff);line-height:var(--fa-counter-line-height,1);max-width:var(--fa-counter-max-width,5em);min-width:var(--fa-counter-min-width,1.5em);overflow:hidden;padding:var(--fa-counter-padding,.25em .5em);right:var(--fa-right,0);text-overflow:ellipsis;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-counter-scale,.25));transform:scale(var(--fa-counter-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom,0);right:var(--fa-right,0);top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom,0);left:var(--fa-left,0);right:auto;top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top,0);right:var(--fa-right,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:var(--fa-left,0);right:auto;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top left;transform-origin:top left}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/v4-font-face.css b/packages/themes/zoll/assets/fontawesome-free/css/v4-font-face.css deleted file mode 100644 index cd93511aaa..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/v4-font-face.css +++ /dev/null @@ -1,26 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); - unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } - -@font-face { - font-family: "FontAwesome"; - font-display: block; - src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); - unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/v4-font-face.min.css b/packages/themes/zoll/assets/fontawesome-free/css/v4-font-face.min.css deleted file mode 100644 index aa10b8ccf8..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/v4-font-face.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f250,u+f252,u+f27a} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/v4-shims.css b/packages/themes/zoll/assets/fontawesome-free/css/v4-shims.css deleted file mode 100644 index 2080c37875..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/v4-shims.css +++ /dev/null @@ -1,2146 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa.fa-glass:before { - content: "\f000"; } - -.fa.fa-envelope-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-envelope-o:before { - content: "\f0e0"; } - -.fa.fa-star-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-o:before { - content: "\f005"; } - -.fa.fa-remove:before { - content: "\f00d"; } - -.fa.fa-close:before { - content: "\f00d"; } - -.fa.fa-gear:before { - content: "\f013"; } - -.fa.fa-trash-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-trash-o:before { - content: "\f2ed"; } - -.fa.fa-home:before { - content: "\f015"; } - -.fa.fa-file-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-o:before { - content: "\f15b"; } - -.fa.fa-clock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-clock-o:before { - content: "\f017"; } - -.fa.fa-arrow-circle-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-down:before { - content: "\f358"; } - -.fa.fa-arrow-circle-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-up:before { - content: "\f35b"; } - -.fa.fa-play-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-play-circle-o:before { - content: "\f144"; } - -.fa.fa-repeat:before { - content: "\f01e"; } - -.fa.fa-rotate-right:before { - content: "\f01e"; } - -.fa.fa-refresh:before { - content: "\f021"; } - -.fa.fa-list-alt { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-list-alt:before { - content: "\f022"; } - -.fa.fa-dedent:before { - content: "\f03b"; } - -.fa.fa-video-camera:before { - content: "\f03d"; } - -.fa.fa-picture-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-picture-o:before { - content: "\f03e"; } - -.fa.fa-photo { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-photo:before { - content: "\f03e"; } - -.fa.fa-image { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-image:before { - content: "\f03e"; } - -.fa.fa-map-marker:before { - content: "\f3c5"; } - -.fa.fa-pencil-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-pencil-square-o:before { - content: "\f044"; } - -.fa.fa-edit { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-edit:before { - content: "\f044"; } - -.fa.fa-share-square-o:before { - content: "\f14d"; } - -.fa.fa-check-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-check-square-o:before { - content: "\f14a"; } - -.fa.fa-arrows:before { - content: "\f0b2"; } - -.fa.fa-times-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-circle-o:before { - content: "\f057"; } - -.fa.fa-check-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-check-circle-o:before { - content: "\f058"; } - -.fa.fa-mail-forward:before { - content: "\f064"; } - -.fa.fa-expand:before { - content: "\f424"; } - -.fa.fa-compress:before { - content: "\f422"; } - -.fa.fa-eye { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-eye-slash { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-warning:before { - content: "\f071"; } - -.fa.fa-calendar:before { - content: "\f073"; } - -.fa.fa-arrows-v:before { - content: "\f338"; } - -.fa.fa-arrows-h:before { - content: "\f337"; } - -.fa.fa-bar-chart:before { - content: "\e0e3"; } - -.fa.fa-bar-chart-o:before { - content: "\e0e3"; } - -.fa.fa-twitter-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gears:before { - content: "\f085"; } - -.fa.fa-thumbs-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-thumbs-o-up:before { - content: "\f164"; } - -.fa.fa-thumbs-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-thumbs-o-down:before { - content: "\f165"; } - -.fa.fa-heart-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-heart-o:before { - content: "\f004"; } - -.fa.fa-sign-out:before { - content: "\f2f5"; } - -.fa.fa-linkedin-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linkedin-square:before { - content: "\f08c"; } - -.fa.fa-thumb-tack:before { - content: "\f08d"; } - -.fa.fa-external-link:before { - content: "\f35d"; } - -.fa.fa-sign-in:before { - content: "\f2f6"; } - -.fa.fa-github-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-lemon-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-lemon-o:before { - content: "\f094"; } - -.fa.fa-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-square-o:before { - content: "\f0c8"; } - -.fa.fa-bookmark-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bookmark-o:before { - content: "\f02e"; } - -.fa.fa-twitter { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook:before { - content: "\f39e"; } - -.fa.fa-facebook-f { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-f:before { - content: "\f39e"; } - -.fa.fa-github { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-credit-card { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-feed:before { - content: "\f09e"; } - -.fa.fa-hdd-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hdd-o:before { - content: "\f0a0"; } - -.fa.fa-hand-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-right:before { - content: "\f0a4"; } - -.fa.fa-hand-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-left:before { - content: "\f0a5"; } - -.fa.fa-hand-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-up:before { - content: "\f0a6"; } - -.fa.fa-hand-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-o-down:before { - content: "\f0a7"; } - -.fa.fa-globe:before { - content: "\f57d"; } - -.fa.fa-tasks:before { - content: "\f828"; } - -.fa.fa-arrows-alt:before { - content: "\f31e"; } - -.fa.fa-group:before { - content: "\f0c0"; } - -.fa.fa-chain:before { - content: "\f0c1"; } - -.fa.fa-cut:before { - content: "\f0c4"; } - -.fa.fa-files-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-files-o:before { - content: "\f0c5"; } - -.fa.fa-floppy-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-floppy-o:before { - content: "\f0c7"; } - -.fa.fa-save { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-save:before { - content: "\f0c7"; } - -.fa.fa-navicon:before { - content: "\f0c9"; } - -.fa.fa-reorder:before { - content: "\f0c9"; } - -.fa.fa-magic:before { - content: "\e2ca"; } - -.fa.fa-pinterest { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pinterest-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus:before { - content: "\f0d5"; } - -.fa.fa-money:before { - content: "\f3d1"; } - -.fa.fa-unsorted:before { - content: "\f0dc"; } - -.fa.fa-sort-desc:before { - content: "\f0dd"; } - -.fa.fa-sort-asc:before { - content: "\f0de"; } - -.fa.fa-linkedin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linkedin:before { - content: "\f0e1"; } - -.fa.fa-rotate-left:before { - content: "\f0e2"; } - -.fa.fa-legal:before { - content: "\f0e3"; } - -.fa.fa-tachometer:before { - content: "\f625"; } - -.fa.fa-dashboard:before { - content: "\f625"; } - -.fa.fa-comment-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-comment-o:before { - content: "\f075"; } - -.fa.fa-comments-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-comments-o:before { - content: "\f086"; } - -.fa.fa-flash:before { - content: "\f0e7"; } - -.fa.fa-clipboard:before { - content: "\f0ea"; } - -.fa.fa-lightbulb-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-lightbulb-o:before { - content: "\f0eb"; } - -.fa.fa-exchange:before { - content: "\f362"; } - -.fa.fa-cloud-download:before { - content: "\f0ed"; } - -.fa.fa-cloud-upload:before { - content: "\f0ee"; } - -.fa.fa-bell-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bell-o:before { - content: "\f0f3"; } - -.fa.fa-cutlery:before { - content: "\f2e7"; } - -.fa.fa-file-text-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-text-o:before { - content: "\f15c"; } - -.fa.fa-building-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-building-o:before { - content: "\f1ad"; } - -.fa.fa-hospital-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hospital-o:before { - content: "\f0f8"; } - -.fa.fa-tablet:before { - content: "\f3fa"; } - -.fa.fa-mobile:before { - content: "\f3cd"; } - -.fa.fa-mobile-phone:before { - content: "\f3cd"; } - -.fa.fa-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-circle-o:before { - content: "\f111"; } - -.fa.fa-mail-reply:before { - content: "\f3e5"; } - -.fa.fa-github-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-folder-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-folder-o:before { - content: "\f07b"; } - -.fa.fa-folder-open-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-folder-open-o:before { - content: "\f07c"; } - -.fa.fa-smile-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-smile-o:before { - content: "\f118"; } - -.fa.fa-frown-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-frown-o:before { - content: "\f119"; } - -.fa.fa-meh-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-meh-o:before { - content: "\f11a"; } - -.fa.fa-keyboard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-keyboard-o:before { - content: "\f11c"; } - -.fa.fa-flag-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-flag-o:before { - content: "\f024"; } - -.fa.fa-mail-reply-all:before { - content: "\f122"; } - -.fa.fa-star-half-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-o:before { - content: "\f5c0"; } - -.fa.fa-star-half-empty { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-empty:before { - content: "\f5c0"; } - -.fa.fa-star-half-full { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-star-half-full:before { - content: "\f5c0"; } - -.fa.fa-code-fork:before { - content: "\f126"; } - -.fa.fa-chain-broken:before { - content: "\f127"; } - -.fa.fa-unlink:before { - content: "\f127"; } - -.fa.fa-calendar-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-o:before { - content: "\f133"; } - -.fa.fa-maxcdn { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-html5 { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-css3 { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-unlock-alt:before { - content: "\f09c"; } - -.fa.fa-minus-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-minus-square-o:before { - content: "\f146"; } - -.fa.fa-level-up:before { - content: "\f3bf"; } - -.fa.fa-level-down:before { - content: "\f3be"; } - -.fa.fa-pencil-square:before { - content: "\f14b"; } - -.fa.fa-external-link-square:before { - content: "\f360"; } - -.fa.fa-compass { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-down:before { - content: "\f150"; } - -.fa.fa-toggle-down { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-down:before { - content: "\f150"; } - -.fa.fa-caret-square-o-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-up:before { - content: "\f151"; } - -.fa.fa-toggle-up { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-up:before { - content: "\f151"; } - -.fa.fa-caret-square-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-right:before { - content: "\f152"; } - -.fa.fa-toggle-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-right:before { - content: "\f152"; } - -.fa.fa-eur:before { - content: "\f153"; } - -.fa.fa-euro:before { - content: "\f153"; } - -.fa.fa-gbp:before { - content: "\f154"; } - -.fa.fa-usd:before { - content: "\24"; } - -.fa.fa-dollar:before { - content: "\24"; } - -.fa.fa-inr:before { - content: "\e1bc"; } - -.fa.fa-rupee:before { - content: "\e1bc"; } - -.fa.fa-jpy:before { - content: "\f157"; } - -.fa.fa-cny:before { - content: "\f157"; } - -.fa.fa-rmb:before { - content: "\f157"; } - -.fa.fa-yen:before { - content: "\f157"; } - -.fa.fa-rub:before { - content: "\f158"; } - -.fa.fa-ruble:before { - content: "\f158"; } - -.fa.fa-rouble:before { - content: "\f158"; } - -.fa.fa-krw:before { - content: "\f159"; } - -.fa.fa-won:before { - content: "\f159"; } - -.fa.fa-btc { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitcoin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitcoin:before { - content: "\f15a"; } - -.fa.fa-file-text:before { - content: "\f15c"; } - -.fa.fa-sort-alpha-asc:before { - content: "\f15d"; } - -.fa.fa-sort-alpha-desc:before { - content: "\f881"; } - -.fa.fa-sort-amount-asc:before { - content: "\f884"; } - -.fa.fa-sort-amount-desc:before { - content: "\f160"; } - -.fa.fa-sort-numeric-asc:before { - content: "\f162"; } - -.fa.fa-sort-numeric-desc:before { - content: "\f886"; } - -.fa.fa-youtube-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-xing { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-xing-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube-play { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-youtube-play:before { - content: "\f167"; } - -.fa.fa-dropbox { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stack-overflow { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-instagram { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-flickr { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-adn { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bitbucket-square:before { - content: "\f171"; } - -.fa.fa-tumblr { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-tumblr-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-long-arrow-down:before { - content: "\f309"; } - -.fa.fa-long-arrow-up:before { - content: "\f30c"; } - -.fa.fa-long-arrow-left:before { - content: "\f30a"; } - -.fa.fa-long-arrow-right:before { - content: "\f30b"; } - -.fa.fa-apple { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-windows { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-android { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-linux { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-dribbble { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-skype { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-foursquare { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-trello { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gratipay { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gittip { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gittip:before { - content: "\f184"; } - -.fa.fa-sun-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sun-o:before { - content: "\f185"; } - -.fa.fa-moon-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-moon-o:before { - content: "\f186"; } - -.fa.fa-vk { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-weibo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-renren { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pagelines { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stack-exchange { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-right { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-right:before { - content: "\f35a"; } - -.fa.fa-arrow-circle-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-arrow-circle-o-left:before { - content: "\f359"; } - -.fa.fa-caret-square-o-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-caret-square-o-left:before { - content: "\f191"; } - -.fa.fa-toggle-left { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-toggle-left:before { - content: "\f191"; } - -.fa.fa-dot-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-dot-circle-o:before { - content: "\f192"; } - -.fa.fa-vimeo-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-try:before { - content: "\e2bb"; } - -.fa.fa-turkish-lira:before { - content: "\e2bb"; } - -.fa.fa-plus-square-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-plus-square-o:before { - content: "\f0fe"; } - -.fa.fa-slack { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wordpress { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-openid { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-institution:before { - content: "\f19c"; } - -.fa.fa-bank:before { - content: "\f19c"; } - -.fa.fa-mortar-board:before { - content: "\f19d"; } - -.fa.fa-yahoo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stumbleupon-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-stumbleupon { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-delicious { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-digg { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper-pp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-drupal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-joomla { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-behance { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-behance-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-steam { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-steam-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-automobile:before { - content: "\f1b9"; } - -.fa.fa-cab:before { - content: "\f1ba"; } - -.fa.fa-spotify { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-deviantart { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-soundcloud { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-file-pdf-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-pdf-o:before { - content: "\f1c1"; } - -.fa.fa-file-word-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-word-o:before { - content: "\f1c2"; } - -.fa.fa-file-excel-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-excel-o:before { - content: "\f1c3"; } - -.fa.fa-file-powerpoint-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-powerpoint-o:before { - content: "\f1c4"; } - -.fa.fa-file-image-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-image-o:before { - content: "\f1c5"; } - -.fa.fa-file-photo-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-photo-o:before { - content: "\f1c5"; } - -.fa.fa-file-picture-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-picture-o:before { - content: "\f1c5"; } - -.fa.fa-file-archive-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-archive-o:before { - content: "\f1c6"; } - -.fa.fa-file-zip-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-zip-o:before { - content: "\f1c6"; } - -.fa.fa-file-audio-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-audio-o:before { - content: "\f1c7"; } - -.fa.fa-file-sound-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-sound-o:before { - content: "\f1c7"; } - -.fa.fa-file-video-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-video-o:before { - content: "\f1c8"; } - -.fa.fa-file-movie-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-movie-o:before { - content: "\f1c8"; } - -.fa.fa-file-code-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-file-code-o:before { - content: "\f1c9"; } - -.fa.fa-vine { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-codepen { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-jsfiddle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-life-bouy:before { - content: "\f1cd"; } - -.fa.fa-life-buoy:before { - content: "\f1cd"; } - -.fa.fa-life-saver:before { - content: "\f1cd"; } - -.fa.fa-support:before { - content: "\f1cd"; } - -.fa.fa-circle-o-notch:before { - content: "\f1ce"; } - -.fa.fa-rebel { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ra { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ra:before { - content: "\f1d0"; } - -.fa.fa-resistance { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-resistance:before { - content: "\f1d0"; } - -.fa.fa-empire { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ge { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ge:before { - content: "\f1d1"; } - -.fa.fa-git-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-git { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-hacker-news { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator-square:before { - content: "\f1d4"; } - -.fa.fa-yc-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc-square:before { - content: "\f1d4"; } - -.fa.fa-tencent-weibo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-qq { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-weixin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wechat { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wechat:before { - content: "\f1d7"; } - -.fa.fa-send:before { - content: "\f1d8"; } - -.fa.fa-paper-plane-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-paper-plane-o:before { - content: "\f1d8"; } - -.fa.fa-send-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-send-o:before { - content: "\f1d8"; } - -.fa.fa-circle-thin { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-circle-thin:before { - content: "\f111"; } - -.fa.fa-header:before { - content: "\f1dc"; } - -.fa.fa-futbol-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-futbol-o:before { - content: "\f1e3"; } - -.fa.fa-soccer-ball-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-soccer-ball-o:before { - content: "\f1e3"; } - -.fa.fa-slideshare { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-twitch { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yelp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-newspaper-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-newspaper-o:before { - content: "\f1ea"; } - -.fa.fa-paypal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-wallet { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-visa { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-mastercard { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-discover { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-amex { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-paypal { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-stripe { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bell-slash-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-bell-slash-o:before { - content: "\f1f6"; } - -.fa.fa-trash:before { - content: "\f2ed"; } - -.fa.fa-copyright { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-eyedropper:before { - content: "\f1fb"; } - -.fa.fa-area-chart:before { - content: "\f1fe"; } - -.fa.fa-pie-chart:before { - content: "\f200"; } - -.fa.fa-line-chart:before { - content: "\f201"; } - -.fa.fa-lastfm { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-lastfm-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ioxhost { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-angellist { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-cc:before { - content: "\f20a"; } - -.fa.fa-ils:before { - content: "\f20b"; } - -.fa.fa-shekel:before { - content: "\f20b"; } - -.fa.fa-sheqel:before { - content: "\f20b"; } - -.fa.fa-buysellads { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-connectdevelop { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-dashcube { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-forumbee { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-leanpub { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-sellsy { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-shirtsinbulk { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-simplybuilt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-skyatlas { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-diamond { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-diamond:before { - content: "\f3a5"; } - -.fa.fa-transgender:before { - content: "\f224"; } - -.fa.fa-intersex:before { - content: "\f224"; } - -.fa.fa-transgender-alt:before { - content: "\f225"; } - -.fa.fa-facebook-official { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-facebook-official:before { - content: "\f09a"; } - -.fa.fa-pinterest-p { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-whatsapp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-hotel:before { - content: "\f236"; } - -.fa.fa-viacoin { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-medium { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-y-combinator { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yc:before { - content: "\f23b"; } - -.fa.fa-optin-monster { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-opencart { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-expeditedssl { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-battery-4:before { - content: "\f240"; } - -.fa.fa-battery:before { - content: "\f240"; } - -.fa.fa-battery-3:before { - content: "\f241"; } - -.fa.fa-battery-2:before { - content: "\f242"; } - -.fa.fa-battery-1:before { - content: "\f243"; } - -.fa.fa-battery-0:before { - content: "\f244"; } - -.fa.fa-object-group { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-object-ungroup { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sticky-note-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-sticky-note-o:before { - content: "\f249"; } - -.fa.fa-cc-jcb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-cc-diners-club { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-clone { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hourglass-o:before { - content: "\f252"; } - -.fa.fa-hourglass-1:before { - content: "\f251"; } - -.fa.fa-hourglass-half:before { - content: "\f254"; } - -.fa.fa-hourglass-2:before { - content: "\f254"; } - -.fa.fa-hourglass-3:before { - content: "\f253"; } - -.fa.fa-hand-rock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-rock-o:before { - content: "\f255"; } - -.fa.fa-hand-grab-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-grab-o:before { - content: "\f255"; } - -.fa.fa-hand-paper-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-paper-o:before { - content: "\f256"; } - -.fa.fa-hand-stop-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-stop-o:before { - content: "\f256"; } - -.fa.fa-hand-scissors-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-scissors-o:before { - content: "\f257"; } - -.fa.fa-hand-lizard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-lizard-o:before { - content: "\f258"; } - -.fa.fa-hand-spock-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-spock-o:before { - content: "\f259"; } - -.fa.fa-hand-pointer-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-pointer-o:before { - content: "\f25a"; } - -.fa.fa-hand-peace-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-hand-peace-o:before { - content: "\f25b"; } - -.fa.fa-registered { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-creative-commons { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gg { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gg-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-odnoklassniki { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-odnoklassniki-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-get-pocket { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wikipedia-w { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-safari { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-chrome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-firefox { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-opera { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-internet-explorer { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-television:before { - content: "\f26c"; } - -.fa.fa-contao { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-500px { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-amazon { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-calendar-plus-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-plus-o:before { - content: "\f271"; } - -.fa.fa-calendar-minus-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-minus-o:before { - content: "\f272"; } - -.fa.fa-calendar-times-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-times-o:before { - content: "\f273"; } - -.fa.fa-calendar-check-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-calendar-check-o:before { - content: "\f274"; } - -.fa.fa-map-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-map-o:before { - content: "\f279"; } - -.fa.fa-commenting:before { - content: "\f4ad"; } - -.fa.fa-commenting-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-commenting-o:before { - content: "\f4ad"; } - -.fa.fa-houzz { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-vimeo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-vimeo:before { - content: "\f27d"; } - -.fa.fa-black-tie { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fonticons { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-reddit-alien { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-edge { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-credit-card-alt:before { - content: "\f09d"; } - -.fa.fa-codiepie { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-modx { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fort-awesome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-usb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-product-hunt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-mixcloud { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-scribd { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pause-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-pause-circle-o:before { - content: "\f28b"; } - -.fa.fa-stop-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-stop-circle-o:before { - content: "\f28d"; } - -.fa.fa-bluetooth { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-bluetooth-b { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-gitlab { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpbeginner { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpforms { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-envira { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wheelchair-alt { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wheelchair-alt:before { - content: "\f368"; } - -.fa.fa-question-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-question-circle-o:before { - content: "\f059"; } - -.fa.fa-volume-control-phone:before { - content: "\f2a0"; } - -.fa.fa-asl-interpreting:before { - content: "\f2a3"; } - -.fa.fa-deafness:before { - content: "\f2a4"; } - -.fa.fa-hard-of-hearing:before { - content: "\f2a4"; } - -.fa.fa-glide { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-glide-g { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-signing:before { - content: "\f2a7"; } - -.fa.fa-viadeo { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-viadeo-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat-ghost { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-snapchat-ghost:before { - content: "\f2ab"; } - -.fa.fa-snapchat-square { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-pied-piper { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-first-order { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-yoast { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-themeisle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-official { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-official:before { - content: "\f2b3"; } - -.fa.fa-google-plus-circle { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-google-plus-circle:before { - content: "\f2b3"; } - -.fa.fa-font-awesome { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fa { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-fa:before { - content: "\f2b4"; } - -.fa.fa-handshake-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-handshake-o:before { - content: "\f2b5"; } - -.fa.fa-envelope-open-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-envelope-open-o:before { - content: "\f2b6"; } - -.fa.fa-linode { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-address-book-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-address-book-o:before { - content: "\f2b9"; } - -.fa.fa-vcard:before { - content: "\f2bb"; } - -.fa.fa-address-card-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-address-card-o:before { - content: "\f2bb"; } - -.fa.fa-vcard-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-vcard-o:before { - content: "\f2bb"; } - -.fa.fa-user-circle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-user-circle-o:before { - content: "\f2bd"; } - -.fa.fa-user-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-user-o:before { - content: "\f007"; } - -.fa.fa-id-badge { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-drivers-license:before { - content: "\f2c2"; } - -.fa.fa-id-card-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-id-card-o:before { - content: "\f2c2"; } - -.fa.fa-drivers-license-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-drivers-license-o:before { - content: "\f2c2"; } - -.fa.fa-quora { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-free-code-camp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-telegram { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-thermometer-4:before { - content: "\f2c7"; } - -.fa.fa-thermometer:before { - content: "\f2c7"; } - -.fa.fa-thermometer-3:before { - content: "\f2c8"; } - -.fa.fa-thermometer-2:before { - content: "\f2c9"; } - -.fa.fa-thermometer-1:before { - content: "\f2ca"; } - -.fa.fa-thermometer-0:before { - content: "\f2cb"; } - -.fa.fa-bathtub:before { - content: "\f2cd"; } - -.fa.fa-s15:before { - content: "\f2cd"; } - -.fa.fa-window-maximize { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-window-restore { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-rectangle:before { - content: "\f410"; } - -.fa.fa-window-close-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-window-close-o:before { - content: "\f410"; } - -.fa.fa-times-rectangle-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-times-rectangle-o:before { - content: "\f410"; } - -.fa.fa-bandcamp { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-grav { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-etsy { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-imdb { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-ravelry { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-eercast { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-eercast:before { - content: "\f2da"; } - -.fa.fa-snowflake-o { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; } - -.fa.fa-snowflake-o:before { - content: "\f2dc"; } - -.fa.fa-superpowers { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-wpexplorer { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } - -.fa.fa-meetup { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/v4-shims.min.css b/packages/themes/zoll/assets/fontawesome-free/css/v4-shims.min.css deleted file mode 100644 index f742adcbe9..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/v4-shims.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-steam,.fa.fa-steam-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f252"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before,.fa.fa-hourglass-half:before{content:"\f254"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/css/v5-font-face.css b/packages/themes/zoll/assets/fontawesome-free/css/v5-font-face.css deleted file mode 100644 index 9bb8bf4523..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/v5-font-face.css +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } - -@font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } diff --git a/packages/themes/zoll/assets/fontawesome-free/css/v5-font-face.min.css b/packages/themes/zoll/assets/fontawesome-free/css/v5-font-face.min.css deleted file mode 100644 index 7d67a7836a..0000000000 --- a/packages/themes/zoll/assets/fontawesome-free/css/v5-font-face.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - * Copyright 2022 Fonticons, Inc. - */ -@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} \ No newline at end of file diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-brands-400.ttf b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-brands-400.ttf deleted file mode 100644 index 430a02edc6..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-brands-400.ttf and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-brands-400.woff2 b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-brands-400.woff2 deleted file mode 100644 index 4d904aab4f..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-brands-400.woff2 and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-regular-400.ttf b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-regular-400.ttf deleted file mode 100644 index 23e3febe0d..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-regular-400.ttf and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-regular-400.woff2 b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-regular-400.woff2 deleted file mode 100644 index 80e3b1247c..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-regular-400.woff2 and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-solid-900.ttf b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-solid-900.ttf deleted file mode 100644 index da9082420e..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-solid-900.ttf and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-solid-900.woff2 b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-solid-900.woff2 deleted file mode 100644 index 360ba11557..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-solid-900.woff2 and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf deleted file mode 100644 index e9545ed579..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-v4compatibility.ttf and /dev/null differ diff --git a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 b/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 deleted file mode 100644 index db5b0b9973..0000000000 Binary files a/packages/themes/zoll/assets/fontawesome-free/webfonts/fa-v4compatibility.woff2 and /dev/null differ diff --git a/packages/themes/zoll/package.json b/packages/themes/zoll/package.json deleted file mode 100644 index e3b87c7ee9..0000000000 --- a/packages/themes/zoll/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "@public-ui-/theme-zoll", - "version": "1.7.8", - "private": true, - "scripts": { - "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*", - "format": "prettier --check src", - "lint": "eslint src && tsc --noemit", - "test": "npm-run-all test:*", - "test:mapz": "THEME_MODULE=src/index THEME_EXPORT=MAPZ kolibri-visual-test theme-snapshots.spec.js", - "test:zoll-v2": "THEME_MODULE=src/index THEME_EXPORT=ZOLLv2 kolibri-visual-test theme-snapshots.spec.js", - "test-update": "npm-run-all test-update:*", - "test-update:mapz": "THEME_MODULE=src/index THEME_EXPORT=MAPZ kolibri-visual-test --update-snapshots theme-snapshots.spec.js", - "test-update:zoll-v2": "THEME_MODULE=src/index THEME_EXPORT=ZOLLv2 kolibri-visual-test --update-snapshots theme-snapshots.spec.js" - }, - "devDependencies": { - "@public-ui/schema": "1.7.8", - "@public-ui/visual-tests": "1.7.8", - "@types/node": "ts5.3", - "npm-run-all": "4.1.5", - "typescript": "5.3.3" - }, - "peerDependencies": { - "@public-ui/components": "1.7.8" - } -} diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-abbr-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-abbr-basic-firefox-linux.png deleted file mode 100644 index 373880dc15..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-abbr-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-basic-firefox-linux.png deleted file mode 100644 index 6e56d63b53..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-header-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-header-firefox-linux.png deleted file mode 100644 index b51ac61310..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-header-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-headlines-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-headlines-firefox-linux.png deleted file mode 100644 index 4cc66f05f7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-headlines-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-list-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-list-firefox-linux.png deleted file mode 100644 index 4a163b779e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-accordion-list-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-basic-firefox-linux.png deleted file mode 100644 index 6f2f5d989f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-card-msg-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-card-msg-firefox-linux.png deleted file mode 100644 index 0939af5862..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-card-msg-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-html-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-html-firefox-linux.png deleted file mode 100644 index 3c8699340c..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-alert-html-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-avatar-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-avatar-basic-firefox-linux.png deleted file mode 100644 index bacdd4966e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-avatar-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-badge-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-badge-basic-firefox-linux.png deleted file mode 100644 index 7cbdb7f872..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-badge-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-badge-button-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-badge-button-firefox-linux.png deleted file mode 100644 index f5d098a475..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-badge-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-breadcrumb-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-breadcrumb-basic-firefox-linux.png deleted file mode 100644 index da3d6f0dec..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-breadcrumb-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-basic-firefox-linux.png deleted file mode 100644 index ef75f4279e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-group-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-group-basic-firefox-linux.png deleted file mode 100644 index 92b106b338..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-hide-label-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-hide-label-firefox-linux.png deleted file mode 100644 index 12478e1374..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-hide-label-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-icons-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-icons-firefox-linux.png deleted file mode 100644 index 1db7b3126e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-basic-firefox-linux.png deleted file mode 100644 index 5f82fc8b45..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-icons-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-icons-firefox-linux.png deleted file mode 100644 index f93820d783..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-image-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-image-firefox-linux.png deleted file mode 100644 index c8df4b81a6..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-width-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-width-firefox-linux.png deleted file mode 100644 index 45dfa6c530..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-button-width-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-basic-firefox-linux.png deleted file mode 100644 index d25b32a392..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-confirm-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-confirm-firefox-linux.png deleted file mode 100644 index d2701cd40c..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-confirm-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-flex-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-flex-firefox-linux.png deleted file mode 100644 index 3ef6c89532..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-flex-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-selection-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-selection-firefox-linux.png deleted file mode 100644 index 133db414a3..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-card-selection-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-details-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-details-basic-firefox-linux.png deleted file mode 100644 index 8494b6e0e5..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-details-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-linux.png deleted file mode 100644 index d3ee5e762e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-badge-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-badge-firefox-linux.png deleted file mode 100644 index a3d0da952a..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-badge-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-basic-firefox-linux.png deleted file mode 100644 index 1ca7efe699..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-paragraph-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-paragraph-firefox-linux.png deleted file mode 100644 index 15c044b749..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-heading-paragraph-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-icon-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-icon-basic-firefox-linux.png deleted file mode 100644 index c92d08db32..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-icon-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-image-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-image-basic-firefox-linux.png deleted file mode 100644 index 30c52682c4..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-image-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-indented-text-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-indented-text-basic-firefox-linux.png deleted file mode 100644 index 8b8b745d2f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-indented-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-basic-firefox-linux.png deleted file mode 100644 index e861fcd4e2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-button-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-button-firefox-linux.png deleted file mode 100644 index d8583ebba9..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-switch-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-switch-firefox-linux.png deleted file mode 100644 index 236ee7a04e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-checkbox-switch-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-color-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-color-basic-firefox-linux.png deleted file mode 100644 index 8994c3876f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-color-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-date-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-date-basic-firefox-linux.png deleted file mode 100644 index 02b30de432..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-date-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-email-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-email-basic-firefox-linux.png deleted file mode 100644 index abf91da2ed..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-email-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-file-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-file-basic-firefox-linux.png deleted file mode 100644 index ac5a7dc798..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-file-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-number-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-number-basic-firefox-linux.png deleted file mode 100644 index d10b106224..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-number-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-password-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-password-basic-firefox-linux.png deleted file mode 100644 index 3fbd36bfa6..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-password-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-password-show-password-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-password-show-password-firefox-linux.png deleted file mode 100644 index ed601d0ed2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-password-show-password-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-basic-firefox-linux.png deleted file mode 100644 index d269923720..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-horizontal-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-horizontal-firefox-linux.png deleted file mode 100644 index 993b8741c4..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-select-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-select-firefox-linux.png deleted file mode 100644 index 903cbee202..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-radio-select-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-range-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-range-basic-firefox-linux.png deleted file mode 100644 index 799156797b..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-range-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-basic-firefox-linux.png deleted file mode 100644 index b48ddf0970..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-blur-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-blur-firefox-linux.png deleted file mode 100644 index 678c46cc58..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-blur-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-focus-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-focus-firefox-linux.png deleted file mode 100644 index 15ee4c7b66..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-input-text-focus-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-kolibri-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-kolibri-basic-firefox-linux.png deleted file mode 100644 index 1391bdabd2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-kolibri-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-basic-firefox-linux.png deleted file mode 100644 index 73726d40a7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-button-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-button-basic-firefox-linux.png deleted file mode 100644 index c3cf148af8..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-group-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-group-basic-firefox-linux.png deleted file mode 100644 index 0a697c94ff..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-group-horizontal-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-group-horizontal-firefox-linux.png deleted file mode 100644 index fcc743066b..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-group-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-icons-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-icons-firefox-linux.png deleted file mode 100644 index f93820d783..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-image-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-image-firefox-linux.png deleted file mode 100644 index 2e570e01ef..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-target-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-target-firefox-linux.png deleted file mode 100644 index 7273d4a7d8..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-link-target-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-logo-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-logo-basic-firefox-linux.png deleted file mode 100644 index 2f2919828d..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-logo-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-modal-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-modal-basic-firefox-linux.png deleted file mode 100644 index 2cb9cf8830..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-modal-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-active-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-active-firefox-linux.png deleted file mode 100644 index e7ec018625..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-active-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-aria-current-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-aria-current-firefox-linux.png deleted file mode 100644 index 08036362d5..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-aria-current-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-basic-firefox-linux.png deleted file mode 100644 index 2fa15a611f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-horizontal-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-horizontal-firefox-linux.png deleted file mode 100644 index 8a23c70d7b..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-nav-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-pagination-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-pagination-basic-firefox-linux.png deleted file mode 100644 index 22f15775d1..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-pagination-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-progress-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-progress-basic-firefox-linux.png deleted file mode 100644 index 77fc9c07ef..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-progress-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-quote-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-quote-basic-firefox-linux.png deleted file mode 100644 index 7f087d6145..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-quote-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-quote-block-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-quote-block-firefox-linux.png deleted file mode 100644 index 0e6a93a5a7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-quote-block-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-select-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-select-basic-firefox-linux.png deleted file mode 100644 index ace434d1fb..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-select-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-skip-nav-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-skip-nav-basic-firefox-linux.png deleted file mode 100644 index cef135c644..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-skip-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-basic-firefox-linux.png deleted file mode 100644 index 09c6bcfdf2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-custom-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-custom-firefox-linux.png deleted file mode 100644 index 97f795d6a7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-custom-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-cycle-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-cycle-firefox-linux.png deleted file mode 100644 index 16cdf547f1..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-spin-cycle-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-split-button-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-split-button-basic-firefox-linux.png deleted file mode 100644 index ca79b2fccd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-split-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-table-render-cell-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-table-render-cell-firefox-linux.png deleted file mode 100644 index 62ea2074e8..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-table-render-cell-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-table-sort-data-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-table-sort-data-firefox-linux.png deleted file mode 100644 index 51aeb27d5a..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-table-sort-data-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-tabs-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-tabs-basic-firefox-linux.png deleted file mode 100644 index a5b3bf125e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-tabs-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-tabs-icons-only-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-tabs-icons-only-firefox-linux.png deleted file mode 100644 index 9600036d8c..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-tabs-icons-only-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-adjust-height-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-adjust-height-firefox-linux.png deleted file mode 100644 index 644f137d14..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-adjust-height-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-basic-firefox-linux.png deleted file mode 100644 index 06ca74a353..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-disabled-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-disabled-firefox-linux.png deleted file mode 100644 index f4cbfff51e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-disabled-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-placeholder-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-placeholder-firefox-linux.png deleted file mode 100644 index a7c97229ce..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-placeholder-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-readonly-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-readonly-firefox-linux.png deleted file mode 100644 index c40a47afb6..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-readonly-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-resize-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-resize-firefox-linux.png deleted file mode 100644 index 1c5e146f7f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-resize-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-rows-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-rows-firefox-linux.png deleted file mode 100644 index aad3324ac6..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-rows-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-with-counter-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-with-counter-firefox-linux.png deleted file mode 100644 index 1126f99702..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-textarea-with-counter-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-toast-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-toast-basic-firefox-linux.png deleted file mode 100644 index 0a3503ff24..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-toast-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-version-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-version-basic-firefox-linux.png deleted file mode 100644 index 1f33a91da2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-version-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-version-context-firefox-linux.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-version-context-firefox-linux.png deleted file mode 100644 index 441dc09618..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-version-context-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-abbr-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-abbr-basic-firefox-linux.png deleted file mode 100644 index 373880dc15..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-abbr-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-basic-firefox-linux.png deleted file mode 100644 index b6a4a06223..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-header-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-header-firefox-linux.png deleted file mode 100644 index a049d14186..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-header-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-headlines-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-headlines-firefox-linux.png deleted file mode 100644 index 4f5633ccf1..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-headlines-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-list-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-list-firefox-linux.png deleted file mode 100644 index a5c7406dc3..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-accordion-list-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-basic-firefox-linux.png deleted file mode 100644 index bce5ab1ed6..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-card-msg-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-card-msg-firefox-linux.png deleted file mode 100644 index 5b0e0a1588..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-card-msg-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-html-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-html-firefox-linux.png deleted file mode 100644 index 03fa11784c..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-alert-html-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-avatar-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-avatar-basic-firefox-linux.png deleted file mode 100644 index bacdd4966e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-avatar-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-badge-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-badge-basic-firefox-linux.png deleted file mode 100644 index 4276ae48b5..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-badge-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-badge-button-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-badge-button-firefox-linux.png deleted file mode 100644 index bd041f1d9a..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-badge-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-breadcrumb-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-breadcrumb-basic-firefox-linux.png deleted file mode 100644 index 72f9127d7e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-breadcrumb-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-basic-firefox-linux.png deleted file mode 100644 index 5a860252f0..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-group-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-group-basic-firefox-linux.png deleted file mode 100644 index 3eaec1b93b..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-hide-label-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-hide-label-firefox-linux.png deleted file mode 100644 index 8826c608aa..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-hide-label-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-icons-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-icons-firefox-linux.png deleted file mode 100644 index 1df5e2abcc..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-basic-firefox-linux.png deleted file mode 100644 index 41e6e52b56..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-icons-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-icons-firefox-linux.png deleted file mode 100644 index 20bc80b8dd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-image-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-image-firefox-linux.png deleted file mode 100644 index 3921c3ed7f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-width-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-width-firefox-linux.png deleted file mode 100644 index 9b54c4e373..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-button-width-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-basic-firefox-linux.png deleted file mode 100644 index 71d7451503..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-confirm-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-confirm-firefox-linux.png deleted file mode 100644 index 4c5582ad16..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-confirm-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-flex-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-flex-firefox-linux.png deleted file mode 100644 index 022967cb45..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-flex-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-selection-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-selection-firefox-linux.png deleted file mode 100644 index 6752e2f838..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-card-selection-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-details-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-details-basic-firefox-linux.png deleted file mode 100644 index 8494b6e0e5..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-details-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-handout-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-handout-basic-firefox-linux.png deleted file mode 100644 index 537a57e5e5..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-handout-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-badge-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-badge-firefox-linux.png deleted file mode 100644 index 95bab623a7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-badge-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-basic-firefox-linux.png deleted file mode 100644 index afa1f72e02..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-paragraph-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-paragraph-firefox-linux.png deleted file mode 100644 index c7c3f9119f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-heading-paragraph-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-icon-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-icon-basic-firefox-linux.png deleted file mode 100644 index c92d08db32..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-icon-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-image-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-image-basic-firefox-linux.png deleted file mode 100644 index 30c52682c4..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-image-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-indented-text-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-indented-text-basic-firefox-linux.png deleted file mode 100644 index e8225e41df..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-indented-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-basic-firefox-linux.png deleted file mode 100644 index a4c89f44dd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-button-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-button-firefox-linux.png deleted file mode 100644 index 7b5ed259ee..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-button-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-switch-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-switch-firefox-linux.png deleted file mode 100644 index f054779891..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-checkbox-switch-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-color-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-color-basic-firefox-linux.png deleted file mode 100644 index 2cc242d59c..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-color-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-date-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-date-basic-firefox-linux.png deleted file mode 100644 index bc0aeffe6a..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-date-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-email-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-email-basic-firefox-linux.png deleted file mode 100644 index 54029f07c7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-email-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-file-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-file-basic-firefox-linux.png deleted file mode 100644 index 65d090ddf2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-file-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-number-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-number-basic-firefox-linux.png deleted file mode 100644 index da84c07522..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-number-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-password-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-password-basic-firefox-linux.png deleted file mode 100644 index adaf2945d3..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-password-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-password-show-password-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-password-show-password-firefox-linux.png deleted file mode 100644 index a8e7c827b2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-password-show-password-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-basic-firefox-linux.png deleted file mode 100644 index 0688999a90..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-horizontal-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-horizontal-firefox-linux.png deleted file mode 100644 index caa3317753..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-select-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-select-firefox-linux.png deleted file mode 100644 index 06089f6047..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-radio-select-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-range-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-range-basic-firefox-linux.png deleted file mode 100644 index 0debcdc9b9..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-range-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-basic-firefox-linux.png deleted file mode 100644 index 833faf5ffd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-blur-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-blur-firefox-linux.png deleted file mode 100644 index 41c1c688e6..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-blur-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-focus-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-focus-firefox-linux.png deleted file mode 100644 index 39cbcecf83..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-input-text-focus-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-kolibri-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-kolibri-basic-firefox-linux.png deleted file mode 100644 index 2c119c77c1..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-kolibri-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-basic-firefox-linux.png deleted file mode 100644 index e7f258d873..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-button-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-button-basic-firefox-linux.png deleted file mode 100644 index 4ff72547b8..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-group-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-group-basic-firefox-linux.png deleted file mode 100644 index 7a49b2e825..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-group-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-group-horizontal-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-group-horizontal-firefox-linux.png deleted file mode 100644 index 7437de7542..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-group-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-icons-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-icons-firefox-linux.png deleted file mode 100644 index 20bc80b8dd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-icons-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-image-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-image-firefox-linux.png deleted file mode 100644 index a56bd81ee5..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-image-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-target-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-target-firefox-linux.png deleted file mode 100644 index a180e92238..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-link-target-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-logo-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-logo-basic-firefox-linux.png deleted file mode 100644 index 2f2919828d..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-logo-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-modal-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-modal-basic-firefox-linux.png deleted file mode 100644 index d570b514fe..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-modal-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-active-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-active-firefox-linux.png deleted file mode 100644 index 2b3a8cc270..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-active-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-aria-current-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-aria-current-firefox-linux.png deleted file mode 100644 index ef308f26d2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-aria-current-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-basic-firefox-linux.png deleted file mode 100644 index 2f67dcae33..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-horizontal-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-horizontal-firefox-linux.png deleted file mode 100644 index 0062fcf34e..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-nav-horizontal-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-pagination-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-pagination-basic-firefox-linux.png deleted file mode 100644 index 002716b945..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-pagination-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-progress-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-progress-basic-firefox-linux.png deleted file mode 100644 index 77fc9c07ef..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-progress-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-quote-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-quote-basic-firefox-linux.png deleted file mode 100644 index 7f087d6145..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-quote-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-quote-block-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-quote-block-firefox-linux.png deleted file mode 100644 index c284a30a93..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-quote-block-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-select-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-select-basic-firefox-linux.png deleted file mode 100644 index 302ed9022d..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-select-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-skip-nav-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-skip-nav-basic-firefox-linux.png deleted file mode 100644 index 1aef8c12c7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-skip-nav-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-basic-firefox-linux.png deleted file mode 100644 index 09c6bcfdf2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-custom-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-custom-firefox-linux.png deleted file mode 100644 index 97f795d6a7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-custom-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-cycle-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-cycle-firefox-linux.png deleted file mode 100644 index 16cdf547f1..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-spin-cycle-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-split-button-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-split-button-basic-firefox-linux.png deleted file mode 100644 index ca79b2fccd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-split-button-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-table-render-cell-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-table-render-cell-firefox-linux.png deleted file mode 100644 index 14d4d0ac24..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-table-render-cell-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-table-sort-data-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-table-sort-data-firefox-linux.png deleted file mode 100644 index d00d76c8bf..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-table-sort-data-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-tabs-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-tabs-basic-firefox-linux.png deleted file mode 100644 index a99136c027..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-tabs-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-tabs-icons-only-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-tabs-icons-only-firefox-linux.png deleted file mode 100644 index 113ce9688f..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-tabs-icons-only-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-adjust-height-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-adjust-height-firefox-linux.png deleted file mode 100644 index 76070c84f1..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-adjust-height-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-basic-firefox-linux.png deleted file mode 100644 index 64a9ef8ff2..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-disabled-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-disabled-firefox-linux.png deleted file mode 100644 index 38597a30d7..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-disabled-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-placeholder-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-placeholder-firefox-linux.png deleted file mode 100644 index 72d28b1992..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-placeholder-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-readonly-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-readonly-firefox-linux.png deleted file mode 100644 index 4bfbcc23bd..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-readonly-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-resize-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-resize-firefox-linux.png deleted file mode 100644 index a8dd8343ac..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-resize-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-rows-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-rows-firefox-linux.png deleted file mode 100644 index 21b66f5a88..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-rows-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-with-counter-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-with-counter-firefox-linux.png deleted file mode 100644 index 4501c0fcbe..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-textarea-with-counter-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-toast-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-toast-basic-firefox-linux.png deleted file mode 100644 index 4f1df2bfb4..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-toast-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-version-basic-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-version-basic-firefox-linux.png deleted file mode 100644 index 59dae925f3..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-version-basic-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-version-context-firefox-linux.png b/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-version-context-firefox-linux.png deleted file mode 100644 index 00e5091c60..0000000000 Binary files a/packages/themes/zoll/snapshots/theme-zollv2/snapshot-for-version-context-firefox-linux.png and /dev/null differ diff --git a/packages/themes/zoll/src/index.ts b/packages/themes/zoll/src/index.ts deleted file mode 100644 index 15f5bebad9..0000000000 --- a/packages/themes/zoll/src/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './mapz'; -export * from './zoll-v2'; diff --git a/packages/themes/zoll/src/mapz.ts b/packages/themes/zoll/src/mapz.ts deleted file mode 100644 index edfa919887..0000000000 --- a/packages/themes/zoll/src/mapz.ts +++ /dev/null @@ -1,17585 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -// Mitarbeiterportal Zoll -export const MAPZ = KoliBri.createTheme('mapz', { - GLOBAL: `:host { - --kolibri-background-color: white; - --kolibri-background-color-modal: rgba(0, 0, 0, 0.5); - --kolibri-border-color: #aaaaaa; - --kolibri-border-radius: 0.25rem; - --kolibri-border-width: 2px; - --kolibri-color: black; - --kolibri-color-undefined: #fb00d2; - --kolibri-color-visited: #880b73; - --kolibri-color-accent: #ffb752; /* #ef9e48 */ - --kolibri-color-active: #1e538f; - --kolibri-color-hover: #1e538f; - --kolibri-color-focus: #1e538f; - --kolibri-color-danger: #ad0e0b; /* --kolibri-color-dark: #222222; */ - --kolibri-color-error: #ad0e0b; - --kolibri-color-ghost: #333333; - --kolibri-color-info: #28568a; /* --kolibri-color-light: #f2f2f2; */ - --kolibri-color-normal: #326cae; - --kolibri-color-outline: var(--kolibri-color-focus); - --kolibri-color-primary: #1e538f; - --kolibri-color-secondary: #444444; - --kolibri-color-spin-1: #000000; - --kolibri-color-spin-2: #ff0000; - --kolibri-color-spin-3: #ffcc00; - --kolibri-color-success: #12632f; - --kolibri-color-warning: #854000; - --kolibri-color-gray: #666; - --kolibri-font-family: var(--font-family); - --kolibri-font-size: var(--font-size); - --kolibri-hyphens: auto; - --kolibri-line-height: 1.5em; - --kolibri-shadow-color: black; - --kolibri-spacing: 0.25em; - --spacing: 0.25em; - --font-family: Roboto, Droid Sans, Arial, Helvetica, sans-serif; - --font-size: 16px; - } - :host { - background-color: transparent; /* Reset global background-color defined by components */1 - font-family: var(--font-family); /* font-size: var(--font-size); */ - } - * { - box-sizing: border-box; - } - *:not(i) { - font-family: var(--font-family); - } - h1, - h2, - h3, - h4, - h5, - h6 { - font-family: var(--font-family); - font-size: var(--font-size); - margin: 0; - padding: 0; - } - *[tabindex]:focus, - kol-input:not(.checkbox, .radio) .input:focus-within, - kol-input:is(.checkbox, .radio) input:focus, - summary:focus { - cursor: pointer; - outline-color: var(--kolibri-color-outline); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - transition: outline-offset 0.2s linear; - } - kol-tooltip-wc .tooltip-area { - background-color: #f2f2f2; - } - kol-tooltip-wc .tooltip-arrow { - background-color: #626262; - } - kol-tooltip-wc .tooltip-content { - border-radius: 2px; - border: 1px solid #626262; - color: #000000 !important; - font-size: 0.875rem; - line-height: 1.25rem; - padding: 0.25rem 0.5rem; - } - kol-span-wc, - kol-span-wc > span { - gap: 0.25em; - } - kol-span-wc > span { - align-items: baseline; - }`, - 'KOL-BUTTON': `a, - button { - border-radius: var(--kolibri-border-radius); - overflow: hidden; - } - a > kol-span-wc, - button > kol-span-wc { - border-radius: var(--kolibri-border-radius); - border-style: solid; - border-width: 2px; - min-height: 44px; - min-width: 44px; - box-shadow: 0 0 0.25em gray; - font-family: var(--kolibri-font-family); - font-size: inherit; - line-height: 1.25em; - padding: calc(2 * var(--kolibri-spacing)); - } - a > kol-span-wc, - button > kol-span-wc { - gap: 0.25em; - } - kol-link-wc.primary > a > kol-span-wc, - kol-link-wc.primary > a:disabled:hover > kol-span-wc, - button.primary > kol-span-wc, - button.primary:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-color-primary); - color: white; - } - kol-link-wc.primary > a:hover > kol-span-wc, - kol-link-wc.primary > a:focus > kol-span-wc, - button.primary:hover > kol-span-wc, - button.primary:focus > kol-span-wc { - color: var(--kolibri-color-primary); - } - kol-link-wc.secondary > a > kol-span-wc, - kol-link-wc.secondary > a:disabled:hover > kol-span-wc, - button.secondary > kol-span-wc, - button.secondary:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-secondary); - border-color: var(--kolibri-color-secondary); - color: white; - } - kol-link-wc.secondary > a:hover > kol-span-wc, - kol-link-wc.secondary > a:focus > kol-span-wc, - button.secondary:hover > kol-span-wc, - button.secondary:focus > kol-span-wc { - color: var(--kolibri-color-secondary); - } - kol-link-wc.normal > a > kol-span-wc, - kol-link-wc.normal > a:disabled:hover > kol-span-wc, - button.normal > kol-span-wc, - button.normal:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-normal); - border-color: var(--kolibri-color-normal); - color: white; - } - kol-link-wc.normal > a:hover > kol-span-wc, - kol-link-wc.normal > a:focus > kol-span-wc, - button.normal:hover > kol-span-wc, - button.normal:focus > kol-span-wc { - color: var(--kolibri-color-normal); - } - kol-link-wc.danger > a > kol-span-wc, - kol-link-wc.danger > a:disabled:hover > kol-span-wc, - button.danger > kol-span-wc, - button.danger:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-danger); - border-color: var(--kolibri-color-danger); - color: white; - } - kol-link-wc.danger > a:hover > kol-span-wc, - kol-link-wc.danger > a:focus > kol-span-wc, - button.danger:hover > kol-span-wc, - button.danger:focus > kol-span-wc { - color: var(--kolibri-color-danger); - } - kol-link-wc.ghost > a > kol-span-wc, - kol-link-wc.ghost > a:disabled:hover > kol-span-wc, - button.ghost > kol-span-wc, - button.ghost:disabled:hover > kol-span-wc { - background-color: white; - border-color: var(--kolibri-color-ghost); - color: var(--kolibri-color-ghost); - } - kol-link-wc.ghost > a:hover > kol-span-wc, - kol-link-wc.ghost > a:focus > kol-span-wc, - button.ghost:hover > kol-span-wc, - button.ghost:focus > kol-span-wc { - background-color: var(--kolibri-color-ghost); - color: white; - } - kol-link-wc > a:hover > kol-span-wc, - kol-link-wc > a:focus > kol-span-wc, - button:hover > kol-span-wc, - button:focus > kol-span-wc { - background-color: white; - box-shadow: 0 0 0.25em black; - }`, - 'KOL-ALERT': `kol-alert-wc { - display: block; - border-radius: var(--kolibri-border-radius); - border: 2px solid; - } - kol-alert-wc.default { - border-color: var(--kolibri-color-gray); - } - kol-alert-wc.default .heading-icon { - background-color: var(--kolibri-color-gray); - } - kol-alert-wc.error { - border-color: var(--kolibri-color-error); - } - .error .heading-icon { - background-color: var(--kolibri-color-error); - } - kol-alert-wc.info { - border-color: var(--kolibri-color-info); - } - .info .heading-icon { - background-color: var(--kolibri-color-info); - } - kol-alert-wc.success { - border-color: var(--kolibri-color-success); - } - .success .heading-icon { - background-color: var(--kolibri-color-success); - } - kol-alert-wc.warning { - border-color: var(--kolibri-color-warning); - } - .warning .heading-icon { - background-color: var(--kolibri-color-warning); - } - .heading .heading-icon { - align-self: stretch; - color: white; - display: block; - height: auto; - width: auto; - padding: var(--spacing); - } - .heading .heading-icon::part(icon) { - place-items: center; - height: 100%; - display: grid; - } - .card .heading .heading-icon { - border-radius: 0 0 var(--kolibri-border-radius); - } - .heading > div { - padding: var(--spacing); - } - .card .content { - padding: var(--spacing); - }`, - 'KOL-INPUT-TEXT': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-BUTTON-GROUP': `kol-button-group-wc { - gap: 0.25em; - }`, - 'KOL-INPUT-PASSWORD': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-INPUT-NUMBER': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-INPUT-DATE': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-INPUT-EMAIL': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-INPUT-FILE': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-TEXTAREA': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input .counter { - order: 3; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 4; - } - kol-input > .hint { - order: 5; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-HEADING': `h1, - h2, - h3, - h4, - h5, - h6 { - line-height: 1.25em; - margin: 0; - padding: 0; - } - h1 { - font-size: 1.5rem !important; - } - h2 { - font-size: 1.4rem !important; - } - h3 { - font-size: 1.3rem !important; - } - h4 { - font-size: 1.2rem !important; - } - h5 { - font-size: 1.1rem !important; - } - h6 { - font-size: 1rem !important; - }`, - 'KOL-INPUT-CHECKBOX': `/* ALL INPUT, SELECT, TEXTAREA */ - label { - cursor: pointer; - } - input { - color: var(--default-letter); - border-color: var(--default-border); - border-width: 2px; - border-style: solid; - border-radius: 5px; /* padding: 10px 14px; */ - line-height: 24px; - font-size: 16px; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } - .checkbox-container { - justify-content: flex-start; - } - input:hover { - border-color: var(--kolibri-color-primary); - } /* NEU */ - kol-input { - display: grid; - align-items: center; - justify-items: left; - width: 100%; - } - kol-input.default { - grid-template-columns: calc(6 * var(--spacing)) auto; - } - kol-input.switch { - grid-template-columns: calc(13 * var(--spacing)) auto; - } - .button { - gap: 0.5rem 0; - } - kol-input > div.input { - display: inline-flex; - order: 1; - } - kol-input > div.input input { - margin: 0px; - } - kol-input > label { - order: 2; - padding-left: calc(2 * var(--spacing)); - } - kol-input > kol-alert.error { - order: 3; - padding-top: 0.25em; - grid-column: span 2 / auto; - } /* CHECKBOX */ - input[type="checkbox"] { - appearance: none; - background-color: white; - cursor: pointer; - transition: 0.5s; - } - input[type="checkbox"]:checked { - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-color-primary); - } - .default input[type="checkbox"] { - border-radius: 0.25em; - height: calc(6 * var(--kolibri-spacing)); - min-width: calc(6 * var(--kolibri-spacing)); - width: calc(6 * var(--kolibri-spacing)); - } - .default .icon { - margin-left: 0.25rem; - } - .default.checked .icon { - color: #fff; - } - .default.indeterminate .icon { - color: var(--kolibri-color-normal); - } - .switch input[type="checkbox"] { - display: block; - min-width: 3.2em; - width: 3.2em; - height: 1.7em; - border-radius: 0.25em; - position: relative; - } - .switch input[type="checkbox"]:before { - -webkit-transition: 0.5s; - -moz-transition: 0.5s; - -ms-transition: 0.5s; - transition: 0.5; - width: 1.2em; - height: 1.2em; - left: calc(0.25em - 2px); - top: calc(0.25em - 2px); - border-radius: 0.25em; - background-color: black; - position: absolute; - } - .switch input[type="checkbox"]:checked:before { - -webkit-transform: translateX(1.5em); - -moz-transform: translateX(1.5em); - -ms-transform: translateX(1.5em); - transform: translateX(1.5em); - background-color: white; - } - .switch input[type="checkbox"]:indeterminate:before { - -webkit-transform: translateX(0.75em); - -moz-transform: translateX(0.75em); - -ms-transform: translateX(0.75em); - transform: translateX(0.75em); - background-color: var(--kolibri-color-primary); - } - .switch:is(.checked, .indeterminate) .icon { - color: #fff; - } - .disabled { - opacity: 0.33; - } - .button:focus-within { - border-radius: var(--kolibri-border-radius); - outline-color: var(--kolibri-color-outline); - outline-offset: 2px; - outline-style: solid; - outline-width: 3px; - }`, - 'KOL-INPUT-RADIO': `label { - cursor: pointer; - display: grid; - font-size: 14px; - line-height: 20px; - gap: 8px; - width: 100%; - } - input { - cursor: pointer; - width: 100%; - border-color: var(--kolibri-border-color); - border-width: 2px; - border-style: solid; - border-radius: 5px; /* padding: 10px 14px; */ - line-height: 24px; - font-size: 16px; - } - input:hover { - border-color: var(--kolibri-color-primary); - } - kol-alert { - display: block; - width: 100%; - margin-bottom: 0.4em; - } - .required label > span::after { - content: "*"; - padding-left: 0.125em; - } /* RADIO */ - fieldset { - border: 0px; - margin: 0px; - padding: 0px; - display: grid; - gap: 0.25em; - } - fieldset div { - cursor: pointer; - display: flex; - flex-direction: row; - margin-top: 0.125em; - margin-bottom: 0.125em; - align-items: center; - position: relative; - } - fieldset div label { - cursor: pointer; - display: flex; - padding-left: 0.25em; - width: 100%; - } - fieldset div label span { - margin-top: 0.125em; - } - fieldset div input[type="radio"] { - appearance: none; - transition: 0.5s; - border-radius: 100%; - height: calc(6 * var(--spacing)); - min-width: calc(6 * var(--spacing)); - width: calc(6 * var(--spacing)); - } /* fieldset div input[type="radio"]:before {content: "";cursor: pointer;left: calc(1.5 * var(--spacing) - 2px);top: calc(1.5 * var(--spacing) - 2px);position: relative;border-radius: 100%;display: block;height: calc(3 * var(--spacing));width: calc(3 * var(--spacing));}*/ - fieldset div input[type="radio"]:checked:before { - box-shadow: 0 0 0.1rem black; - background-color: var(--kolibri-color-primary); - } - kol-alert.error { - margin: 0.4em 0; - order: 3; - } - fieldset legend { - order: 1; - display: contents; - } - fieldset kol-input { - order: 2; - } - .disabled { - opacity: 0.33; - } - fieldset.horizontal { - display: flex; - flex-wrap: wrap; - gap: 0.5rem 1rem; - } - fieldset.horizontal legend { - display: inline-block; - margin-bottom: 0.25em; - }`, - 'KOL-BADGE': `:host { - display: inline-block; - } - :host > span { - border-radius: var(--kolibri-border-radius); - display: inline-flex; - font-style: normal; - } - :host > span.smart-button { - align-items: center; - } - :host > span kol-button-wc:hover > button { - background-color: var(--color-ocean); - color: var(--color-white); - } - :host > span kol-button-wc > button { - color: inherit; - font-size: 1rem; - border-top-right-radius: var(--kolibri-border-radius); - border-bottom-right-radius: var(--kolibri-border-radius); - padding: 2px; - } - :host > span kol-span-wc { - padding: 0.25rem 0.5rem; - } - :host > span > kol-span-wc { - align-items: center; - font-style: normal; - gap: 0.5rem; - } - :host > span > kol-span-wc > span { - display: flex; - gap: 0.25rem; - }`, - 'KOL-LINK': `a, - button { - color: var(--kolibri-color-primary); - text-decoration-line: underline; - } - a:hover, - button:hover { - text-decoration-thickness: 0.2em; - } - kol-span-wc > span { - align-items: baseline; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-SPIN': `.spin { - display: inline-block; - height: 1rem; - position: relative; - width: 3rem; - } - .spin span { - animation-timing-function: cubic-bezier(0, 1, 1, 0); - border: 0.1rem solid rgb(255, 255, 255); - border-radius: 50%; - height: 0.8rem; - width: 0.8rem; - top: 0.1rem; - position: absolute; - } - .spin span:nth-child(1) { - background-color: #fc0; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin1; - left: 0.1rem; - } - .spin span:nth-child(2) { - background-color: #f00; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 0.1rem; - } - .spin span:nth-child(3) { - background-color: #000; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 1.1rem; - } - .spin span:nth-child(4) { - background-color: #666; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin3; - left: 2.1rem; - } - @keyframes spin1 { - 0% { - transform: scale(0); - } - 100% { - transform: scale(1); - } - } - @keyframes spin2 { - 0% { - transform: translate(0px, 0px); - } - 100% { - transform: translate(1rem, 0px); - } - } - @keyframes spin3 { - 0% { - transform: scale(1); - } - 100% { - transform: scale(0); - } - }`, - 'KOL-PROGRESS': `:host progress, - :host span { - display: block; - height: 0px; - overflow: hidden; - width: 0px; - } - svg line:first-child, - svg circle:first-child { - fill: transparent; - stroke: #efefef; - } - svg line:last-child, - svg circle:last-child { - stroke: var(--kolibri-color-normal); - fill: transparent; - }`, - 'KOL-SELECT': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-INPUT-COLOR': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-ACCORDION': `:host > div { - font-family: var(--font-family); - box-sizing: border-box; - width: 100%; - height: 100%; - display: grid; - border-color: var(--kolibri-border-color); - border-width: 1px; - border-style: solid; - border-radius: 0.25rem; - } - :host > div > kol-heading-wc { - font-weight: 700; - font-size: 1.25rem; - line-height: 1.75rem; - } - :host > div > kol-heading-wc button { - cursor: pointer; - width: 100%; - margin: 0; - display: flex; - gap: 0.5em; - border: 0; - align-items: center; - overflow: hidden; - font-size: inherit; - line-height: 1.75em; - background-color: transparent; - padding: 0.5rem; - } - :host > div > kol-heading-wc button kol-icon { - width: 1.5em; - } - :host > div div[part="header"], - :host > div[part*="open"] div[part="content"] { - margin: 0; - padding-left: 2.5em; - } - :host > div > kol-heading-wc button kol-icon::part(icon) { - color: var(--color-midnight); - } - button { - cursor: pointer; - font-weight: inherit; - font-size: inherit; - line-height: inherit; - } - .content { - padding: 0.5rem; - }`, - 'KOL-CARD': `:host > div { - border-color: var(--kolibri-border-color); - border-style: solid; - border-width: 2px; - border-radius: 0.25rem; - display: grid; - width: 100%; - height: 100%; - background-color: white; - grid-template-rows: min-content 2fr min-content; - } - :host kol-heading-wc { - display: inline-flex; - font-style: normal; - font-weight: 700; - font-size: 1.25rem; - line-height: 1.75rem; - } - :host div.footer, - :host div.header { - padding: 0.5rem; - } - :host div.content { - padding: 0.5rem; - } - :host div.content, - :host div.content + div.footer { - border-top: 1px solid var(--kolibri-border-color); - }`, - 'KOL-LINK-GROUP': `ul { - list-style: none; - margin: 0px; - padding: 0px; - } - nav.horizontal ul { - display: flex; - flex-wrap: wrap; - } - nav.horizontal li { - margin-left: 1.25rem; - margin-right: 0.25rem; - } - nav.horizontal li:first-child { - margin-left: 0; - } - nav.horizontal li:last-child { - margin-right: 0; - } - nav.vertical li { - margin-left: 1.75rem; - margin-right: 0.5rem; - } - li.list-none { - list-style-type: none !important; - margin-left: 0; - }`, - 'KOL-PAGINATION': `:host { - display: grid; - gap: 1rem; - } - :host .navigation-list { - display: inline-flex; - flex-wrap: wrap; - align-items: center; - gap: 0.5em; - } - :host .selected button { - min-width: 44px; - min-height: 44px; - box-sizing: border-box; - line-height: 1.25em; - font-size: inherit; - cursor: pointer; - border-width: 2px; - box-shadow: 0 0 0.25em gray; - font-family: var(--kolibri-font-family); - width: inherit; - border-radius: var(--kolibri-border-radius); - border-style: solid; - padding: calc(2 * var(--kolibri-spacing)); - display: grid; - gap: 0.25em; - align-items: center; - justify-content: center; - text-align: center; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - :host .selected button { - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-color-primary); - color: white; - cursor: not-allowed; - font-weight: 700; - text-decoration: underline; - }`, - 'KOL-TABS': `:host { - font-family: var(--font-family); - } - :host > div { - display: block; - width: 100%; - } - :host kol-button-group-wc { - border-radius: 0.25rem 0.25rem 0 0; - background-color: var(--kolibri-color-normal); - padding: 2px; - } - :host kol-button-group-wc > div { - display: inline-flex; - } - :host kol-button-group-wc > div + div { - margin-left: 0.25em; - } - :host kol-button-group-wc button { - width: 100%; - } - :host > div > div { - padding: 0.25em; - border: 1px solid var(--kolibri-border-color); - border-radius: 0 0 0.25rem 0.25rem; - } - button { - box-sizing: border-box; - font-size: inherit; - line-height: 1.25em; - cursor: pointer; - border-width: 2px; - box-shadow: 0 0 0.25em gray; - font-family: var(--kolibri-font-family); - width: inherit; - border-radius: var(--kolibri-border-radius); - border-style: solid; - padding: calc(2 * var(--kolibri-spacing)); - display: grid; - gap: 0.25em; - align-items: center; - justify-content: center; - text-align: center; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - kol-button-wc button.selected, - kol-button-wc[aria-selected="true"] button { - background-color: white; - border-bottom-width: 0.25em !important; - border-bottom-style: solid; - border-bottom-color: var(--kolibri-color-accent) !important; - } - button > kol-span-wc span { - display: flex; - gap: 0.25em; - align-items: center; - justify-content: center; - } - button:disabled { - cursor: not-allowed; - opacity: 0.5; - } - button.primary, - button.primary:disabled:hover { - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-color-primary); - color: white; - } - button.primary:hover, - button.primary:focus { - color: var(--kolibri-color-primary); - } - button.secondary, - button.secondary:disabled:hover { - background-color: var(--kolibri-color-secondary); - border-color: var(--kolibri-color-secondary); - color: white; - } - button.secondary:hover, - button.secondary:focus { - color: var(--kolibri-color-secondary); - } - button.normal, - button.normal:disabled:hover { - background-color: var(--kolibri-color-normal); - border-color: var(--kolibri-color-normal); - color: white; - } - button.normal:hover, - button.normal:focus { - color: var(--kolibri-color-normal); - } - button.danger, - button.danger:disabled:hover { - background-color: var(--kolibri-color-danger); - border-color: var(--kolibri-color-danger); - color: white; - } - button.danger:hover, - button.danger:focus { - color: var(--kolibri-color-danger); - } - button.ghost, - button.ghost:disabled:hover { - background-color: white; - border-color: var(--kolibri-color-ghost); - color: var(--kolibri-color-ghost); - } - button.ghost:hover, - button.ghost:focus { - background-color: var(--kolibri-color-ghost); - color: white; - } - button:hover, - button:focus { - background-color: white; - box-shadow: 0 0 0.25em black; - } - button:active { - outline: 0 !important; - box-shadow: none !important; - } - .close-button { - font-size: 25%; - height: fit-content; - width: 0; - } - .close-button button { - width: 1rem; - position: relative; - height: 1rem; - left: -4.25em; - top: 0.25em; - } - :host > div { - display: grid; - } - :host > div.tabs-align-left { - grid-template-columns: auto 1fr; - } - :host > div.tabs-align-right { - grid-template-columns: 1fr auto; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-bottom kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - order: 1; - } - :host > div.tabs-align-left kol-button-group-wc > div, - :host > div.tabs-align-left kol-button-group-wc > div > div, - :host > div.tabs-align-right kol-button-group-wc > div, - :host > div.tabs-align-right kol-button-group-wc > div > div { - display: grid; - } - :host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc, - :host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc { - width: 100%; - } - :host > div.tabs-align-bottom kol-button-group-wc div, - :host > div.tabs-align-top kol-button-group-wc div { - display: flex; - flex-wrap: wrap; - } - :host > div.tabs-align-bottom > kol-button-group-wc { - border-radius: 0 0 0.25rem 0.25rem; - } - :host > div.tabs-align-bottom > div { - border-radius: 0.25rem 0.25rem 0 0; - } - :host > div.tabs-align-top > kol-button-group-wc { - border-radius: 0.25rem 0.25rem 0 0; - } - :host > div.tabs-align-top > div { - border-radius: 0 0 0.25rem 0.25rem; - } - :host > div.tabs-align-left > kol-button-group-wc { - border-radius: 0.25rem 0 0 0.25rem; - } - :host > div.tabs-align-left > div { - border-radius: 0 0.25rem 0.25rem 0; - } - :host > div.tabs-align-right > kol-button-group-wc { - border-radius: 0 0.25rem 0.25rem 0; - } - :host > div.tabs-align-right > div { - border-radius: 0.25rem 0 0 0.25rem; - }`, - 'KOL-TOAST-CONTAINER': `:host { - top: 1rem; - width: 750px; - left: 50%; - transform: translateX(-50%); - }`, - 'KOL-TOAST': ` - .toast { - background: #fff; - margin-top: 1rem; - } - `, - 'KOL-NAV': `:host > div { - gap: var(--spacing); - } - a { - text-decoration: none; - } - .list { - background-color: var(--kolibri-color-normal); - border-radius: var(--kolibri-border-radius); - color: white; - } - .list.vertical > li:not(:first-child) { - border-top: 0.1em dotted white; - } - .list.horizontal > li:not(:first-child) { - border-left: 0.1em dotted white; - } - .vertical li.active { - border-right: 0.375em solid var(--kolibri-color-accent); - } - .entry { - border-radius: var(--kolibri-border-radius); - } - .entry:focus, - .entry:hover { - background-color: var(--kolibri-color-focus); - } - .entry.selected { - background-color: hsla(0, 0%, 100%, 0.2); - } - .expand-button-container { - margin-right: 3px; - } - .expand-button { - color: inherit; - } - .has-link .expand-button { - background-color: hsla(0, 0%, 100%, 0.2); - } - .has-link .expand-button:hover { - background-color: hsla(0, 0%, 100%, 0.4); - } - .entry kol-span-wc { - color: white; - height: 3em; - line-height: 1.25em; - padding: 0.5em; - } - .entry .expand-button kol-span-wc { - justify-items: center; - }`, - 'KOL-TABLE': `:host * { - hyphens: var(--kolibri-hyphens); - font-family: var(--kolibri-font-family); - line-height: var(--kolibri-line-height); - word-break: break-word; - } - :host > div { - overflow-x: auto; - overflow-y: hidden; - } - :host > div:last-child { - border-radius: var(--kolibri-border-radius); - border-style: solid; - border-width: 1px; - border-color: var(--kolibri-border-color); - } - :host table { - width: 100%; - border-collapse: collapse; - border-spacing: 0; - } - :host table, - :host tr, - :host th, - :host td { - border: 0 solid var(--kolibri-border-color); - } - :host tr { - border-top-width: 1px; - } - :host tr:nth-child(even) { - background-color: #f2f2f2; - } - :host th, - :host td { - border-right-width: 1px; - padding: 0.25em 0.5em; - } - :host th { - background-color: #eee; - } - :host th > div { - display: grid; - grid-template-columns: 1fr auto; - align-items: center; - gap: 0.25em; - } - :host > div.pagination { - padding: 0.5em; - } - :host > div.pagination, - :host > div.pagination > div:last-child { - display: grid; - align-items: center; - justify-items: center; - gap: 0.5em; - } - @media (min-width: 1024px) { - :host > div.pagination, - :host > div.pagination > div:last-child { - grid-auto-flow: column; - } - :host > div.pagination kol-pagination { - display: flex; - gap: 1rem; - } - }`, - 'KOL-LINK-BUTTON': `a, - button { - border-radius: var(--kolibri-border-radius); - overflow: hidden; - } - a > kol-span-wc, - button > kol-span-wc { - border-radius: var(--kolibri-border-radius); - border-style: solid; - border-width: 2px; - min-height: 44px; - min-width: 44px; - box-shadow: 0 0 0.25em gray; - font-family: var(--kolibri-font-family); - font-size: inherit; - line-height: 1.25em; - padding: calc(2 * var(--kolibri-spacing)); - } - a > kol-span-wc, - button > kol-span-wc { - gap: 0.25em; - } - kol-link-wc.primary > a > kol-span-wc, - kol-link-wc.primary > a:disabled:hover > kol-span-wc, - button.primary > kol-span-wc, - button.primary:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-color-primary); - color: white; - } - kol-link-wc.primary > a:hover > kol-span-wc, - kol-link-wc.primary > a:focus > kol-span-wc, - button.primary:hover > kol-span-wc, - button.primary:focus > kol-span-wc { - color: var(--kolibri-color-primary); - } - kol-link-wc.secondary > a > kol-span-wc, - kol-link-wc.secondary > a:disabled:hover > kol-span-wc, - button.secondary > kol-span-wc, - button.secondary:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-secondary); - border-color: var(--kolibri-color-secondary); - color: white; - } - kol-link-wc.secondary > a:hover > kol-span-wc, - kol-link-wc.secondary > a:focus > kol-span-wc, - button.secondary:hover > kol-span-wc, - button.secondary:focus > kol-span-wc { - color: var(--kolibri-color-secondary); - } - kol-link-wc.normal > a > kol-span-wc, - kol-link-wc.normal > a:disabled:hover > kol-span-wc, - button.normal > kol-span-wc, - button.normal:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-normal); - border-color: var(--kolibri-color-normal); - color: white; - } - kol-link-wc.normal > a:hover > kol-span-wc, - kol-link-wc.normal > a:focus > kol-span-wc, - button.normal:hover > kol-span-wc, - button.normal:focus > kol-span-wc { - color: var(--kolibri-color-normal); - } - kol-link-wc.danger > a > kol-span-wc, - kol-link-wc.danger > a:disabled:hover > kol-span-wc, - button.danger > kol-span-wc, - button.danger:disabled:hover > kol-span-wc { - background-color: var(--kolibri-color-danger); - border-color: var(--kolibri-color-danger); - color: white; - } - kol-link-wc.danger > a:hover > kol-span-wc, - kol-link-wc.danger > a:focus > kol-span-wc, - button.danger:hover > kol-span-wc, - button.danger:focus > kol-span-wc { - color: var(--kolibri-color-danger); - } - kol-link-wc.ghost > a > kol-span-wc, - kol-link-wc.ghost > a:disabled:hover > kol-span-wc, - button.ghost > kol-span-wc, - button.ghost:disabled:hover > kol-span-wc { - background-color: white; - border-color: var(--kolibri-color-ghost); - color: var(--kolibri-color-ghost); - } - kol-link-wc.ghost > a:hover > kol-span-wc, - kol-link-wc.ghost > a:focus > kol-span-wc, - button.ghost:hover > kol-span-wc, - button.ghost:focus > kol-span-wc { - background-color: var(--kolibri-color-ghost); - color: white; - } - kol-link-wc > a:hover > kol-span-wc, - kol-link-wc > a:focus > kol-span-wc, - button:hover > kol-span-wc, - button:focus > kol-span-wc { - background-color: white; - box-shadow: 0 0 0.25em black; - }`, - 'KOL-BUTTON-LINK': `a, - button { - color: var(--kolibri-color-primary); - text-decoration-line: underline; - } - a:hover, - button:hover { - text-decoration-thickness: 0.2em; - } - kol-span-wc > span { - align-items: baseline; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - }`, - 'KOL-INDENTED-TEXT': `:host > div { - border-left: none; - box-shadow: -4px 0px 0px var(--kolibri-color-primary); - padding: 0.25em 0.5em; - width: 100%; - }`, - 'KOL-ICON': `/*! - * @package IcoFont - * @version 1.0.1 - * @author IcoFont https://icofont.com - * @copyright Copyright (c) 2015 - 2018 IcoFont - * @license - https://icofont.com/license/ - */ - - @font-face - { - - font-family: "IcoFont"; - font-weight: normal; - font-style: "Regular"; - src: url("./fonts/icofont.woff2") format("woff2"), - url("./fonts/icofont.woff") format("woff"); - } - - [class^="icofont-"], [class*=" icofont-"] - { - font-family: 'IcoFont' !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - line-height: 1; - /* Better Font Rendering =========== */ - -webkit-font-feature-settings: "liga"; - -webkit-font-smoothing: antialiased; - } - .icofont-angry-monster:before - { - content: "\\e800"; - } - .icofont-bathtub:before - { - content: "\\e801"; - } - .icofont-bird-wings:before - { - // content: "\\e802"; - } - .icofont-bow:before - { - content: "\\e803"; - } - .icofont-castle:before - { - content: "\\e804"; - } - .icofont-circuit:before - { - content: "\\e805"; - } - .icofont-crown-king:before - { - content: "\\e806"; - } - .icofont-crown-queen:before - { - content: "\\e807"; - } - .icofont-dart:before - { - content: "\\e808"; - } - .icofont-disability-race:before - { - content: "\\e809"; - } - .icofont-diving-goggle:before - { - content: "\\e80a"; - } - .icofont-eye-open:before - { - content: "\\e80b"; - } - .icofont-flora-flower:before - { - content: "\\e80c"; - } - .icofont-flora:before - { - content: "\\e80d"; - } - .icofont-gift-box:before - { - content: "\\e80e"; - } - .icofont-halloween-pumpkin:before - { - content: "\\e80f"; - } - .icofont-hand-power:before - { - content: "\\e810"; - } - .icofont-hand-thunder:before - { - content: "\\e811"; - } - .icofont-king-monster:before - { - content: "\\e812"; - } - .icofont-love:before - { - content: "\\e813"; - } - .icofont-magician-hat:before - { - content: "\\e814"; - } - .icofont-native-american:before - { - content: "\\e815"; - } - .icofont-owl-look:before - { - content: "\\e816"; - } - .icofont-phoenix:before - { - content: "\\e817"; - } - .icofont-robot-face:before - { - content: "\\e818"; - } - .icofont-sand-clock:before - { - content: "\\e819"; - } - .icofont-shield-alt:before - { - content: "\\e81a"; - } - .icofont-ship-wheel:before - { - content: "\\e81b"; - } - .icofont-skull-danger:before - { - content: "\\e81c"; - } - .icofont-skull-face:before - { - content: "\\e81d"; - } - .icofont-snowmobile:before - { - content: "\\e81e"; - } - .icofont-space-shuttle:before - { - content: "\\e81f"; - } - .icofont-star-shape:before - { - content: "\\e820"; - } - .icofont-swirl:before - { - content: "\\e821"; - } - .icofont-tattoo-wing:before - { - content: "\\e822"; - } - .icofont-throne:before - { - content: "\\e823"; - } - .icofont-tree-alt:before - { - content: "\\e824"; - } - .icofont-triangle:before - { - content: "\\e825"; - } - .icofont-unity-hand:before - { - content: "\\e826"; - } - .icofont-weed:before - { - content: "\\e827"; - } - .icofont-woman-bird:before - { - content: "\\e828"; - } - .icofont-bat:before - { - content: "\\e829"; - } - .icofont-bear-face:before - { - content: "\\e82a"; - } - .icofont-bear-tracks:before - { - content: "\\e82b"; - } - .icofont-bear:before - { - content: "\\e82c"; - } - .icofont-bird-alt:before - { - content: "\\e82d"; - } - .icofont-bird-flying:before - { - content: "\\e82e"; - } - .icofont-bird:before - { - content: "\\e82f"; - } - .icofont-birds:before - { - content: "\\e830"; - } - .icofont-bone:before - { - content: "\\e831"; - } - .icofont-bull:before - { - content: "\\e832"; - } - .icofont-butterfly-alt:before - { - content: "\\e833"; - } - .icofont-butterfly:before - { - content: "\\e834"; - } - .icofont-camel-alt:before - { - content: "\\e835"; - } - .icofont-camel-head:before - { - content: "\\e836"; - } - .icofont-camel:before - { - content: "\\e837"; - } - .icofont-cat-alt-1:before - { - content: "\\e838"; - } - .icofont-cat-alt-2:before - { - content: "\\e839"; - } - .icofont-cat-alt-3:before - { - content: "\\e83a"; - } - .icofont-cat-dog:before - { - content: "\\e83b"; - } - .icofont-cat-face:before - { - content: "\\e83c"; - } - .icofont-cat:before - { - content: "\\e83d"; - } - .icofont-cow-head:before - { - content: "\\e83e"; - } - .icofont-cow:before - { - content: "\\e83f"; - } - .icofont-crab:before - { - content: "\\e840"; - } - .icofont-crocodile:before - { - content: "\\e841"; - } - .icofont-deer-head:before - { - content: "\\e842"; - } - .icofont-dog-alt:before - { - content: "\\e843"; - } - .icofont-dog-barking:before - { - content: "\\e844"; - } - .icofont-dog:before - { - content: "\\e845"; - } - .icofont-dolphin:before - { - content: "\\e846"; - } - .icofont-duck-tracks:before - { - content: "\\e847"; - } - .icofont-eagle-head:before - { - content: "\\e848"; - } - .icofont-eaten-fish:before - { - content: "\\e849"; - } - .icofont-elephant-alt:before - { - content: "\\e84a"; - } - .icofont-elephant-head-alt:before - { - content: "\\e84b"; - } - .icofont-elephant-head:before - { - content: "\\e84c"; - } - .icofont-elephant:before - { - content: "\\e84d"; - } - .icofont-elk:before - { - content: "\\e84e"; - } - .icofont-fish-1:before - { - content: "\\e84f"; - } - .icofont-fish-2:before - { - content: "\\e850"; - } - .icofont-fish-3:before - { - content: "\\e851"; - } - .icofont-fish-4:before - { - content: "\\e852"; - } - .icofont-fish-5:before - { - content: "\\e853"; - } - .icofont-fish:before - { - content: "\\e854"; - } - .icofont-fox-alt:before - { - content: "\\e855"; - } - .icofont-fox:before - { - content: "\\e856"; - } - .icofont-frog-tracks:before - { - content: "\\e857"; - } - .icofont-frog:before - { - content: "\\e858"; - } - .icofont-froggy:before - { - content: "\\e859"; - } - .icofont-giraffe-head-1:before - { - content: "\\e85a"; - } - .icofont-giraffe-head-2:before - { - content: "\\e85b"; - } - .icofont-giraffe-head:before - { - content: "\\e85c"; - } - .icofont-giraffe:before - { - content: "\\e85d"; - } - .icofont-goat-head:before - { - content: "\\e85e"; - } - .icofont-gorilla:before - { - content: "\\e85f"; - } - .icofont-hen-tracks:before - { - content: "\\e860"; - } - .icofont-horse-head-1:before - { - content: "\\e861"; - } - .icofont-horse-head-2:before - { - content: "\\e862"; - } - .icofont-horse-head:before - { - content: "\\e863"; - } - .icofont-horse-tracks:before - { - content: "\\e864"; - } - .icofont-jellyfish:before - { - content: "\\e865"; - } - .icofont-kangaroo:before - { - content: "\\e866"; - } - .icofont-lemur:before - { - content: "\\e867"; - } - .icofont-lion-head-1:before - { - content: "\\e868"; - } - .icofont-lion-head-2:before - { - content: "\\e869"; - } - .icofont-lion-head:before - { - content: "\\e86a"; - } - .icofont-lion:before - { - content: "\\e86b"; - } - .icofont-monkey-2:before - { - content: "\\e86c"; - } - .icofont-monkey-3:before - { - content: "\\e86d"; - } - .icofont-monkey-face:before - { - content: "\\e86e"; - } - .icofont-monkey:before - { - content: "\\e86f"; - } - .icofont-octopus-alt:before - { - content: "\\e870"; - } - .icofont-octopus:before - { - content: "\\e871"; - } - .icofont-owl:before - { - content: "\\e872"; - } - .icofont-panda-face:before - { - content: "\\e873"; - } - .icofont-panda:before - { - content: "\\e874"; - } - .icofont-panther:before - { - content: "\\e875"; - } - .icofont-parrot-lip:before - { - content: "\\e876"; - } - .icofont-parrot:before - { - content: "\\e877"; - } - .icofont-paw:before - { - content: "\\e878"; - } - .icofont-pelican:before - { - content: "\\e879"; - } - .icofont-penguin:before - { - content: "\\e87a"; - } - .icofont-pig-face:before - { - content: "\\e87b"; - } - .icofont-pig:before - { - content: "\\e87c"; - } - .icofont-pigeon-1:before - { - content: "\\e87d"; - } - .icofont-pigeon-2:before - { - content: "\\e87e"; - } - .icofont-pigeon:before - { - content: "\\e87f"; - } - .icofont-rabbit:before - { - content: "\\e880"; - } - .icofont-rat:before - { - content: "\\e881"; - } - .icofont-rhino-head:before - { - content: "\\e882"; - } - .icofont-rhino:before - { - content: "\\e883"; - } - .icofont-rooster:before - { - content: "\\e884"; - } - .icofont-seahorse:before - { - content: "\\e885"; - } - .icofont-seal:before - { - content: "\\e886"; - } - .icofont-shrimp-alt:before - { - content: "\\e887"; - } - .icofont-shrimp:before - { - content: "\\e888"; - } - .icofont-snail-1:before - { - content: "\\e889"; - } - .icofont-snail-2:before - { - content: "\\e88a"; - } - .icofont-snail-3:before - { - content: "\\e88b"; - } - .icofont-snail:before - { - content: "\\e88c"; - } - .icofont-snake:before - { - content: "\\e88d"; - } - .icofont-squid:before - { - content: "\\e88e"; - } - .icofont-squirrel:before - { - content: "\\e88f"; - } - .icofont-tiger-face:before - { - content: "\\e890"; - } - .icofont-tiger:before - { - content: "\\e891"; - } - .icofont-turtle:before - { - content: "\\e892"; - } - .icofont-whale:before - { - content: "\\e893"; - } - .icofont-woodpecker:before - { - content: "\\e894"; - } - .icofont-zebra:before - { - content: "\\e895"; - } - .icofont-brand-acer:before - { - content: "\\e896"; - } - .icofont-brand-adidas:before - { - content: "\\e897"; - } - .icofont-brand-adobe:before - { - content: "\\e898"; - } - .icofont-brand-air-new-zealand:before - { - content: "\\e899"; - } - .icofont-brand-airbnb:before - { - content: "\\e89a"; - } - .icofont-brand-aircell:before - { - content: "\\e89b"; - } - .icofont-brand-airtel:before - { - content: "\\e89c"; - } - .icofont-brand-alcatel:before - { - content: "\\e89d"; - } - .icofont-brand-alibaba:before - { - content: "\\e89e"; - } - .icofont-brand-aliexpress:before - { - content: "\\e89f"; - } - .icofont-brand-alipay:before - { - content: "\\e8a0"; - } - .icofont-brand-amazon:before - { - content: "\\e8a1"; - } - .icofont-brand-amd:before - { - content: "\\e8a2"; - } - .icofont-brand-american-airlines:before - { - content: "\\e8a3"; - } - .icofont-brand-android-robot:before - { - content: "\\e8a4"; - } - .icofont-brand-android:before - { - content: "\\e8a5"; - } - .icofont-brand-aol:before - { - content: "\\e8a6"; - } - .icofont-brand-apple:before - { - content: "\\e8a7"; - } - .icofont-brand-appstore:before - { - content: "\\e8a8"; - } - .icofont-brand-asus:before - { - content: "\\e8a9"; - } - .icofont-brand-ati:before - { - content: "\\e8aa"; - } - .icofont-brand-att:before - { - content: "\\e8ab"; - } - .icofont-brand-audi:before - { - content: "\\e8ac"; - } - .icofont-brand-axiata:before - { - content: "\\e8ad"; - } - .icofont-brand-bada:before - { - content: "\\e8ae"; - } - .icofont-brand-bbc:before - { - content: "\\e8af"; - } - .icofont-brand-bing:before - { - content: "\\e8b0"; - } - .icofont-brand-blackberry:before - { - content: "\\e8b1"; - } - .icofont-brand-bmw:before - { - content: "\\e8b2"; - } - .icofont-brand-box:before - { - content: "\\e8b3"; - } - .icofont-brand-burger-king:before - { - content: "\\e8b4"; - } - .icofont-brand-business-insider:before - { - content: "\\e8b5"; - } - .icofont-brand-buzzfeed:before - { - content: "\\e8b6"; - } - .icofont-brand-cannon:before - { - content: "\\e8b7"; - } - .icofont-brand-casio:before - { - content: "\\e8b8"; - } - .icofont-brand-china-mobile:before - { - content: "\\e8b9"; - } - .icofont-brand-china-telecom:before - { - content: "\\e8ba"; - } - .icofont-brand-china-unicom:before - { - content: "\\e8bb"; - } - .icofont-brand-cisco:before - { - content: "\\e8bc"; - } - .icofont-brand-citibank:before - { - content: "\\e8bd"; - } - .icofont-brand-cnet:before - { - content: "\\e8be"; - } - .icofont-brand-cnn:before - { - content: "\\e8bf"; - } - .icofont-brand-cocal-cola:before - { - content: "\\e8c0"; - } - .icofont-brand-compaq:before - { - content: "\\e8c1"; - } - .icofont-brand-debian:before - { - content: "\\e8c2"; - } - .icofont-brand-delicious:before - { - content: "\\e8c3"; - } - .icofont-brand-dell:before - { - content: "\\e8c4"; - } - .icofont-brand-designbump:before - { - content: "\\e8c5"; - } - .icofont-brand-designfloat:before - { - content: "\\e8c6"; - } - .icofont-brand-disney:before - { - content: "\\e8c7"; - } - .icofont-brand-dodge:before - { - content: "\\e8c8"; - } - .icofont-brand-dove:before - { - content: "\\e8c9"; - } - .icofont-brand-drupal:before - { - content: "\\e8ca"; - } - .icofont-brand-ebay:before - { - content: "\\e8cb"; - } - .icofont-brand-eleven:before - { - content: "\\e8cc"; - } - .icofont-brand-emirates:before - { - content: "\\e8cd"; - } - .icofont-brand-espn:before - { - content: "\\e8ce"; - } - .icofont-brand-etihad-airways:before - { - content: "\\e8cf"; - } - .icofont-brand-etisalat:before - { - content: "\\e8d0"; - } - .icofont-brand-etsy:before - { - content: "\\e8d1"; - } - .icofont-brand-fastrack:before - { - content: "\\e8d2"; - } - .icofont-brand-fedex:before - { - content: "\\e8d3"; - } - .icofont-brand-ferrari:before - { - content: "\\e8d4"; - } - .icofont-brand-fitbit:before - { - content: "\\e8d5"; - } - .icofont-brand-flikr:before - { - content: "\\e8d6"; - } - .icofont-brand-forbes:before - { - content: "\\e8d7"; - } - .icofont-brand-foursquare:before - { - content: "\\e8d8"; - } - .icofont-brand-foxconn:before - { - content: "\\e8d9"; - } - .icofont-brand-fujitsu:before - { - content: "\\e8da"; - } - .icofont-brand-general-electric:before - { - content: "\\e8db"; - } - .icofont-brand-gillette:before - { - content: "\\e8dc"; - } - .icofont-brand-gizmodo:before - { - content: "\\e8dd"; - } - .icofont-brand-gnome:before - { - content: "\\e8de"; - } - .icofont-brand-google:before - { - content: "\\e8df"; - } - .icofont-brand-gopro:before - { - content: "\\e8e0"; - } - .icofont-brand-gucci:before - { - content: "\\e8e1"; - } - .icofont-brand-hallmark:before - { - content: "\\e8e2"; - } - .icofont-brand-hi5:before - { - content: "\\e8e3"; - } - .icofont-brand-honda:before - { - content: "\\e8e4"; - } - .icofont-brand-hp:before - { - content: "\\e8e5"; - } - .icofont-brand-hsbc:before - { - content: "\\e8e6"; - } - .icofont-brand-htc:before - { - content: "\\e8e7"; - } - .icofont-brand-huawei:before - { - content: "\\e8e8"; - } - .icofont-brand-hulu:before - { - content: "\\e8e9"; - } - .icofont-brand-hyundai:before - { - content: "\\e8ea"; - } - .icofont-brand-ibm:before - { - content: "\\e8eb"; - } - .icofont-brand-icofont:before - { - content: "\\e8ec"; - } - .icofont-brand-icq:before - { - content: "\\e8ed"; - } - .icofont-brand-ikea:before - { - content: "\\e8ee"; - } - .icofont-brand-imdb:before - { - content: "\\e8ef"; - } - .icofont-brand-indiegogo:before - { - content: "\\e8f0"; - } - .icofont-brand-intel:before - { - content: "\\e8f1"; - } - .icofont-brand-ipair:before - { - content: "\\e8f2"; - } - .icofont-brand-jaguar:before - { - content: "\\e8f3"; - } - .icofont-brand-java:before - { - content: "\\e8f4"; - } - .icofont-brand-joomla:before - { - content: "\\e8f5"; - } - .icofont-brand-kickstarter:before - { - content: "\\e8f6"; - } - .icofont-brand-kik:before - { - content: "\\e8f7"; - } - .icofont-brand-lastfm:before - { - content: "\\e8f8"; - } - .icofont-brand-lego:before - { - content: "\\e8f9"; - } - .icofont-brand-lenovo:before - { - content: "\\e8fa"; - } - .icofont-brand-levis:before - { - content: "\\e8fb"; - } - .icofont-brand-lexus:before - { - content: "\\e8fc"; - } - .icofont-brand-lg:before - { - content: "\\e8fd"; - } - .icofont-brand-life-hacker:before - { - content: "\\e8fe"; - } - .icofont-brand-linux-mint:before - { - content: "\\e8ff"; - } - .icofont-brand-linux:before - { - content: "\\e900"; - } - .icofont-brand-lionix:before - { - content: "\\e901"; - } - .icofont-brand-loreal:before - { - content: "\\e902"; - } - .icofont-brand-louis-vuitton:before - { - content: "\\e903"; - } - .icofont-brand-mac-os:before - { - content: "\\e904"; - } - .icofont-brand-marvel-app:before - { - content: "\\e905"; - } - .icofont-brand-mashable:before - { - content: "\\e906"; - } - .icofont-brand-mazda:before - { - content: "\\e907"; - } - .icofont-brand-mcdonals:before - { - content: "\\e908"; - } - .icofont-brand-mercedes:before - { - content: "\\e909"; - } - .icofont-brand-micromax:before - { - content: "\\e90a"; - } - .icofont-brand-microsoft:before - { - content: "\\e90b"; - } - .icofont-brand-mobileme:before - { - content: "\\e90c"; - } - .icofont-brand-mobily:before - { - content: "\\e90d"; - } - .icofont-brand-motorola:before - { - content: "\\e90e"; - } - .icofont-brand-msi:before - { - content: "\\e90f"; - } - .icofont-brand-mts:before - { - content: "\\e910"; - } - .icofont-brand-myspace:before - { - content: "\\e911"; - } - .icofont-brand-mytv:before - { - content: "\\e912"; - } - .icofont-brand-nasa:before - { - content: "\\e913"; - } - .icofont-brand-natgeo:before - { - content: "\\e914"; - } - .icofont-brand-nbc:before - { - content: "\\e915"; - } - .icofont-brand-nescafe:before - { - content: "\\e916"; - } - .icofont-brand-nestle:before - { - content: "\\e917"; - } - .icofont-brand-netflix:before - { - content: "\\e918"; - } - .icofont-brand-nexus:before - { - content: "\\e919"; - } - .icofont-brand-nike:before - { - content: "\\e91a"; - } - .icofont-brand-nokia:before - { - content: "\\e91b"; - } - .icofont-brand-nvidia:before - { - content: "\\e91c"; - } - .icofont-brand-omega:before - { - content: "\\e91d"; - } - .icofont-brand-opensuse:before - { - content: "\\e91e"; - } - .icofont-brand-oracle:before - { - content: "\\e91f"; - } - .icofont-brand-panasonic:before - { - content: "\\e920"; - } - .icofont-brand-paypal:before - { - content: "\\e921"; - } - .icofont-brand-pepsi:before - { - content: "\\e922"; - } - .icofont-brand-philips:before - { - content: "\\e923"; - } - .icofont-brand-pizza-hut:before - { - content: "\\e924"; - } - .icofont-brand-playstation:before - { - content: "\\e925"; - } - .icofont-brand-puma:before - { - content: "\\e926"; - } - .icofont-brand-qatar-air:before - { - content: "\\e927"; - } - .icofont-brand-qvc:before - { - content: "\\e928"; - } - .icofont-brand-readernaut:before - { - content: "\\e929"; - } - .icofont-brand-redbull:before - { - content: "\\e92a"; - } - .icofont-brand-reebok:before - { - content: "\\e92b"; - } - .icofont-brand-reuters:before - { - content: "\\e92c"; - } - .icofont-brand-samsung:before - { - content: "\\e92d"; - } - .icofont-brand-sap:before - { - content: "\\e92e"; - } - .icofont-brand-saudia-airlines:before - { - content: "\\e92f"; - } - .icofont-brand-scribd:before - { - content: "\\e930"; - } - .icofont-brand-shell:before - { - content: "\\e931"; - } - .icofont-brand-siemens:before - { - content: "\\e932"; - } - .icofont-brand-sk-telecom:before - { - content: "\\e933"; - } - .icofont-brand-slideshare:before - { - content: "\\e934"; - } - .icofont-brand-smashing-magazine:before - { - content: "\\e935"; - } - .icofont-brand-snapchat:before - { - content: "\\e936"; - } - .icofont-brand-sony-ericsson:before - { - content: "\\e937"; - } - .icofont-brand-sony:before - { - content: "\\e938"; - } - .icofont-brand-soundcloud:before - { - content: "\\e939"; - } - .icofont-brand-sprint:before - { - content: "\\e93a"; - } - .icofont-brand-squidoo:before - { - content: "\\e93b"; - } - .icofont-brand-starbucks:before - { - content: "\\e93c"; - } - .icofont-brand-stc:before - { - content: "\\e93d"; - } - .icofont-brand-steam:before - { - content: "\\e93e"; - } - .icofont-brand-suzuki:before - { - content: "\\e93f"; - } - .icofont-brand-symbian:before - { - content: "\\e940"; - } - .icofont-brand-t-mobile:before - { - content: "\\e941"; - } - .icofont-brand-tango:before - { - content: "\\e942"; - } - .icofont-brand-target:before - { - content: "\\e943"; - } - .icofont-brand-tata-indicom:before - { - content: "\\e944"; - } - .icofont-brand-techcrunch:before - { - content: "\\e945"; - } - .icofont-brand-telenor:before - { - content: "\\e946"; - } - .icofont-brand-teliasonera:before - { - content: "\\e947"; - } - .icofont-brand-tesla:before - { - content: "\\e948"; - } - .icofont-brand-the-verge:before - { - content: "\\e949"; - } - .icofont-brand-thenextweb:before - { - content: "\\e94a"; - } - .icofont-brand-toshiba:before - { - content: "\\e94b"; - } - .icofont-brand-toyota:before - { - content: "\\e94c"; - } - .icofont-brand-tribenet:before - { - content: "\\e94d"; - } - .icofont-brand-ubuntu:before - { - content: "\\e94e"; - } - .icofont-brand-unilever:before - { - content: "\\e94f"; - } - .icofont-brand-vaio:before - { - content: "\\e950"; - } - .icofont-brand-verizon:before - { - content: "\\e951"; - } - .icofont-brand-viber:before - { - content: "\\e952"; - } - .icofont-brand-vodafone:before - { - content: "\\e953"; - } - .icofont-brand-volkswagen:before - { - content: "\\e954"; - } - .icofont-brand-walmart:before - { - content: "\\e955"; - } - .icofont-brand-warnerbros:before - { - content: "\\e956"; - } - .icofont-brand-whatsapp:before - { - content: "\\e957"; - } - .icofont-brand-wikipedia:before - { - content: "\\e958"; - } - .icofont-brand-windows:before - { - content: "\\e959"; - } - .icofont-brand-wire:before - { - content: "\\e95a"; - } - .icofont-brand-wordpress:before - { - content: "\\e95b"; - } - .icofont-brand-xiaomi:before - { - content: "\\e95c"; - } - .icofont-brand-yahoobuzz:before - { - content: "\\e95d"; - } - .icofont-brand-yamaha:before - { - content: "\\e95e"; - } - .icofont-brand-youtube:before - { - content: "\\e95f"; - } - .icofont-brand-zain:before - { - content: "\\e960"; - } - .icofont-bank-alt:before - { - content: "\\e961"; - } - .icofont-bank:before - { - content: "\\e962"; - } - .icofont-barcode:before - { - content: "\\e963"; - } - .icofont-bill-alt:before - { - content: "\\e964"; - } - .icofont-billboard:before - { - content: "\\e965"; - } - .icofont-briefcase-1:before - { - content: "\\e966"; - } - .icofont-briefcase-2:before - { - content: "\\e967"; - } - .icofont-businessman:before - { - content: "\\e968"; - } - .icofont-businesswoman:before - { - content: "\\e969"; - } - .icofont-chair:before - { - content: "\\e96a"; - } - .icofont-coins:before - { - content: "\\e96b"; - } - .icofont-company:before - { - content: "\\e96c"; - } - .icofont-contact-add:before - { - content: "\\e96d"; - } - .icofont-files-stack:before - { - content: "\\e96e"; - } - .icofont-handshake-deal:before - { - content: "\\e96f"; - } - .icofont-id-card:before - { - content: "\\e970"; - } - .icofont-meeting-add:before - { - content: "\\e971"; - } - .icofont-money-bag:before - { - content: "\\e972"; - } - .icofont-pie-chart:before - { - content: "\\e973"; - } - .icofont-presentation-alt:before - { - content: "\\e974"; - } - .icofont-presentation:before - { - content: "\\e975"; - } - .icofont-stamp:before - { - content: "\\e976"; - } - .icofont-stock-mobile:before - { - content: "\\e977"; - } - .icofont-chart-arrows-axis:before - { - content: "\\e978"; - } - .icofont-chart-bar-graph:before - { - content: "\\e979"; - } - .icofont-chart-flow-1:before - { - content: "\\e97a"; - } - .icofont-chart-flow-2:before - { - content: "\\e97b"; - } - .icofont-chart-flow:before - { - content: "\\e97c"; - } - .icofont-chart-growth:before - { - content: "\\e97d"; - } - .icofont-chart-histogram-alt:before - { - content: "\\e97e"; - } - .icofont-chart-histogram:before - { - content: "\\e97f"; - } - .icofont-chart-line-alt:before - { - content: "\\e980"; - } - .icofont-chart-line:before - { - content: "\\e981"; - } - .icofont-chart-pie-alt:before - { - content: "\\e982"; - } - .icofont-chart-pie:before - { - content: "\\e983"; - } - .icofont-chart-radar-graph:before - { - content: "\\e984"; - } - .icofont-architecture-alt:before - { - content: "\\e985"; - } - .icofont-architecture:before - { - content: "\\e986"; - } - .icofont-barricade:before - { - content: "\\e987"; - } - .icofont-bolt:before - { - content: "\\e988"; - } - .icofont-bricks:before - { - content: "\\e989"; - } - .icofont-building-alt:before - { - content: "\\e98a"; - } - .icofont-bull-dozer:before - { - content: "\\e98b"; - } - .icofont-calculations:before - { - content: "\\e98c"; - } - .icofont-cement-mix:before - { - content: "\\e98d"; - } - .icofont-cement-mixer:before - { - content: "\\e98e"; - } - .icofont-concrete-mixer:before - { - content: "\\e98f"; - } - .icofont-danger-zone:before - { - content: "\\e990"; - } - .icofont-drill:before - { - content: "\\e991"; - } - .icofont-eco-energy:before - { - content: "\\e992"; - } - .icofont-eco-environmen:before - { - content: "\\e993"; - } - .icofont-energy-air:before - { - content: "\\e994"; - } - .icofont-energy-oil:before - { - content: "\\e995"; - } - .icofont-energy-savings:before - { - content: "\\e996"; - } - .icofont-energy-solar:before - { - content: "\\e997"; - } - .icofont-energy-water:before - { - content: "\\e998"; - } - .icofont-engineer:before - { - content: "\\e999"; - } - .icofont-fire-extinguisher-alt:before - { - content: "\\e99a"; - } - .icofont-fire-extinguisher:before - { - content: "\\e99b"; - } - .icofont-fix-tools:before - { - content: "\\e99c"; - } - .icofont-fork-lift:before - { - content: "\\e99d"; - } - .icofont-glue-oil:before - { - content: "\\e99e"; - } - .icofont-hammer-alt:before - { - content: "\\e99f"; - } - .icofont-hammer:before - { - content: "\\e9a0"; - } - .icofont-help-robot:before - { - content: "\\e9a1"; - } - .icofont-industries-1:before - { - content: "\\e9a2"; - } - .icofont-industries-2:before - { - content: "\\e9a3"; - } - .icofont-industries-3:before - { - content: "\\e9a4"; - } - .icofont-industries-4:before - { - content: "\\e9a5"; - } - .icofont-industries-5:before - { - content: "\\e9a6"; - } - .icofont-industries:before - { - content: "\\e9a7"; - } - .icofont-labour:before - { - content: "\\e9a8"; - } - .icofont-mining:before - { - content: "\\e9a9"; - } - .icofont-paint-brush:before - { - content: "\\e9aa"; - } - .icofont-pollution:before - { - content: "\\e9ab"; - } - .icofont-power-zone:before - { - content: "\\e9ac"; - } - .icofont-radio-active:before - { - content: "\\e9ad"; - } - .icofont-recycle-alt:before - { - content: "\\e9ae"; - } - .icofont-recycling-man:before - { - content: "\\e9af"; - } - .icofont-safety-hat-light:before - { - content: "\\e9b0"; - } - .icofont-safety-hat:before - { - content: "\\e9b1"; - } - .icofont-saw:before - { - content: "\\e9b2"; - } - .icofont-screw-driver:before - { - content: "\\e9b3"; - } - .icofont-tools-1:before - { - content: "\\e9b4"; - } - .icofont-tools-bag:before - { - content: "\\e9b5"; - } - .icofont-tow-truck:before - { - content: "\\e9b6"; - } - .icofont-trolley:before - { - content: "\\e9b7"; - } - .icofont-trowel:before - { - content: "\\e9b8"; - } - .icofont-under-construction-alt:before - { - content: "\\e9b9"; - } - .icofont-under-construction:before - { - content: "\\e9ba"; - } - .icofont-vehicle-cement:before - { - content: "\\e9bb"; - } - .icofont-vehicle-crane:before - { - content: "\\e9bc"; - } - .icofont-vehicle-delivery-van:before - { - content: "\\e9bd"; - } - .icofont-vehicle-dozer:before - { - content: "\\e9be"; - } - .icofont-vehicle-excavator:before - { - content: "\\e9bf"; - } - .icofont-vehicle-trucktor:before - { - content: "\\e9c0"; - } - .icofont-vehicle-wrecking:before - { - content: "\\e9c1"; - } - .icofont-worker:before - { - content: "\\e9c2"; - } - .icofont-workers-group:before - { - content: "\\e9c3"; - } - .icofont-wrench:before - { - content: "\\e9c4"; - } - .icofont-afghani-false:before - { - content: "\\e9c5"; - } - .icofont-afghani-minus:before - { - content: "\\e9c6"; - } - .icofont-afghani-plus:before - { - content: "\\e9c7"; - } - .icofont-afghani-true:before - { - content: "\\e9c8"; - } - .icofont-afghani:before - { - content: "\\e9c9"; - } - .icofont-baht-false:before - { - content: "\\e9ca"; - } - .icofont-baht-minus:before - { - content: "\\e9cb"; - } - .icofont-baht-plus:before - { - content: "\\e9cc"; - } - .icofont-baht-true:before - { - content: "\\e9cd"; - } - .icofont-baht:before - { - content: "\\e9ce"; - } - .icofont-bitcoin-false:before - { - content: "\\e9cf"; - } - .icofont-bitcoin-minus:before - { - content: "\\e9d0"; - } - .icofont-bitcoin-plus:before - { - content: "\\e9d1"; - } - .icofont-bitcoin-true:before - { - content: "\\e9d2"; - } - .icofont-bitcoin:before - { - content: "\\e9d3"; - } - .icofont-dollar-flase:before - { - content: "\\e9d4"; - } - .icofont-dollar-minus:before - { - content: "\\e9d5"; - } - .icofont-dollar-plus:before - { - content: "\\e9d6"; - } - .icofont-dollar-true:before - { - content: "\\e9d7"; - } - .icofont-dollar:before - { - content: "\\e9d8"; - } - .icofont-dong-false:before - { - content: "\\e9d9"; - } - .icofont-dong-minus:before - { - content: "\\e9da"; - } - .icofont-dong-plus:before - { - content: "\\e9db"; - } - .icofont-dong-true:before - { - content: "\\e9dc"; - } - .icofont-dong:before - { - content: "\\e9dd"; - } - .icofont-euro-false:before - { - content: "\\e9de"; - } - .icofont-euro-minus:before - { - content: "\\e9df"; - } - .icofont-euro-plus:before - { - content: "\\e9e0"; - } - .icofont-euro-true:before - { - content: "\\e9e1"; - } - .icofont-euro:before - { - content: "\\e9e2"; - } - .icofont-frank-false:before - { - content: "\\e9e3"; - } - .icofont-frank-minus:before - { - content: "\\e9e4"; - } - .icofont-frank-plus:before - { - content: "\\e9e5"; - } - .icofont-frank-true:before - { - content: "\\e9e6"; - } - .icofont-frank:before - { - content: "\\e9e7"; - } - .icofont-hryvnia-false:before - { - content: "\\e9e8"; - } - .icofont-hryvnia-minus:before - { - content: "\\e9e9"; - } - .icofont-hryvnia-plus:before - { - content: "\\e9ea"; - } - .icofont-hryvnia-true:before - { - content: "\\e9eb"; - } - .icofont-hryvnia:before - { - content: "\\e9ec"; - } - .icofont-lira-false:before - { - content: "\\e9ed"; - } - .icofont-lira-minus:before - { - content: "\\e9ee"; - } - .icofont-lira-plus:before - { - content: "\\e9ef"; - } - .icofont-lira-true:before - { - content: "\\e9f0"; - } - .icofont-lira:before - { - content: "\\e9f1"; - } - .icofont-peseta-false:before - { - content: "\\e9f2"; - } - .icofont-peseta-minus:before - { - content: "\\e9f3"; - } - .icofont-peseta-plus:before - { - content: "\\e9f4"; - } - .icofont-peseta-true:before - { - content: "\\e9f5"; - } - .icofont-peseta:before - { - content: "\\e9f6"; - } - .icofont-peso-false:before - { - content: "\\e9f7"; - } - .icofont-peso-minus:before - { - content: "\\e9f8"; - } - .icofont-peso-plus:before - { - content: "\\e9f9"; - } - .icofont-peso-true:before - { - content: "\\e9fa"; - } - .icofont-peso:before - { - content: "\\e9fb"; - } - .icofont-pound-false:before - { - content: "\\e9fc"; - } - .icofont-pound-minus:before - { - content: "\\e9fd"; - } - .icofont-pound-plus:before - { - content: "\\e9fe"; - } - .icofont-pound-true:before - { - content: "\\e9ff"; - } - .icofont-pound:before - { - content: "\\ea00"; - } - .icofont-renminbi-false:before - { - content: "\\ea01"; - } - .icofont-renminbi-minus:before - { - content: "\\ea02"; - } - .icofont-renminbi-plus:before - { - content: "\\ea03"; - } - .icofont-renminbi-true:before - { - content: "\\ea04"; - } - .icofont-renminbi:before - { - content: "\\ea05"; - } - .icofont-riyal-false:before - { - content: "\\ea06"; - } - .icofont-riyal-minus:before - { - content: "\\ea07"; - } - .icofont-riyal-plus:before - { - content: "\\ea08"; - } - .icofont-riyal-true:before - { - content: "\\ea09"; - } - .icofont-riyal:before - { - content: "\\ea0a"; - } - .icofont-rouble-false:before - { - content: "\\ea0b"; - } - .icofont-rouble-minus:before - { - content: "\\ea0c"; - } - .icofont-rouble-plus:before - { - content: "\\ea0d"; - } - .icofont-rouble-true:before - { - content: "\\ea0e"; - } - .icofont-rouble:before - { - content: "\\ea0f"; - } - .icofont-rupee-false:before - { - content: "\\ea10"; - } - .icofont-rupee-minus:before - { - content: "\\ea11"; - } - .icofont-rupee-plus:before - { - content: "\\ea12"; - } - .icofont-rupee-true:before - { - content: "\\ea13"; - } - .icofont-rupee:before - { - content: "\\ea14"; - } - .icofont-taka-false:before - { - content: "\\ea15"; - } - .icofont-taka-minus:before - { - content: "\\ea16"; - } - .icofont-taka-plus:before - { - content: "\\ea17"; - } - .icofont-taka-true:before - { - content: "\\ea18"; - } - .icofont-taka:before - { - content: "\\ea19"; - } - .icofont-turkish-lira-false:before - { - content: "\\ea1a"; - } - .icofont-turkish-lira-minus:before - { - content: "\\ea1b"; - } - .icofont-turkish-lira-plus:before - { - content: "\\ea1c"; - } - .icofont-turkish-lira-true:before - { - content: "\\ea1d"; - } - .icofont-turkish-lira:before - { - content: "\\ea1e"; - } - .icofont-won-false:before - { - content: "\\ea1f"; - } - .icofont-won-minus:before - { - content: "\\ea20"; - } - .icofont-won-plus:before - { - content: "\\ea21"; - } - .icofont-won-true:before - { - content: "\\ea22"; - } - .icofont-won:before - { - content: "\\ea23"; - } - .icofont-yen-false:before - { - content: "\\ea24"; - } - .icofont-yen-minus:before - { - content: "\\ea25"; - } - .icofont-yen-plus:before - { - content: "\\ea26"; - } - .icofont-yen-true:before - { - content: "\\ea27"; - } - .icofont-yen:before - { - content: "\\ea28"; - } - .icofont-android-nexus:before - { - content: "\\ea29"; - } - .icofont-android-tablet:before - { - content: "\\ea2a"; - } - .icofont-apple-watch:before - { - content: "\\ea2b"; - } - .icofont-drawing-tablet:before - { - content: "\\ea2c"; - } - .icofont-earphone:before - { - content: "\\ea2d"; - } - .icofont-flash-drive:before - { - content: "\\ea2e"; - } - .icofont-game-console:before - { - content: "\\ea2f"; - } - .icofont-game-controller:before - { - content: "\\ea30"; - } - .icofont-game-pad:before - { - content: "\\ea31"; - } - .icofont-game:before - { - content: "\\ea32"; - } - .icofont-headphone-alt-1:before - { - content: "\\ea33"; - } - .icofont-headphone-alt-2:before - { - content: "\\ea34"; - } - .icofont-headphone-alt-3:before - { - content: "\\ea35"; - } - .icofont-headphone-alt:before - { - content: "\\ea36"; - } - .icofont-headphone:before - { - content: "\\ea37"; - } - .icofont-htc-one:before - { - content: "\\ea38"; - } - .icofont-imac:before - { - content: "\\ea39"; - } - .icofont-ipad:before - { - content: "\\ea3a"; - } - .icofont-iphone:before - { - content: "\\ea3b"; - } - .icofont-ipod-nano:before - { - content: "\\ea3c"; - } - .icofont-ipod-touch:before - { - content: "\\ea3d"; - } - .icofont-keyboard-alt:before - { - content: "\\ea3e"; - } - .icofont-keyboard-wireless:before - { - content: "\\ea3f"; - } - .icofont-keyboard:before - { - content: "\\ea40"; - } - .icofont-laptop-alt:before - { - content: "\\ea41"; - } - .icofont-laptop:before - { - content: "\\ea42"; - } - .icofont-macbook:before - { - content: "\\ea43"; - } - .icofont-magic-mouse:before - { - content: "\\ea44"; - } - .icofont-micro-chip:before - { - content: "\\ea45"; - } - .icofont-microphone-alt:before - { - content: "\\ea46"; - } - .icofont-microphone:before - { - content: "\\ea47"; - } - .icofont-monitor:before - { - content: "\\ea48"; - } - .icofont-mouse:before - { - content: "\\ea49"; - } - .icofont-mp3-player:before - { - content: "\\ea4a"; - } - .icofont-nintendo:before - { - content: "\\ea4b"; - } - .icofont-playstation-alt:before - { - content: "\\ea4c"; - } - .icofont-psvita:before - { - content: "\\ea4d"; - } - .icofont-radio-mic:before - { - content: "\\ea4e"; - } - .icofont-radio:before - { - content: "\\ea4f"; - } - .icofont-refrigerator:before - { - content: "\\ea50"; - } - .icofont-samsung-galaxy:before - { - content: "\\ea51"; - } - .icofont-surface-tablet:before - { - content: "\\ea52"; - } - .icofont-ui-head-phone:before - { - content: "\\ea53"; - } - .icofont-ui-keyboard:before - { - content: "\\ea54"; - } - .icofont-washing-machine:before - { - content: "\\ea55"; - } - .icofont-wifi-router:before - { - content: "\\ea56"; - } - .icofont-wii-u:before - { - content: "\\ea57"; - } - .icofont-windows-lumia:before - { - content: "\\ea58"; - } - .icofont-wireless-mouse:before - { - content: "\\ea59"; - } - .icofont-xbox-360:before - { - content: "\\ea5a"; - } - .icofont-arrow-down:before - { - content: "\\ea5b"; - } - .icofont-arrow-left:before - { - content: "\\ea5c"; - } - .icofont-arrow-right:before - { - content: "\\ea5d"; - } - .icofont-arrow-up:before - { - content: "\\ea5e"; - } - .icofont-block-down:before - { - content: "\\ea5f"; - } - .icofont-block-left:before - { - content: "\\ea60"; - } - .icofont-block-right:before - { - content: "\\ea61"; - } - .icofont-block-up:before - { - content: "\\ea62"; - } - .icofont-bubble-down:before - { - content: "\\ea63"; - } - .icofont-bubble-left:before - { - content: "\\ea64"; - } - .icofont-bubble-right:before - { - content: "\\ea65"; - } - .icofont-bubble-up:before - { - content: "\\ea66"; - } - .icofont-caret-down:before - { - content: "\\ea67"; - } - .icofont-caret-left:before - { - content: "\\ea68"; - } - .icofont-caret-right:before - { - content: "\\ea69"; - } - .icofont-caret-up:before - { - content: "\\ea6a"; - } - .icofont-circled-down:before - { - content: "\\ea6b"; - } - .icofont-circled-left:before - { - content: "\\ea6c"; - } - .icofont-circled-right:before - { - content: "\\ea6d"; - } - .icofont-circled-up:before - { - content: "\\ea6e"; - } - .icofont-collapse:before - { - content: "\\ea6f"; - } - .icofont-cursor-drag:before - { - content: "\\ea70"; - } - .icofont-curved-double-left:before - { - content: "\\ea71"; - } - .icofont-curved-double-right:before - { - content: "\\ea72"; - } - .icofont-curved-down:before - { - content: "\\ea73"; - } - .icofont-curved-left:before - { - content: "\\ea74"; - } - .icofont-curved-right:before - { - content: "\\ea75"; - } - .icofont-curved-up:before - { - content: "\\ea76"; - } - .icofont-dotted-down:before - { - content: "\\ea77"; - } - .icofont-dotted-left:before - { - content: "\\ea78"; - } - .icofont-dotted-right:before - { - content: "\\ea79"; - } - .icofont-dotted-up:before - { - content: "\\ea7a"; - } - .icofont-double-left:before - { - content: "\\ea7b"; - } - .icofont-double-right:before - { - content: "\\ea7c"; - } - .icofont-expand-alt:before - { - content: "\\ea7d"; - } - .icofont-hand-down:before - { - content: "\\ea7e"; - } - .icofont-hand-drag:before - { - content: "\\ea7f"; - } - .icofont-hand-drag1:before - { - content: "\\ea80"; - } - .icofont-hand-drag2:before - { - content: "\\ea81"; - } - .icofont-hand-drawn-alt-down:before - { - content: "\\ea82"; - } - .icofont-hand-drawn-alt-left:before - { - content: "\\ea83"; - } - .icofont-hand-drawn-alt-right:before - { - content: "\\ea84"; - } - .icofont-hand-drawn-alt-up:before - { - content: "\\ea85"; - } - .icofont-hand-drawn-down:before - { - content: "\\ea86"; - } - .icofont-hand-drawn-left:before - { - content: "\\ea87"; - } - .icofont-hand-drawn-right:before - { - content: "\\ea88"; - } - .icofont-hand-drawn-up:before - { - content: "\\ea89"; - } - .icofont-hand-grippers:before - { - content: "\\ea8a"; - } - .icofont-hand-left:before - { - content: "\\ea8b"; - } - .icofont-hand-right:before - { - content: "\\ea8c"; - } - .icofont-hand-up:before - { - content: "\\ea8d"; - } - .icofont-line-block-down:before - { - content: "\\ea8e"; - } - .icofont-line-block-left:before - { - content: "\\ea8f"; - } - .icofont-line-block-right:before - { - content: "\\ea90"; - } - .icofont-line-block-up:before - { - content: "\\ea91"; - } - .icofont-long-arrow-down:before - { - content: "\\ea92"; - } - .icofont-long-arrow-left:before - { - content: "\\ea93"; - } - .icofont-long-arrow-right:before - { - content: "\\ea94"; - } - .icofont-long-arrow-up:before - { - content: "\\ea95"; - } - .icofont-rounded-collapse:before - { - content: "\\ea96"; - } - .icofont-rounded-double-left:before - { - content: "\\ea97"; - } - .icofont-rounded-double-right:before - { - content: "\\ea98"; - } - .icofont-rounded-down:before - { - content: "\\ea99"; - } - .icofont-rounded-expand:before - { - content: "\\ea9a"; - } - .icofont-rounded-left-down:before - { - content: "\\ea9b"; - } - .icofont-rounded-left-up:before - { - content: "\\ea9c"; - } - .icofont-rounded-left:before - { - content: "\\ea9d"; - } - .icofont-rounded-right-down:before - { - content: "\\ea9e"; - } - .icofont-rounded-right-up:before - { - content: "\\ea9f"; - } - .icofont-rounded-right:before - { - content: "\\eaa0"; - } - .icofont-rounded-up:before - { - content: "\\eaa1"; - } - .icofont-scroll-bubble-down:before - { - content: "\\eaa2"; - } - .icofont-scroll-bubble-left:before - { - content: "\\eaa3"; - } - .icofont-scroll-bubble-right:before - { - content: "\\eaa4"; - } - .icofont-scroll-bubble-up:before - { - content: "\\eaa5"; - } - .icofont-scroll-double-down:before - { - content: "\\eaa6"; - } - .icofont-scroll-double-left:before - { - content: "\\eaa7"; - } - .icofont-scroll-double-right:before - { - content: "\\eaa8"; - } - .icofont-scroll-double-up:before - { - content: "\\eaa9"; - } - .icofont-scroll-down:before - { - content: "\\eaaa"; - } - .icofont-scroll-left:before - { - content: "\\eaab"; - } - .icofont-scroll-long-down:before - { - content: "\\eaac"; - } - .icofont-scroll-long-left:before - { - content: "\\eaad"; - } - .icofont-scroll-long-right:before - { - content: "\\eaae"; - } - .icofont-scroll-long-up:before - { - content: "\\eaaf"; - } - .icofont-scroll-right:before - { - content: "\\eab0"; - } - .icofont-scroll-up:before - { - content: "\\eab1"; - } - .icofont-simple-down:before - { - content: "\\eab2"; - } - .icofont-simple-left-down:before - { - content: "\\eab3"; - } - .icofont-simple-left-up:before - { - content: "\\eab4"; - } - .icofont-simple-left:before - { - content: "\\eab5"; - } - .icofont-simple-right-down:before - { - content: "\\eab6"; - } - .icofont-simple-right-up:before - { - content: "\\eab7"; - } - .icofont-simple-right:before - { - content: "\\eab8"; - } - .icofont-simple-up:before - { - content: "\\eab9"; - } - .icofont-square-down:before - { - content: "\\eaba"; - } - .icofont-square-left:before - { - content: "\\eabb"; - } - .icofont-square-right:before - { - content: "\\eabc"; - } - .icofont-square-up:before - { - content: "\\eabd"; - } - .icofont-stylish-down:before - { - content: "\\eabe"; - } - .icofont-stylish-left:before - { - content: "\\eabf"; - } - .icofont-stylish-right:before - { - content: "\\eac0"; - } - .icofont-stylish-up:before - { - content: "\\eac1"; - } - .icofont-swoosh-down:before - { - content: "\\eac2"; - } - .icofont-swoosh-left:before - { - content: "\\eac3"; - } - .icofont-swoosh-right:before - { - content: "\\eac4"; - } - .icofont-swoosh-up:before - { - content: "\\eac5"; - } - .icofont-thin-double-left:before - { - content: "\\eac6"; - } - .icofont-thin-double-right:before - { - content: "\\eac7"; - } - .icofont-thin-down:before - { - content: "\\eac8"; - } - .icofont-thin-left:before - { - content: "\\eac9"; - } - .icofont-thin-right:before - { - content: "\\eaca"; - } - .icofont-thin-up:before - { - content: "\\eacb"; - } - .icofont-abc:before - { - content: "\\eacc"; - } - .icofont-atom:before - { - content: "\\eacd"; - } - .icofont-award:before - { - content: "\\eace"; - } - .icofont-bell-alt:before - { - content: "\\eacf"; - } - .icofont-black-board:before - { - content: "\\ead0"; - } - .icofont-book-alt:before - { - content: "\\ead1"; - } - .icofont-book:before - { - content: "\\ead2"; - } - .icofont-brainstorming:before - { - content: "\\ead3"; - } - .icofont-certificate-alt-1:before - { - content: "\\ead4"; - } - .icofont-certificate-alt-2:before - { - content: "\\ead5"; - } - .icofont-certificate:before - { - content: "\\ead6"; - } - .icofont-education:before - { - content: "\\ead7"; - } - .icofont-electron:before - { - content: "\\ead8"; - } - .icofont-fountain-pen:before - { - content: "\\ead9"; - } - .icofont-globe-alt:before - { - content: "\\eada"; - } - .icofont-graduate-alt:before - { - content: "\\eadb"; - } - .icofont-graduate:before - { - content: "\\eadc"; - } - .icofont-group-students:before - { - content: "\\eadd"; - } - .icofont-hat-alt:before - { - content: "\\eade"; - } - .icofont-hat:before - { - content: "\\eadf"; - } - .icofont-instrument:before - { - content: "\\eae0"; - } - .icofont-lamp-light:before - { - content: "\\eae1"; - } - .icofont-medal:before - { - content: "\\eae2"; - } - .icofont-microscope-alt:before - { - content: "\\eae3"; - } - .icofont-microscope:before - { - content: "\\eae4"; - } - .icofont-paper:before - { - content: "\\eae5"; - } - .icofont-pen-alt-4:before - { - content: "\\eae6"; - } - .icofont-pen-nib:before - { - content: "\\eae7"; - } - .icofont-pencil-alt-5:before - { - content: "\\eae8"; - } - .icofont-quill-pen:before - { - content: "\\eae9"; - } - .icofont-read-book-alt:before - { - content: "\\eaea"; - } - .icofont-read-book:before - { - content: "\\eaeb"; - } - .icofont-school-bag:before - { - content: "\\eaec"; - } - .icofont-school-bus:before - { - content: "\\eaed"; - } - .icofont-student-alt:before - { - content: "\\eaee"; - } - .icofont-student:before - { - content: "\\eaef"; - } - .icofont-teacher:before - { - content: "\\eaf0"; - } - .icofont-test-bulb:before - { - content: "\\eaf1"; - } - .icofont-test-tube-alt:before - { - content: "\\eaf2"; - } - .icofont-university:before - { - content: "\\eaf3"; - } - .icofont-angry:before - { - content: "\\eaf4"; - } - .icofont-astonished:before - { - content: "\\eaf5"; - } - .icofont-confounded:before - { - content: "\\eaf6"; - } - .icofont-confused:before - { - content: "\\eaf7"; - } - .icofont-crying:before - { - content: "\\eaf8"; - } - .icofont-dizzy:before - { - content: "\\eaf9"; - } - .icofont-expressionless:before - { - content: "\\eafa"; - } - .icofont-heart-eyes:before - { - content: "\\eafb"; - } - .icofont-laughing:before - { - content: "\\eafc"; - } - .icofont-nerd-smile:before - { - content: "\\eafd"; - } - .icofont-open-mouth:before - { - content: "\\eafe"; - } - .icofont-rage:before - { - content: "\\eaff"; - } - .icofont-rolling-eyes:before - { - content: "\\eb00"; - } - .icofont-sad:before - { - content: "\\eb01"; - } - .icofont-simple-smile:before - { - content: "\\eb02"; - } - .icofont-slightly-smile:before - { - content: "\\eb03"; - } - .icofont-smirk:before - { - content: "\\eb04"; - } - .icofont-stuck-out-tongue:before - { - content: "\\eb05"; - } - .icofont-wink-smile:before - { - content: "\\eb06"; - } - .icofont-worried:before - { - content: "\\eb07"; - } - .icofont-file-alt:before - { - content: "\\eb08"; - } - .icofont-file-audio:before - { - content: "\\eb09"; - } - .icofont-file-avi-mp4:before - { - content: "\\eb0a"; - } - .icofont-file-bmp:before - { - content: "\\eb0b"; - } - .icofont-file-code:before - { - content: "\\eb0c"; - } - .icofont-file-css:before - { - content: "\\eb0d"; - } - .icofont-file-document:before - { - content: "\\eb0e"; - } - .icofont-file-eps:before - { - content: "\\eb0f"; - } - .icofont-file-excel:before - { - content: "\\eb10"; - } - .icofont-file-exe:before - { - content: "\\eb11"; - } - .icofont-file-file:before - { - content: "\\eb12"; - } - .icofont-file-flv:before - { - content: "\\eb13"; - } - .icofont-file-gif:before - { - content: "\\eb14"; - } - .icofont-file-html5:before - { - content: "\\eb15"; - } - .icofont-file-image:before - { - content: "\\eb16"; - } - .icofont-file-iso:before - { - content: "\\eb17"; - } - .icofont-file-java:before - { - content: "\\eb18"; - } - .icofont-file-javascript:before - { - content: "\\eb19"; - } - .icofont-file-jpg:before - { - content: "\\eb1a"; - } - .icofont-file-midi:before - { - content: "\\eb1b"; - } - .icofont-file-mov:before - { - content: "\\eb1c"; - } - .icofont-file-mp3:before - { - content: "\\eb1d"; - } - .icofont-file-pdf:before - { - content: "\\eb1e"; - } - .icofont-file-php:before - { - content: "\\eb1f"; - } - .icofont-file-png:before - { - content: "\\eb20"; - } - .icofont-file-powerpoint:before - { - content: "\\eb21"; - } - .icofont-file-presentation:before - { - content: "\\eb22"; - } - .icofont-file-psb:before - { - content: "\\eb23"; - } - .icofont-file-psd:before - { - content: "\\eb24"; - } - .icofont-file-python:before - { - content: "\\eb25"; - } - .icofont-file-ruby:before - { - content: "\\eb26"; - } - .icofont-file-spreadsheet:before - { - content: "\\eb27"; - } - .icofont-file-sql:before - { - content: "\\eb28"; - } - .icofont-file-svg:before - { - content: "\\eb29"; - } - .icofont-file-text:before - { - content: "\\eb2a"; - } - .icofont-file-tiff:before - { - content: "\\eb2b"; - } - .icofont-file-video:before - { - content: "\\eb2c"; - } - .icofont-file-wave:before - { - content: "\\eb2d"; - } - .icofont-file-wmv:before - { - content: "\\eb2e"; - } - .icofont-file-word:before - { - content: "\\eb2f"; - } - .icofont-file-zip:before - { - content: "\\eb30"; - } - .icofont-cycling-alt:before - { - content: "\\eb31"; - } - .icofont-cycling:before - { - content: "\\eb32"; - } - .icofont-dumbbell:before - { - content: "\\eb33"; - } - .icofont-dumbbells:before - { - content: "\\eb34"; - } - .icofont-gym-alt-1:before - { - content: "\\eb35"; - } - .icofont-gym-alt-2:before - { - content: "\\eb36"; - } - .icofont-gym-alt-3:before - { - content: "\\eb37"; - } - .icofont-gym:before - { - content: "\\eb38"; - } - .icofont-muscle-weight:before - { - content: "\\eb39"; - } - .icofont-muscle:before - { - content: "\\eb3a"; - } - .icofont-apple:before - { - content: "\\eb3b"; - } - .icofont-arabian-coffee:before - { - content: "\\eb3c"; - } - .icofont-artichoke:before - { - content: "\\eb3d"; - } - .icofont-asparagus:before - { - content: "\\eb3e"; - } - .icofont-avocado:before - { - content: "\\eb3f"; - } - .icofont-baby-food:before - { - content: "\\eb40"; - } - .icofont-banana:before - { - content: "\\eb41"; - } - .icofont-bbq:before - { - content: "\\eb42"; - } - .icofont-beans:before - { - content: "\\eb43"; - } - .icofont-beer:before - { - content: "\\eb44"; - } - .icofont-bell-pepper-capsicum:before - { - content: "\\eb45"; - } - .icofont-birthday-cake:before - { - content: "\\eb46"; - } - .icofont-bread:before - { - content: "\\eb47"; - } - .icofont-broccoli:before - { - content: "\\eb48"; - } - .icofont-burger:before - { - content: "\\eb49"; - } - .icofont-cabbage:before - { - content: "\\eb4a"; - } - .icofont-carrot:before - { - content: "\\eb4b"; - } - .icofont-cauli-flower:before - { - content: "\\eb4c"; - } - .icofont-cheese:before - { - content: "\\eb4d"; - } - .icofont-chef:before - { - content: "\\eb4e"; - } - .icofont-cherry:before - { - content: "\\eb4f"; - } - .icofont-chicken-fry:before - { - content: "\\eb50"; - } - .icofont-chicken:before - { - content: "\\eb51"; - } - .icofont-cocktail:before - { - content: "\\eb52"; - } - .icofont-coconut-water:before - { - content: "\\eb53"; - } - .icofont-coconut:before - { - content: "\\eb54"; - } - .icofont-coffee-alt:before - { - content: "\\eb55"; - } - .icofont-coffee-cup:before - { - content: "\\eb56"; - } - .icofont-coffee-mug:before - { - content: "\\eb57"; - } - .icofont-coffee-pot:before - { - content: "\\eb58"; - } - .icofont-cola:before - { - content: "\\eb59"; - } - .icofont-corn:before - { - content: "\\eb5a"; - } - .icofont-croissant:before - { - content: "\\eb5b"; - } - .icofont-crop-plant:before - { - content: "\\eb5c"; - } - .icofont-cucumber:before - { - content: "\\eb5d"; - } - .icofont-culinary:before - { - content: "\\eb5e"; - } - .icofont-cup-cake:before - { - content: "\\eb5f"; - } - .icofont-dining-table:before - { - content: "\\eb60"; - } - .icofont-donut:before - { - content: "\\eb61"; - } - .icofont-egg-plant:before - { - content: "\\eb62"; - } - .icofont-egg-poached:before - { - content: "\\eb63"; - } - .icofont-farmer-alt:before - { - content: "\\eb64"; - } - .icofont-farmer:before - { - content: "\\eb65"; - } - .icofont-fast-food:before - { - content: "\\eb66"; - } - .icofont-food-basket:before - { - content: "\\eb67"; - } - .icofont-food-cart:before - { - content: "\\eb68"; - } - .icofont-fork-and-knife:before - { - content: "\\eb69"; - } - .icofont-french-fries:before - { - content: "\\eb6a"; - } - .icofont-fruits:before - { - content: "\\eb6b"; - } - .icofont-grapes:before - { - content: "\\eb6c"; - } - .icofont-honey:before - { - content: "\\eb6d"; - } - .icofont-hot-dog:before - { - content: "\\eb6e"; - } - .icofont-ice-cream-alt:before - { - content: "\\eb6f"; - } - .icofont-ice-cream:before - { - content: "\\eb70"; - } - .icofont-juice:before - { - content: "\\eb71"; - } - .icofont-ketchup:before - { - content: "\\eb72"; - } - .icofont-kiwi:before - { - content: "\\eb73"; - } - .icofont-layered-cake:before - { - content: "\\eb74"; - } - .icofont-lemon-alt:before - { - content: "\\eb75"; - } - .icofont-lemon:before - { - content: "\\eb76"; - } - .icofont-lobster:before - { - content: "\\eb77"; - } - .icofont-mango:before - { - content: "\\eb78"; - } - .icofont-milk:before - { - content: "\\eb79"; - } - .icofont-mushroom:before - { - content: "\\eb7a"; - } - .icofont-noodles:before - { - content: "\\eb7b"; - } - .icofont-onion:before - { - content: "\\eb7c"; - } - .icofont-orange:before - { - content: "\\eb7d"; - } - .icofont-pear:before - { - content: "\\eb7e"; - } - .icofont-peas:before - { - content: "\\eb7f"; - } - .icofont-pepper:before - { - content: "\\eb80"; - } - .icofont-pie-alt:before - { - content: "\\eb81"; - } - .icofont-pie:before - { - content: "\\eb82"; - } - .icofont-pineapple:before - { - content: "\\eb83"; - } - .icofont-pizza-slice:before - { - content: "\\eb84"; - } - .icofont-pizza:before - { - content: "\\eb85"; - } - .icofont-plant:before - { - content: "\\eb86"; - } - .icofont-popcorn:before - { - content: "\\eb87"; - } - .icofont-potato:before - { - content: "\\eb88"; - } - .icofont-pumpkin:before - { - content: "\\eb89"; - } - .icofont-raddish:before - { - content: "\\eb8a"; - } - .icofont-restaurant-menu:before - { - content: "\\eb8b"; - } - .icofont-restaurant:before - { - content: "\\eb8c"; - } - .icofont-salt-and-pepper:before - { - content: "\\eb8d"; - } - .icofont-sandwich:before - { - content: "\\eb8e"; - } - .icofont-sausage:before - { - content: "\\eb8f"; - } - .icofont-soft-drinks:before - { - content: "\\eb90"; - } - .icofont-soup-bowl:before - { - content: "\\eb91"; - } - .icofont-spoon-and-fork:before - { - content: "\\eb92"; - } - .icofont-steak:before - { - content: "\\eb93"; - } - .icofont-strawberry:before - { - content: "\\eb94"; - } - .icofont-sub-sandwich:before - { - content: "\\eb95"; - } - .icofont-sushi:before - { - content: "\\eb96"; - } - .icofont-taco:before - { - content: "\\eb97"; - } - .icofont-tea-pot:before - { - content: "\\eb98"; - } - .icofont-tea:before - { - content: "\\eb99"; - } - .icofont-tomato:before - { - content: "\\eb9a"; - } - .icofont-watermelon:before - { - content: "\\eb9b"; - } - .icofont-wheat:before - { - content: "\\eb9c"; - } - .icofont-baby-backpack:before - { - content: "\\eb9d"; - } - .icofont-baby-cloth:before - { - content: "\\eb9e"; - } - .icofont-baby-milk-bottle:before - { - content: "\\eb9f"; - } - .icofont-baby-trolley:before - { - content: "\\eba0"; - } - .icofont-baby:before - { - content: "\\eba1"; - } - .icofont-candy:before - { - content: "\\eba2"; - } - .icofont-holding-hands:before - { - content: "\\eba3"; - } - .icofont-infant-nipple:before - { - content: "\\eba4"; - } - .icofont-kids-scooter:before - { - content: "\\eba5"; - } - .icofont-safety-pin:before - { - content: "\\eba6"; - } - .icofont-teddy-bear:before - { - content: "\\eba7"; - } - .icofont-toy-ball:before - { - content: "\\eba8"; - } - .icofont-toy-cat:before - { - content: "\\eba9"; - } - .icofont-toy-duck:before - { - content: "\\ebaa"; - } - .icofont-toy-elephant:before - { - content: "\\ebab"; - } - .icofont-toy-hand:before - { - content: "\\ebac"; - } - .icofont-toy-horse:before - { - content: "\\ebad"; - } - .icofont-toy-lattu:before - { - content: "\\ebae"; - } - .icofont-toy-train:before - { - content: "\\ebaf"; - } - .icofont-burglar:before - { - content: "\\ebb0"; - } - .icofont-cannon-firing:before - { - content: "\\ebb1"; - } - .icofont-cc-camera:before - { - content: "\\ebb2"; - } - .icofont-cop-badge:before - { - content: "\\ebb3"; - } - .icofont-cop:before - { - content: "\\ebb4"; - } - .icofont-court-hammer:before - { - content: "\\ebb5"; - } - .icofont-court:before - { - content: "\\ebb6"; - } - .icofont-finger-print:before - { - content: "\\ebb7"; - } - .icofont-gavel:before - { - content: "\\ebb8"; - } - .icofont-handcuff-alt:before - { - content: "\\ebb9"; - } - .icofont-handcuff:before - { - content: "\\ebba"; - } - .icofont-investigation:before - { - content: "\\ebbb"; - } - .icofont-investigator:before - { - content: "\\ebbc"; - } - .icofont-jail:before - { - content: "\\ebbd"; - } - .icofont-judge:before - { - content: "\\ebbe"; - } - .icofont-law-alt-1:before - { - content: "\\ebbf"; - } - .icofont-law-alt-2:before - { - content: "\\ebc0"; - } - .icofont-law-alt-3:before - { - content: "\\ebc1"; - } - .icofont-law-book:before - { - content: "\\ebc2"; - } - .icofont-law-document:before - { - content: "\\ebc3"; - } - .icofont-law-order:before - { - content: "\\ebc4"; - } - .icofont-law-protect:before - { - content: "\\ebc5"; - } - .icofont-law-scales:before - { - content: "\\ebc6"; - } - .icofont-law:before - { - content: "\\ebc7"; - } - .icofont-lawyer-alt-1:before - { - content: "\\ebc8"; - } - .icofont-lawyer-alt-2:before - { - content: "\\ebc9"; - } - .icofont-lawyer:before - { - content: "\\ebca"; - } - .icofont-legal:before - { - content: "\\ebcb"; - } - .icofont-pistol:before - { - content: "\\ebcc"; - } - .icofont-police-badge:before - { - content: "\\ebcd"; - } - .icofont-police-cap:before - { - content: "\\ebce"; - } - .icofont-police-car-alt-1:before - { - content: "\\ebcf"; - } - .icofont-police-car-alt-2:before - { - content: "\\ebd0"; - } - .icofont-police-car:before - { - content: "\\ebd1"; - } - .icofont-police-hat:before - { - content: "\\ebd2"; - } - .icofont-police-van:before - { - content: "\\ebd3"; - } - .icofont-police:before - { - content: "\\ebd4"; - } - .icofont-thief-alt:before - { - content: "\\ebd5"; - } - .icofont-thief:before - { - content: "\\ebd6"; - } - .icofont-abacus-alt:before - { - content: "\\ebd7"; - } - .icofont-abacus:before - { - content: "\\ebd8"; - } - .icofont-angle-180:before - { - content: "\\ebd9"; - } - .icofont-angle-45:before - { - content: "\\ebda"; - } - .icofont-angle-90:before - { - content: "\\ebdb"; - } - .icofont-angle:before - { - content: "\\ebdc"; - } - .icofont-calculator-alt-1:before - { - content: "\\ebdd"; - } - .icofont-calculator-alt-2:before - { - content: "\\ebde"; - } - .icofont-calculator:before - { - content: "\\ebdf"; - } - .icofont-circle-ruler-alt:before - { - content: "\\ebe0"; - } - .icofont-circle-ruler:before - { - content: "\\ebe1"; - } - .icofont-compass-alt-1:before - { - content: "\\ebe2"; - } - .icofont-compass-alt-2:before - { - content: "\\ebe3"; - } - .icofont-compass-alt-3:before - { - content: "\\ebe4"; - } - .icofont-compass-alt-4:before - { - content: "\\ebe5"; - } - .icofont-golden-ratio:before - { - content: "\\ebe6"; - } - .icofont-marker-alt-1:before - { - content: "\\ebe7"; - } - .icofont-marker-alt-2:before - { - content: "\\ebe8"; - } - .icofont-marker-alt-3:before - { - content: "\\ebe9"; - } - .icofont-marker:before - { - content: "\\ebea"; - } - .icofont-math:before - { - content: "\\ebeb"; - } - .icofont-mathematical-alt-1:before - { - content: "\\ebec"; - } - .icofont-mathematical-alt-2:before - { - content: "\\ebed"; - } - .icofont-mathematical:before - { - content: "\\ebee"; - } - .icofont-pen-alt-1:before - { - content: "\\ebef"; - } - .icofont-pen-alt-2:before - { - content: "\\ebf0"; - } - .icofont-pen-alt-3:before - { - content: "\\ebf1"; - } - .icofont-pen-holder-alt-1:before - { - content: "\\ebf2"; - } - .icofont-pen-holder:before - { - content: "\\ebf3"; - } - .icofont-pen:before - { - content: "\\ebf4"; - } - .icofont-pencil-alt-1:before - { - content: "\\ebf5"; - } - .icofont-pencil-alt-2:before - { - content: "\\ebf6"; - } - .icofont-pencil-alt-3:before - { - content: "\\ebf7"; - } - .icofont-pencil-alt-4:before - { - content: "\\ebf8"; - } - .icofont-pencil:before - { - content: "\\ebf9"; - } - .icofont-ruler-alt-1:before - { - content: "\\ebfa"; - } - .icofont-ruler-alt-2:before - { - content: "\\ebfb"; - } - .icofont-ruler-compass-alt:before - { - content: "\\ebfc"; - } - .icofont-ruler-compass:before - { - content: "\\ebfd"; - } - .icofont-ruler-pencil-alt-1:before - { - content: "\\ebfe"; - } - .icofont-ruler-pencil-alt-2:before - { - content: "\\ebff"; - } - .icofont-ruler-pencil:before - { - content: "\\ec00"; - } - .icofont-ruler:before - { - content: "\\ec01"; - } - .icofont-rulers-alt:before - { - content: "\\ec02"; - } - .icofont-rulers:before - { - content: "\\ec03"; - } - .icofont-square-root:before - { - content: "\\ec04"; - } - .icofont-ui-calculator:before - { - content: "\\ec05"; - } - .icofont-aids:before - { - content: "\\ec06"; - } - .icofont-ambulance-crescent:before - { - content: "\\ec07"; - } - .icofont-ambulance-cross:before - { - content: "\\ec08"; - } - .icofont-ambulance:before - { - content: "\\ec09"; - } - .icofont-autism:before - { - content: "\\ec0a"; - } - .icofont-bandage:before - { - content: "\\ec0b"; - } - .icofont-blind:before - { - content: "\\ec0c"; - } - .icofont-blood-drop:before - { - content: "\\ec0d"; - } - .icofont-blood-test:before - { - content: "\\ec0e"; - } - .icofont-blood:before - { - content: "\\ec0f"; - } - .icofont-brain-alt:before - { - content: "\\ec10"; - } - .icofont-brain:before - { - content: "\\ec11"; - } - .icofont-capsule:before - { - content: "\\ec12"; - } - .icofont-crutch:before - { - content: "\\ec13"; - } - .icofont-disabled:before - { - content: "\\ec14"; - } - .icofont-dna-alt-1:before - { - content: "\\ec15"; - } - .icofont-dna-alt-2:before - { - content: "\\ec16"; - } - .icofont-dna:before - { - content: "\\ec17"; - } - .icofont-doctor-alt:before - { - content: "\\ec18"; - } - .icofont-doctor:before - { - content: "\\ec19"; - } - .icofont-drug-pack:before - { - content: "\\ec1a"; - } - .icofont-drug:before - { - content: "\\ec1b"; - } - .icofont-first-aid-alt:before - { - content: "\\ec1c"; - } - .icofont-first-aid:before - { - content: "\\ec1d"; - } - .icofont-heart-beat-alt:before - { - content: "\\ec1e"; - } - .icofont-heart-beat:before - { - content: "\\ec1f"; - } - .icofont-heartbeat:before - { - content: "\\ec20"; - } - .icofont-herbal:before - { - content: "\\ec21"; - } - .icofont-hospital:before - { - content: "\\ec22"; - } - .icofont-icu:before - { - content: "\\ec23"; - } - .icofont-injection-syringe:before - { - content: "\\ec24"; - } - .icofont-laboratory:before - { - content: "\\ec25"; - } - .icofont-medical-sign-alt:before - { - content: "\\ec26"; - } - .icofont-medical-sign:before - { - content: "\\ec27"; - } - .icofont-nurse-alt:before - { - content: "\\ec28"; - } - .icofont-nurse:before - { - content: "\\ec29"; - } - .icofont-nursing-home:before - { - content: "\\ec2a"; - } - .icofont-operation-theater:before - { - content: "\\ec2b"; - } - .icofont-paralysis-disability:before - { - content: "\\ec2c"; - } - .icofont-patient-bed:before - { - content: "\\ec2d"; - } - .icofont-patient-file:before - { - content: "\\ec2e"; - } - .icofont-pills:before - { - content: "\\ec2f"; - } - .icofont-prescription:before - { - content: "\\ec30"; - } - .icofont-pulse:before - { - content: "\\ec31"; - } - .icofont-stethoscope-alt:before - { - content: "\\ec32"; - } - .icofont-stethoscope:before - { - content: "\\ec33"; - } - .icofont-stretcher:before - { - content: "\\ec34"; - } - .icofont-surgeon-alt:before - { - content: "\\ec35"; - } - .icofont-surgeon:before - { - content: "\\ec36"; - } - .icofont-tablets:before - { - content: "\\ec37"; - } - .icofont-test-bottle:before - { - content: "\\ec38"; - } - .icofont-test-tube:before - { - content: "\\ec39"; - } - .icofont-thermometer-alt:before - { - content: "\\ec3a"; - } - .icofont-thermometer:before - { - content: "\\ec3b"; - } - .icofont-tooth:before - { - content: "\\ec3c"; - } - .icofont-xray:before - { - content: "\\ec3d"; - } - .icofont-ui-add:before - { - content: "\\ec3e"; - } - .icofont-ui-alarm:before - { - content: "\\ec3f"; - } - .icofont-ui-battery:before - { - content: "\\ec40"; - } - .icofont-ui-block:before - { - content: "\\ec41"; - } - .icofont-ui-bluetooth:before - { - content: "\\ec42"; - } - .icofont-ui-brightness:before - { - content: "\\ec43"; - } - .icofont-ui-browser:before - { - content: "\\ec44"; - } - .icofont-ui-calendar:before - { - content: "\\ec45"; - } - .icofont-ui-call:before - { - content: "\\ec46"; - } - .icofont-ui-camera:before - { - content: "\\ec47"; - } - .icofont-ui-cart:before - { - content: "\\ec48"; - } - .icofont-ui-cell-phone:before - { - content: "\\ec49"; - } - .icofont-ui-chat:before - { - content: "\\ec4a"; - } - .icofont-ui-check:before - { - content: "\\ec4b"; - } - .icofont-ui-clip-board:before - { - content: "\\ec4c"; - } - .icofont-ui-clip:before - { - content: "\\ec4d"; - } - .icofont-ui-clock:before - { - content: "\\ec4e"; - } - .icofont-ui-close:before - { - content: "\\ec4f"; - } - .icofont-ui-contact-list:before - { - content: "\\ec50"; - } - .icofont-ui-copy:before - { - content: "\\ec51"; - } - .icofont-ui-cut:before - { - content: "\\ec52"; - } - .icofont-ui-delete:before - { - content: "\\ec53"; - } - .icofont-ui-dial-phone:before - { - content: "\\ec54"; - } - .icofont-ui-edit:before - { - content: "\\ec55"; - } - .icofont-ui-email:before - { - content: "\\ec56"; - } - .icofont-ui-file:before - { - content: "\\ec57"; - } - .icofont-ui-fire-wall:before - { - content: "\\ec58"; - } - .icofont-ui-flash-light:before - { - content: "\\ec59"; - } - .icofont-ui-flight:before - { - content: "\\ec5a"; - } - .icofont-ui-folder:before - { - content: "\\ec5b"; - } - .icofont-ui-game:before - { - content: "\\ec5c"; - } - .icofont-ui-handicapped:before - { - content: "\\ec5d"; - } - .icofont-ui-home:before - { - content: "\\ec5e"; - } - .icofont-ui-image:before - { - content: "\\ec5f"; - } - .icofont-ui-laoding:before - { - content: "\\ec60"; - } - .icofont-ui-lock:before - { - content: "\\ec61"; - } - .icofont-ui-love-add:before - { - content: "\\ec62"; - } - .icofont-ui-love-broken:before - { - content: "\\ec63"; - } - .icofont-ui-love-remove:before - { - content: "\\ec64"; - } - .icofont-ui-love:before - { - content: "\\ec65"; - } - .icofont-ui-map:before - { - content: "\\ec66"; - } - .icofont-ui-message:before - { - content: "\\ec67"; - } - .icofont-ui-messaging:before - { - content: "\\ec68"; - } - .icofont-ui-movie:before - { - content: "\\ec69"; - } - .icofont-ui-music-player:before - { - content: "\\ec6a"; - } - .icofont-ui-music:before - { - content: "\\ec6b"; - } - .icofont-ui-mute:before - { - content: "\\ec6c"; - } - .icofont-ui-network:before - { - content: "\\ec6d"; - } - .icofont-ui-next:before - { - content: "\\ec6e"; - } - .icofont-ui-note:before - { - content: "\\ec6f"; - } - .icofont-ui-office:before - { - content: "\\ec70"; - } - .icofont-ui-password:before - { - content: "\\ec71"; - } - .icofont-ui-pause:before - { - content: "\\ec72"; - } - .icofont-ui-play-stop:before - { - content: "\\ec73"; - } - .icofont-ui-play:before - { - content: "\\ec74"; - } - .icofont-ui-pointer:before - { - content: "\\ec75"; - } - .icofont-ui-power:before - { - content: "\\ec76"; - } - .icofont-ui-press:before - { - content: "\\ec77"; - } - .icofont-ui-previous:before - { - content: "\\ec78"; - } - .icofont-ui-rate-add:before - { - content: "\\ec79"; - } - .icofont-ui-rate-blank:before - { - content: "\\ec7a"; - } - .icofont-ui-rate-remove:before - { - content: "\\ec7b"; - } - .icofont-ui-rating:before - { - content: "\\ec7c"; - } - .icofont-ui-record:before - { - content: "\\ec7d"; - } - .icofont-ui-remove:before - { - content: "\\ec7e"; - } - .icofont-ui-reply:before - { - content: "\\ec7f"; - } - .icofont-ui-rotation:before - { - content: "\\ec80"; - } - .icofont-ui-rss:before - { - content: "\\ec81"; - } - .icofont-ui-search:before - { - content: "\\ec82"; - } - .icofont-ui-settings:before - { - content: "\\ec83"; - } - .icofont-ui-social-link:before - { - content: "\\ec84"; - } - .icofont-ui-tag:before - { - content: "\\ec85"; - } - .icofont-ui-text-chat:before - { - content: "\\ec86"; - } - .icofont-ui-text-loading:before - { - content: "\\ec87"; - } - .icofont-ui-theme:before - { - content: "\\ec88"; - } - .icofont-ui-timer:before - { - content: "\\ec89"; - } - .icofont-ui-touch-phone:before - { - content: "\\ec8a"; - } - .icofont-ui-travel:before - { - content: "\\ec8b"; - } - .icofont-ui-unlock:before - { - content: "\\ec8c"; - } - .icofont-ui-user-group:before - { - content: "\\ec8d"; - } - .icofont-ui-user:before - { - content: "\\ec8e"; - } - .icofont-ui-v-card:before - { - content: "\\ec8f"; - } - .icofont-ui-video-chat:before - { - content: "\\ec90"; - } - .icofont-ui-video-message:before - { - content: "\\ec91"; - } - .icofont-ui-video-play:before - { - content: "\\ec92"; - } - .icofont-ui-video:before - { - content: "\\ec93"; - } - .icofont-ui-volume:before - { - content: "\\ec94"; - } - .icofont-ui-weather:before - { - content: "\\ec95"; - } - .icofont-ui-wifi:before - { - content: "\\ec96"; - } - .icofont-ui-zoom-in:before - { - content: "\\ec97"; - } - .icofont-ui-zoom-out:before - { - content: "\\ec98"; - } - .icofont-cassette-player:before - { - content: "\\ec99"; - } - .icofont-cassette:before - { - content: "\\ec9a"; - } - .icofont-forward:before - { - content: "\\ec9b"; - } - .icofont-guiter:before - { - content: "\\ec9c"; - } - .icofont-movie:before - { - content: "\\ec9d"; - } - .icofont-multimedia:before - { - content: "\\ec9e"; - } - .icofont-music-alt:before - { - content: "\\ec9f"; - } - .icofont-music-disk:before - { - content: "\\eca0"; - } - .icofont-music-note:before - { - content: "\\eca1"; - } - .icofont-music-notes:before - { - content: "\\eca2"; - } - .icofont-music:before - { - content: "\\eca3"; - } - .icofont-mute-volume:before - { - content: "\\eca4"; - } - .icofont-pause:before - { - content: "\\eca5"; - } - .icofont-play-alt-1:before - { - content: "\\eca6"; - } - .icofont-play-alt-2:before - { - content: "\\eca7"; - } - .icofont-play-alt-3:before - { - content: "\\eca8"; - } - .icofont-play-pause:before - { - content: "\\eca9"; - } - .icofont-play:before - { - content: "\\ecaa"; - } - .icofont-record:before - { - content: "\\ecab"; - } - .icofont-retro-music-disk:before - { - content: "\\ecac"; - } - .icofont-rewind:before - { - content: "\\ecad"; - } - .icofont-song-notes:before - { - content: "\\ecae"; - } - .icofont-sound-wave-alt:before - { - content: "\\ecaf"; - } - .icofont-sound-wave:before - { - content: "\\ecb0"; - } - .icofont-stop:before - { - content: "\\ecb1"; - } - .icofont-video-alt:before - { - content: "\\ecb2"; - } - .icofont-video-cam:before - { - content: "\\ecb3"; - } - .icofont-video-clapper:before - { - content: "\\ecb4"; - } - .icofont-video:before - { - content: "\\ecb5"; - } - .icofont-volume-bar:before - { - content: "\\ecb6"; - } - .icofont-volume-down:before - { - content: "\\ecb7"; - } - .icofont-volume-mute:before - { - content: "\\ecb8"; - } - .icofont-volume-off:before - { - content: "\\ecb9"; - } - .icofont-volume-up:before - { - content: "\\ecba"; - } - .icofont-youtube-play:before - { - content: "\\ecbb"; - } - .icofont-2checkout-alt:before - { - content: "\\ecbc"; - } - .icofont-2checkout:before - { - content: "\\ecbd"; - } - .icofont-amazon-alt:before - { - content: "\\ecbe"; - } - .icofont-amazon:before - { - content: "\\ecbf"; - } - .icofont-american-express-alt:before - { - content: "\\ecc0"; - } - .icofont-american-express:before - { - content: "\\ecc1"; - } - .icofont-apple-pay-alt:before - { - content: "\\ecc2"; - } - .icofont-apple-pay:before - { - content: "\\ecc3"; - } - .icofont-bank-transfer-alt:before - { - content: "\\ecc4"; - } - .icofont-bank-transfer:before - { - content: "\\ecc5"; - } - .icofont-braintree-alt:before - { - content: "\\ecc6"; - } - .icofont-braintree:before - { - content: "\\ecc7"; - } - .icofont-cash-on-delivery-alt:before - { - content: "\\ecc8"; - } - .icofont-cash-on-delivery:before - { - content: "\\ecc9"; - } - .icofont-diners-club-alt-1:before - { - content: "\\ecca"; - } - .icofont-diners-club-alt-2:before - { - content: "\\eccb"; - } - .icofont-diners-club-alt-3:before - { - content: "\\eccc"; - } - .icofont-diners-club:before - { - content: "\\eccd"; - } - .icofont-discover-alt:before - { - content: "\\ecce"; - } - .icofont-discover:before - { - content: "\\eccf"; - } - .icofont-eway-alt:before - { - content: "\\ecd0"; - } - .icofont-eway:before - { - content: "\\ecd1"; - } - .icofont-google-wallet-alt-1:before - { - content: "\\ecd2"; - } - .icofont-google-wallet-alt-2:before - { - content: "\\ecd3"; - } - .icofont-google-wallet-alt-3:before - { - content: "\\ecd4"; - } - .icofont-google-wallet:before - { - content: "\\ecd5"; - } - .icofont-jcb-alt:before - { - content: "\\ecd6"; - } - .icofont-jcb:before - { - content: "\\ecd7"; - } - .icofont-maestro-alt:before - { - content: "\\ecd8"; - } - .icofont-maestro:before - { - content: "\\ecd9"; - } - .icofont-mastercard-alt:before - { - content: "\\ecda"; - } - .icofont-mastercard:before - { - content: "\\ecdb"; - } - .icofont-payoneer-alt:before - { - content: "\\ecdc"; - } - .icofont-payoneer:before - { - content: "\\ecdd"; - } - .icofont-paypal-alt:before - { - content: "\\ecde"; - } - .icofont-paypal:before - { - content: "\\ecdf"; - } - .icofont-sage-alt:before - { - content: "\\ece0"; - } - .icofont-sage:before - { - content: "\\ece1"; - } - .icofont-skrill-alt:before - { - content: "\\ece2"; - } - .icofont-skrill:before - { - content: "\\ece3"; - } - .icofont-stripe-alt:before - { - content: "\\ece4"; - } - .icofont-stripe:before - { - content: "\\ece5"; - } - .icofont-visa-alt:before - { - content: "\\ece6"; - } - .icofont-visa-electron:before - { - content: "\\ece7"; - } - .icofont-visa:before - { - content: "\\ece8"; - } - .icofont-western-union-alt:before - { - content: "\\ece9"; - } - .icofont-western-union:before - { - content: "\\ecea"; - } - .icofont-boy:before - { - content: "\\eceb"; - } - .icofont-business-man-alt-1:before - { - content: "\\ecec"; - } - .icofont-business-man-alt-2:before - { - content: "\\eced"; - } - .icofont-business-man-alt-3:before - { - content: "\\ecee"; - } - .icofont-business-man:before - { - content: "\\ecef"; - } - .icofont-female:before - { - content: "\\ecf0"; - } - .icofont-funky-man:before - { - content: "\\ecf1"; - } - .icofont-girl-alt:before - { - content: "\\ecf2"; - } - .icofont-girl:before - { - content: "\\ecf3"; - } - .icofont-group:before - { - content: "\\ecf4"; - } - .icofont-hotel-boy-alt:before - { - content: "\\ecf5"; - } - .icofont-hotel-boy:before - { - content: "\\ecf6"; - } - .icofont-kid:before - { - content: "\\ecf7"; - } - .icofont-man-in-glasses:before - { - content: "\\ecf8"; - } - .icofont-people:before - { - content: "\\ecf9"; - } - .icofont-support:before - { - content: "\\ecfa"; - } - .icofont-user-alt-1:before - { - content: "\\ecfb"; - } - .icofont-user-alt-2:before - { - content: "\\ecfc"; - } - .icofont-user-alt-3:before - { - content: "\\ecfd"; - } - .icofont-user-alt-4:before - { - content: "\\ecfe"; - } - .icofont-user-alt-5:before - { - content: "\\ecff"; - } - .icofont-user-alt-6:before - { - content: "\\ed00"; - } - .icofont-user-alt-7:before - { - content: "\\ed01"; - } - .icofont-user-female:before - { - content: "\\ed02"; - } - .icofont-user-male:before - { - content: "\\ed03"; - } - .icofont-user-suited:before - { - content: "\\ed04"; - } - .icofont-user:before - { - content: "\\ed05"; - } - .icofont-users-alt-1:before - { - content: "\\ed06"; - } - .icofont-users-alt-2:before - { - content: "\\ed07"; - } - .icofont-users-alt-3:before - { - content: "\\ed08"; - } - .icofont-users-alt-4:before - { - content: "\\ed09"; - } - .icofont-users-alt-5:before - { - content: "\\ed0a"; - } - .icofont-users-alt-6:before - { - content: "\\ed0b"; - } - .icofont-users-social:before - { - content: "\\ed0c"; - } - .icofont-users:before - { - content: "\\ed0d"; - } - .icofont-waiter-alt:before - { - content: "\\ed0e"; - } - .icofont-waiter:before - { - content: "\\ed0f"; - } - .icofont-woman-in-glasses:before - { - content: "\\ed10"; - } - .icofont-search-1:before - { - content: "\\ed11"; - } - .icofont-search-2:before - { - content: "\\ed12"; - } - .icofont-search-document:before - { - content: "\\ed13"; - } - .icofont-search-folder:before - { - content: "\\ed14"; - } - .icofont-search-job:before - { - content: "\\ed15"; - } - .icofont-search-map:before - { - content: "\\ed16"; - } - .icofont-search-property:before - { - content: "\\ed17"; - } - .icofont-search-restaurant:before - { - content: "\\ed18"; - } - .icofont-search-stock:before - { - content: "\\ed19"; - } - .icofont-search-user:before - { - content: "\\ed1a"; - } - .icofont-search:before - { - content: "\\ed1b"; - } - .icofont-500px:before - { - content: "\\ed1c"; - } - .icofont-aim:before - { - content: "\\ed1d"; - } - .icofont-badoo:before - { - content: "\\ed1e"; - } - .icofont-baidu-tieba:before - { - content: "\\ed1f"; - } - .icofont-bbm-messenger:before - { - content: "\\ed20"; - } - .icofont-bebo:before - { - content: "\\ed21"; - } - .icofont-behance:before - { - content: "\\ed22"; - } - .icofont-blogger:before - { - content: "\\ed23"; - } - .icofont-bootstrap:before - { - content: "\\ed24"; - } - .icofont-brightkite:before - { - content: "\\ed25"; - } - .icofont-cloudapp:before - { - content: "\\ed26"; - } - .icofont-concrete5:before - { - content: "\\ed27"; - } - .icofont-delicious:before - { - content: "\\ed28"; - } - .icofont-designbump:before - { - content: "\\ed29"; - } - .icofont-designfloat:before - { - content: "\\ed2a"; - } - .icofont-deviantart:before - { - content: "\\ed2b"; - } - .icofont-digg:before - { - content: "\\ed2c"; - } - .icofont-dotcms:before - { - content: "\\ed2d"; - } - .icofont-dribbble:before - { - content: "\\ed2e"; - } - .icofont-dribble:before - { - content: "\\ed2f"; - } - .icofont-dropbox:before - { - content: "\\ed30"; - } - .icofont-ebuddy:before - { - content: "\\ed31"; - } - .icofont-ello:before - { - content: "\\ed32"; - } - .icofont-ember:before - { - content: "\\ed33"; - } - .icofont-envato:before - { - content: "\\ed34"; - } - .icofont-evernote:before - { - content: "\\ed35"; - } - .icofont-facebook-messenger:before - { - content: "\\ed36"; - } - .icofont-facebook:before - { - content: "\\ed37"; - } - .icofont-feedburner:before - { - content: "\\ed38"; - } - .icofont-flikr:before - { - content: "\\ed39"; - } - .icofont-folkd:before - { - content: "\\ed3a"; - } - .icofont-foursquare:before - { - content: "\\ed3b"; - } - .icofont-friendfeed:before - { - content: "\\ed3c"; - } - .icofont-ghost:before - { - content: "\\ed3d"; - } - .icofont-github:before - { - content: "\\ed3e"; - } - .icofont-gnome:before - { - content: "\\ed3f"; - } - .icofont-google-buzz:before - { - content: "\\ed40"; - } - .icofont-google-hangouts:before - { - content: "\\ed41"; - } - .icofont-google-map:before - { - content: "\\ed42"; - } - .icofont-google-plus:before - { - content: "\\ed43"; - } - .icofont-google-talk:before - { - content: "\\ed44"; - } - .icofont-hype-machine:before - { - content: "\\ed45"; - } - .icofont-instagram:before - { - content: "\\ed46"; - } - .icofont-kakaotalk:before - { - content: "\\ed47"; - } - .icofont-kickstarter:before - { - content: "\\ed48"; - } - .icofont-kik:before - { - content: "\\ed49"; - } - .icofont-kiwibox:before - { - content: "\\ed4a"; - } - .icofont-line-messenger:before - { - content: "\\ed4b"; - } - .icofont-line:before - { - content: "\\ed4c"; - } - .icofont-linkedin:before - { - content: "\\ed4d"; - } - .icofont-linux-mint:before - { - content: "\\ed4e"; - } - .icofont-live-messenger:before - { - content: "\\ed4f"; - } - .icofont-livejournal:before - { - content: "\\ed50"; - } - .icofont-magento:before - { - content: "\\ed51"; - } - .icofont-meetme:before - { - content: "\\ed52"; - } - .icofont-meetup:before - { - content: "\\ed53"; - } - .icofont-mixx:before - { - content: "\\ed54"; - } - .icofont-newsvine:before - { - content: "\\ed55"; - } - .icofont-nimbuss:before - { - content: "\\ed56"; - } - .icofont-odnoklassniki:before - { - content: "\\ed57"; - } - .icofont-opencart:before - { - content: "\\ed58"; - } - .icofont-oscommerce:before - { - content: "\\ed59"; - } - .icofont-pandora:before - { - content: "\\ed5a"; - } - .icofont-photobucket:before - { - content: "\\ed5b"; - } - .icofont-picasa:before - { - content: "\\ed5c"; - } - .icofont-pinterest:before - { - content: "\\ed5d"; - } - .icofont-prestashop:before - { - content: "\\ed5e"; - } - .icofont-qik:before - { - content: "\\ed5f"; - } - .icofont-qq:before - { - content: "\\ed60"; - } - .icofont-readernaut:before - { - content: "\\ed61"; - } - .icofont-reddit:before - { - content: "\\ed62"; - } - .icofont-renren:before - { - content: "\\ed63"; - } - .icofont-rss:before - { - content: "\\ed64"; - } - .icofont-shopify:before - { - content: "\\ed65"; - } - .icofont-silverstripe:before - { - content: "\\ed66"; - } - .icofont-skype:before - { - content: "\\ed67"; - } - .icofont-slack:before - { - content: "\\ed68"; - } - .icofont-slashdot:before - { - content: "\\ed69"; - } - .icofont-slidshare:before - { - content: "\\ed6a"; - } - .icofont-smugmug:before - { - content: "\\ed6b"; - } - .icofont-snapchat:before - { - content: "\\ed6c"; - } - .icofont-soundcloud:before - { - content: "\\ed6d"; - } - .icofont-spotify:before - { - content: "\\ed6e"; - } - .icofont-stack-exchange:before - { - content: "\\ed6f"; - } - .icofont-stack-overflow:before - { - content: "\\ed70"; - } - .icofont-steam:before - { - content: "\\ed71"; - } - .icofont-stumbleupon:before - { - content: "\\ed72"; - } - .icofont-tagged:before - { - content: "\\ed73"; - } - .icofont-technorati:before - { - content: "\\ed74"; - } - .icofont-telegram:before - { - content: "\\ed75"; - } - .icofont-tinder:before - { - content: "\\ed76"; - } - .icofont-trello:before - { - content: "\\ed77"; - } - .icofont-tumblr:before - { - content: "\\ed78"; - } - .icofont-twitch:before - { - content: "\\ed79"; - } - .icofont-twitter:before - { - content: "\\ed7a"; - } - .icofont-typo3:before - { - content: "\\ed7b"; - } - .icofont-ubercart:before - { - content: "\\ed7c"; - } - .icofont-viber:before - { - content: "\\ed7d"; - } - .icofont-viddler:before - { - content: "\\ed7e"; - } - .icofont-vimeo:before - { - content: "\\ed7f"; - } - .icofont-vine:before - { - content: "\\ed80"; - } - .icofont-virb:before - { - content: "\\ed81"; - } - .icofont-virtuemart:before - { - content: "\\ed82"; - } - .icofont-vk:before - { - content: "\\ed83"; - } - .icofont-wechat:before - { - content: "\\ed84"; - } - .icofont-weibo:before - { - content: "\\ed85"; - } - .icofont-whatsapp:before - { - content: "\\ed86"; - } - .icofont-xing:before - { - content: "\\ed87"; - } - .icofont-yahoo:before - { - content: "\\ed88"; - } - .icofont-yelp:before - { - content: "\\ed89"; - } - .icofont-youku:before - { - content: "\\ed8a"; - } - .icofont-youtube:before - { - content: "\\ed8b"; - } - .icofont-zencart:before - { - content: "\\ed8c"; - } - .icofont-badminton-birdie:before - { - content: "\\ed8d"; - } - .icofont-baseball:before - { - content: "\\ed8e"; - } - .icofont-baseballer:before - { - content: "\\ed8f"; - } - .icofont-basketball-hoop:before - { - content: "\\ed90"; - } - .icofont-basketball:before - { - content: "\\ed91"; - } - .icofont-billiard-ball:before - { - content: "\\ed92"; - } - .icofont-boot-alt-1:before - { - content: "\\ed93"; - } - .icofont-boot-alt-2:before - { - content: "\\ed94"; - } - .icofont-boot:before - { - content: "\\ed95"; - } - .icofont-bowling-alt:before - { - content: "\\ed96"; - } - .icofont-bowling:before - { - content: "\\ed97"; - } - .icofont-canoe:before - { - content: "\\ed98"; - } - .icofont-cheer-leader:before - { - content: "\\ed99"; - } - .icofont-climbing:before - { - content: "\\ed9a"; - } - .icofont-corner:before - { - content: "\\ed9b"; - } - .icofont-field-alt:before - { - content: "\\ed9c"; - } - .icofont-field:before - { - content: "\\ed9d"; - } - .icofont-football-alt:before - { - content: "\\ed9e"; - } - .icofont-football-american:before - { - content: "\\ed9f"; - } - .icofont-football:before - { - content: "\\eda0"; - } - .icofont-foul:before - { - content: "\\eda1"; - } - .icofont-goal-keeper:before - { - content: "\\eda2"; - } - .icofont-goal:before - { - content: "\\eda3"; - } - .icofont-golf-alt:before - { - content: "\\eda4"; - } - .icofont-golf-bag:before - { - content: "\\eda5"; - } - .icofont-golf-cart:before - { - content: "\\eda6"; - } - .icofont-golf-field:before - { - content: "\\eda7"; - } - .icofont-golf:before - { - content: "\\eda8"; - } - .icofont-golfer:before - { - content: "\\eda9"; - } - .icofont-helmet:before - { - content: "\\edaa"; - } - .icofont-hockey-alt:before - { - content: "\\edab"; - } - .icofont-hockey:before - { - content: "\\edac"; - } - .icofont-ice-skate:before - { - content: "\\edad"; - } - .icofont-jersey-alt:before - { - content: "\\edae"; - } - .icofont-jersey:before - { - content: "\\edaf"; - } - .icofont-jumping:before - { - content: "\\edb0"; - } - .icofont-kick:before - { - content: "\\edb1"; - } - .icofont-leg:before - { - content: "\\edb2"; - } - .icofont-match-review:before - { - content: "\\edb3"; - } - .icofont-medal-sport:before - { - content: "\\edb4"; - } - .icofont-offside:before - { - content: "\\edb5"; - } - .icofont-olympic-logo:before - { - content: "\\edb6"; - } - .icofont-olympic:before - { - content: "\\edb7"; - } - .icofont-padding:before - { - content: "\\edb8"; - } - .icofont-penalty-card:before - { - content: "\\edb9"; - } - .icofont-racer:before - { - content: "\\edba"; - } - .icofont-racing-car:before - { - content: "\\edbb"; - } - .icofont-racing-flag-alt:before - { - content: "\\edbc"; - } - .icofont-racing-flag:before - { - content: "\\edbd"; - } - .icofont-racings-wheel:before - { - content: "\\edbe"; - } - .icofont-referee:before - { - content: "\\edbf"; - } - .icofont-refree-jersey:before - { - content: "\\edc0"; - } - .icofont-result-sport:before - { - content: "\\edc1"; - } - .icofont-rugby-ball:before - { - content: "\\edc2"; - } - .icofont-rugby-player:before - { - content: "\\edc3"; - } - .icofont-rugby:before - { - content: "\\edc4"; - } - .icofont-runner-alt-1:before - { - content: "\\edc5"; - } - .icofont-runner-alt-2:before - { - content: "\\edc6"; - } - .icofont-runner:before - { - content: "\\edc7"; - } - .icofont-score-board:before - { - content: "\\edc8"; - } - .icofont-skiing-man:before - { - content: "\\edc9"; - } - .icofont-skydiving-goggles:before - { - content: "\\edca"; - } - .icofont-snow-mobile:before - { - content: "\\edcb"; - } - .icofont-steering:before - { - content: "\\edcc"; - } - .icofont-stopwatch:before - { - content: "\\edcd"; - } - .icofont-substitute:before - { - content: "\\edce"; - } - .icofont-swimmer:before - { - content: "\\edcf"; - } - .icofont-table-tennis:before - { - content: "\\edd0"; - } - .icofont-team-alt:before - { - content: "\\edd1"; - } - .icofont-team:before - { - content: "\\edd2"; - } - .icofont-tennis-player:before - { - content: "\\edd3"; - } - .icofont-tennis:before - { - content: "\\edd4"; - } - .icofont-tracking:before - { - content: "\\edd5"; - } - .icofont-trophy-alt:before - { - content: "\\edd6"; - } - .icofont-trophy:before - { - content: "\\edd7"; - } - .icofont-volleyball-alt:before - { - content: "\\edd8"; - } - .icofont-volleyball-fire:before - { - content: "\\edd9"; - } - .icofont-volleyball:before - { - content: "\\edda"; - } - .icofont-water-bottle:before - { - content: "\\eddb"; - } - .icofont-whistle-alt:before - { - content: "\\eddc"; - } - .icofont-whistle:before - { - content: "\\eddd"; - } - .icofont-win-trophy:before - { - content: "\\edde"; - } - .icofont-align-center:before - { - content: "\\eddf"; - } - .icofont-align-left:before - { - content: "\\ede0"; - } - .icofont-align-right:before - { - content: "\\ede1"; - } - .icofont-all-caps:before - { - content: "\\ede2"; - } - .icofont-bold:before - { - content: "\\ede3"; - } - .icofont-brush:before - { - content: "\\ede4"; - } - .icofont-clip-board:before - { - content: "\\ede5"; - } - .icofont-code-alt:before - { - content: "\\ede6"; - } - .icofont-color-bucket:before - { - content: "\\ede7"; - } - .icofont-color-picker:before - { - content: "\\ede8"; - } - .icofont-copy-invert:before - { - content: "\\ede9"; - } - .icofont-copy:before - { - content: "\\edea"; - } - .icofont-cut:before - { - content: "\\edeb"; - } - .icofont-delete-alt:before - { - content: "\\edec"; - } - .icofont-edit-alt:before - { - content: "\\eded"; - } - .icofont-eraser-alt:before - { - content: "\\edee"; - } - .icofont-font:before - { - content: "\\edef"; - } - .icofont-heading:before - { - content: "\\edf0"; - } - .icofont-indent:before - { - content: "\\edf1"; - } - .icofont-italic-alt:before - { - content: "\\edf2"; - } - .icofont-italic:before - { - content: "\\edf3"; - } - .icofont-justify-all:before - { - content: "\\edf4"; - } - .icofont-justify-center:before - { - content: "\\edf5"; - } - .icofont-justify-left:before - { - content: "\\edf6"; - } - .icofont-justify-right:before - { - content: "\\edf7"; - } - .icofont-link-broken:before - { - content: "\\edf8"; - } - .icofont-outdent:before - { - content: "\\edf9"; - } - .icofont-paper-clip:before - { - content: "\\edfa"; - } - .icofont-paragraph:before - { - content: "\\edfb"; - } - .icofont-pin:before - { - content: "\\edfc"; - } - .icofont-printer:before - { - content: "\\edfd"; - } - .icofont-redo:before - { - content: "\\edfe"; - } - .icofont-rotation:before - { - content: "\\edff"; - } - .icofont-save:before - { - content: "\\ee00"; - } - .icofont-small-cap:before - { - content: "\\ee01"; - } - .icofont-strike-through:before - { - content: "\\ee02"; - } - .icofont-sub-listing:before - { - content: "\\ee03"; - } - .icofont-subscript:before - { - content: "\\ee04"; - } - .icofont-superscript:before - { - content: "\\ee05"; - } - .icofont-table:before - { - content: "\\ee06"; - } - .icofont-text-height:before - { - content: "\\ee07"; - } - .icofont-text-width:before - { - content: "\\ee08"; - } - .icofont-trash:before - { - content: "\\ee09"; - } - .icofont-underline:before - { - content: "\\ee0a"; - } - .icofont-undo:before - { - content: "\\ee0b"; - } - .icofont-air-balloon:before - { - content: "\\ee0c"; - } - .icofont-airplane-alt:before - { - content: "\\ee0d"; - } - .icofont-airplane:before - { - content: "\\ee0e"; - } - .icofont-articulated-truck:before - { - content: "\\ee0f"; - } - .icofont-auto-mobile:before - { - content: "\\ee10"; - } - .icofont-auto-rickshaw:before - { - content: "\\ee11"; - } - .icofont-bicycle-alt-1:before - { - content: "\\ee12"; - } - .icofont-bicycle-alt-2:before - { - content: "\\ee13"; - } - .icofont-bicycle:before - { - content: "\\ee14"; - } - .icofont-bus-alt-1:before - { - content: "\\ee15"; - } - .icofont-bus-alt-2:before - { - content: "\\ee16"; - } - .icofont-bus-alt-3:before - { - content: "\\ee17"; - } - .icofont-bus:before - { - content: "\\ee18"; - } - .icofont-cab:before - { - content: "\\ee19"; - } - .icofont-cable-car:before - { - content: "\\ee1a"; - } - .icofont-car-alt-1:before - { - content: "\\ee1b"; - } - .icofont-car-alt-2:before - { - content: "\\ee1c"; - } - .icofont-car-alt-3:before - { - content: "\\ee1d"; - } - .icofont-car-alt-4:before - { - content: "\\ee1e"; - } - .icofont-car:before - { - content: "\\ee1f"; - } - .icofont-delivery-time:before - { - content: "\\ee20"; - } - .icofont-fast-delivery:before - { - content: "\\ee21"; - } - .icofont-fire-truck-alt:before - { - content: "\\ee22"; - } - .icofont-fire-truck:before - { - content: "\\ee23"; - } - .icofont-free-delivery:before - { - content: "\\ee24"; - } - .icofont-helicopter:before - { - content: "\\ee25"; - } - .icofont-motor-bike-alt:before - { - content: "\\ee26"; - } - .icofont-motor-bike:before - { - content: "\\ee27"; - } - .icofont-motor-biker:before - { - content: "\\ee28"; - } - .icofont-oil-truck:before - { - content: "\\ee29"; - } - .icofont-rickshaw:before - { - content: "\\ee2a"; - } - .icofont-rocket-alt-1:before - { - content: "\\ee2b"; - } - .icofont-rocket-alt-2:before - { - content: "\\ee2c"; - } - .icofont-rocket:before - { - content: "\\ee2d"; - } - .icofont-sail-boat-alt-1:before - { - content: "\\ee2e"; - } - .icofont-sail-boat-alt-2:before - { - content: "\\ee2f"; - } - .icofont-sail-boat:before - { - content: "\\ee30"; - } - .icofont-scooter:before - { - content: "\\ee31"; - } - .icofont-sea-plane:before - { - content: "\\ee32"; - } - .icofont-ship-alt:before - { - content: "\\ee33"; - } - .icofont-ship:before - { - content: "\\ee34"; - } - .icofont-speed-boat:before - { - content: "\\ee35"; - } - .icofont-taxi:before - { - content: "\\ee36"; - } - .icofont-tractor:before - { - content: "\\ee37"; - } - .icofont-train-line:before - { - content: "\\ee38"; - } - .icofont-train-steam:before - { - content: "\\ee39"; - } - .icofont-tram:before - { - content: "\\ee3a"; - } - .icofont-truck-alt:before - { - content: "\\ee3b"; - } - .icofont-truck-loaded:before - { - content: "\\ee3c"; - } - .icofont-truck:before - { - content: "\\ee3d"; - } - .icofont-van-alt:before - { - content: "\\ee3e"; - } - .icofont-van:before - { - content: "\\ee3f"; - } - .icofont-yacht:before - { - content: "\\ee40"; - } - .icofont-5-star-hotel:before - { - content: "\\ee41"; - } - .icofont-air-ticket:before - { - content: "\\ee42"; - } - .icofont-beach-bed:before - { - content: "\\ee43"; - } - .icofont-beach:before - { - content: "\\ee44"; - } - .icofont-camping-vest:before - { - content: "\\ee45"; - } - .icofont-direction-sign:before - { - content: "\\ee46"; - } - .icofont-hill-side:before - { - content: "\\ee47"; - } - .icofont-hill:before - { - content: "\\ee48"; - } - .icofont-hotel:before - { - content: "\\ee49"; - } - .icofont-island-alt:before - { - content: "\\ee4a"; - } - .icofont-island:before - { - content: "\\ee4b"; - } - .icofont-sandals-female:before - { - content: "\\ee4c"; - } - .icofont-sandals-male:before - { - content: "\\ee4d"; - } - .icofont-travelling:before - { - content: "\\ee4e"; - } - .icofont-breakdown:before - { - content: "\\ee4f"; - } - .icofont-celsius:before - { - content: "\\ee50"; - } - .icofont-clouds:before - { - content: "\\ee51"; - } - .icofont-cloudy:before - { - content: "\\ee52"; - } - .icofont-dust:before - { - content: "\\ee53"; - } - .icofont-eclipse:before - { - content: "\\ee54"; - } - .icofont-fahrenheit:before - { - content: "\\ee55"; - } - .icofont-forest-fire:before - { - content: "\\ee56"; - } - .icofont-full-night:before - { - content: "\\ee57"; - } - .icofont-full-sunny:before - { - content: "\\ee58"; - } - .icofont-hail-night:before - { - content: "\\ee59"; - } - .icofont-hail-rainy-night:before - { - content: "\\ee5a"; - } - .icofont-hail-rainy-sunny:before - { - content: "\\ee5b"; - } - .icofont-hail-rainy:before - { - content: "\\ee5c"; - } - .icofont-hail-sunny:before - { - content: "\\ee5d"; - } - .icofont-hail-thunder-night:before - { - content: "\\ee5e"; - } - .icofont-hail-thunder-sunny:before - { - content: "\\ee5f"; - } - .icofont-hail-thunder:before - { - content: "\\ee60"; - } - .icofont-hail:before - { - content: "\\ee61"; - } - .icofont-hill-night:before - { - content: "\\ee62"; - } - .icofont-hill-sunny:before - { - content: "\\ee63"; - } - .icofont-hurricane:before - { - content: "\\ee64"; - } - .icofont-meteor:before - { - content: "\\ee65"; - } - .icofont-night:before - { - content: "\\ee66"; - } - .icofont-rainy-night:before - { - content: "\\ee67"; - } - .icofont-rainy-sunny:before - { - content: "\\ee68"; - } - .icofont-rainy-thunder:before - { - content: "\\ee69"; - } - .icofont-rainy:before - { - content: "\\ee6a"; - } - .icofont-snow-alt:before - { - content: "\\ee6b"; - } - .icofont-snow-flake:before - { - content: "\\ee6c"; - } - .icofont-snow-temp:before - { - content: "\\ee6d"; - } - .icofont-snow:before - { - content: "\\ee6e"; - } - .icofont-snowy-hail:before - { - content: "\\ee6f"; - } - .icofont-snowy-night-hail:before - { - content: "\\ee70"; - } - .icofont-snowy-night-rainy:before - { - content: "\\ee71"; - } - .icofont-snowy-night:before - { - content: "\\ee72"; - } - .icofont-snowy-rainy:before - { - content: "\\ee73"; - } - .icofont-snowy-sunny-hail:before - { - content: "\\ee74"; - } - .icofont-snowy-sunny-rainy:before - { - content: "\\ee75"; - } - .icofont-snowy-sunny:before - { - content: "\\ee76"; - } - .icofont-snowy-thunder-night:before - { - content: "\\ee77"; - } - .icofont-snowy-thunder-sunny:before - { - content: "\\ee78"; - } - .icofont-snowy-thunder:before - { - content: "\\ee79"; - } - .icofont-snowy-windy-night:before - { - content: "\\ee7a"; - } - .icofont-snowy-windy-sunny:before - { - content: "\\ee7b"; - } - .icofont-snowy-windy:before - { - content: "\\ee7c"; - } - .icofont-snowy:before - { - content: "\\ee7d"; - } - .icofont-sun-alt:before - { - content: "\\ee7e"; - } - .icofont-sun-rise:before - { - content: "\\ee7f"; - } - .icofont-sun-set:before - { - content: "\\ee80"; - } - .icofont-sun:before - { - content: "\\ee81"; - } - .icofont-sunny-day-temp:before - { - content: "\\ee82"; - } - .icofont-sunny:before - { - content: "\\ee83"; - } - .icofont-thunder-light:before - { - content: "\\ee84"; - } - .icofont-tornado:before - { - content: "\\ee85"; - } - .icofont-umbrella-alt:before - { - content: "\\ee86"; - } - .icofont-umbrella:before - { - content: "\\ee87"; - } - .icofont-volcano:before - { - content: "\\ee88"; - } - .icofont-wave:before - { - content: "\\ee89"; - } - .icofont-wind-scale-0:before - { - content: "\\ee8a"; - } - .icofont-wind-scale-1:before - { - content: "\\ee8b"; - } - .icofont-wind-scale-10:before - { - content: "\\ee8c"; - } - .icofont-wind-scale-11:before - { - content: "\\ee8d"; - } - .icofont-wind-scale-12:before - { - content: "\\ee8e"; - } - .icofont-wind-scale-2:before - { - content: "\\ee8f"; - } - .icofont-wind-scale-3:before - { - content: "\\ee90"; - } - .icofont-wind-scale-4:before - { - content: "\\ee91"; - } - .icofont-wind-scale-5:before - { - content: "\\ee92"; - } - .icofont-wind-scale-6:before - { - content: "\\ee93"; - } - .icofont-wind-scale-7:before - { - content: "\\ee94"; - } - .icofont-wind-scale-8:before - { - content: "\\ee95"; - } - .icofont-wind-scale-9:before - { - content: "\\ee96"; - } - .icofont-wind-waves:before - { - content: "\\ee97"; - } - .icofont-wind:before - { - content: "\\ee98"; - } - .icofont-windy-hail:before - { - content: "\\ee99"; - } - .icofont-windy-night:before - { - content: "\\ee9a"; - } - .icofont-windy-raining:before - { - content: "\\ee9b"; - } - .icofont-windy-sunny:before - { - content: "\\ee9c"; - } - .icofont-windy-thunder-raining:before - { - content: "\\ee9d"; - } - .icofont-windy-thunder:before - { - content: "\\ee9e"; - } - .icofont-windy:before - { - content: "\\ee9f"; - } - .icofont-addons:before - { - content: "\\eea0"; - } - .icofont-address-book:before - { - content: "\\eea1"; - } - .icofont-adjust:before - { - content: "\\eea2"; - } - .icofont-alarm:before - { - content: "\\eea3"; - } - .icofont-anchor:before - { - content: "\\eea4"; - } - .icofont-archive:before - { - content: "\\eea5"; - } - .icofont-at:before - { - content: "\\eea6"; - } - .icofont-attachment:before - { - content: "\\eea7"; - } - .icofont-audio:before - { - content: "\\eea8"; - } - .icofont-automation:before - { - content: "\\eea9"; - } - .icofont-badge:before - { - content: "\\eeaa"; - } - .icofont-bag-alt:before - { - content: "\\eeab"; - } - .icofont-bag:before - { - content: "\\eeac"; - } - .icofont-ban:before - { - content: "\\eead"; - } - .icofont-bar-code:before - { - content: "\\eeae"; - } - .icofont-bars:before - { - content: "\\eeaf"; - } - .icofont-basket:before - { - content: "\\eeb0"; - } - .icofont-battery-empty:before - { - content: "\\eeb1"; - } - .icofont-battery-full:before - { - content: "\\eeb2"; - } - .icofont-battery-half:before - { - content: "\\eeb3"; - } - .icofont-battery-low:before - { - content: "\\eeb4"; - } - .icofont-beaker:before - { - content: "\\eeb5"; - } - .icofont-beard:before - { - content: "\\eeb6"; - } - .icofont-bed:before - { - content: "\\eeb7"; - } - .icofont-bell:before - { - content: "\\eeb8"; - } - .icofont-beverage:before - { - content: "\\eeb9"; - } - .icofont-bill:before - { - content: "\\eeba"; - } - .icofont-bin:before - { - content: "\\eebb"; - } - .icofont-binary:before - { - content: "\\eebc"; - } - .icofont-binoculars:before - { - content: "\\eebd"; - } - .icofont-bluetooth:before - { - content: "\\eebe"; - } - .icofont-bomb:before - { - content: "\\eebf"; - } - .icofont-book-mark:before - { - content: "\\eec0"; - } - .icofont-box:before - { - content: "\\eec1"; - } - .icofont-briefcase:before - { - content: "\\eec2"; - } - .icofont-broken:before - { - content: "\\eec3"; - } - .icofont-bucket:before - { - content: "\\eec4"; - } - .icofont-bucket1:before - { - content: "\\eec5"; - } - .icofont-bucket2:before - { - content: "\\eec6"; - } - .icofont-bug:before - { - content: "\\eec7"; - } - .icofont-building:before - { - content: "\\eec8"; - } - .icofont-bulb-alt:before - { - content: "\\eec9"; - } - .icofont-bullet:before - { - content: "\\eeca"; - } - .icofont-bullhorn:before - { - content: "\\eecb"; - } - .icofont-bullseye:before - { - content: "\\eecc"; - } - .icofont-calendar:before - { - content: "\\eecd"; - } - .icofont-camera-alt:before - { - content: "\\eece"; - } - .icofont-camera:before - { - content: "\\eecf"; - } - .icofont-card:before - { - content: "\\eed0"; - } - .icofont-cart-alt:before - { - content: "\\eed1"; - } - .icofont-cart:before - { - content: "\\eed2"; - } - .icofont-cc:before - { - content: "\\eed3"; - } - .icofont-charging:before - { - content: "\\eed4"; - } - .icofont-chat:before - { - content: "\\eed5"; - } - .icofont-check-alt:before - { - content: "\\eed6"; - } - .icofont-check-circled:before - { - content: "\\eed7"; - } - .icofont-check:before - { - content: "\\eed8"; - } - .icofont-checked:before - { - content: "\\eed9"; - } - .icofont-children-care:before - { - content: "\\eeda"; - } - .icofont-clip:before - { - content: "\\eedb"; - } - .icofont-clock-time:before - { - content: "\\eedc"; - } - .icofont-close-circled:before - { - content: "\\eedd"; - } - .icofont-close-line-circled:before - { - content: "\\eede"; - } - .icofont-close-line-squared-alt:before - { - content: "\\eedf"; - } - .icofont-close-line-squared:before - { - content: "\\eee0"; - } - .icofont-close-line:before - { - content: "\\eee1"; - } - .icofont-close-squared-alt:before - { - content: "\\eee2"; - } - .icofont-close-squared:before - { - content: "\\eee3"; - } - .icofont-close:before - { - content: "\\eee4"; - } - .icofont-cloud-download:before - { - content: "\\eee5"; - } - .icofont-cloud-refresh:before - { - content: "\\eee6"; - } - .icofont-cloud-upload:before - { - content: "\\eee7"; - } - .icofont-cloud:before - { - content: "\\eee8"; - } - .icofont-code-not-allowed:before - { - content: "\\eee9"; - } - .icofont-code:before - { - content: "\\eeea"; - } - .icofont-comment:before - { - content: "\\eeeb"; - } - .icofont-compass-alt:before - { - content: "\\eeec"; - } - .icofont-compass:before - { - content: "\\eeed"; - } - .icofont-computer:before - { - content: "\\eeee"; - } - .icofont-connection:before - { - content: "\\eeef"; - } - .icofont-console:before - { - content: "\\eef0"; - } - .icofont-contacts:before - { - content: "\\eef1"; - } - .icofont-contrast:before - { - content: "\\eef2"; - } - .icofont-copyright:before - { - content: "\\eef3"; - } - .icofont-credit-card:before - { - content: "\\eef4"; - } - .icofont-crop:before - { - content: "\\eef5"; - } - .icofont-crown:before - { - content: "\\eef6"; - } - .icofont-cube:before - { - content: "\\eef7"; - } - .icofont-cubes:before - { - content: "\\eef8"; - } - .icofont-dashboard-web:before - { - content: "\\eef9"; - } - .icofont-dashboard:before - { - content: "\\eefa"; - } - .icofont-data:before - { - content: "\\eefb"; - } - .icofont-database-add:before - { - content: "\\eefc"; - } - .icofont-database-locked:before - { - content: "\\eefd"; - } - .icofont-database-remove:before - { - content: "\\eefe"; - } - .icofont-database:before - { - content: "\\eeff"; - } - .icofont-delete:before - { - content: "\\ef00"; - } - .icofont-diamond:before - { - content: "\\ef01"; - } - .icofont-dice-multiple:before - { - content: "\\ef02"; - } - .icofont-dice:before - { - content: "\\ef03"; - } - .icofont-disc:before - { - content: "\\ef04"; - } - .icofont-diskette:before - { - content: "\\ef05"; - } - .icofont-document-folder:before - { - content: "\\ef06"; - } - .icofont-download-alt:before - { - content: "\\ef07"; - } - .icofont-download:before - { - content: "\\ef08"; - } - .icofont-downloaded:before - { - content: "\\ef09"; - } - .icofont-drag:before - { - content: "\\ef0a"; - } - .icofont-drag1:before - { - content: "\\ef0b"; - } - .icofont-drag2:before - { - content: "\\ef0c"; - } - .icofont-drag3:before - { - content: "\\ef0d"; - } - .icofont-earth:before - { - content: "\\ef0e"; - } - .icofont-ebook:before - { - content: "\\ef0f"; - } - .icofont-edit:before - { - content: "\\ef10"; - } - .icofont-eject:before - { - content: "\\ef11"; - } - .icofont-email:before - { - content: "\\ef12"; - } - .icofont-envelope-open:before - { - content: "\\ef13"; - } - .icofont-envelope:before - { - content: "\\ef14"; - } - .icofont-eraser:before - { - content: "\\ef15"; - } - .icofont-error:before - { - content: "\\ef16"; - } - .icofont-excavator:before - { - content: "\\ef17"; - } - .icofont-exchange:before - { - content: "\\ef18"; - } - .icofont-exclamation-circle:before - { - content: "\\ef19"; - } - .icofont-exclamation-square:before - { - content: "\\ef1a"; - } - .icofont-exclamation-tringle:before - { - content: "\\ef1b"; - } - .icofont-exclamation:before - { - content: "\\ef1c"; - } - .icofont-exit:before - { - content: "\\ef1d"; - } - .icofont-expand:before - { - content: "\\ef1e"; - } - .icofont-external-link:before - { - content: "\\ef1f"; - } - .icofont-external:before - { - content: "\\ef20"; - } - .icofont-eye-alt:before - { - content: "\\ef21"; - } - .icofont-eye-blocked:before - { - content: "\\ef22"; - } - .icofont-eye-dropper:before - { - content: "\\ef23"; - } - .icofont-eye:before - { - content: "\\ef24"; - } - .icofont-favourite:before - { - content: "\\ef25"; - } - .icofont-fax:before - { - content: "\\ef26"; - } - .icofont-file-fill:before - { - content: "\\ef27"; - } - .icofont-film:before - { - content: "\\ef28"; - } - .icofont-filter:before - { - content: "\\ef29"; - } - .icofont-fire-alt:before - { - content: "\\ef2a"; - } - .icofont-fire-burn:before - { - content: "\\ef2b"; - } - .icofont-fire:before - { - content: "\\ef2c"; - } - .icofont-flag-alt-1:before - { - content: "\\ef2d"; - } - .icofont-flag-alt-2:before - { - content: "\\ef2e"; - } - .icofont-flag:before - { - content: "\\ef2f"; - } - .icofont-flame-torch:before - { - content: "\\ef30"; - } - .icofont-flash-light:before - { - content: "\\ef31"; - } - .icofont-flash:before - { - content: "\\ef32"; - } - .icofont-flask:before - { - content: "\\ef33"; - } - .icofont-focus:before - { - content: "\\ef34"; - } - .icofont-folder-open:before - { - content: "\\ef35"; - } - .icofont-folder:before - { - content: "\\ef36"; - } - .icofont-foot-print:before - { - content: "\\ef37"; - } - .icofont-garbage:before - { - content: "\\ef38"; - } - .icofont-gear-alt:before - { - content: "\\ef39"; - } - .icofont-gear:before - { - content: "\\ef3a"; - } - .icofont-gears:before - { - content: "\\ef3b"; - } - .icofont-gift:before - { - content: "\\ef3c"; - } - .icofont-glass:before - { - content: "\\ef3d"; - } - .icofont-globe:before - { - content: "\\ef3e"; - } - .icofont-graffiti:before - { - content: "\\ef3f"; - } - .icofont-grocery:before - { - content: "\\ef40"; - } - .icofont-hand:before - { - content: "\\ef41"; - } - .icofont-hanger:before - { - content: "\\ef42"; - } - .icofont-hard-disk:before - { - content: "\\ef43"; - } - .icofont-heart-alt:before - { - content: "\\ef44"; - } - .icofont-heart:before - { - content: "\\ef45"; - } - .icofont-history:before - { - content: "\\ef46"; - } - .icofont-home:before - { - content: "\\ef47"; - } - .icofont-horn:before - { - content: "\\ef48"; - } - .icofont-hour-glass:before - { - content: "\\ef49"; - } - .icofont-id:before - { - content: "\\ef4a"; - } - .icofont-image:before - { - content: "\\ef4b"; - } - .icofont-inbox:before - { - content: "\\ef4c"; - } - .icofont-infinite:before - { - content: "\\ef4d"; - } - .icofont-info-circle:before - { - content: "\\ef4e"; - } - .icofont-info-square:before - { - content: "\\ef4f"; - } - .icofont-info:before - { - content: "\\ef50"; - } - .icofont-institution:before - { - content: "\\ef51"; - } - .icofont-interface:before - { - content: "\\ef52"; - } - .icofont-invisible:before - { - content: "\\ef53"; - } - .icofont-jacket:before - { - content: "\\ef54"; - } - .icofont-jar:before - { - content: "\\ef55"; - } - .icofont-jewlery:before - { - content: "\\ef56"; - } - .icofont-karate:before - { - content: "\\ef57"; - } - .icofont-key-hole:before - { - content: "\\ef58"; - } - .icofont-key:before - { - content: "\\ef59"; - } - .icofont-label:before - { - content: "\\ef5a"; - } - .icofont-lamp:before - { - content: "\\ef5b"; - } - .icofont-layers:before - { - content: "\\ef5c"; - } - .icofont-layout:before - { - content: "\\ef5d"; - } - .icofont-leaf:before - { - content: "\\ef5e"; - } - .icofont-leaflet:before - { - content: "\\ef5f"; - } - .icofont-learn:before - { - content: "\\ef60"; - } - .icofont-lego:before - { - content: "\\ef61"; - } - .icofont-lens:before - { - content: "\\ef62"; - } - .icofont-letter:before - { - content: "\\ef63"; - } - .icofont-letterbox:before - { - content: "\\ef64"; - } - .icofont-library:before - { - content: "\\ef65"; - } - .icofont-license:before - { - content: "\\ef66"; - } - .icofont-life-bouy:before - { - content: "\\ef67"; - } - .icofont-life-buoy:before - { - content: "\\ef68"; - } - .icofont-life-jacket:before - { - content: "\\ef69"; - } - .icofont-life-ring:before - { - content: "\\ef6a"; - } - .icofont-light-bulb:before - { - content: "\\ef6b"; - } - .icofont-lighter:before - { - content: "\\ef6c"; - } - .icofont-lightning-ray:before - { - content: "\\ef6d"; - } - .icofont-like:before - { - content: "\\ef6e"; - } - .icofont-line-height:before - { - content: "\\ef6f"; - } - .icofont-link-alt:before - { - content: "\\ef70"; - } - .icofont-link:before - { - content: "\\ef71"; - } - .icofont-list:before - { - content: "\\ef72"; - } - .icofont-listening:before - { - content: "\\ef73"; - } - .icofont-listine-dots:before - { - content: "\\ef74"; - } - .icofont-listing-box:before - { - content: "\\ef75"; - } - .icofont-listing-number:before - { - content: "\\ef76"; - } - .icofont-live-support:before - { - content: "\\ef77"; - } - .icofont-location-arrow:before - { - content: "\\ef78"; - } - .icofont-location-pin:before - { - content: "\\ef79"; - } - .icofont-lock:before - { - content: "\\ef7a"; - } - .icofont-login:before - { - content: "\\ef7b"; - } - .icofont-logout:before - { - content: "\\ef7c"; - } - .icofont-lollipop:before - { - content: "\\ef7d"; - } - .icofont-long-drive:before - { - content: "\\ef7e"; - } - .icofont-look:before - { - content: "\\ef7f"; - } - .icofont-loop:before - { - content: "\\ef80"; - } - .icofont-luggage:before - { - content: "\\ef81"; - } - .icofont-lunch:before - { - content: "\\ef82"; - } - .icofont-lungs:before - { - content: "\\ef83"; - } - .icofont-magic-alt:before - { - content: "\\ef84"; - } - .icofont-magic:before - { - content: "\\ef85"; - } - .icofont-magnet:before - { - content: "\\ef86"; - } - .icofont-mail-box:before - { - content: "\\ef87"; - } - .icofont-mail:before - { - content: "\\ef88"; - } - .icofont-male:before - { - content: "\\ef89"; - } - .icofont-map-pins:before - { - content: "\\ef8a"; - } - .icofont-map:before - { - content: "\\ef8b"; - } - .icofont-maximize:before - { - content: "\\ef8c"; - } - .icofont-measure:before - { - content: "\\ef8d"; - } - .icofont-medicine:before - { - content: "\\ef8e"; - } - .icofont-mega-phone:before - { - content: "\\ef8f"; - } - .icofont-megaphone-alt:before - { - content: "\\ef90"; - } - .icofont-megaphone:before - { - content: "\\ef91"; - } - .icofont-memorial:before - { - content: "\\ef92"; - } - .icofont-memory-card:before - { - content: "\\ef93"; - } - .icofont-mic-mute:before - { - content: "\\ef94"; - } - .icofont-mic:before - { - content: "\\ef95"; - } - .icofont-military:before - { - content: "\\ef96"; - } - .icofont-mill:before - { - content: "\\ef97"; - } - .icofont-minus-circle:before - { - content: "\\ef98"; - } - .icofont-minus-square:before - { - content: "\\ef99"; - } - .icofont-minus:before - { - content: "\\ef9a"; - } - .icofont-mobile-phone:before - { - content: "\\ef9b"; - } - .icofont-molecule:before - { - content: "\\ef9c"; - } - .icofont-money:before - { - content: "\\ef9d"; - } - .icofont-moon:before - { - content: "\\ef9e"; - } - .icofont-mop:before - { - content: "\\ef9f"; - } - .icofont-muffin:before - { - content: "\\efa0"; - } - .icofont-mustache:before - { - content: "\\efa1"; - } - .icofont-navigation-menu:before - { - content: "\\efa2"; - } - .icofont-navigation:before - { - content: "\\efa3"; - } - .icofont-network-tower:before - { - content: "\\efa4"; - } - .icofont-network:before - { - content: "\\efa5"; - } - .icofont-news:before - { - content: "\\efa6"; - } - .icofont-newspaper:before - { - content: "\\efa7"; - } - .icofont-no-smoking:before - { - content: "\\efa8"; - } - .icofont-not-allowed:before - { - content: "\\efa9"; - } - .icofont-notebook:before - { - content: "\\efaa"; - } - .icofont-notepad:before - { - content: "\\efab"; - } - .icofont-notification:before - { - content: "\\efac"; - } - .icofont-numbered:before - { - content: "\\efad"; - } - .icofont-opposite:before - { - content: "\\efae"; - } - .icofont-optic:before - { - content: "\\efaf"; - } - .icofont-options:before - { - content: "\\efb0"; - } - .icofont-package:before - { - content: "\\efb1"; - } - .icofont-page:before - { - content: "\\efb2"; - } - .icofont-paint:before - { - content: "\\efb3"; - } - .icofont-paper-plane:before - { - content: "\\efb4"; - } - .icofont-paperclip:before - { - content: "\\efb5"; - } - .icofont-papers:before - { - content: "\\efb6"; - } - .icofont-pay:before - { - content: "\\efb7"; - } - .icofont-penguin-linux:before - { - content: "\\efb8"; - } - .icofont-pestle:before - { - content: "\\efb9"; - } - .icofont-phone-circle:before - { - content: "\\efba"; - } - .icofont-phone:before - { - content: "\\efbb"; - } - .icofont-picture:before - { - content: "\\efbc"; - } - .icofont-pine:before - { - content: "\\efbd"; - } - .icofont-pixels:before - { - content: "\\efbe"; - } - .icofont-plugin:before - { - content: "\\efbf"; - } - .icofont-plus-circle:before - { - content: "\\efc0"; - } - .icofont-plus-square:before - { - content: "\\efc1"; - } - .icofont-plus:before - { - content: "\\efc2"; - } - .icofont-polygonal:before - { - content: "\\efc3"; - } - .icofont-power:before - { - content: "\\efc4"; - } - .icofont-price:before - { - content: "\\efc5"; - } - .icofont-print:before - { - content: "\\efc6"; - } - .icofont-puzzle:before - { - content: "\\efc7"; - } - .icofont-qr-code:before - { - content: "\\efc8"; - } - .icofont-queen:before - { - content: "\\efc9"; - } - .icofont-question-circle:before - { - content: "\\efca"; - } - .icofont-question-square:before - { - content: "\\efcb"; - } - .icofont-question:before - { - content: "\\efcc"; - } - .icofont-quote-left:before - { - content: "\\efcd"; - } - .icofont-quote-right:before - { - content: "\\efce"; - } - .icofont-random:before - { - content: "\\efcf"; - } - .icofont-recycle:before - { - content: "\\efd0"; - } - .icofont-refresh:before - { - content: "\\efd1"; - } - .icofont-repair:before - { - content: "\\efd2"; - } - .icofont-reply-all:before - { - content: "\\efd3"; - } - .icofont-reply:before - { - content: "\\efd4"; - } - .icofont-resize:before - { - content: "\\efd5"; - } - .icofont-responsive:before - { - content: "\\efd6"; - } - .icofont-retweet:before - { - content: "\\efd7"; - } - .icofont-road:before - { - content: "\\efd8"; - } - .icofont-robot:before - { - content: "\\efd9"; - } - .icofont-royal:before - { - content: "\\efda"; - } - .icofont-rss-feed:before - { - content: "\\efdb"; - } - .icofont-safety:before - { - content: "\\efdc"; - } - .icofont-sale-discount:before - { - content: "\\efdd"; - } - .icofont-satellite:before - { - content: "\\efde"; - } - .icofont-send-mail:before - { - content: "\\efdf"; - } - .icofont-server:before - { - content: "\\efe0"; - } - .icofont-settings-alt:before - { - content: "\\efe1"; - } - .icofont-settings:before - { - content: "\\efe2"; - } - .icofont-share-alt:before - { - content: "\\efe3"; - } - .icofont-share-boxed:before - { - content: "\\efe4"; - } - .icofont-share:before - { - content: "\\efe5"; - } - .icofont-shield:before - { - content: "\\efe6"; - } - .icofont-shopping-cart:before - { - content: "\\efe7"; - } - .icofont-sign-in:before - { - content: "\\efe8"; - } - .icofont-sign-out:before - { - content: "\\efe9"; - } - .icofont-signal:before - { - content: "\\efea"; - } - .icofont-site-map:before - { - content: "\\efeb"; - } - .icofont-smart-phone:before - { - content: "\\efec"; - } - .icofont-soccer:before - { - content: "\\efed"; - } - .icofont-sort-alt:before - { - content: "\\efee"; - } - .icofont-sort:before - { - content: "\\efef"; - } - .icofont-space:before - { - content: "\\eff0"; - } - .icofont-spanner:before - { - content: "\\eff1"; - } - .icofont-speech-comments:before - { - content: "\\eff2"; - } - .icofont-speed-meter:before - { - content: "\\eff3"; - } - .icofont-spinner-alt-1:before - { - content: "\\eff4"; - } - .icofont-spinner-alt-2:before - { - content: "\\eff5"; - } - .icofont-spinner-alt-3:before - { - content: "\\eff6"; - } - .icofont-spinner-alt-4:before - { - content: "\\eff7"; - } - .icofont-spinner-alt-5:before - { - content: "\\eff8"; - } - .icofont-spinner-alt-6:before - { - content: "\\eff9"; - } - .icofont-spinner:before - { - content: "\\effa"; - } - .icofont-spreadsheet:before - { - content: "\\effb"; - } - .icofont-square:before - { - content: "\\effc"; - } - .icofont-ssl-security:before - { - content: "\\effd"; - } - .icofont-star-alt-1:before - { - content: "\\effe"; - } - .icofont-star-alt-2:before - { - content: "\\efff"; - } - .icofont-star:before - { - content: "\f000"; - } - .icofont-street-view:before - { - content: "\f001"; - } - .icofont-support-faq:before - { - content: "\f002"; - } - .icofont-tack-pin:before - { - content: "\f003"; - } - .icofont-tag:before - { - content: "\f004"; - } - .icofont-tags:before - { - content: "\f005"; - } - .icofont-tasks-alt:before - { - content: "\f006"; - } - .icofont-tasks:before - { - content: "\f007"; - } - .icofont-telephone:before - { - content: "\f008"; - } - .icofont-telescope:before - { - content: "\f009"; - } - .icofont-terminal:before - { - content: "\f00a"; - } - .icofont-thumbs-down:before - { - content: "\f00b"; - } - .icofont-thumbs-up:before - { - content: "\f00c"; - } - .icofont-tick-boxed:before - { - content: "\f00d"; - } - .icofont-tick-mark:before - { - content: "\f00e"; - } - .icofont-ticket:before - { - content: "\f00f"; - } - .icofont-tie:before - { - content: "\f010"; - } - .icofont-toggle-off:before - { - content: "\f011"; - } - .icofont-toggle-on:before - { - content: "\f012"; - } - .icofont-tools-alt-2:before - { - content: "\f013"; - } - .icofont-tools:before - { - content: "\f014"; - } - .icofont-touch:before - { - content: "\f015"; - } - .icofont-traffic-light:before - { - content: "\f016"; - } - .icofont-transparent:before - { - content: "\f017"; - } - .icofont-tree:before - { - content: "\f018"; - } - .icofont-unique-idea:before - { - content: "\f019"; - } - .icofont-unlock:before - { - content: "\f01a"; - } - .icofont-unlocked:before - { - content: "\f01b"; - } - .icofont-upload-alt:before - { - content: "\f01c"; - } - .icofont-upload:before - { - content: "\f01d"; - } - .icofont-usb-drive:before - { - content: "\f01e"; - } - .icofont-usb:before - { - content: "\f01f"; - } - .icofont-vector-path:before - { - content: "\f020"; - } - .icofont-verification-check:before - { - content: "\f021"; - } - .icofont-wall-clock:before - { - content: "\f022"; - } - .icofont-wall:before - { - content: "\f023"; - } - .icofont-wallet:before - { - content: "\f024"; - } - .icofont-warning-alt:before - { - content: "\f025"; - } - .icofont-warning:before - { - content: "\f026"; - } - .icofont-water-drop:before - { - content: "\f027"; - } - .icofont-web:before - { - content: "\f028"; - } - .icofont-wheelchair:before - { - content: "\f029"; - } - .icofont-wifi-alt:before - { - content: "\f02a"; - } - .icofont-wifi:before - { - content: "\f02b"; - } - .icofont-world:before - { - content: "\f02c"; - } - .icofont-zigzag:before - { - content: "\f02d"; - } - .icofont-zipped:before - { - content: "\f02e"; - } - .icofont-xs - { - font-size: .5em; - } - .icofont-sm - { - font-size: .75em; - } - .icofont-md - { - font-size: 1.25em; - } - .icofont-lg - { - font-size: 1.5em; - } - .icofont-1x - { - font-size: 1em; - } - .icofont-2x - { - font-size: 2em; - } - .icofont-3x - { - font-size: 3em; - } - .icofont-4x - { - font-size: 4em; - } - .icofont-5x - { - font-size: 5em; - } - .icofont-6x - { - font-size: 6em; - } - .icofont-7x - { - font-size: 7em; - } - .icofont-8x - { - font-size: 8em; - } - .icofont-9x - { - font-size: 9em; - } - .icofont-10x - { - font-size: 10em; - } - .icofont-fw - { - text-align: center; - width: 1.25em; - } - .icofont-ul - { - list-style-type: none; - padding-left: 0; - margin-left: 0; - } - .icofont-ul > li - { - position: relative; - line-height: 2em; - } - .icofont-ul > li .icofont - { - display: inline-block; - vertical-align: middle; - } - .icofont-border - { - border: solid 0.08em #f1f1f1; - border-radius: .1em; - padding: .2em .25em .15em; - } - .icofont-pull-left - { - float: left; - } - .icofont-pull-right - { - float: right; - } - .icofont.icofont-pull-left - { - margin-right: .3em; - } - .icofont.icofont-pull-right - { - margin-left: .3em; - } - .icofont-spin - { - -webkit-animation: icofont-spin 2s infinite linear; - animation: icofont-spin 2s infinite linear; - display: inline-block; - } - .icofont-pulse - { - -webkit-animation: icofont-spin 1s infinite steps(8); - animation: icofont-spin 1s infinite steps(8); - display: inline-block; - } - - @-webkit-keyframes icofont-spin - { - 0% - { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% - { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } - } - - @keyframes icofont-spin - { - 0% - { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% - { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } - } - .icofont-rotate-90 - { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - } - .icofont-rotate-180 - { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - } - .icofont-rotate-270 - { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - transform: rotate(270deg); - } - .icofont-flip-horizontal - { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); - } - .icofont-flip-vertical - { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - transform: scale(1, -1); - } - .icofont-flip-horizontal.icofont-flip-vertical - { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); - } - - :root .icofont-rotate-90, - :root .icofont-rotate-180, - :root .icofont-rotate-270, - :root .icofont-flip-horizontal, - :root .icofont-flip-vertical - { - -webkit-filter: none; - filter: none; - display: inline-block; - } - .icofont-inverse - { - color: #fff; - } - - .sr-only - { - border: 0; - clip: rect(0, 0, 0, 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; - } - - .sr-only-focusable:active, - .sr-only-focusable:focus - { - clip: auto; - height: auto; - margin: 0; - overflow: visible; - position: static; - width: auto; - } - /*! * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2022 Fonticons, Inc. */ - .fa { - font-family: var(--fa-style-family, "Font Awesome 6 Free"); - font-weight: var(--fa-style, 900); - } - .fa, - .fa-brands, - .fa-duotone, - .fa-light, - .fa-regular, - .fa-solid, - .fa-thin, - .fab, - .fad, - .fal, - .far, - .fas, - .fat { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; - } - .fa-1x { - font-size: 1em; - } - .fa-2x { - font-size: 2em; - } - .fa-3x { - font-size: 3em; - } - .fa-4x { - font-size: 4em; - } - .fa-5x { - font-size: 5em; - } - .fa-6x { - font-size: 6em; - } - .fa-7x { - font-size: 7em; - } - .fa-8x { - font-size: 8em; - } - .fa-9x { - font-size: 9em; - } - .fa-10x { - font-size: 10em; - } - .fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; - } - .fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; - } - .fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; - } - .fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; - } - .fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; - } - .fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; - } - .fa-fw { - text-align: center; - width: 1.25em; - } - .fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; - } - .fa-ul > li { - position: relative; - } - .fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; - } - .fa-border { - border-radius: var(--fa-border-radius, 0.1em); - border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) - var(--fa-border-color, #eee); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); - } - .fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); - } - .fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); - } - .fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); - } - .fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.28, 0.84, 0.42, 1) - ); - animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.28, 0.84, 0.42, 1) - ); - } - .fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - } - .fa-beat-fade, - .fa-fade { - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - } - .fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - animation-timing-function: var( - --fa-animation-timing, - cubic-bezier(0.4, 0, 0.6, 1) - ); - } - .fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); - } - .fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); - } - .fa-shake, - .fa-spin { - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - } - .fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); - } - .fa-spin-reverse { - --fa-animation-direction: reverse; - } - .fa-pulse, - .fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var( - --fa-animation-iteration-count, - infinite - ); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); - } - @media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-beat-fade, - .fa-bounce, - .fa-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; - } - } - @-webkit-keyframes fa-beat { - 0%, - 90% { - -webkit-transform: scale(1); - transform: scale(1); - } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); - } - } - @keyframes fa-beat { - 0%, - 90% { - -webkit-transform: scale(1); - transform: scale(1); - } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); - } - } - @-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - 10% { - -webkit-transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - } - 30% { - -webkit-transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - } - 50% { - -webkit-transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - } - 57% { - -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - } - 64% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - to { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - } - @keyframes fa-bounce { - 0% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - 10% { - -webkit-transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - transform: scale( - var(--fa-bounce-start-scale-x, 1.1), - var(--fa-bounce-start-scale-y, 0.9) - ) - translateY(0); - } - 30% { - -webkit-transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - transform: scale( - var(--fa-bounce-jump-scale-x, 0.9), - var(--fa-bounce-jump-scale-y, 1.1) - ) - translateY(var(--fa-bounce-height, -0.5em)); - } - 50% { - -webkit-transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - transform: scale( - var(--fa-bounce-land-scale-x, 1.05), - var(--fa-bounce-land-scale-y, 0.95) - ) - translateY(0); - } - 57% { - -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - } - 64% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - to { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - } - @-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); - } - } - @keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); - } - } - @-webkit-keyframes fa-beat-fade { - 0%, - to { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); - } - } - @keyframes fa-beat-fade { - 0%, - to { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); - } - } - @-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - } - } - @keyframes fa-flip { - 50% { - -webkit-transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - transform: rotate3d( - var(--fa-flip-x, 0), - var(--fa-flip-y, 1), - var(--fa-flip-z, 0), - var(--fa-flip-angle, -180deg) - ); - } - } - @-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); - } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 8%, - 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); - } - 12%, - 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); - } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); - } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); - } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); - } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); - } - 40%, - to { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - } - @keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); - } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 8%, - 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); - } - 12%, - 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); - } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); - } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); - } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); - } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); - } - 40%, - to { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - } - @-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } - } - @keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } - } - .fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - } - .fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - } - .fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); - } - .fa-flip-horizontal { - -webkit-transform: scaleX(-1); - transform: scaleX(-1); - } - .fa-flip-vertical { - -webkit-transform: scaleY(-1); - transform: scaleY(-1); - } - .fa-flip-both, - .fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1); - transform: scale(-1); - } - .fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); - } - .fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; - } - .fa-stack-1x, - .fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); - } - .fa-stack-1x { - line-height: inherit; - } - .fa-stack-2x { - font-size: 2em; - } - .fa-inverse { - color: var(--fa-inverse, #fff); - } - .fa-0:before { - content: "\\30"; - } - .fa-1:before { - content: "\\31"; - } - .fa-2:before { - content: "\\32"; - } - .fa-3:before { - content: "\\33"; - } - .fa-4:before { - content: "\\34"; - } - .fa-5:before { - content: "\\35"; - } - .fa-6:before { - content: "\\36"; - } - .fa-7:before { - content: "\\37"; - } - .fa-8:before { - content: "\\38"; - } - .fa-9:before { - content: "\\39"; - } - .fa-a:before { - content: "\\41"; - } - .fa-address-book:before, - .fa-contact-book:before { - content: "\\f2b9"; - } - .fa-address-card:before, - .fa-contact-card:before, - .fa-vcard:before { - content: "\\f2bb"; - } - .fa-align-center:before { - content: "\\f037"; - } - .fa-align-justify:before { - content: "\\f039"; - } - .fa-align-left:before { - content: "\\f036"; - } - .fa-align-right:before { - content: "\\f038"; - } - .fa-anchor:before { - content: "\\f13d"; - } - .fa-anchor-circle-check:before { - content: "\\e4aa"; - } - .fa-anchor-circle-exclamation:before { - content: "\\e4ab"; - } - .fa-anchor-circle-xmark:before { - content: "\\e4ac"; - } - .fa-anchor-lock:before { - content: "\\e4ad"; - } - .fa-angle-down:before { - content: "\\f107"; - } - .fa-angle-left:before { - content: "\\f104"; - } - .fa-angle-right:before { - content: "\\f105"; - } - .fa-angle-up:before { - content: "\\f106"; - } - .fa-angle-double-down:before, - .fa-angles-down:before { - content: "\\f103"; - } - .fa-angle-double-left:before, - .fa-angles-left:before { - content: "\\f100"; - } - .fa-angle-double-right:before, - .fa-angles-right:before { - content: "\\f101"; - } - .fa-angle-double-up:before, - .fa-angles-up:before { - content: "\\f102"; - } - .fa-ankh:before { - content: "\\f644"; - } - .fa-apple-alt:before, - .fa-apple-whole:before { - content: "\\f5d1"; - } - .fa-archway:before { - content: "\\f557"; - } - .fa-arrow-down:before { - content: "\\f063"; - } - .fa-arrow-down-1-9:before, - .fa-sort-numeric-asc:before, - .fa-sort-numeric-down:before { - content: "\\f162"; - } - .fa-arrow-down-9-1:before, - .fa-sort-numeric-desc:before, - .fa-sort-numeric-down-alt:before { - content: "\\f886"; - } - .fa-arrow-down-a-z:before, - .fa-sort-alpha-asc:before, - .fa-sort-alpha-down:before { - content: "\\f15d"; - } - .fa-arrow-down-long:before, - .fa-long-arrow-down:before { - content: "\\f175"; - } - .fa-arrow-down-short-wide:before, - .fa-sort-amount-desc:before, - .fa-sort-amount-down-alt:before { - content: "\\f884"; - } - .fa-arrow-down-up-across-line:before { - content: "\\e4af"; - } - .fa-arrow-down-up-lock:before { - content: "\\e4b0"; - } - .fa-arrow-down-wide-short:before, - .fa-sort-amount-asc:before, - .fa-sort-amount-down:before { - content: "\\f160"; - } - .fa-arrow-down-z-a:before, - .fa-sort-alpha-desc:before, - .fa-sort-alpha-down-alt:before { - content: "\\f881"; - } - .fa-arrow-left:before { - content: "\\f060"; - } - .fa-arrow-left-long:before, - .fa-long-arrow-left:before { - content: "\\f177"; - } - .fa-arrow-pointer:before, - .fa-mouse-pointer:before { - content: "\\f245"; - } - .fa-arrow-right:before { - content: "\\f061"; - } - .fa-arrow-right-arrow-left:before, - .fa-exchange:before { - content: "\\f0ec"; - } - .fa-arrow-right-from-bracket:before, - .fa-sign-out:before { - content: "\\f08b"; - } - .fa-arrow-right-long:before, - .fa-long-arrow-right:before { - content: "\\f178"; - } - .fa-arrow-right-to-bracket:before, - .fa-sign-in:before { - content: "\\f090"; - } - .fa-arrow-right-to-city:before { - content: "\\e4b3"; - } - .fa-arrow-left-rotate:before, - .fa-arrow-rotate-back:before, - .fa-arrow-rotate-backward:before, - .fa-arrow-rotate-left:before, - .fa-undo:before { - content: "\\f0e2"; - } - .fa-arrow-right-rotate:before, - .fa-arrow-rotate-forward:before, - .fa-arrow-rotate-right:before, - .fa-redo:before { - content: "\\f01e"; - } - .fa-arrow-trend-down:before { - content: "\\e097"; - } - .fa-arrow-trend-up:before { - content: "\\e098"; - } - .fa-arrow-turn-down:before, - .fa-level-down:before { - content: "\\f149"; - } - .fa-arrow-turn-up:before, - .fa-level-up:before { - content: "\\f148"; - } - .fa-arrow-up:before { - content: "\\f062"; - } - .fa-arrow-up-1-9:before, - .fa-sort-numeric-up:before { - content: "\\f163"; - } - .fa-arrow-up-9-1:before, - .fa-sort-numeric-up-alt:before { - content: "\\f887"; - } - .fa-arrow-up-a-z:before, - .fa-sort-alpha-up:before { - content: "\\f15e"; - } - .fa-arrow-up-from-bracket:before { - content: "\\e09a"; - } - .fa-arrow-up-from-ground-water:before { - content: "\\e4b5"; - } - .fa-arrow-up-from-water-pump:before { - content: "\\e4b6"; - } - .fa-arrow-up-long:before, - .fa-long-arrow-up:before { - content: "\\f176"; - } - .fa-arrow-up-right-dots:before { - content: "\\e4b7"; - } - .fa-arrow-up-right-from-square:before, - .fa-external-link:before { - content: "\\f08e"; - } - .fa-arrow-up-short-wide:before, - .fa-sort-amount-up-alt:before { - content: "\\f885"; - } - .fa-arrow-up-wide-short:before, - .fa-sort-amount-up:before { - content: "\\f161"; - } - .fa-arrow-up-z-a:before, - .fa-sort-alpha-up-alt:before { - content: "\\f882"; - } - .fa-arrows-down-to-line:before { - content: "\\e4b8"; - } - .fa-arrows-down-to-people:before { - content: "\\e4b9"; - } - .fa-arrows-h:before, - .fa-arrows-left-right:before { - content: "\\f07e"; - } - .fa-arrows-left-right-to-line:before { - content: "\\e4ba"; - } - .fa-arrows-rotate:before, - .fa-refresh:before, - .fa-sync:before { - content: "\\f021"; - } - .fa-arrows-spin:before { - content: "\\e4bb"; - } - .fa-arrows-split-up-and-left:before { - content: "\\e4bc"; - } - .fa-arrows-to-circle:before { - content: "\\e4bd"; - } - .fa-arrows-to-dot:before { - content: "\\e4be"; - } - .fa-arrows-to-eye:before { - content: "\\e4bf"; - } - .fa-arrows-turn-right:before { - content: "\\e4c0"; - } - .fa-arrows-turn-to-dots:before { - content: "\\e4c1"; - } - .fa-arrows-up-down:before, - .fa-arrows-v:before { - content: "\\f07d"; - } - .fa-arrows-up-down-left-right:before, - .fa-arrows:before { - content: "\\f047"; - } - .fa-arrows-up-to-line:before { - content: "\\e4c2"; - } - .fa-asterisk:before { - content: "\\2a"; - } - .fa-at:before { - content: "\\40"; - } - .fa-atom:before { - content: "\\f5d2"; - } - .fa-audio-description:before { - content: "\\f29e"; - } - .fa-austral-sign:before { - content: "\\e0a9"; - } - .fa-award:before { - content: "\\f559"; - } - .fa-b:before { - content: "\\42"; - } - .fa-baby:before { - content: "\\f77c"; - } - .fa-baby-carriage:before, - .fa-carriage-baby:before { - content: "\\f77d"; - } - .fa-backward:before { - content: "\\f04a"; - } - .fa-backward-fast:before, - .fa-fast-backward:before { - content: "\\f049"; - } - .fa-backward-step:before, - .fa-step-backward:before { - content: "\\f048"; - } - .fa-bacon:before { - content: "\\f7e5"; - } - .fa-bacteria:before { - content: "\\e059"; - } - .fa-bacterium:before { - content: "\\e05a"; - } - .fa-bag-shopping:before, - .fa-shopping-bag:before { - content: "\\f290"; - } - .fa-bahai:before { - content: "\\f666"; - } - .fa-baht-sign:before { - content: "\\e0ac"; - } - .fa-ban:before, - .fa-cancel:before { - content: "\\f05e"; - } - .fa-ban-smoking:before, - .fa-smoking-ban:before { - content: "\\f54d"; - } - .fa-band-aid:before, - .fa-bandage:before { - content: "\\f462"; - } - .fa-barcode:before { - content: "\\f02a"; - } - .fa-bars:before, - .fa-navicon:before { - content: "\\f0c9"; - } - .fa-bars-progress:before, - .fa-tasks-alt:before { - content: "\\f828"; - } - .fa-bars-staggered:before, - .fa-reorder:before, - .fa-stream:before { - content: "\\f550"; - } - .fa-baseball-ball:before, - .fa-baseball:before { - content: "\\f433"; - } - .fa-baseball-bat-ball:before { - content: "\\f432"; - } - .fa-basket-shopping:before, - .fa-shopping-basket:before { - content: "\\f291"; - } - .fa-basketball-ball:before, - .fa-basketball:before { - content: "\\f434"; - } - .fa-bath:before, - .fa-bathtub:before { - content: "\\f2cd"; - } - .fa-battery-0:before, - .fa-battery-empty:before { - content: "\\f244"; - } - .fa-battery-5:before, - .fa-battery-full:before, - .fa-battery:before { - content: "\\f240"; - } - .fa-battery-3:before, - .fa-battery-half:before { - content: "\\f242"; - } - .fa-battery-2:before, - .fa-battery-quarter:before { - content: "\\f243"; - } - .fa-battery-4:before, - .fa-battery-three-quarters:before { - content: "\\f241"; - } - .fa-bed:before { - content: "\\f236"; - } - .fa-bed-pulse:before, - .fa-procedures:before { - content: "\\f487"; - } - .fa-beer-mug-empty:before, - .fa-beer:before { - content: "\\f0fc"; - } - .fa-bell:before { - content: "\\f0f3"; - } - .fa-bell-concierge:before, - .fa-concierge-bell:before { - content: "\\f562"; - } - .fa-bell-slash:before { - content: "\\f1f6"; - } - .fa-bezier-curve:before { - content: "\\f55b"; - } - .fa-bicycle:before { - content: "\\f206"; - } - .fa-binoculars:before { - content: "\\f1e5"; - } - .fa-biohazard:before { - content: "\\f780"; - } - .fa-bitcoin-sign:before { - content: "\\e0b4"; - } - .fa-blender:before { - content: "\\f517"; - } - .fa-blender-phone:before { - content: "\\f6b6"; - } - .fa-blog:before { - content: "\\f781"; - } - .fa-bold:before { - content: "\\f032"; - } - .fa-bolt:before, - .fa-zap:before { - content: "\\f0e7"; - } - .fa-bolt-lightning:before { - content: "\\e0b7"; - } - .fa-bomb:before { - content: "\\f1e2"; - } - .fa-bone:before { - content: "\\f5d7"; - } - .fa-bong:before { - content: "\\f55c"; - } - .fa-book:before { - content: "\\f02d"; - } - .fa-atlas:before, - .fa-book-atlas:before { - content: "\\f558"; - } - .fa-bible:before, - .fa-book-bible:before { - content: "\\f647"; - } - .fa-book-bookmark:before { - content: "\\e0bb"; - } - .fa-book-journal-whills:before, - .fa-journal-whills:before { - content: "\\f66a"; - } - .fa-book-medical:before { - content: "\\f7e6"; - } - .fa-book-open:before { - content: "\\f518"; - } - .fa-book-open-reader:before, - .fa-book-reader:before { - content: "\\f5da"; - } - .fa-book-quran:before, - .fa-quran:before { - content: "\\f687"; - } - .fa-book-dead:before, - .fa-book-skull:before { - content: "\\f6b7"; - } - .fa-bookmark:before { - content: "\\f02e"; - } - .fa-border-all:before { - content: "\\f84c"; - } - .fa-border-none:before { - content: "\\f850"; - } - .fa-border-style:before, - .fa-border-top-left:before { - content: "\\f853"; - } - .fa-bore-hole:before { - content: "\\e4c3"; - } - .fa-bottle-droplet:before { - content: "\\e4c4"; - } - .fa-bottle-water:before { - content: "\\e4c5"; - } - .fa-bowl-food:before { - content: "\\e4c6"; - } - .fa-bowl-rice:before { - content: "\\e2eb"; - } - .fa-bowling-ball:before { - content: "\\f436"; - } - .fa-box:before { - content: "\\f466"; - } - .fa-archive:before, - .fa-box-archive:before { - content: "\\f187"; - } - .fa-box-open:before { - content: "\\f49e"; - } - .fa-box-tissue:before { - content: "\\e05b"; - } - .fa-boxes-packing:before { - content: "\\e4c7"; - } - .fa-boxes-alt:before, - .fa-boxes-stacked:before, - .fa-boxes:before { - content: "\\f468"; - } - .fa-braille:before { - content: "\\f2a1"; - } - .fa-brain:before { - content: "\\f5dc"; - } - .fa-brazilian-real-sign:before { - content: "\\e46c"; - } - .fa-bread-slice:before { - content: "\\f7ec"; - } - .fa-bridge:before { - content: "\\e4c8"; - } - .fa-bridge-circle-check:before { - content: "\\e4c9"; - } - .fa-bridge-circle-exclamation:before { - content: "\\e4ca"; - } - .fa-bridge-circle-xmark:before { - content: "\\e4cb"; - } - .fa-bridge-lock:before { - content: "\\e4cc"; - } - .fa-bridge-water:before { - content: "\\e4ce"; - } - .fa-briefcase:before { - content: "\\f0b1"; - } - .fa-briefcase-medical:before { - content: "\\f469"; - } - .fa-broom:before { - content: "\\f51a"; - } - .fa-broom-ball:before, - .fa-quidditch-broom-ball:before, - .fa-quidditch:before { - content: "\\f458"; - } - .fa-brush:before { - content: "\\f55d"; - } - .fa-bucket:before { - content: "\\e4cf"; - } - .fa-bug:before { - content: "\\f188"; - } - .fa-bug-slash:before { - content: "\\e490"; - } - .fa-bugs:before { - content: "\\e4d0"; - } - .fa-building:before { - content: "\\f1ad"; - } - .fa-building-circle-arrow-right:before { - content: "\\e4d1"; - } - .fa-building-circle-check:before { - content: "\\e4d2"; - } - .fa-building-circle-exclamation:before { - content: "\\e4d3"; - } - .fa-building-circle-xmark:before { - content: "\\e4d4"; - } - .fa-bank:before, - .fa-building-columns:before, - .fa-institution:before, - .fa-museum:before, - .fa-university:before { - content: "\\f19c"; - } - .fa-building-flag:before { - content: "\\e4d5"; - } - .fa-building-lock:before { - content: "\\e4d6"; - } - .fa-building-ngo:before { - content: "\\e4d7"; - } - .fa-building-shield:before { - content: "\\e4d8"; - } - .fa-building-un:before { - content: "\\e4d9"; - } - .fa-building-user:before { - content: "\\e4da"; - } - .fa-building-wheat:before { - content: "\\e4db"; - } - .fa-bullhorn:before { - content: "\\f0a1"; - } - .fa-bullseye:before { - content: "\\f140"; - } - .fa-burger:before, - .fa-hamburger:before { - content: "\\f805"; - } - .fa-burst:before { - content: "\\e4dc"; - } - .fa-bus:before { - content: "\\f207"; - } - .fa-bus-alt:before, - .fa-bus-simple:before { - content: "\\f55e"; - } - .fa-briefcase-clock:before, - .fa-business-time:before { - content: "\\f64a"; - } - .fa-c:before { - content: "\\43"; - } - .fa-birthday-cake:before, - .fa-cake-candles:before, - .fa-cake:before { - content: "\\f1fd"; - } - .fa-calculator:before { - content: "\\f1ec"; - } - .fa-calendar:before { - content: "\\f133"; - } - .fa-calendar-check:before { - content: "\\f274"; - } - .fa-calendar-day:before { - content: "\\f783"; - } - .fa-calendar-alt:before, - .fa-calendar-days:before { - content: "\\f073"; - } - .fa-calendar-minus:before { - content: "\\f272"; - } - .fa-calendar-plus:before { - content: "\\f271"; - } - .fa-calendar-week:before { - content: "\\f784"; - } - .fa-calendar-times:before, - .fa-calendar-xmark:before { - content: "\\f273"; - } - .fa-camera-alt:before, - .fa-camera:before { - content: "\\f030"; - } - .fa-camera-retro:before { - content: "\\f083"; - } - .fa-camera-rotate:before { - content: "\\e0d8"; - } - .fa-campground:before { - content: "\\f6bb"; - } - .fa-candy-cane:before { - content: "\\f786"; - } - .fa-cannabis:before { - content: "\\f55f"; - } - .fa-capsules:before { - content: "\\f46b"; - } - .fa-automobile:before, - .fa-car:before { - content: "\\f1b9"; - } - .fa-battery-car:before, - .fa-car-battery:before { - content: "\\f5df"; - } - .fa-car-burst:before, - .fa-car-crash:before { - content: "\\f5e1"; - } - .fa-car-on:before { - content: "\\e4dd"; - } - .fa-car-alt:before, - .fa-car-rear:before { - content: "\\f5de"; - } - .fa-car-side:before { - content: "\\f5e4"; - } - .fa-car-tunnel:before { - content: "\\e4de"; - } - .fa-caravan:before { - content: "\\f8ff"; - } - .fa-caret-down:before { - content: "\\f0d7"; - } - .fa-caret-left:before { - content: "\\f0d9"; - } - .fa-caret-right:before { - content: "\\f0da"; - } - .fa-caret-up:before { - content: "\\f0d8"; - } - .fa-carrot:before { - content: "\\f787"; - } - .fa-cart-arrow-down:before { - content: "\\f218"; - } - .fa-cart-flatbed:before, - .fa-dolly-flatbed:before { - content: "\\f474"; - } - .fa-cart-flatbed-suitcase:before, - .fa-luggage-cart:before { - content: "\\f59d"; - } - .fa-cart-plus:before { - content: "\\f217"; - } - .fa-cart-shopping:before, - .fa-shopping-cart:before { - content: "\\f07a"; - } - .fa-cash-register:before { - content: "\\f788"; - } - .fa-cat:before { - content: "\\f6be"; - } - .fa-cedi-sign:before { - content: "\\e0df"; - } - .fa-cent-sign:before { - content: "\\e3f5"; - } - .fa-certificate:before { - content: "\\f0a3"; - } - .fa-chair:before { - content: "\\f6c0"; - } - .fa-blackboard:before, - .fa-chalkboard:before { - content: "\\f51b"; - } - .fa-chalkboard-teacher:before, - .fa-chalkboard-user:before { - content: "\\f51c"; - } - .fa-champagne-glasses:before, - .fa-glass-cheers:before { - content: "\\f79f"; - } - .fa-charging-station:before { - content: "\\f5e7"; - } - .fa-area-chart:before, - .fa-chart-area:before { - content: "\\f1fe"; - } - .fa-bar-chart:before, - .fa-chart-bar:before { - content: "\\f080"; - } - .fa-chart-column:before { - content: "\\e0e3"; - } - .fa-chart-gantt:before { - content: "\\e0e4"; - } - .fa-chart-line:before, - .fa-line-chart:before { - content: "\\f201"; - } - .fa-chart-pie:before, - .fa-pie-chart:before { - content: "\\f200"; - } - .fa-chart-simple:before { - content: "\\e473"; - } - .fa-check:before { - content: "\\f00c"; - } - .fa-check-double:before { - content: "\\f560"; - } - .fa-check-to-slot:before, - .fa-vote-yea:before { - content: "\\f772"; - } - .fa-cheese:before { - content: "\\f7ef"; - } - .fa-chess:before { - content: "\\f439"; - } - .fa-chess-bishop:before { - content: "\\f43a"; - } - .fa-chess-board:before { - content: "\\f43c"; - } - .fa-chess-king:before { - content: "\\f43f"; - } - .fa-chess-knight:before { - content: "\\f441"; - } - .fa-chess-pawn:before { - content: "\\f443"; - } - .fa-chess-queen:before { - content: "\\f445"; - } - .fa-chess-rook:before { - content: "\\f447"; - } - .fa-chevron-down:before { - content: "\\f078"; - } - .fa-chevron-left:before { - content: "\\f053"; - } - .fa-chevron-right:before { - content: "\\f054"; - } - .fa-chevron-up:before { - content: "\\f077"; - } - .fa-child:before { - content: "\\f1ae"; - } - .fa-child-dress:before { - content: "\\e59c"; - } - .fa-child-reaching:before { - content: "\\e59d"; - } - .fa-child-rifle:before { - content: "\\e4e0"; - } - .fa-children:before { - content: "\\e4e1"; - } - .fa-church:before { - content: "\\f51d"; - } - .fa-circle:before { - content: "\\f111"; - } - .fa-arrow-circle-down:before, - .fa-circle-arrow-down:before { - content: "\\f0ab"; - } - .fa-arrow-circle-left:before, - .fa-circle-arrow-left:before { - content: "\\f0a8"; - } - .fa-arrow-circle-right:before, - .fa-circle-arrow-right:before { - content: "\\f0a9"; - } - .fa-arrow-circle-up:before, - .fa-circle-arrow-up:before { - content: "\\f0aa"; - } - .fa-check-circle:before, - .fa-circle-check:before { - content: "\\f058"; - } - .fa-chevron-circle-down:before, - .fa-circle-chevron-down:before { - content: "\\f13a"; - } - .fa-chevron-circle-left:before, - .fa-circle-chevron-left:before { - content: "\\f137"; - } - .fa-chevron-circle-right:before, - .fa-circle-chevron-right:before { - content: "\\f138"; - } - .fa-chevron-circle-up:before, - .fa-circle-chevron-up:before { - content: "\\f139"; - } - .fa-circle-dollar-to-slot:before, - .fa-donate:before { - content: "\\f4b9"; - } - .fa-circle-dot:before, - .fa-dot-circle:before { - content: "\\f192"; - } - .fa-arrow-alt-circle-down:before, - .fa-circle-down:before { - content: "\\f358"; - } - .fa-circle-exclamation:before, - .fa-exclamation-circle:before { - content: "\\f06a"; - } - .fa-circle-h:before, - .fa-hospital-symbol:before { - content: "\\f47e"; - } - .fa-adjust:before, - .fa-circle-half-stroke:before { - content: "\\f042"; - } - .fa-circle-info:before, - .fa-info-circle:before { - content: "\\f05a"; - } - .fa-arrow-alt-circle-left:before, - .fa-circle-left:before { - content: "\\f359"; - } - .fa-circle-minus:before, - .fa-minus-circle:before { - content: "\\f056"; - } - .fa-circle-nodes:before { - content: "\\e4e2"; - } - .fa-circle-notch:before { - content: "\\f1ce"; - } - .fa-circle-pause:before, - .fa-pause-circle:before { - content: "\\f28b"; - } - .fa-circle-play:before, - .fa-play-circle:before { - content: "\\f144"; - } - .fa-circle-plus:before, - .fa-plus-circle:before { - content: "\\f055"; - } - .fa-circle-question:before, - .fa-question-circle:before { - content: "\\f059"; - } - .fa-circle-radiation:before, - .fa-radiation-alt:before { - content: "\\f7ba"; - } - .fa-arrow-alt-circle-right:before, - .fa-circle-right:before { - content: "\\f35a"; - } - .fa-circle-stop:before, - .fa-stop-circle:before { - content: "\\f28d"; - } - .fa-arrow-alt-circle-up:before, - .fa-circle-up:before { - content: "\\f35b"; - } - .fa-circle-user:before, - .fa-user-circle:before { - content: "\\f2bd"; - } - .fa-circle-xmark:before, - .fa-times-circle:before, - .fa-xmark-circle:before { - content: "\\f057"; - } - .fa-city:before { - content: "\\f64f"; - } - .fa-clapperboard:before { - content: "\\e131"; - } - .fa-clipboard:before { - content: "\\f328"; - } - .fa-clipboard-check:before { - content: "\\f46c"; - } - .fa-clipboard-list:before { - content: "\\f46d"; - } - .fa-clipboard-question:before { - content: "\\e4e3"; - } - .fa-clipboard-user:before { - content: "\\f7f3"; - } - .fa-clock-four:before, - .fa-clock:before { - content: "\\f017"; - } - .fa-clock-rotate-left:before, - .fa-history:before { - content: "\\f1da"; - } - .fa-clone:before { - content: "\\f24d"; - } - .fa-closed-captioning:before { - content: "\\f20a"; - } - .fa-cloud:before { - content: "\\f0c2"; - } - .fa-cloud-arrow-down:before, - .fa-cloud-download-alt:before, - .fa-cloud-download:before { - content: "\\f0ed"; - } - .fa-cloud-arrow-up:before, - .fa-cloud-upload-alt:before, - .fa-cloud-upload:before { - content: "\\f0ee"; - } - .fa-cloud-bolt:before, - .fa-thunderstorm:before { - content: "\\f76c"; - } - .fa-cloud-meatball:before { - content: "\\f73b"; - } - .fa-cloud-moon:before { - content: "\\f6c3"; - } - .fa-cloud-moon-rain:before { - content: "\\f73c"; - } - .fa-cloud-rain:before { - content: "\\f73d"; - } - .fa-cloud-showers-heavy:before { - content: "\\f740"; - } - .fa-cloud-showers-water:before { - content: "\\e4e4"; - } - .fa-cloud-sun:before { - content: "\\f6c4"; - } - .fa-cloud-sun-rain:before { - content: "\\f743"; - } - .fa-clover:before { - content: "\\e139"; - } - .fa-code:before { - content: "\\f121"; - } - .fa-code-branch:before { - content: "\\f126"; - } - .fa-code-commit:before { - content: "\\f386"; - } - .fa-code-compare:before { - content: "\\e13a"; - } - .fa-code-fork:before { - content: "\\e13b"; - } - .fa-code-merge:before { - content: "\\f387"; - } - .fa-code-pull-request:before { - content: "\\e13c"; - } - .fa-coins:before { - content: "\\f51e"; - } - .fa-colon-sign:before { - content: "\\e140"; - } - .fa-comment:before { - content: "\\f075"; - } - .fa-comment-dollar:before { - content: "\\f651"; - } - .fa-comment-dots:before, - .fa-commenting:before { - content: "\\f4ad"; - } - .fa-comment-medical:before { - content: "\\f7f5"; - } - .fa-comment-slash:before { - content: "\\f4b3"; - } - .fa-comment-sms:before, - .fa-sms:before { - content: "\\f7cd"; - } - .fa-comments:before { - content: "\\f086"; - } - .fa-comments-dollar:before { - content: "\\f653"; - } - .fa-compact-disc:before { - content: "\\f51f"; - } - .fa-compass:before { - content: "\\f14e"; - } - .fa-compass-drafting:before, - .fa-drafting-compass:before { - content: "\\f568"; - } - .fa-compress:before { - content: "\\f066"; - } - .fa-computer:before { - content: "\\e4e5"; - } - .fa-computer-mouse:before, - .fa-mouse:before { - content: "\\f8cc"; - } - .fa-cookie:before { - content: "\\f563"; - } - .fa-cookie-bite:before { - content: "\\f564"; - } - .fa-copy:before { - content: "\\f0c5"; - } - .fa-copyright:before { - content: "\\f1f9"; - } - .fa-couch:before { - content: "\\f4b8"; - } - .fa-cow:before { - content: "\\f6c8"; - } - .fa-credit-card-alt:before, - .fa-credit-card:before { - content: "\\f09d"; - } - .fa-crop:before { - content: "\\f125"; - } - .fa-crop-alt:before, - .fa-crop-simple:before { - content: "\\f565"; - } - .fa-cross:before { - content: "\\f654"; - } - .fa-crosshairs:before { - content: "\\f05b"; - } - .fa-crow:before { - content: "\\f520"; - } - .fa-crown:before { - content: "\\f521"; - } - .fa-crutch:before { - content: "\\f7f7"; - } - .fa-cruzeiro-sign:before { - content: "\\e152"; - } - .fa-cube:before { - content: "\\f1b2"; - } - .fa-cubes:before { - content: "\\f1b3"; - } - .fa-cubes-stacked:before { - content: "\\e4e6"; - } - .fa-d:before { - content: "\\44"; - } - .fa-database:before { - content: "\\f1c0"; - } - .fa-backspace:before, - .fa-delete-left:before { - content: "\\f55a"; - } - .fa-democrat:before { - content: "\\f747"; - } - .fa-desktop-alt:before, - .fa-desktop:before { - content: "\\f390"; - } - .fa-dharmachakra:before { - content: "\\f655"; - } - .fa-diagram-next:before { - content: "\\e476"; - } - .fa-diagram-predecessor:before { - content: "\\e477"; - } - .fa-diagram-project:before, - .fa-project-diagram:before { - content: "\\f542"; - } - .fa-diagram-successor:before { - content: "\\e47a"; - } - .fa-diamond:before { - content: "\\f219"; - } - .fa-diamond-turn-right:before, - .fa-directions:before { - content: "\\f5eb"; - } - .fa-dice:before { - content: "\\f522"; - } - .fa-dice-d20:before { - content: "\\f6cf"; - } - .fa-dice-d6:before { - content: "\\f6d1"; - } - .fa-dice-five:before { - content: "\\f523"; - } - .fa-dice-four:before { - content: "\\f524"; - } - .fa-dice-one:before { - content: "\\f525"; - } - .fa-dice-six:before { - content: "\\f526"; - } - .fa-dice-three:before { - content: "\\f527"; - } - .fa-dice-two:before { - content: "\\f528"; - } - .fa-disease:before { - content: "\\f7fa"; - } - .fa-display:before { - content: "\\e163"; - } - .fa-divide:before { - content: "\\f529"; - } - .fa-dna:before { - content: "\\f471"; - } - .fa-dog:before { - content: "\\f6d3"; - } - .fa-dollar-sign:before, - .fa-dollar:before, - .fa-usd:before { - content: "\\24"; - } - .fa-dolly-box:before, - .fa-dolly:before { - content: "\\f472"; - } - .fa-dong-sign:before { - content: "\\e169"; - } - .fa-door-closed:before { - content: "\\f52a"; - } - .fa-door-open:before { - content: "\\f52b"; - } - .fa-dove:before { - content: "\\f4ba"; - } - .fa-compress-alt:before, - .fa-down-left-and-up-right-to-center:before { - content: "\\f422"; - } - .fa-down-long:before, - .fa-long-arrow-alt-down:before { - content: "\\f309"; - } - .fa-download:before { - content: "\\f019"; - } - .fa-dragon:before { - content: "\\f6d5"; - } - .fa-draw-polygon:before { - content: "\\f5ee"; - } - .fa-droplet:before, - .fa-tint:before { - content: "\\f043"; - } - .fa-droplet-slash:before, - .fa-tint-slash:before { - content: "\\f5c7"; - } - .fa-drum:before { - content: "\\f569"; - } - .fa-drum-steelpan:before { - content: "\\f56a"; - } - .fa-drumstick-bite:before { - content: "\\f6d7"; - } - .fa-dumbbell:before { - content: "\\f44b"; - } - .fa-dumpster:before { - content: "\\f793"; - } - .fa-dumpster-fire:before { - content: "\\f794"; - } - .fa-dungeon:before { - content: "\\f6d9"; - } - .fa-e:before { - content: "\\45"; - } - .fa-deaf:before, - .fa-deafness:before, - .fa-ear-deaf:before, - .fa-hard-of-hearing:before { - content: "\\f2a4"; - } - .fa-assistive-listening-systems:before, - .fa-ear-listen:before { - content: "\\f2a2"; - } - .fa-earth-africa:before, - .fa-globe-africa:before { - content: "\\f57c"; - } - .fa-earth-america:before, - .fa-earth-americas:before, - .fa-earth:before, - .fa-globe-americas:before { - content: "\\f57d"; - } - .fa-earth-asia:before, - .fa-globe-asia:before { - content: "\\f57e"; - } - .fa-earth-europe:before, - .fa-globe-europe:before { - content: "\\f7a2"; - } - .fa-earth-oceania:before, - .fa-globe-oceania:before { - content: "\\e47b"; - } - .fa-egg:before { - content: "\\f7fb"; - } - .fa-eject:before { - content: "\\f052"; - } - .fa-elevator:before { - content: "\\e16d"; - } - .fa-ellipsis-h:before, - .fa-ellipsis:before { - content: "\\f141"; - } - .fa-ellipsis-v:before, - .fa-ellipsis-vertical:before { - content: "\\f142"; - } - .fa-envelope:before { - content: "\\f0e0"; - } - .fa-envelope-circle-check:before { - content: "\\e4e8"; - } - .fa-envelope-open:before { - content: "\\f2b6"; - } - .fa-envelope-open-text:before { - content: "\\f658"; - } - .fa-envelopes-bulk:before, - .fa-mail-bulk:before { - content: "\\f674"; - } - .fa-equals:before { - content: "\\3d"; - } - .fa-eraser:before { - content: "\\f12d"; - } - .fa-ethernet:before { - content: "\\f796"; - } - .fa-eur:before, - .fa-euro-sign:before, - .fa-euro:before { - content: "\\f153"; - } - .fa-exclamation:before { - content: "\\21"; - } - .fa-expand:before { - content: "\\f065"; - } - .fa-explosion:before { - content: "\\e4e9"; - } - .fa-eye:before { - content: "\\f06e"; - } - .fa-eye-dropper-empty:before, - .fa-eye-dropper:before, - .fa-eyedropper:before { - content: "\\f1fb"; - } - .fa-eye-low-vision:before, - .fa-low-vision:before { - content: "\\f2a8"; - } - .fa-eye-slash:before { - content: "\\f070"; - } - .fa-f:before { - content: "\\46"; - } - .fa-angry:before, - .fa-face-angry:before { - content: "\\f556"; - } - .fa-dizzy:before, - .fa-face-dizzy:before { - content: "\\f567"; - } - .fa-face-flushed:before, - .fa-flushed:before { - content: "\\f579"; - } - .fa-face-frown:before, - .fa-frown:before { - content: "\\f119"; - } - .fa-face-frown-open:before, - .fa-frown-open:before { - content: "\\f57a"; - } - .fa-face-grimace:before, - .fa-grimace:before { - content: "\\f57f"; - } - .fa-face-grin:before, - .fa-grin:before { - content: "\\f580"; - } - .fa-face-grin-beam:before, - .fa-grin-beam:before { - content: "\\f582"; - } - .fa-face-grin-beam-sweat:before, - .fa-grin-beam-sweat:before { - content: "\\f583"; - } - .fa-face-grin-hearts:before, - .fa-grin-hearts:before { - content: "\\f584"; - } - .fa-face-grin-squint:before, - .fa-grin-squint:before { - content: "\\f585"; - } - .fa-face-grin-squint-tears:before, - .fa-grin-squint-tears:before { - content: "\\f586"; - } - .fa-face-grin-stars:before, - .fa-grin-stars:before { - content: "\\f587"; - } - .fa-face-grin-tears:before, - .fa-grin-tears:before { - content: "\\f588"; - } - .fa-face-grin-tongue:before, - .fa-grin-tongue:before { - content: "\\f589"; - } - .fa-face-grin-tongue-squint:before, - .fa-grin-tongue-squint:before { - content: "\\f58a"; - } - .fa-face-grin-tongue-wink:before, - .fa-grin-tongue-wink:before { - content: "\\f58b"; - } - .fa-face-grin-wide:before, - .fa-grin-alt:before { - content: "\\f581"; - } - .fa-face-grin-wink:before, - .fa-grin-wink:before { - content: "\\f58c"; - } - .fa-face-kiss:before, - .fa-kiss:before { - content: "\\f596"; - } - .fa-face-kiss-beam:before, - .fa-kiss-beam:before { - content: "\\f597"; - } - .fa-face-kiss-wink-heart:before, - .fa-kiss-wink-heart:before { - content: "\\f598"; - } - .fa-face-laugh:before, - .fa-laugh:before { - content: "\\f599"; - } - .fa-face-laugh-beam:before, - .fa-laugh-beam:before { - content: "\\f59a"; - } - .fa-face-laugh-squint:before, - .fa-laugh-squint:before { - content: "\\f59b"; - } - .fa-face-laugh-wink:before, - .fa-laugh-wink:before { - content: "\\f59c"; - } - .fa-face-meh:before, - .fa-meh:before { - content: "\\f11a"; - } - .fa-face-meh-blank:before, - .fa-meh-blank:before { - content: "\\f5a4"; - } - .fa-face-rolling-eyes:before, - .fa-meh-rolling-eyes:before { - content: "\\f5a5"; - } - .fa-face-sad-cry:before, - .fa-sad-cry:before { - content: "\\f5b3"; - } - .fa-face-sad-tear:before, - .fa-sad-tear:before { - content: "\\f5b4"; - } - .fa-face-smile:before, - .fa-smile:before { - content: "\\f118"; - } - .fa-face-smile-beam:before, - .fa-smile-beam:before { - content: "\\f5b8"; - } - .fa-face-smile-wink:before, - .fa-smile-wink:before { - content: "\\f4da"; - } - .fa-face-surprise:before, - .fa-surprise:before { - content: "\\f5c2"; - } - .fa-face-tired:before, - .fa-tired:before { - content: "\\f5c8"; - } - .fa-fan:before { - content: "\\f863"; - } - .fa-faucet:before { - content: "\\e005"; - } - .fa-faucet-drip:before { - content: "\\e006"; - } - .fa-fax:before { - content: "\\f1ac"; - } - .fa-feather:before { - content: "\\f52d"; - } - .fa-feather-alt:before, - .fa-feather-pointed:before { - content: "\\f56b"; - } - .fa-ferry:before { - content: "\\e4ea"; - } - .fa-file:before { - content: "\\f15b"; - } - .fa-file-arrow-down:before, - .fa-file-download:before { - content: "\\f56d"; - } - .fa-file-arrow-up:before, - .fa-file-upload:before { - content: "\\f574"; - } - .fa-file-audio:before { - content: "\\f1c7"; - } - .fa-file-circle-check:before { - content: "\\e493"; - } - .fa-file-circle-exclamation:before { - content: "\\e4eb"; - } - .fa-file-circle-minus:before { - content: "\\e4ed"; - } - .fa-file-circle-plus:before { - content: "\\e4ee"; - } - .fa-file-circle-question:before { - content: "\\e4ef"; - } - .fa-file-circle-xmark:before { - content: "\\e494"; - } - .fa-file-code:before { - content: "\\f1c9"; - } - .fa-file-contract:before { - content: "\\f56c"; - } - .fa-file-csv:before { - content: "\\f6dd"; - } - .fa-file-excel:before { - content: "\\f1c3"; - } - .fa-arrow-right-from-file:before, - .fa-file-export:before { - content: "\\f56e"; - } - .fa-file-image:before { - content: "\\f1c5"; - } - .fa-arrow-right-to-file:before, - .fa-file-import:before { - content: "\\f56f"; - } - .fa-file-invoice:before { - content: "\\f570"; - } - .fa-file-invoice-dollar:before { - content: "\\f571"; - } - .fa-file-alt:before, - .fa-file-lines:before, - .fa-file-text:before { - content: "\\f15c"; - } - .fa-file-medical:before { - content: "\\f477"; - } - .fa-file-pdf:before { - content: "\\f1c1"; - } - .fa-file-edit:before, - .fa-file-pen:before { - content: "\\f31c"; - } - .fa-file-powerpoint:before { - content: "\\f1c4"; - } - .fa-file-prescription:before { - content: "\\f572"; - } - .fa-file-shield:before { - content: "\\e4f0"; - } - .fa-file-signature:before { - content: "\\f573"; - } - .fa-file-video:before { - content: "\\f1c8"; - } - .fa-file-medical-alt:before, - .fa-file-waveform:before { - content: "\\f478"; - } - .fa-file-word:before { - content: "\\f1c2"; - } - .fa-file-archive:before, - .fa-file-zipper:before { - content: "\\f1c6"; - } - .fa-fill:before { - content: "\\f575"; - } - .fa-fill-drip:before { - content: "\\f576"; - } - .fa-film:before { - content: "\\f008"; - } - .fa-filter:before { - content: "\\f0b0"; - } - .fa-filter-circle-dollar:before, - .fa-funnel-dollar:before { - content: "\\f662"; - } - .fa-filter-circle-xmark:before { - content: "\\e17b"; - } - .fa-fingerprint:before { - content: "\\f577"; - } - .fa-fire:before { - content: "\\f06d"; - } - .fa-fire-burner:before { - content: "\\e4f1"; - } - .fa-fire-extinguisher:before { - content: "\\f134"; - } - .fa-fire-alt:before, - .fa-fire-flame-curved:before { - content: "\\f7e4"; - } - .fa-burn:before, - .fa-fire-flame-simple:before { - content: "\\f46a"; - } - .fa-fish:before { - content: "\\f578"; - } - .fa-fish-fins:before { - content: "\\e4f2"; - } - .fa-flag:before { - content: "\\f024"; - } - .fa-flag-checkered:before { - content: "\\f11e"; - } - .fa-flag-usa:before { - content: "\\f74d"; - } - .fa-flask:before { - content: "\\f0c3"; - } - .fa-flask-vial:before { - content: "\\e4f3"; - } - .fa-floppy-disk:before, - .fa-save:before { - content: "\\f0c7"; - } - .fa-florin-sign:before { - content: "\\e184"; - } - .fa-folder-blank:before, - .fa-folder:before { - content: "\\f07b"; - } - .fa-folder-closed:before { - content: "\\e185"; - } - .fa-folder-minus:before { - content: "\\f65d"; - } - .fa-folder-open:before { - content: "\\f07c"; - } - .fa-folder-plus:before { - content: "\\f65e"; - } - .fa-folder-tree:before { - content: "\\f802"; - } - .fa-font:before { - content: "\\f031"; - } - .fa-football-ball:before, - .fa-football:before { - content: "\\f44e"; - } - .fa-forward:before { - content: "\\f04e"; - } - .fa-fast-forward:before, - .fa-forward-fast:before { - content: "\\f050"; - } - .fa-forward-step:before, - .fa-step-forward:before { - content: "\\f051"; - } - .fa-franc-sign:before { - content: "\\e18f"; - } - .fa-frog:before { - content: "\\f52e"; - } - .fa-futbol-ball:before, - .fa-futbol:before, - .fa-soccer-ball:before { - content: "\\f1e3"; - } - .fa-g:before { - content: "\\47"; - } - .fa-gamepad:before { - content: "\\f11b"; - } - .fa-gas-pump:before { - content: "\\f52f"; - } - .fa-dashboard:before, - .fa-gauge-med:before, - .fa-gauge:before, - .fa-tachometer-alt-average:before { - content: "\\f624"; - } - .fa-gauge-high:before, - .fa-tachometer-alt-fast:before, - .fa-tachometer-alt:before { - content: "\\f625"; - } - .fa-gauge-simple-med:before, - .fa-gauge-simple:before, - .fa-tachometer-average:before { - content: "\\f629"; - } - .fa-gauge-simple-high:before, - .fa-tachometer-fast:before, - .fa-tachometer:before { - content: "\\f62a"; - } - .fa-gavel:before, - .fa-legal:before { - content: "\\f0e3"; - } - .fa-cog:before, - .fa-gear:before { - content: "\\f013"; - } - .fa-cogs:before, - .fa-gears:before { - content: "\\f085"; - } - .fa-gem:before { - content: "\\f3a5"; - } - .fa-genderless:before { - content: "\\f22d"; - } - .fa-ghost:before { - content: "\\f6e2"; - } - .fa-gift:before { - content: "\\f06b"; - } - .fa-gifts:before { - content: "\\f79c"; - } - .fa-glass-water:before { - content: "\\e4f4"; - } - .fa-glass-water-droplet:before { - content: "\\e4f5"; - } - .fa-glasses:before { - content: "\\f530"; - } - .fa-globe:before { - content: "\\f0ac"; - } - .fa-golf-ball-tee:before, - .fa-golf-ball:before { - content: "\\f450"; - } - .fa-gopuram:before { - content: "\\f664"; - } - .fa-graduation-cap:before, - .fa-mortar-board:before { - content: "\\f19d"; - } - .fa-greater-than:before { - content: "\\3e"; - } - .fa-greater-than-equal:before { - content: "\\f532"; - } - .fa-grip-horizontal:before, - .fa-grip:before { - content: "\\f58d"; - } - .fa-grip-lines:before { - content: "\\f7a4"; - } - .fa-grip-lines-vertical:before { - content: "\\f7a5"; - } - .fa-grip-vertical:before { - content: "\\f58e"; - } - .fa-group-arrows-rotate:before { - content: "\\e4f6"; - } - .fa-guarani-sign:before { - content: "\\e19a"; - } - .fa-guitar:before { - content: "\\f7a6"; - } - .fa-gun:before { - content: "\\e19b"; - } - .fa-h:before { - content: "\\48"; - } - .fa-hammer:before { - content: "\\f6e3"; - } - .fa-hamsa:before { - content: "\\f665"; - } - .fa-hand-paper:before, - .fa-hand:before { - content: "\\f256"; - } - .fa-hand-back-fist:before, - .fa-hand-rock:before { - content: "\\f255"; - } - .fa-allergies:before, - .fa-hand-dots:before { - content: "\\f461"; - } - .fa-fist-raised:before, - .fa-hand-fist:before { - content: "\\f6de"; - } - .fa-hand-holding:before { - content: "\\f4bd"; - } - .fa-hand-holding-dollar:before, - .fa-hand-holding-usd:before { - content: "\\f4c0"; - } - .fa-hand-holding-droplet:before, - .fa-hand-holding-water:before { - content: "\\f4c1"; - } - .fa-hand-holding-hand:before { - content: "\\e4f7"; - } - .fa-hand-holding-heart:before { - content: "\\f4be"; - } - .fa-hand-holding-medical:before { - content: "\\e05c"; - } - .fa-hand-lizard:before { - content: "\\f258"; - } - .fa-hand-middle-finger:before { - content: "\\f806"; - } - .fa-hand-peace:before { - content: "\\f25b"; - } - .fa-hand-point-down:before { - content: "\\f0a7"; - } - .fa-hand-point-left:before { - content: "\\f0a5"; - } - .fa-hand-point-right:before { - content: "\\f0a4"; - } - .fa-hand-point-up:before { - content: "\\f0a6"; - } - .fa-hand-pointer:before { - content: "\\f25a"; - } - .fa-hand-scissors:before { - content: "\\f257"; - } - .fa-hand-sparkles:before { - content: "\\e05d"; - } - .fa-hand-spock:before { - content: "\\f259"; - } - .fa-handcuffs:before { - content: "\\e4f8"; - } - .fa-hands:before, - .fa-sign-language:before, - .fa-signing:before { - content: "\\f2a7"; - } - .fa-american-sign-language-interpreting:before, - .fa-asl-interpreting:before, - .fa-hands-american-sign-language-interpreting:before, - .fa-hands-asl-interpreting:before { - content: "\\f2a3"; - } - .fa-hands-bound:before { - content: "\\e4f9"; - } - .fa-hands-bubbles:before, - .fa-hands-wash:before { - content: "\\e05e"; - } - .fa-hands-clapping:before { - content: "\\e1a8"; - } - .fa-hands-holding:before { - content: "\\f4c2"; - } - .fa-hands-holding-child:before { - content: "\\e4fa"; - } - .fa-hands-holding-circle:before { - content: "\\e4fb"; - } - .fa-hands-praying:before, - .fa-praying-hands:before { - content: "\\f684"; - } - .fa-handshake:before { - content: "\\f2b5"; - } - .fa-hands-helping:before, - .fa-handshake-angle:before { - content: "\\f4c4"; - } - .fa-handshake-alt:before, - .fa-handshake-simple:before { - content: "\\f4c6"; - } - .fa-handshake-alt-slash:before, - .fa-handshake-simple-slash:before { - content: "\\e05f"; - } - .fa-handshake-slash:before { - content: "\\e060"; - } - .fa-hanukiah:before { - content: "\\f6e6"; - } - .fa-hard-drive:before, - .fa-hdd:before { - content: "\\f0a0"; - } - .fa-hashtag:before { - content: "\\23"; - } - .fa-hat-cowboy:before { - content: "\\f8c0"; - } - .fa-hat-cowboy-side:before { - content: "\\f8c1"; - } - .fa-hat-wizard:before { - content: "\\f6e8"; - } - .fa-head-side-cough:before { - content: "\\e061"; - } - .fa-head-side-cough-slash:before { - content: "\\e062"; - } - .fa-head-side-mask:before { - content: "\\e063"; - } - .fa-head-side-virus:before { - content: "\\e064"; - } - .fa-header:before, - .fa-heading:before { - content: "\\f1dc"; - } - .fa-headphones:before { - content: "\\f025"; - } - .fa-headphones-alt:before, - .fa-headphones-simple:before { - content: "\\f58f"; - } - .fa-headset:before { - content: "\\f590"; - } - .fa-heart:before { - content: "\\f004"; - } - .fa-heart-circle-bolt:before { - content: "\\e4fc"; - } - .fa-heart-circle-check:before { - content: "\\e4fd"; - } - .fa-heart-circle-exclamation:before { - content: "\\e4fe"; - } - .fa-heart-circle-minus:before { - content: "\\e4ff"; - } - .fa-heart-circle-plus:before { - content: "\\e500"; - } - .fa-heart-circle-xmark:before { - content: "\\e501"; - } - .fa-heart-broken:before, - .fa-heart-crack:before { - content: "\\f7a9"; - } - .fa-heart-pulse:before, - .fa-heartbeat:before { - content: "\\f21e"; - } - .fa-helicopter:before { - content: "\\f533"; - } - .fa-helicopter-symbol:before { - content: "\\e502"; - } - .fa-hard-hat:before, - .fa-hat-hard:before, - .fa-helmet-safety:before { - content: "\\f807"; - } - .fa-helmet-un:before { - content: "\\e503"; - } - .fa-highlighter:before { - content: "\\f591"; - } - .fa-hill-avalanche:before { - content: "\\e507"; - } - .fa-hill-rockslide:before { - content: "\\e508"; - } - .fa-hippo:before { - content: "\\f6ed"; - } - .fa-hockey-puck:before { - content: "\\f453"; - } - .fa-holly-berry:before { - content: "\\f7aa"; - } - .fa-horse:before { - content: "\\f6f0"; - } - .fa-horse-head:before { - content: "\\f7ab"; - } - .fa-hospital-alt:before, - .fa-hospital-wide:before, - .fa-hospital:before { - content: "\\f0f8"; - } - .fa-hospital-user:before { - content: "\\f80d"; - } - .fa-hot-tub-person:before, - .fa-hot-tub:before { - content: "\\f593"; - } - .fa-hotdog:before { - content: "\\f80f"; - } - .fa-hotel:before { - content: "\\f594"; - } - .fa-hourglass-2:before, - .fa-hourglass-half:before, - .fa-hourglass:before { - content: "\\f254"; - } - .fa-hourglass-empty:before { - content: "\\f252"; - } - .fa-hourglass-3:before, - .fa-hourglass-end:before { - content: "\\f253"; - } - .fa-hourglass-1:before, - .fa-hourglass-start:before { - content: "\\f251"; - } - .fa-home-alt:before, - .fa-home-lg-alt:before, - .fa-home:before, - .fa-house:before { - content: "\\f015"; - } - .fa-home-lg:before, - .fa-house-chimney:before { - content: "\\e3af"; - } - .fa-house-chimney-crack:before, - .fa-house-damage:before { - content: "\\f6f1"; - } - .fa-clinic-medical:before, - .fa-house-chimney-medical:before { - content: "\\f7f2"; - } - .fa-house-chimney-user:before { - content: "\\e065"; - } - .fa-house-chimney-window:before { - content: "\\e00d"; - } - .fa-house-circle-check:before { - content: "\\e509"; - } - .fa-house-circle-exclamation:before { - content: "\\e50a"; - } - .fa-house-circle-xmark:before { - content: "\\e50b"; - } - .fa-house-crack:before { - content: "\\e3b1"; - } - .fa-house-fire:before { - content: "\\e50c"; - } - .fa-house-flag:before { - content: "\\e50d"; - } - .fa-house-flood-water:before { - content: "\\e50e"; - } - .fa-house-flood-water-circle-arrow-right:before { - content: "\\e50f"; - } - .fa-house-laptop:before, - .fa-laptop-house:before { - content: "\\e066"; - } - .fa-house-lock:before { - content: "\\e510"; - } - .fa-house-medical:before { - content: "\\e3b2"; - } - .fa-house-medical-circle-check:before { - content: "\\e511"; - } - .fa-house-medical-circle-exclamation:before { - content: "\\e512"; - } - .fa-house-medical-circle-xmark:before { - content: "\\e513"; - } - .fa-house-medical-flag:before { - content: "\\e514"; - } - .fa-house-signal:before { - content: "\\e012"; - } - .fa-house-tsunami:before { - content: "\\e515"; - } - .fa-home-user:before, - .fa-house-user:before { - content: "\\e1b0"; - } - .fa-hryvnia-sign:before, - .fa-hryvnia:before { - content: "\\f6f2"; - } - .fa-hurricane:before { - content: "\\f751"; - } - .fa-i:before { - content: "\\49"; - } - .fa-i-cursor:before { - content: "\\f246"; - } - .fa-ice-cream:before { - content: "\\f810"; - } - .fa-icicles:before { - content: "\\f7ad"; - } - .fa-heart-music-camera-bolt:before, - .fa-icons:before { - content: "\\f86d"; - } - .fa-id-badge:before { - content: "\\f2c1"; - } - .fa-drivers-license:before, - .fa-id-card:before { - content: "\\f2c2"; - } - .fa-id-card-alt:before, - .fa-id-card-clip:before { - content: "\\f47f"; - } - .fa-igloo:before { - content: "\\f7ae"; - } - .fa-image:before { - content: "\\f03e"; - } - .fa-image-portrait:before, - .fa-portrait:before { - content: "\\f3e0"; - } - .fa-images:before { - content: "\\f302"; - } - .fa-inbox:before { - content: "\\f01c"; - } - .fa-indent:before { - content: "\\f03c"; - } - .fa-indian-rupee-sign:before, - .fa-indian-rupee:before, - .fa-inr:before { - content: "\\e1bc"; - } - .fa-industry:before { - content: "\\f275"; - } - .fa-infinity:before { - content: "\\f534"; - } - .fa-info:before { - content: "\\f129"; - } - .fa-italic:before { - content: "\\f033"; - } - .fa-j:before { - content: "\\4a"; - } - .fa-jar:before { - content: "\\e516"; - } - .fa-jar-wheat:before { - content: "\\e517"; - } - .fa-jedi:before { - content: "\\f669"; - } - .fa-fighter-jet:before, - .fa-jet-fighter:before { - content: "\\f0fb"; - } - .fa-jet-fighter-up:before { - content: "\\e518"; - } - .fa-joint:before { - content: "\\f595"; - } - .fa-jug-detergent:before { - content: "\\e519"; - } - .fa-k:before { - content: "\\4b"; - } - .fa-kaaba:before { - content: "\\f66b"; - } - .fa-key:before { - content: "\\f084"; - } - .fa-keyboard:before { - content: "\\f11c"; - } - .fa-khanda:before { - content: "\\f66d"; - } - .fa-kip-sign:before { - content: "\\e1c4"; - } - .fa-first-aid:before, - .fa-kit-medical:before { - content: "\\f479"; - } - .fa-kitchen-set:before { - content: "\\e51a"; - } - .fa-kiwi-bird:before { - content: "\\f535"; - } - .fa-l:before { - content: "\\4c"; - } - .fa-land-mine-on:before { - content: "\\e51b"; - } - .fa-landmark:before { - content: "\\f66f"; - } - .fa-landmark-alt:before, - .fa-landmark-dome:before { - content: "\\f752"; - } - .fa-landmark-flag:before { - content: "\\e51c"; - } - .fa-language:before { - content: "\\f1ab"; - } - .fa-laptop:before { - content: "\\f109"; - } - .fa-laptop-code:before { - content: "\\f5fc"; - } - .fa-laptop-file:before { - content: "\\e51d"; - } - .fa-laptop-medical:before { - content: "\\f812"; - } - .fa-lari-sign:before { - content: "\\e1c8"; - } - .fa-layer-group:before { - content: "\\f5fd"; - } - .fa-leaf:before { - content: "\\f06c"; - } - .fa-left-long:before, - .fa-long-arrow-alt-left:before { - content: "\\f30a"; - } - .fa-arrows-alt-h:before, - .fa-left-right:before { - content: "\\f337"; - } - .fa-lemon:before { - content: "\\f094"; - } - .fa-less-than:before { - content: "\\3c"; - } - .fa-less-than-equal:before { - content: "\\f537"; - } - .fa-life-ring:before { - content: "\\f1cd"; - } - .fa-lightbulb:before { - content: "\\f0eb"; - } - .fa-lines-leaning:before { - content: "\\e51e"; - } - .fa-chain:before, - .fa-link:before { - content: "\\f0c1"; - } - .fa-chain-broken:before, - .fa-chain-slash:before, - .fa-link-slash:before, - .fa-unlink:before { - content: "\\f127"; - } - .fa-lira-sign:before { - content: "\\f195"; - } - .fa-list-squares:before, - .fa-list:before { - content: "\\f03a"; - } - .fa-list-check:before, - .fa-tasks:before { - content: "\\f0ae"; - } - .fa-list-1-2:before, - .fa-list-numeric:before, - .fa-list-ol:before { - content: "\\f0cb"; - } - .fa-list-dots:before, - .fa-list-ul:before { - content: "\\f0ca"; - } - .fa-litecoin-sign:before { - content: "\\e1d3"; - } - .fa-location-arrow:before { - content: "\\f124"; - } - .fa-location-crosshairs:before, - .fa-location:before { - content: "\\f601"; - } - .fa-location-dot:before, - .fa-map-marker-alt:before { - content: "\\f3c5"; - } - .fa-location-pin:before, - .fa-map-marker:before { - content: "\\f041"; - } - .fa-location-pin-lock:before { - content: "\\e51f"; - } - .fa-lock:before { - content: "\\f023"; - } - .fa-lock-open:before { - content: "\\f3c1"; - } - .fa-locust:before { - content: "\\e520"; - } - .fa-lungs:before { - content: "\\f604"; - } - .fa-lungs-virus:before { - content: "\\e067"; - } - .fa-m:before { - content: "\\4d"; - } - .fa-magnet:before { - content: "\\f076"; - } - .fa-magnifying-glass:before, - .fa-search:before { - content: "\\f002"; - } - .fa-magnifying-glass-arrow-right:before { - content: "\\e521"; - } - .fa-magnifying-glass-chart:before { - content: "\\e522"; - } - .fa-magnifying-glass-dollar:before, - .fa-search-dollar:before { - content: "\\f688"; - } - .fa-magnifying-glass-location:before, - .fa-search-location:before { - content: "\\f689"; - } - .fa-magnifying-glass-minus:before, - .fa-search-minus:before { - content: "\\f010"; - } - .fa-magnifying-glass-plus:before, - .fa-search-plus:before { - content: "\\f00e"; - } - .fa-manat-sign:before { - content: "\\e1d5"; - } - .fa-map:before { - content: "\\f279"; - } - .fa-map-location:before, - .fa-map-marked:before { - content: "\\f59f"; - } - .fa-map-location-dot:before, - .fa-map-marked-alt:before { - content: "\\f5a0"; - } - .fa-map-pin:before { - content: "\\f276"; - } - .fa-marker:before { - content: "\\f5a1"; - } - .fa-mars:before { - content: "\\f222"; - } - .fa-mars-and-venus:before { - content: "\\f224"; - } - .fa-mars-and-venus-burst:before { - content: "\\e523"; - } - .fa-mars-double:before { - content: "\\f227"; - } - .fa-mars-stroke:before { - content: "\\f229"; - } - .fa-mars-stroke-h:before, - .fa-mars-stroke-right:before { - content: "\\f22b"; - } - .fa-mars-stroke-up:before, - .fa-mars-stroke-v:before { - content: "\\f22a"; - } - .fa-glass-martini-alt:before, - .fa-martini-glass:before { - content: "\\f57b"; - } - .fa-cocktail:before, - .fa-martini-glass-citrus:before { - content: "\\f561"; - } - .fa-glass-martini:before, - .fa-martini-glass-empty:before { - content: "\\f000"; - } - .fa-mask:before { - content: "\\f6fa"; - } - .fa-mask-face:before { - content: "\\e1d7"; - } - .fa-mask-ventilator:before { - content: "\\e524"; - } - .fa-masks-theater:before, - .fa-theater-masks:before { - content: "\\f630"; - } - .fa-mattress-pillow:before { - content: "\\e525"; - } - .fa-expand-arrows-alt:before, - .fa-maximize:before { - content: "\\f31e"; - } - .fa-medal:before { - content: "\\f5a2"; - } - .fa-memory:before { - content: "\\f538"; - } - .fa-menorah:before { - content: "\\f676"; - } - .fa-mercury:before { - content: "\\f223"; - } - .fa-comment-alt:before, - .fa-message:before { - content: "\\f27a"; - } - .fa-meteor:before { - content: "\\f753"; - } - .fa-microchip:before { - content: "\\f2db"; - } - .fa-microphone:before { - content: "\\f130"; - } - .fa-microphone-alt:before, - .fa-microphone-lines:before { - content: "\\f3c9"; - } - .fa-microphone-alt-slash:before, - .fa-microphone-lines-slash:before { - content: "\\f539"; - } - .fa-microphone-slash:before { - content: "\\f131"; - } - .fa-microscope:before { - content: "\\f610"; - } - .fa-mill-sign:before { - content: "\\e1ed"; - } - .fa-compress-arrows-alt:before, - .fa-minimize:before { - content: "\\f78c"; - } - .fa-minus:before, - .fa-subtract:before { - content: "\\f068"; - } - .fa-mitten:before { - content: "\\f7b5"; - } - .fa-mobile-android:before, - .fa-mobile-phone:before, - .fa-mobile:before { - content: "\\f3ce"; - } - .fa-mobile-button:before { - content: "\\f10b"; - } - .fa-mobile-retro:before { - content: "\\e527"; - } - .fa-mobile-android-alt:before, - .fa-mobile-screen:before { - content: "\\f3cf"; - } - .fa-mobile-alt:before, - .fa-mobile-screen-button:before { - content: "\\f3cd"; - } - .fa-money-bill:before { - content: "\\f0d6"; - } - .fa-money-bill-1:before, - .fa-money-bill-alt:before { - content: "\\f3d1"; - } - .fa-money-bill-1-wave:before, - .fa-money-bill-wave-alt:before { - content: "\\f53b"; - } - .fa-money-bill-transfer:before { - content: "\\e528"; - } - .fa-money-bill-trend-up:before { - content: "\\e529"; - } - .fa-money-bill-wave:before { - content: "\\f53a"; - } - .fa-money-bill-wheat:before { - content: "\\e52a"; - } - .fa-money-bills:before { - content: "\\e1f3"; - } - .fa-money-check:before { - content: "\\f53c"; - } - .fa-money-check-alt:before, - .fa-money-check-dollar:before { - content: "\\f53d"; - } - .fa-monument:before { - content: "\\f5a6"; - } - .fa-moon:before { - content: "\\f186"; - } - .fa-mortar-pestle:before { - content: "\\f5a7"; - } - .fa-mosque:before { - content: "\\f678"; - } - .fa-mosquito:before { - content: "\\e52b"; - } - .fa-mosquito-net:before { - content: "\\e52c"; - } - .fa-motorcycle:before { - content: "\\f21c"; - } - .fa-mound:before { - content: "\\e52d"; - } - .fa-mountain:before { - content: "\\f6fc"; - } - .fa-mountain-city:before { - content: "\\e52e"; - } - .fa-mountain-sun:before { - content: "\\e52f"; - } - .fa-mug-hot:before { - content: "\\f7b6"; - } - .fa-coffee:before, - .fa-mug-saucer:before { - content: "\\f0f4"; - } - .fa-music:before { - content: "\\f001"; - } - .fa-n:before { - content: "\\4e"; - } - .fa-naira-sign:before { - content: "\\e1f6"; - } - .fa-network-wired:before { - content: "\\f6ff"; - } - .fa-neuter:before { - content: "\\f22c"; - } - .fa-newspaper:before { - content: "\\f1ea"; - } - .fa-not-equal:before { - content: "\\f53e"; - } - .fa-note-sticky:before, - .fa-sticky-note:before { - content: "\\f249"; - } - .fa-notes-medical:before { - content: "\\f481"; - } - .fa-o:before { - content: "\\4f"; - } - .fa-object-group:before { - content: "\\f247"; - } - .fa-object-ungroup:before { - content: "\\f248"; - } - .fa-oil-can:before { - content: "\\f613"; - } - .fa-oil-well:before { - content: "\\e532"; - } - .fa-om:before { - content: "\\f679"; - } - .fa-otter:before { - content: "\\f700"; - } - .fa-dedent:before, - .fa-outdent:before { - content: "\\f03b"; - } - .fa-p:before { - content: "\\50"; - } - .fa-pager:before { - content: "\\f815"; - } - .fa-paint-roller:before { - content: "\\f5aa"; - } - .fa-paint-brush:before, - .fa-paintbrush:before { - content: "\\f1fc"; - } - .fa-palette:before { - content: "\\f53f"; - } - .fa-pallet:before { - content: "\\f482"; - } - .fa-panorama:before { - content: "\\e209"; - } - .fa-paper-plane:before { - content: "\\f1d8"; - } - .fa-paperclip:before { - content: "\\f0c6"; - } - .fa-parachute-box:before { - content: "\\f4cd"; - } - .fa-paragraph:before { - content: "\\f1dd"; - } - .fa-passport:before { - content: "\\f5ab"; - } - .fa-file-clipboard:before, - .fa-paste:before { - content: "\\f0ea"; - } - .fa-pause:before { - content: "\\f04c"; - } - .fa-paw:before { - content: "\\f1b0"; - } - .fa-peace:before { - content: "\\f67c"; - } - .fa-pen:before { - content: "\\f304"; - } - .fa-pen-alt:before, - .fa-pen-clip:before { - content: "\\f305"; - } - .fa-pen-fancy:before { - content: "\\f5ac"; - } - .fa-pen-nib:before { - content: "\\f5ad"; - } - .fa-pen-ruler:before, - .fa-pencil-ruler:before { - content: "\\f5ae"; - } - .fa-edit:before, - .fa-pen-to-square:before { - content: "\\f044"; - } - .fa-pencil-alt:before, - .fa-pencil:before { - content: "\\f303"; - } - .fa-people-arrows-left-right:before, - .fa-people-arrows:before { - content: "\\e068"; - } - .fa-people-carry-box:before, - .fa-people-carry:before { - content: "\\f4ce"; - } - .fa-people-group:before { - content: "\\e533"; - } - .fa-people-line:before { - content: "\\e534"; - } - .fa-people-pulling:before { - content: "\\e535"; - } - .fa-people-robbery:before { - content: "\\e536"; - } - .fa-people-roof:before { - content: "\\e537"; - } - .fa-pepper-hot:before { - content: "\\f816"; - } - .fa-percent:before, - .fa-percentage:before { - content: "\\25"; - } - .fa-male:before, - .fa-person:before { - content: "\\f183"; - } - .fa-person-arrow-down-to-line:before { - content: "\\e538"; - } - .fa-person-arrow-up-from-line:before { - content: "\\e539"; - } - .fa-biking:before, - .fa-person-biking:before { - content: "\\f84a"; - } - .fa-person-booth:before { - content: "\\f756"; - } - .fa-person-breastfeeding:before { - content: "\\e53a"; - } - .fa-person-burst:before { - content: "\\e53b"; - } - .fa-person-cane:before { - content: "\\e53c"; - } - .fa-person-chalkboard:before { - content: "\\e53d"; - } - .fa-person-circle-check:before { - content: "\\e53e"; - } - .fa-person-circle-exclamation:before { - content: "\\e53f"; - } - .fa-person-circle-minus:before { - content: "\\e540"; - } - .fa-person-circle-plus:before { - content: "\\e541"; - } - .fa-person-circle-question:before { - content: "\\e542"; - } - .fa-person-circle-xmark:before { - content: "\\e543"; - } - .fa-digging:before, - .fa-person-digging:before { - content: "\\f85e"; - } - .fa-diagnoses:before, - .fa-person-dots-from-line:before { - content: "\\f470"; - } - .fa-female:before, - .fa-person-dress:before { - content: "\\f182"; - } - .fa-person-dress-burst:before { - content: "\\e544"; - } - .fa-person-drowning:before { - content: "\\e545"; - } - .fa-person-falling:before { - content: "\\e546"; - } - .fa-person-falling-burst:before { - content: "\\e547"; - } - .fa-person-half-dress:before { - content: "\\e548"; - } - .fa-person-harassing:before { - content: "\\e549"; - } - .fa-hiking:before, - .fa-person-hiking:before { - content: "\\f6ec"; - } - .fa-person-military-pointing:before { - content: "\\e54a"; - } - .fa-person-military-rifle:before { - content: "\\e54b"; - } - .fa-person-military-to-person:before { - content: "\\e54c"; - } - .fa-person-praying:before, - .fa-pray:before { - content: "\\f683"; - } - .fa-person-pregnant:before { - content: "\\e31e"; - } - .fa-person-rays:before { - content: "\\e54d"; - } - .fa-person-rifle:before { - content: "\\e54e"; - } - .fa-person-running:before, - .fa-running:before { - content: "\\f70c"; - } - .fa-person-shelter:before { - content: "\\e54f"; - } - .fa-person-skating:before, - .fa-skating:before { - content: "\\f7c5"; - } - .fa-person-skiing:before, - .fa-skiing:before { - content: "\\f7c9"; - } - .fa-person-skiing-nordic:before, - .fa-skiing-nordic:before { - content: "\\f7ca"; - } - .fa-person-snowboarding:before, - .fa-snowboarding:before { - content: "\\f7ce"; - } - .fa-person-swimming:before, - .fa-swimmer:before { - content: "\\f5c4"; - } - .fa-person-through-window:before { - content: "\\e433"; - } - .fa-person-walking:before, - .fa-walking:before { - content: "\\f554"; - } - .fa-person-walking-arrow-loop-left:before { - content: "\\e551"; - } - .fa-person-walking-arrow-right:before { - content: "\\e552"; - } - .fa-person-walking-dashed-line-arrow-right:before { - content: "\\e553"; - } - .fa-person-walking-luggage:before { - content: "\\e554"; - } - .fa-blind:before, - .fa-person-walking-with-cane:before { - content: "\\f29d"; - } - .fa-peseta-sign:before { - content: "\\e221"; - } - .fa-peso-sign:before { - content: "\\e222"; - } - .fa-phone:before { - content: "\\f095"; - } - .fa-phone-alt:before, - .fa-phone-flip:before { - content: "\\f879"; - } - .fa-phone-slash:before { - content: "\\f3dd"; - } - .fa-phone-volume:before, - .fa-volume-control-phone:before { - content: "\\f2a0"; - } - .fa-photo-film:before, - .fa-photo-video:before { - content: "\\f87c"; - } - .fa-piggy-bank:before { - content: "\\f4d3"; - } - .fa-pills:before { - content: "\\f484"; - } - .fa-pizza-slice:before { - content: "\\f818"; - } - .fa-place-of-worship:before { - content: "\\f67f"; - } - .fa-plane:before { - content: "\\f072"; - } - .fa-plane-arrival:before { - content: "\\f5af"; - } - .fa-plane-circle-check:before { - content: "\\e555"; - } - .fa-plane-circle-exclamation:before { - content: "\\e556"; - } - .fa-plane-circle-xmark:before { - content: "\\e557"; - } - .fa-plane-departure:before { - content: "\\f5b0"; - } - .fa-plane-lock:before { - content: "\\e558"; - } - .fa-plane-slash:before { - content: "\\e069"; - } - .fa-plane-up:before { - content: "\\e22d"; - } - .fa-plant-wilt:before { - content: "\\e43b"; - } - .fa-plate-wheat:before { - content: "\\e55a"; - } - .fa-play:before { - content: "\\f04b"; - } - .fa-plug:before { - content: "\\f1e6"; - } - .fa-plug-circle-bolt:before { - content: "\\e55b"; - } - .fa-plug-circle-check:before { - content: "\\e55c"; - } - .fa-plug-circle-exclamation:before { - content: "\\e55d"; - } - .fa-plug-circle-minus:before { - content: "\\e55e"; - } - .fa-plug-circle-plus:before { - content: "\\e55f"; - } - .fa-plug-circle-xmark:before { - content: "\\e560"; - } - .fa-add:before, - .fa-plus:before { - content: "\\2b"; - } - .fa-plus-minus:before { - content: "\\e43c"; - } - .fa-podcast:before { - content: "\\f2ce"; - } - .fa-poo:before { - content: "\\f2fe"; - } - .fa-poo-bolt:before, - .fa-poo-storm:before { - content: "\\f75a"; - } - .fa-poop:before { - content: "\\f619"; - } - .fa-power-off:before { - content: "\\f011"; - } - .fa-prescription:before { - content: "\\f5b1"; - } - .fa-prescription-bottle:before { - content: "\\f485"; - } - .fa-prescription-bottle-alt:before, - .fa-prescription-bottle-medical:before { - content: "\\f486"; - } - .fa-print:before { - content: "\\f02f"; - } - .fa-pump-medical:before { - content: "\\e06a"; - } - .fa-pump-soap:before { - content: "\\e06b"; - } - .fa-puzzle-piece:before { - content: "\\f12e"; - } - .fa-q:before { - content: "\\51"; - } - .fa-qrcode:before { - content: "\\f029"; - } - .fa-question:before { - content: "\\3f"; - } - .fa-quote-left-alt:before, - .fa-quote-left:before { - content: "\\f10d"; - } - .fa-quote-right-alt:before, - .fa-quote-right:before { - content: "\\f10e"; - } - .fa-r:before { - content: "\\52"; - } - .fa-radiation:before { - content: "\\f7b9"; - } - .fa-radio:before { - content: "\\f8d7"; - } - .fa-rainbow:before { - content: "\\f75b"; - } - .fa-ranking-star:before { - content: "\\e561"; - } - .fa-receipt:before { - content: "\\f543"; - } - .fa-record-vinyl:before { - content: "\\f8d9"; - } - .fa-ad:before, - .fa-rectangle-ad:before { - content: "\\f641"; - } - .fa-list-alt:before, - .fa-rectangle-list:before { - content: "\\f022"; - } - .fa-rectangle-times:before, - .fa-rectangle-xmark:before, - .fa-times-rectangle:before, - .fa-window-close:before { - content: "\\f410"; - } - .fa-recycle:before { - content: "\\f1b8"; - } - .fa-registered:before { - content: "\\f25d"; - } - .fa-repeat:before { - content: "\\f363"; - } - .fa-mail-reply:before, - .fa-reply:before { - content: "\\f3e5"; - } - .fa-mail-reply-all:before, - .fa-reply-all:before { - content: "\\f122"; - } - .fa-republican:before { - content: "\\f75e"; - } - .fa-restroom:before { - content: "\\f7bd"; - } - .fa-retweet:before { - content: "\\f079"; - } - .fa-ribbon:before { - content: "\\f4d6"; - } - .fa-right-from-bracket:before, - .fa-sign-out-alt:before { - content: "\\f2f5"; - } - .fa-exchange-alt:before, - .fa-right-left:before { - content: "\\f362"; - } - .fa-long-arrow-alt-right:before, - .fa-right-long:before { - content: "\\f30b"; - } - .fa-right-to-bracket:before, - .fa-sign-in-alt:before { - content: "\\f2f6"; - } - .fa-ring:before { - content: "\\f70b"; - } - .fa-road:before { - content: "\\f018"; - } - .fa-road-barrier:before { - content: "\\e562"; - } - .fa-road-bridge:before { - content: "\\e563"; - } - .fa-road-circle-check:before { - content: "\\e564"; - } - .fa-road-circle-exclamation:before { - content: "\\e565"; - } - .fa-road-circle-xmark:before { - content: "\\e566"; - } - .fa-road-lock:before { - content: "\\e567"; - } - .fa-road-spikes:before { - content: "\\e568"; - } - .fa-robot:before { - content: "\\f544"; - } - .fa-rocket:before { - content: "\\f135"; - } - .fa-rotate:before, - .fa-sync-alt:before { - content: "\\f2f1"; - } - .fa-rotate-back:before, - .fa-rotate-backward:before, - .fa-rotate-left:before, - .fa-undo-alt:before { - content: "\\f2ea"; - } - .fa-redo-alt:before, - .fa-rotate-forward:before, - .fa-rotate-right:before { - content: "\\f2f9"; - } - .fa-route:before { - content: "\\f4d7"; - } - .fa-feed:before, - .fa-rss:before { - content: "\\f09e"; - } - .fa-rouble:before, - .fa-rub:before, - .fa-ruble-sign:before, - .fa-ruble:before { - content: "\\f158"; - } - .fa-rug:before { - content: "\\e569"; - } - .fa-ruler:before { - content: "\\f545"; - } - .fa-ruler-combined:before { - content: "\\f546"; - } - .fa-ruler-horizontal:before { - content: "\\f547"; - } - .fa-ruler-vertical:before { - content: "\\f548"; - } - .fa-rupee-sign:before, - .fa-rupee:before { - content: "\\f156"; - } - .fa-rupiah-sign:before { - content: "\\e23d"; - } - .fa-s:before { - content: "\\53"; - } - .fa-sack-dollar:before { - content: "\\f81d"; - } - .fa-sack-xmark:before { - content: "\\e56a"; - } - .fa-sailboat:before { - content: "\\e445"; - } - .fa-satellite:before { - content: "\\f7bf"; - } - .fa-satellite-dish:before { - content: "\\f7c0"; - } - .fa-balance-scale:before, - .fa-scale-balanced:before { - content: "\\f24e"; - } - .fa-balance-scale-left:before, - .fa-scale-unbalanced:before { - content: "\\f515"; - } - .fa-balance-scale-right:before, - .fa-scale-unbalanced-flip:before { - content: "\\f516"; - } - .fa-school:before { - content: "\\f549"; - } - .fa-school-circle-check:before { - content: "\\e56b"; - } - .fa-school-circle-exclamation:before { - content: "\\e56c"; - } - .fa-school-circle-xmark:before { - content: "\\e56d"; - } - .fa-school-flag:before { - content: "\\e56e"; - } - .fa-school-lock:before { - content: "\\e56f"; - } - .fa-cut:before, - .fa-scissors:before { - content: "\\f0c4"; - } - .fa-screwdriver:before { - content: "\\f54a"; - } - .fa-screwdriver-wrench:before, - .fa-tools:before { - content: "\\f7d9"; - } - .fa-scroll:before { - content: "\\f70e"; - } - .fa-scroll-torah:before, - .fa-torah:before { - content: "\\f6a0"; - } - .fa-sd-card:before { - content: "\\f7c2"; - } - .fa-section:before { - content: "\\e447"; - } - .fa-seedling:before, - .fa-sprout:before { - content: "\\f4d8"; - } - .fa-server:before { - content: "\\f233"; - } - .fa-shapes:before, - .fa-triangle-circle-square:before { - content: "\\f61f"; - } - .fa-arrow-turn-right:before, - .fa-mail-forward:before, - .fa-share:before { - content: "\\f064"; - } - .fa-share-from-square:before, - .fa-share-square:before { - content: "\\f14d"; - } - .fa-share-alt:before, - .fa-share-nodes:before { - content: "\\f1e0"; - } - .fa-sheet-plastic:before { - content: "\\e571"; - } - .fa-ils:before, - .fa-shekel-sign:before, - .fa-shekel:before, - .fa-sheqel-sign:before, - .fa-sheqel:before { - content: "\\f20b"; - } - .fa-shield-blank:before, - .fa-shield:before { - content: "\\f132"; - } - .fa-shield-cat:before { - content: "\\e572"; - } - .fa-shield-dog:before { - content: "\\e573"; - } - .fa-shield-alt:before, - .fa-shield-halved:before { - content: "\\f3ed"; - } - .fa-shield-heart:before { - content: "\\e574"; - } - .fa-shield-virus:before { - content: "\\e06c"; - } - .fa-ship:before { - content: "\\f21a"; - } - .fa-shirt:before, - .fa-t-shirt:before, - .fa-tshirt:before { - content: "\\f553"; - } - .fa-shoe-prints:before { - content: "\\f54b"; - } - .fa-shop:before, - .fa-store-alt:before { - content: "\\f54f"; - } - .fa-shop-lock:before { - content: "\\e4a5"; - } - .fa-shop-slash:before, - .fa-store-alt-slash:before { - content: "\\e070"; - } - .fa-shower:before { - content: "\\f2cc"; - } - .fa-shrimp:before { - content: "\\e448"; - } - .fa-random:before, - .fa-shuffle:before { - content: "\\f074"; - } - .fa-shuttle-space:before, - .fa-space-shuttle:before { - content: "\\f197"; - } - .fa-sign-hanging:before, - .fa-sign:before { - content: "\\f4d9"; - } - .fa-signal-5:before, - .fa-signal-perfect:before, - .fa-signal:before { - content: "\\f012"; - } - .fa-signature:before { - content: "\\f5b7"; - } - .fa-map-signs:before, - .fa-signs-post:before { - content: "\\f277"; - } - .fa-sim-card:before { - content: "\\f7c4"; - } - .fa-sink:before { - content: "\\e06d"; - } - .fa-sitemap:before { - content: "\\f0e8"; - } - .fa-skull:before { - content: "\\f54c"; - } - .fa-skull-crossbones:before { - content: "\\f714"; - } - .fa-slash:before { - content: "\\f715"; - } - .fa-sleigh:before { - content: "\\f7cc"; - } - .fa-sliders-h:before, - .fa-sliders:before { - content: "\\f1de"; - } - .fa-smog:before { - content: "\\f75f"; - } - .fa-smoking:before { - content: "\\f48d"; - } - .fa-snowflake:before { - content: "\\f2dc"; - } - .fa-snowman:before { - content: "\\f7d0"; - } - .fa-snowplow:before { - content: "\\f7d2"; - } - .fa-soap:before { - content: "\\e06e"; - } - .fa-socks:before { - content: "\\f696"; - } - .fa-solar-panel:before { - content: "\\f5ba"; - } - .fa-sort:before, - .fa-unsorted:before { - content: "\\f0dc"; - } - .fa-sort-desc:before, - .fa-sort-down:before { - content: "\\f0dd"; - } - .fa-sort-asc:before, - .fa-sort-up:before { - content: "\\f0de"; - } - .fa-spa:before { - content: "\\f5bb"; - } - .fa-pastafarianism:before, - .fa-spaghetti-monster-flying:before { - content: "\\f67b"; - } - .fa-spell-check:before { - content: "\\f891"; - } - .fa-spider:before { - content: "\\f717"; - } - .fa-spinner:before { - content: "\\f110"; - } - .fa-splotch:before { - content: "\\f5bc"; - } - .fa-spoon:before, - .fa-utensil-spoon:before { - content: "\\f2e5"; - } - .fa-spray-can:before { - content: "\\f5bd"; - } - .fa-air-freshener:before, - .fa-spray-can-sparkles:before { - content: "\\f5d0"; - } - .fa-square:before { - content: "\\f0c8"; - } - .fa-external-link-square:before, - .fa-square-arrow-up-right:before { - content: "\\f14c"; - } - .fa-caret-square-down:before, - .fa-square-caret-down:before { - content: "\\f150"; - } - .fa-caret-square-left:before, - .fa-square-caret-left:before { - content: "\\f191"; - } - .fa-caret-square-right:before, - .fa-square-caret-right:before { - content: "\\f152"; - } - .fa-caret-square-up:before, - .fa-square-caret-up:before { - content: "\\f151"; - } - .fa-check-square:before, - .fa-square-check:before { - content: "\\f14a"; - } - .fa-envelope-square:before, - .fa-square-envelope:before { - content: "\\f199"; - } - .fa-square-full:before { - content: "\\f45c"; - } - .fa-h-square:before, - .fa-square-h:before { - content: "\\f0fd"; - } - .fa-minus-square:before, - .fa-square-minus:before { - content: "\\f146"; - } - .fa-square-nfi:before { - content: "\\e576"; - } - .fa-parking:before, - .fa-square-parking:before { - content: "\\f540"; - } - .fa-pen-square:before, - .fa-pencil-square:before, - .fa-square-pen:before { - content: "\\f14b"; - } - .fa-square-person-confined:before { - content: "\\e577"; - } - .fa-phone-square:before, - .fa-square-phone:before { - content: "\\f098"; - } - .fa-phone-square-alt:before, - .fa-square-phone-flip:before { - content: "\\f87b"; - } - .fa-plus-square:before, - .fa-square-plus:before { - content: "\\f0fe"; - } - .fa-poll-h:before, - .fa-square-poll-horizontal:before { - content: "\\f682"; - } - .fa-poll:before, - .fa-square-poll-vertical:before { - content: "\\f681"; - } - .fa-square-root-alt:before, - .fa-square-root-variable:before { - content: "\\f698"; - } - .fa-rss-square:before, - .fa-square-rss:before { - content: "\\f143"; - } - .fa-share-alt-square:before, - .fa-square-share-nodes:before { - content: "\\f1e1"; - } - .fa-external-link-square-alt:before, - .fa-square-up-right:before { - content: "\\f360"; - } - .fa-square-virus:before { - content: "\\e578"; - } - .fa-square-xmark:before, - .fa-times-square:before, - .fa-xmark-square:before { - content: "\\f2d3"; - } - .fa-rod-asclepius:before, - .fa-rod-snake:before, - .fa-staff-aesculapius:before, - .fa-staff-snake:before { - content: "\\e579"; - } - .fa-stairs:before { - content: "\\e289"; - } - .fa-stamp:before { - content: "\\f5bf"; - } - .fa-star:before { - content: "\\f005"; - } - .fa-star-and-crescent:before { - content: "\\f699"; - } - .fa-star-half:before { - content: "\\f089"; - } - .fa-star-half-alt:before, - .fa-star-half-stroke:before { - content: "\\f5c0"; - } - .fa-star-of-david:before { - content: "\\f69a"; - } - .fa-star-of-life:before { - content: "\\f621"; - } - .fa-gbp:before, - .fa-pound-sign:before, - .fa-sterling-sign:before { - content: "\\f154"; - } - .fa-stethoscope:before { - content: "\\f0f1"; - } - .fa-stop:before { - content: "\\f04d"; - } - .fa-stopwatch:before { - content: "\\f2f2"; - } - .fa-stopwatch-20:before { - content: "\\e06f"; - } - .fa-store:before { - content: "\\f54e"; - } - .fa-store-slash:before { - content: "\\e071"; - } - .fa-street-view:before { - content: "\\f21d"; - } - .fa-strikethrough:before { - content: "\\f0cc"; - } - .fa-stroopwafel:before { - content: "\\f551"; - } - .fa-subscript:before { - content: "\\f12c"; - } - .fa-suitcase:before { - content: "\\f0f2"; - } - .fa-medkit:before, - .fa-suitcase-medical:before { - content: "\\f0fa"; - } - .fa-suitcase-rolling:before { - content: "\\f5c1"; - } - .fa-sun:before { - content: "\\f185"; - } - .fa-sun-plant-wilt:before { - content: "\\e57a"; - } - .fa-superscript:before { - content: "\\f12b"; - } - .fa-swatchbook:before { - content: "\\f5c3"; - } - .fa-synagogue:before { - content: "\\f69b"; - } - .fa-syringe:before { - content: "\\f48e"; - } - .fa-t:before { - content: "\\54"; - } - .fa-table:before { - content: "\\f0ce"; - } - .fa-table-cells:before, - .fa-th:before { - content: "\\f00a"; - } - .fa-table-cells-large:before, - .fa-th-large:before { - content: "\\f009"; - } - .fa-columns:before, - .fa-table-columns:before { - content: "\\f0db"; - } - .fa-table-list:before, - .fa-th-list:before { - content: "\\f00b"; - } - .fa-ping-pong-paddle-ball:before, - .fa-table-tennis-paddle-ball:before, - .fa-table-tennis:before { - content: "\\f45d"; - } - .fa-tablet-android:before, - .fa-tablet:before { - content: "\\f3fb"; - } - .fa-tablet-button:before { - content: "\\f10a"; - } - .fa-tablet-alt:before, - .fa-tablet-screen-button:before { - content: "\\f3fa"; - } - .fa-tablets:before { - content: "\\f490"; - } - .fa-digital-tachograph:before, - .fa-tachograph-digital:before { - content: "\\f566"; - } - .fa-tag:before { - content: "\\f02b"; - } - .fa-tags:before { - content: "\\f02c"; - } - .fa-tape:before { - content: "\\f4db"; - } - .fa-tarp:before { - content: "\\e57b"; - } - .fa-tarp-droplet:before { - content: "\\e57c"; - } - .fa-cab:before, - .fa-taxi:before { - content: "\\f1ba"; - } - .fa-teeth:before { - content: "\\f62e"; - } - .fa-teeth-open:before { - content: "\\f62f"; - } - .fa-temperature-arrow-down:before, - .fa-temperature-down:before { - content: "\\e03f"; - } - .fa-temperature-arrow-up:before, - .fa-temperature-up:before { - content: "\\e040"; - } - .fa-temperature-0:before, - .fa-temperature-empty:before, - .fa-thermometer-0:before, - .fa-thermometer-empty:before { - content: "\\f2cb"; - } - .fa-temperature-4:before, - .fa-temperature-full:before, - .fa-thermometer-4:before, - .fa-thermometer-full:before { - content: "\\f2c7"; - } - .fa-temperature-2:before, - .fa-temperature-half:before, - .fa-thermometer-2:before, - .fa-thermometer-half:before { - content: "\\f2c9"; - } - .fa-temperature-high:before { - content: "\\f769"; - } - .fa-temperature-low:before { - content: "\\f76b"; - } - .fa-temperature-1:before, - .fa-temperature-quarter:before, - .fa-thermometer-1:before, - .fa-thermometer-quarter:before { - content: "\\f2ca"; - } - .fa-temperature-3:before, - .fa-temperature-three-quarters:before, - .fa-thermometer-3:before, - .fa-thermometer-three-quarters:before { - content: "\\f2c8"; - } - .fa-tenge-sign:before, - .fa-tenge:before { - content: "\\f7d7"; - } - .fa-tent:before { - content: "\\e57d"; - } - .fa-tent-arrow-down-to-line:before { - content: "\\e57e"; - } - .fa-tent-arrow-left-right:before { - content: "\\e57f"; - } - .fa-tent-arrow-turn-left:before { - content: "\\e580"; - } - .fa-tent-arrows-down:before { - content: "\\e581"; - } - .fa-tents:before { - content: "\\e582"; - } - .fa-terminal:before { - content: "\\f120"; - } - .fa-text-height:before { - content: "\\f034"; - } - .fa-remove-format:before, - .fa-text-slash:before { - content: "\\f87d"; - } - .fa-text-width:before { - content: "\\f035"; - } - .fa-thermometer:before { - content: "\\f491"; - } - .fa-thumbs-down:before { - content: "\\f165"; - } - .fa-thumbs-up:before { - content: "\\f164"; - } - .fa-thumb-tack:before, - .fa-thumbtack:before { - content: "\\f08d"; - } - .fa-ticket:before { - content: "\\f145"; - } - .fa-ticket-alt:before, - .fa-ticket-simple:before { - content: "\\f3ff"; - } - .fa-timeline:before { - content: "\\e29c"; - } - .fa-toggle-off:before { - content: "\\f204"; - } - .fa-toggle-on:before { - content: "\\f205"; - } - .fa-toilet:before { - content: "\\f7d8"; - } - .fa-toilet-paper:before { - content: "\\f71e"; - } - .fa-toilet-paper-slash:before { - content: "\\e072"; - } - .fa-toilet-portable:before { - content: "\\e583"; - } - .fa-toilets-portable:before { - content: "\\e584"; - } - .fa-toolbox:before { - content: "\\f552"; - } - .fa-tooth:before { - content: "\\f5c9"; - } - .fa-torii-gate:before { - content: "\\f6a1"; - } - .fa-tornado:before { - content: "\\f76f"; - } - .fa-broadcast-tower:before, - .fa-tower-broadcast:before { - content: "\\f519"; - } - .fa-tower-cell:before { - content: "\\e585"; - } - .fa-tower-observation:before { - content: "\\e586"; - } - .fa-tractor:before { - content: "\\f722"; - } - .fa-trademark:before { - content: "\\f25c"; - } - .fa-traffic-light:before { - content: "\\f637"; - } - .fa-trailer:before { - content: "\\e041"; - } - .fa-train:before { - content: "\\f238"; - } - .fa-subway:before, - .fa-train-subway:before { - content: "\\f239"; - } - .fa-train-tram:before, - .fa-tram:before { - content: "\\f7da"; - } - .fa-transgender-alt:before, - .fa-transgender:before { - content: "\\f225"; - } - .fa-trash:before { - content: "\\f1f8"; - } - .fa-trash-arrow-up:before, - .fa-trash-restore:before { - content: "\\f829"; - } - .fa-trash-alt:before, - .fa-trash-can:before { - content: "\\f2ed"; - } - .fa-trash-can-arrow-up:before, - .fa-trash-restore-alt:before { - content: "\\f82a"; - } - .fa-tree:before { - content: "\\f1bb"; - } - .fa-tree-city:before { - content: "\\e587"; - } - .fa-exclamation-triangle:before, - .fa-triangle-exclamation:before, - .fa-warning:before { - content: "\\f071"; - } - .fa-trophy:before { - content: "\\f091"; - } - .fa-trowel:before { - content: "\\e589"; - } - .fa-trowel-bricks:before { - content: "\\e58a"; - } - .fa-truck:before { - content: "\\f0d1"; - } - .fa-truck-arrow-right:before { - content: "\\e58b"; - } - .fa-truck-droplet:before { - content: "\\e58c"; - } - .fa-shipping-fast:before, - .fa-truck-fast:before { - content: "\\f48b"; - } - .fa-truck-field:before { - content: "\\e58d"; - } - .fa-truck-field-un:before { - content: "\\e58e"; - } - .fa-truck-front:before { - content: "\\e2b7"; - } - .fa-ambulance:before, - .fa-truck-medical:before { - content: "\\f0f9"; - } - .fa-truck-monster:before { - content: "\\f63b"; - } - .fa-truck-moving:before { - content: "\\f4df"; - } - .fa-truck-pickup:before { - content: "\\f63c"; - } - .fa-truck-plane:before { - content: "\\e58f"; - } - .fa-truck-loading:before, - .fa-truck-ramp-box:before { - content: "\\f4de"; - } - .fa-teletype:before, - .fa-tty:before { - content: "\\f1e4"; - } - .fa-try:before, - .fa-turkish-lira-sign:before, - .fa-turkish-lira:before { - content: "\\e2bb"; - } - .fa-level-down-alt:before, - .fa-turn-down:before { - content: "\\f3be"; - } - .fa-level-up-alt:before, - .fa-turn-up:before { - content: "\\f3bf"; - } - .fa-television:before, - .fa-tv-alt:before, - .fa-tv:before { - content: "\\f26c"; - } - .fa-u:before { - content: "\\55"; - } - .fa-umbrella:before { - content: "\\f0e9"; - } - .fa-umbrella-beach:before { - content: "\\f5ca"; - } - .fa-underline:before { - content: "\\f0cd"; - } - .fa-universal-access:before { - content: "\\f29a"; - } - .fa-unlock:before { - content: "\\f09c"; - } - .fa-unlock-alt:before, - .fa-unlock-keyhole:before { - content: "\\f13e"; - } - .fa-arrows-alt-v:before, - .fa-up-down:before { - content: "\\f338"; - } - .fa-arrows-alt:before, - .fa-up-down-left-right:before { - content: "\\f0b2"; - } - .fa-long-arrow-alt-up:before, - .fa-up-long:before { - content: "\\f30c"; - } - .fa-expand-alt:before, - .fa-up-right-and-down-left-from-center:before { - content: "\\f424"; - } - .fa-external-link-alt:before, - .fa-up-right-from-square:before { - content: "\\f35d"; - } - .fa-upload:before { - content: "\\f093"; - } - .fa-user:before { - content: "\\f007"; - } - .fa-user-astronaut:before { - content: "\\f4fb"; - } - .fa-user-check:before { - content: "\\f4fc"; - } - .fa-user-clock:before { - content: "\\f4fd"; - } - .fa-user-doctor:before, - .fa-user-md:before { - content: "\\f0f0"; - } - .fa-user-cog:before, - .fa-user-gear:before { - content: "\\f4fe"; - } - .fa-user-graduate:before { - content: "\\f501"; - } - .fa-user-friends:before, - .fa-user-group:before { - content: "\\f500"; - } - .fa-user-injured:before { - content: "\\f728"; - } - .fa-user-alt:before, - .fa-user-large:before { - content: "\\f406"; - } - .fa-user-alt-slash:before, - .fa-user-large-slash:before { - content: "\\f4fa"; - } - .fa-user-lock:before { - content: "\\f502"; - } - .fa-user-minus:before { - content: "\\f503"; - } - .fa-user-ninja:before { - content: "\\f504"; - } - .fa-user-nurse:before { - content: "\\f82f"; - } - .fa-user-edit:before, - .fa-user-pen:before { - content: "\\f4ff"; - } - .fa-user-plus:before { - content: "\\f234"; - } - .fa-user-secret:before { - content: "\\f21b"; - } - .fa-user-shield:before { - content: "\\f505"; - } - .fa-user-slash:before { - content: "\\f506"; - } - .fa-user-tag:before { - content: "\\f507"; - } - .fa-user-tie:before { - content: "\\f508"; - } - .fa-user-times:before, - .fa-user-xmark:before { - content: "\\f235"; - } - .fa-users:before { - content: "\\f0c0"; - } - .fa-users-between-lines:before { - content: "\\e591"; - } - .fa-users-cog:before, - .fa-users-gear:before { - content: "\\f509"; - } - .fa-users-line:before { - content: "\\e592"; - } - .fa-users-rays:before { - content: "\\e593"; - } - .fa-users-rectangle:before { - content: "\\e594"; - } - .fa-users-slash:before { - content: "\\e073"; - } - .fa-users-viewfinder:before { - content: "\\e595"; - } - .fa-cutlery:before, - .fa-utensils:before { - content: "\\f2e7"; - } - .fa-v:before { - content: "\\56"; - } - .fa-shuttle-van:before, - .fa-van-shuttle:before { - content: "\\f5b6"; - } - .fa-vault:before { - content: "\\e2c5"; - } - .fa-vector-square:before { - content: "\\f5cb"; - } - .fa-venus:before { - content: "\\f221"; - } - .fa-venus-double:before { - content: "\\f226"; - } - .fa-venus-mars:before { - content: "\\f228"; - } - .fa-vest:before { - content: "\\e085"; - } - .fa-vest-patches:before { - content: "\\e086"; - } - .fa-vial:before { - content: "\\f492"; - } - .fa-vial-circle-check:before { - content: "\\e596"; - } - .fa-vial-virus:before { - content: "\\e597"; - } - .fa-vials:before { - content: "\\f493"; - } - .fa-video-camera:before, - .fa-video:before { - content: "\\f03d"; - } - .fa-video-slash:before { - content: "\\f4e2"; - } - .fa-vihara:before { - content: "\\f6a7"; - } - .fa-virus:before { - content: "\\e074"; - } - .fa-virus-covid:before { - content: "\\e4a8"; - } - .fa-virus-covid-slash:before { - content: "\\e4a9"; - } - .fa-virus-slash:before { - content: "\\e075"; - } - .fa-viruses:before { - content: "\\e076"; - } - .fa-voicemail:before { - content: "\\f897"; - } - .fa-volcano:before { - content: "\\f770"; - } - .fa-volleyball-ball:before, - .fa-volleyball:before { - content: "\\f45f"; - } - .fa-volume-high:before, - .fa-volume-up:before { - content: "\\f028"; - } - .fa-volume-down:before, - .fa-volume-low:before { - content: "\\f027"; - } - .fa-volume-off:before { - content: "\\f026"; - } - .fa-volume-mute:before, - .fa-volume-times:before, - .fa-volume-xmark:before { - content: "\\f6a9"; - } - .fa-vr-cardboard:before { - content: "\\f729"; - } - .fa-w:before { - content: "\\57"; - } - .fa-walkie-talkie:before { - content: "\\f8ef"; - } - .fa-wallet:before { - content: "\\f555"; - } - .fa-magic:before, - .fa-wand-magic:before { - content: "\\f0d0"; - } - .fa-magic-wand-sparkles:before, - .fa-wand-magic-sparkles:before { - content: "\\e2ca"; - } - .fa-wand-sparkles:before { - content: "\\f72b"; - } - .fa-warehouse:before { - content: "\\f494"; - } - .fa-water:before { - content: "\\f773"; - } - .fa-ladder-water:before, - .fa-swimming-pool:before, - .fa-water-ladder:before { - content: "\\f5c5"; - } - .fa-wave-square:before { - content: "\\f83e"; - } - .fa-weight-hanging:before { - content: "\\f5cd"; - } - .fa-weight-scale:before, - .fa-weight:before { - content: "\\f496"; - } - .fa-wheat-alt:before, - .fa-wheat-awn:before { - content: "\\e2cd"; - } - .fa-wheat-awn-circle-exclamation:before { - content: "\\e598"; - } - .fa-wheelchair:before { - content: "\\f193"; - } - .fa-wheelchair-alt:before, - .fa-wheelchair-move:before { - content: "\\e2ce"; - } - .fa-glass-whiskey:before, - .fa-whiskey-glass:before { - content: "\\f7a0"; - } - .fa-wifi-3:before, - .fa-wifi-strong:before, - .fa-wifi:before { - content: "\\f1eb"; - } - .fa-wind:before { - content: "\\f72e"; - } - .fa-window-maximize:before { - content: "\\f2d0"; - } - .fa-window-minimize:before { - content: "\\f2d1"; - } - .fa-window-restore:before { - content: "\\f2d2"; - } - .fa-wine-bottle:before { - content: "\\f72f"; - } - .fa-wine-glass:before { - content: "\\f4e3"; - } - .fa-wine-glass-alt:before, - .fa-wine-glass-empty:before { - content: "\\f5ce"; - } - .fa-krw:before, - .fa-won-sign:before, - .fa-won:before { - content: "\\f159"; - } - .fa-worm:before { - content: "\\e599"; - } - .fa-wrench:before { - content: "\\f0ad"; - } - .fa-x:before { - content: "\\58"; - } - .fa-x-ray:before { - content: "\\f497"; - } - .fa-close:before, - .fa-multiply:before, - .fa-remove:before, - .fa-times:before, - .fa-xmark:before { - content: "\\f00d"; - } - .fa-xmarks-lines:before { - content: "\\e59a"; - } - .fa-y:before { - content: "\\59"; - } - .fa-cny:before, - .fa-jpy:before, - .fa-rmb:before, - .fa-yen-sign:before, - .fa-yen:before { - content: "\\f157"; - } - .fa-yin-yang:before { - content: "\\f6ad"; - } - .fa-z:before { - content: "\\5a"; - } - .fa-sr-only, - .fa-sr-only-focusable:not(:focus), - .sr-only, - .sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; - } - :host, - :root { - --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; - } - @font-face { - font-family: "Font Awesome 6 Brands"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url(../webfonts/fa-brands-400.woff2) format("woff2"), - url(../webfonts/fa-brands-400.ttf) format("truetype"); - } - .fa-brands, - .fab { - font-family: "Font Awesome 6 Brands"; - font-weight: 400; - } - .fa-42-group:before, - .fa-innosoft:before { - content: "\\e080"; - } - .fa-500px:before { - content: "\\f26e"; - } - .fa-accessible-icon:before { - content: "\\f368"; - } - .fa-accusoft:before { - content: "\\f369"; - } - .fa-adn:before { - content: "\\f170"; - } - .fa-adversal:before { - content: "\\f36a"; - } - .fa-affiliatetheme:before { - content: "\\f36b"; - } - .fa-airbnb:before { - content: "\\f834"; - } - .fa-algolia:before { - content: "\\f36c"; - } - .fa-alipay:before { - content: "\\f642"; - } - .fa-amazon:before { - content: "\\f270"; - } - .fa-amazon-pay:before { - content: "\\f42c"; - } - .fa-amilia:before { - content: "\\f36d"; - } - .fa-android:before { - content: "\\f17b"; - } - .fa-angellist:before { - content: "\\f209"; - } - .fa-angrycreative:before { - content: "\\f36e"; - } - .fa-angular:before { - content: "\\f420"; - } - .fa-app-store:before { - content: "\\f36f"; - } - .fa-app-store-ios:before { - content: "\\f370"; - } - .fa-apper:before { - content: "\\f371"; - } - .fa-apple:before { - content: "\\f179"; - } - .fa-apple-pay:before { - content: "\\f415"; - } - .fa-artstation:before { - content: "\\f77a"; - } - .fa-asymmetrik:before { - content: "\\f372"; - } - .fa-atlassian:before { - content: "\\f77b"; - } - .fa-audible:before { - content: "\\f373"; - } - .fa-autoprefixer:before { - content: "\\f41c"; - } - .fa-avianex:before { - content: "\\f374"; - } - .fa-aviato:before { - content: "\\f421"; - } - .fa-aws:before { - content: "\\f375"; - } - .fa-bandcamp:before { - content: "\\f2d5"; - } - .fa-battle-net:before { - content: "\\f835"; - } - .fa-behance:before { - content: "\\f1b4"; - } - .fa-behance-square:before { - content: "\\f1b5"; - } - .fa-bilibili:before { - content: "\\e3d9"; - } - .fa-bimobject:before { - content: "\\f378"; - } - .fa-bitbucket:before { - content: "\\f171"; - } - .fa-bitcoin:before { - content: "\\f379"; - } - .fa-bity:before { - content: "\\f37a"; - } - .fa-black-tie:before { - content: "\\f27e"; - } - .fa-blackberry:before { - content: "\\f37b"; - } - .fa-blogger:before { - content: "\\f37c"; - } - .fa-blogger-b:before { - content: "\\f37d"; - } - .fa-bluetooth:before { - content: "\\f293"; - } - .fa-bluetooth-b:before { - content: "\\f294"; - } - .fa-bootstrap:before { - content: "\\f836"; - } - .fa-bots:before { - content: "\\e340"; - } - .fa-btc:before { - content: "\\f15a"; - } - .fa-buffer:before { - content: "\\f837"; - } - .fa-buromobelexperte:before { - content: "\\f37f"; - } - .fa-buy-n-large:before { - content: "\\f8a6"; - } - .fa-buysellads:before { - content: "\\f20d"; - } - .fa-canadian-maple-leaf:before { - content: "\\f785"; - } - .fa-cc-amazon-pay:before { - content: "\\f42d"; - } - .fa-cc-amex:before { - content: "\\f1f3"; - } - .fa-cc-apple-pay:before { - content: "\\f416"; - } - .fa-cc-diners-club:before { - content: "\\f24c"; - } - .fa-cc-discover:before { - content: "\\f1f2"; - } - .fa-cc-jcb:before { - content: "\\f24b"; - } - .fa-cc-mastercard:before { - content: "\\f1f1"; - } - .fa-cc-paypal:before { - content: "\\f1f4"; - } - .fa-cc-stripe:before { - content: "\\f1f5"; - } - .fa-cc-visa:before { - content: "\\f1f0"; - } - .fa-centercode:before { - content: "\\f380"; - } - .fa-centos:before { - content: "\\f789"; - } - .fa-chrome:before { - content: "\\f268"; - } - .fa-chromecast:before { - content: "\\f838"; - } - .fa-cloudflare:before { - content: "\\e07d"; - } - .fa-cloudscale:before { - content: "\\f383"; - } - .fa-cloudsmith:before { - content: "\\f384"; - } - .fa-cloudversify:before { - content: "\\f385"; - } - .fa-cmplid:before { - content: "\\e360"; - } - .fa-codepen:before { - content: "\\f1cb"; - } - .fa-codiepie:before { - content: "\\f284"; - } - .fa-confluence:before { - content: "\\f78d"; - } - .fa-connectdevelop:before { - content: "\\f20e"; - } - .fa-contao:before { - content: "\\f26d"; - } - .fa-cotton-bureau:before { - content: "\\f89e"; - } - .fa-cpanel:before { - content: "\\f388"; - } - .fa-creative-commons:before { - content: "\\f25e"; - } - .fa-creative-commons-by:before { - content: "\\f4e7"; - } - .fa-creative-commons-nc:before { - content: "\\f4e8"; - } - .fa-creative-commons-nc-eu:before { - content: "\\f4e9"; - } - .fa-creative-commons-nc-jp:before { - content: "\\f4ea"; - } - .fa-creative-commons-nd:before { - content: "\\f4eb"; - } - .fa-creative-commons-pd:before { - content: "\\f4ec"; - } - .fa-creative-commons-pd-alt:before { - content: "\\f4ed"; - } - .fa-creative-commons-remix:before { - content: "\\f4ee"; - } - .fa-creative-commons-sa:before { - content: "\\f4ef"; - } - .fa-creative-commons-sampling:before { - content: "\\f4f0"; - } - .fa-creative-commons-sampling-plus:before { - content: "\\f4f1"; - } - .fa-creative-commons-share:before { - content: "\\f4f2"; - } - .fa-creative-commons-zero:before { - content: "\\f4f3"; - } - .fa-critical-role:before { - content: "\\f6c9"; - } - .fa-css3:before { - content: "\\f13c"; - } - .fa-css3-alt:before { - content: "\\f38b"; - } - .fa-cuttlefish:before { - content: "\\f38c"; - } - .fa-d-and-d:before { - content: "\\f38d"; - } - .fa-d-and-d-beyond:before { - content: "\\f6ca"; - } - .fa-dailymotion:before { - content: "\\e052"; - } - .fa-dashcube:before { - content: "\\f210"; - } - .fa-deezer:before { - content: "\\e077"; - } - .fa-delicious:before { - content: "\\f1a5"; - } - .fa-deploydog:before { - content: "\\f38e"; - } - .fa-deskpro:before { - content: "\\f38f"; - } - .fa-dev:before { - content: "\\f6cc"; - } - .fa-deviantart:before { - content: "\\f1bd"; - } - .fa-dhl:before { - content: "\\f790"; - } - .fa-diaspora:before { - content: "\\f791"; - } - .fa-digg:before { - content: "\\f1a6"; - } - .fa-digital-ocean:before { - content: "\\f391"; - } - .fa-discord:before { - content: "\\f392"; - } - .fa-discourse:before { - content: "\\f393"; - } - .fa-dochub:before { - content: "\\f394"; - } - .fa-docker:before { - content: "\\f395"; - } - .fa-draft2digital:before { - content: "\\f396"; - } - .fa-dribbble:before { - content: "\\f17d"; - } - .fa-dribbble-square:before { - content: "\\f397"; - } - .fa-dropbox:before { - content: "\\f16b"; - } - .fa-drupal:before { - content: "\\f1a9"; - } - .fa-dyalog:before { - content: "\\f399"; - } - .fa-earlybirds:before { - content: "\\f39a"; - } - .fa-ebay:before { - content: "\\f4f4"; - } - .fa-edge:before { - content: "\\f282"; - } - .fa-edge-legacy:before { - content: "\\e078"; - } - .fa-elementor:before { - content: "\\f430"; - } - .fa-ello:before { - content: "\\f5f1"; - } - .fa-ember:before { - content: "\\f423"; - } - .fa-empire:before { - content: "\\f1d1"; - } - .fa-envira:before { - content: "\\f299"; - } - .fa-erlang:before { - content: "\\f39d"; - } - .fa-ethereum:before { - content: "\\f42e"; - } - .fa-etsy:before { - content: "\\f2d7"; - } - .fa-evernote:before { - content: "\\f839"; - } - .fa-expeditedssl:before { - content: "\\f23e"; - } - .fa-facebook:before { - content: "\\f09a"; - } - .fa-facebook-f:before { - content: "\\f39e"; - } - .fa-facebook-messenger:before { - content: "\\f39f"; - } - .fa-facebook-square:before { - content: "\\f082"; - } - .fa-fantasy-flight-games:before { - content: "\\f6dc"; - } - .fa-fedex:before { - content: "\\f797"; - } - .fa-fedora:before { - content: "\\f798"; - } - .fa-figma:before { - content: "\\f799"; - } - .fa-firefox:before { - content: "\\f269"; - } - .fa-firefox-browser:before { - content: "\\e007"; - } - .fa-first-order:before { - content: "\\f2b0"; - } - .fa-first-order-alt:before { - content: "\\f50a"; - } - .fa-firstdraft:before { - content: "\\f3a1"; - } - .fa-flickr:before { - content: "\\f16e"; - } - .fa-flipboard:before { - content: "\\f44d"; - } - .fa-fly:before { - content: "\\f417"; - } - .fa-font-awesome-flag:before, - .fa-font-awesome-logo-full:before, - .fa-font-awesome:before { - content: "\\f2b4"; - } - .fa-fonticons:before { - content: "\\f280"; - } - .fa-fonticons-fi:before { - content: "\\f3a2"; - } - .fa-fort-awesome:before { - content: "\\f286"; - } - .fa-fort-awesome-alt:before { - content: "\\f3a3"; - } - .fa-forumbee:before { - content: "\\f211"; - } - .fa-foursquare:before { - content: "\\f180"; - } - .fa-free-code-camp:before { - content: "\\f2c5"; - } - .fa-freebsd:before { - content: "\\f3a4"; - } - .fa-fulcrum:before { - content: "\\f50b"; - } - .fa-galactic-republic:before { - content: "\\f50c"; - } - .fa-galactic-senate:before { - content: "\\f50d"; - } - .fa-get-pocket:before { - content: "\\f265"; - } - .fa-gg:before { - content: "\\f260"; - } - .fa-gg-circle:before { - content: "\\f261"; - } - .fa-git:before { - content: "\\f1d3"; - } - .fa-git-alt:before { - content: "\\f841"; - } - .fa-git-square:before { - content: "\\f1d2"; - } - .fa-github:before { - content: "\\f09b"; - } - .fa-github-alt:before { - content: "\\f113"; - } - .fa-github-square:before { - content: "\\f092"; - } - .fa-gitkraken:before { - content: "\\f3a6"; - } - .fa-gitlab:before { - content: "\\f296"; - } - .fa-gitter:before { - content: "\\f426"; - } - .fa-glide:before { - content: "\\f2a5"; - } - .fa-glide-g:before { - content: "\\f2a6"; - } - .fa-gofore:before { - content: "\\f3a7"; - } - .fa-golang:before { - content: "\\e40f"; - } - .fa-goodreads:before { - content: "\\f3a8"; - } - .fa-goodreads-g:before { - content: "\\f3a9"; - } - .fa-google:before { - content: "\\f1a0"; - } - .fa-google-drive:before { - content: "\\f3aa"; - } - .fa-google-pay:before { - content: "\\e079"; - } - .fa-google-play:before { - content: "\\f3ab"; - } - .fa-google-plus:before { - content: "\\f2b3"; - } - .fa-google-plus-g:before { - content: "\\f0d5"; - } - .fa-google-plus-square:before { - content: "\\f0d4"; - } - .fa-google-wallet:before { - content: "\\f1ee"; - } - .fa-gratipay:before { - content: "\\f184"; - } - .fa-grav:before { - content: "\\f2d6"; - } - .fa-gripfire:before { - content: "\\f3ac"; - } - .fa-grunt:before { - content: "\\f3ad"; - } - .fa-guilded:before { - content: "\\e07e"; - } - .fa-gulp:before { - content: "\\f3ae"; - } - .fa-hacker-news:before { - content: "\\f1d4"; - } - .fa-hacker-news-square:before { - content: "\\f3af"; - } - .fa-hackerrank:before { - content: "\\f5f7"; - } - .fa-hashnode:before { - content: "\\e499"; - } - .fa-hips:before { - content: "\\f452"; - } - .fa-hire-a-helper:before { - content: "\\f3b0"; - } - .fa-hive:before { - content: "\\e07f"; - } - .fa-hooli:before { - content: "\\f427"; - } - .fa-hornbill:before { - content: "\\f592"; - } - .fa-hotjar:before { - content: "\\f3b1"; - } - .fa-houzz:before { - content: "\\f27c"; - } - .fa-html5:before { - content: "\\f13b"; - } - .fa-hubspot:before { - content: "\\f3b2"; - } - .fa-ideal:before { - content: "\\e013"; - } - .fa-imdb:before { - content: "\\f2d8"; - } - .fa-instagram:before { - content: "\\f16d"; - } - .fa-instagram-square:before { - content: "\\e055"; - } - .fa-instalod:before { - content: "\\e081"; - } - .fa-intercom:before { - content: "\\f7af"; - } - .fa-internet-explorer:before { - content: "\\f26b"; - } - .fa-invision:before { - content: "\\f7b0"; - } - .fa-ioxhost:before { - content: "\\f208"; - } - .fa-itch-io:before { - content: "\\f83a"; - } - .fa-itunes:before { - content: "\\f3b4"; - } - .fa-itunes-note:before { - content: "\\f3b5"; - } - .fa-java:before { - content: "\\f4e4"; - } - .fa-jedi-order:before { - content: "\\f50e"; - } - .fa-jenkins:before { - content: "\\f3b6"; - } - .fa-jira:before { - content: "\\f7b1"; - } - .fa-joget:before { - content: "\\f3b7"; - } - .fa-joomla:before { - content: "\\f1aa"; - } - .fa-js:before { - content: "\\f3b8"; - } - .fa-js-square:before { - content: "\\f3b9"; - } - .fa-jsfiddle:before { - content: "\\f1cc"; - } - .fa-kaggle:before { - content: "\\f5fa"; - } - .fa-keybase:before { - content: "\\f4f5"; - } - .fa-keycdn:before { - content: "\\f3ba"; - } - .fa-kickstarter:before { - content: "\\f3bb"; - } - .fa-kickstarter-k:before { - content: "\\f3bc"; - } - .fa-korvue:before { - content: "\\f42f"; - } - .fa-laravel:before { - content: "\\f3bd"; - } - .fa-lastfm:before { - content: "\\f202"; - } - .fa-lastfm-square:before { - content: "\\f203"; - } - .fa-leanpub:before { - content: "\\f212"; - } - .fa-less:before { - content: "\\f41d"; - } - .fa-line:before { - content: "\\f3c0"; - } - .fa-linkedin:before { - content: "\\f08c"; - } - .fa-linkedin-in:before { - content: "\\f0e1"; - } - .fa-linode:before { - content: "\\f2b8"; - } - .fa-linux:before { - content: "\\f17c"; - } - .fa-lyft:before { - content: "\\f3c3"; - } - .fa-magento:before { - content: "\\f3c4"; - } - .fa-mailchimp:before { - content: "\\f59e"; - } - .fa-mandalorian:before { - content: "\\f50f"; - } - .fa-markdown:before { - content: "\\f60f"; - } - .fa-mastodon:before { - content: "\\f4f6"; - } - .fa-maxcdn:before { - content: "\\f136"; - } - .fa-mdb:before { - content: "\\f8ca"; - } - .fa-medapps:before { - content: "\\f3c6"; - } - .fa-medium-m:before, - .fa-medium:before { - content: "\\f23a"; - } - .fa-medrt:before { - content: "\\f3c8"; - } - .fa-meetup:before { - content: "\\f2e0"; - } - .fa-megaport:before { - content: "\\f5a3"; - } - .fa-mendeley:before { - content: "\\f7b3"; - } - .fa-microblog:before { - content: "\\e01a"; - } - .fa-microsoft:before { - content: "\\f3ca"; - } - .fa-mix:before { - content: "\\f3cb"; - } - .fa-mixcloud:before { - content: "\\f289"; - } - .fa-mixer:before { - content: "\\e056"; - } - .fa-mizuni:before { - content: "\\f3cc"; - } - .fa-modx:before { - content: "\\f285"; - } - .fa-monero:before { - content: "\\f3d0"; - } - .fa-napster:before { - content: "\\f3d2"; - } - .fa-neos:before { - content: "\\f612"; - } - .fa-nfc-directional:before { - content: "\\e530"; - } - .fa-nfc-symbol:before { - content: "\\e531"; - } - .fa-nimblr:before { - content: "\\f5a8"; - } - .fa-node:before { - content: "\\f419"; - } - .fa-node-js:before { - content: "\\f3d3"; - } - .fa-npm:before { - content: "\\f3d4"; - } - .fa-ns8:before { - content: "\\f3d5"; - } - .fa-nutritionix:before { - content: "\\f3d6"; - } - .fa-octopus-deploy:before { - content: "\\e082"; - } - .fa-odnoklassniki:before { - content: "\\f263"; - } - .fa-odnoklassniki-square:before { - content: "\\f264"; - } - .fa-old-republic:before { - content: "\\f510"; - } - .fa-opencart:before { - content: "\\f23d"; - } - .fa-openid:before { - content: "\\f19b"; - } - .fa-opera:before { - content: "\\f26a"; - } - .fa-optin-monster:before { - content: "\\f23c"; - } - .fa-orcid:before { - content: "\\f8d2"; - } - .fa-osi:before { - content: "\\f41a"; - } - .fa-padlet:before { - content: "\\e4a0"; - } - .fa-page4:before { - content: "\\f3d7"; - } - .fa-pagelines:before { - content: "\\f18c"; - } - .fa-palfed:before { - content: "\\f3d8"; - } - .fa-patreon:before { - content: "\\f3d9"; - } - .fa-paypal:before { - content: "\\f1ed"; - } - .fa-perbyte:before { - content: "\\e083"; - } - .fa-periscope:before { - content: "\\f3da"; - } - .fa-phabricator:before { - content: "\\f3db"; - } - .fa-phoenix-framework:before { - content: "\\f3dc"; - } - .fa-phoenix-squadron:before { - content: "\\f511"; - } - .fa-php:before { - content: "\\f457"; - } - .fa-pied-piper:before { - content: "\\f2ae"; - } - .fa-pied-piper-alt:before { - content: "\\f1a8"; - } - .fa-pied-piper-hat:before { - content: "\\f4e5"; - } - .fa-pied-piper-pp:before { - content: "\\f1a7"; - } - .fa-pied-piper-square:before { - content: "\\e01e"; - } - .fa-pinterest:before { - content: "\\f0d2"; - } - .fa-pinterest-p:before { - content: "\\f231"; - } - .fa-pinterest-square:before { - content: "\\f0d3"; - } - .fa-pix:before { - content: "\\e43a"; - } - .fa-playstation:before { - content: "\\f3df"; - } - .fa-product-hunt:before { - content: "\\f288"; - } - .fa-pushed:before { - content: "\\f3e1"; - } - .fa-python:before { - content: "\\f3e2"; - } - .fa-qq:before { - content: "\\f1d6"; - } - .fa-quinscape:before { - content: "\\f459"; - } - .fa-quora:before { - content: "\\f2c4"; - } - .fa-r-project:before { - content: "\\f4f7"; - } - .fa-raspberry-pi:before { - content: "\\f7bb"; - } - .fa-ravelry:before { - content: "\\f2d9"; - } - .fa-react:before { - content: "\\f41b"; - } - .fa-reacteurope:before { - content: "\\f75d"; - } - .fa-readme:before { - content: "\\f4d5"; - } - .fa-rebel:before { - content: "\\f1d0"; - } - .fa-red-river:before { - content: "\\f3e3"; - } - .fa-reddit:before { - content: "\\f1a1"; - } - .fa-reddit-alien:before { - content: "\\f281"; - } - .fa-reddit-square:before { - content: "\\f1a2"; - } - .fa-redhat:before { - content: "\\f7bc"; - } - .fa-renren:before { - content: "\\f18b"; - } - .fa-replyd:before { - content: "\\f3e6"; - } - .fa-researchgate:before { - content: "\\f4f8"; - } - .fa-resolving:before { - content: "\\f3e7"; - } - .fa-rev:before { - content: "\\f5b2"; - } - .fa-rocketchat:before { - content: "\\f3e8"; - } - .fa-rockrms:before { - content: "\\f3e9"; - } - .fa-rust:before { - content: "\\e07a"; - } - .fa-safari:before { - content: "\\f267"; - } - .fa-salesforce:before { - content: "\\f83b"; - } - .fa-sass:before { - content: "\\f41e"; - } - .fa-schlix:before { - content: "\\f3ea"; - } - .fa-screenpal:before { - content: "\\e570"; - } - .fa-scribd:before { - content: "\\f28a"; - } - .fa-searchengin:before { - content: "\\f3eb"; - } - .fa-sellcast:before { - content: "\\f2da"; - } - .fa-sellsy:before { - content: "\\f213"; - } - .fa-servicestack:before { - content: "\\f3ec"; - } - .fa-shirtsinbulk:before { - content: "\\f214"; - } - .fa-shopify:before { - content: "\\e057"; - } - .fa-shopware:before { - content: "\\f5b5"; - } - .fa-simplybuilt:before { - content: "\\f215"; - } - .fa-sistrix:before { - content: "\\f3ee"; - } - .fa-sith:before { - content: "\\f512"; - } - .fa-sitrox:before { - content: "\\e44a"; - } - .fa-sketch:before { - content: "\\f7c6"; - } - .fa-skyatlas:before { - content: "\\f216"; - } - .fa-skype:before { - content: "\\f17e"; - } - .fa-slack-hash:before, - .fa-slack:before { - content: "\\f198"; - } - .fa-slideshare:before { - content: "\\f1e7"; - } - .fa-snapchat-ghost:before, - .fa-snapchat:before { - content: "\\f2ab"; - } - .fa-snapchat-square:before { - content: "\\f2ad"; - } - .fa-soundcloud:before { - content: "\\f1be"; - } - .fa-sourcetree:before { - content: "\\f7d3"; - } - .fa-speakap:before { - content: "\\f3f3"; - } - .fa-speaker-deck:before { - content: "\\f83c"; - } - .fa-spotify:before { - content: "\\f1bc"; - } - .fa-square-font-awesome:before { - content: "\\f425"; - } - .fa-font-awesome-alt:before, - .fa-square-font-awesome-stroke:before { - content: "\\f35c"; - } - .fa-squarespace:before { - content: "\\f5be"; - } - .fa-stack-exchange:before { - content: "\\f18d"; - } - .fa-stack-overflow:before { - content: "\\f16c"; - } - .fa-stackpath:before { - content: "\\f842"; - } - .fa-staylinked:before { - content: "\\f3f5"; - } - .fa-steam:before { - content: "\\f1b6"; - } - .fa-steam-square:before { - content: "\\f1b7"; - } - .fa-steam-symbol:before { - content: "\\f3f6"; - } - .fa-sticker-mule:before { - content: "\\f3f7"; - } - .fa-strava:before { - content: "\\f428"; - } - .fa-stripe:before { - content: "\\f429"; - } - .fa-stripe-s:before { - content: "\\f42a"; - } - .fa-studiovinari:before { - content: "\\f3f8"; - } - .fa-stumbleupon:before { - content: "\\f1a4"; - } - .fa-stumbleupon-circle:before { - content: "\\f1a3"; - } - .fa-superpowers:before { - content: "\\f2dd"; - } - .fa-supple:before { - content: "\\f3f9"; - } - .fa-suse:before { - content: "\\f7d6"; - } - .fa-swift:before { - content: "\\f8e1"; - } - .fa-symfony:before { - content: "\\f83d"; - } - .fa-teamspeak:before { - content: "\\f4f9"; - } - .fa-telegram-plane:before, - .fa-telegram:before { - content: "\\f2c6"; - } - .fa-tencent-weibo:before { - content: "\\f1d5"; - } - .fa-the-red-yeti:before { - content: "\\f69d"; - } - .fa-themeco:before { - content: "\\f5c6"; - } - .fa-themeisle:before { - content: "\\f2b2"; - } - .fa-think-peaks:before { - content: "\\f731"; - } - .fa-tiktok:before { - content: "\\e07b"; - } - .fa-trade-federation:before { - content: "\\f513"; - } - .fa-trello:before { - content: "\\f181"; - } - .fa-tumblr:before { - content: "\\f173"; - } - .fa-tumblr-square:before { - content: "\\f174"; - } - .fa-twitch:before { - content: "\\f1e8"; - } - .fa-twitter:before { - content: "\\f099"; - } - .fa-twitter-square:before { - content: "\\f081"; - } - .fa-typo3:before { - content: "\\f42b"; - } - .fa-uber:before { - content: "\\f402"; - } - .fa-ubuntu:before { - content: "\\f7df"; - } - .fa-uikit:before { - content: "\\f403"; - } - .fa-umbraco:before { - content: "\\f8e8"; - } - .fa-uncharted:before { - content: "\\e084"; - } - .fa-uniregistry:before { - content: "\\f404"; - } - .fa-unity:before { - content: "\\e049"; - } - .fa-unsplash:before { - content: "\\e07c"; - } - .fa-untappd:before { - content: "\\f405"; - } - .fa-ups:before { - content: "\\f7e0"; - } - .fa-usb:before { - content: "\\f287"; - } - .fa-usps:before { - content: "\\f7e1"; - } - .fa-ussunnah:before { - content: "\\f407"; - } - .fa-vaadin:before { - content: "\\f408"; - } - .fa-viacoin:before { - content: "\\f237"; - } - .fa-viadeo:before { - content: "\\f2a9"; - } - .fa-viadeo-square:before { - content: "\\f2aa"; - } - .fa-viber:before { - content: "\\f409"; - } - .fa-vimeo:before { - content: "\\f40a"; - } - .fa-vimeo-square:before { - content: "\\f194"; - } - .fa-vimeo-v:before { - content: "\\f27d"; - } - .fa-vine:before { - content: "\\f1ca"; - } - .fa-vk:before { - content: "\\f189"; - } - .fa-vnv:before { - content: "\\f40b"; - } - .fa-vuejs:before { - content: "\\f41f"; - } - .fa-watchman-monitoring:before { - content: "\\e087"; - } - .fa-waze:before { - content: "\\f83f"; - } - .fa-weebly:before { - content: "\\f5cc"; - } - .fa-weibo:before { - content: "\\f18a"; - } - .fa-weixin:before { - content: "\\f1d7"; - } - .fa-whatsapp:before { - content: "\\f232"; - } - .fa-whatsapp-square:before { - content: "\\f40c"; - } - .fa-whmcs:before { - content: "\\f40d"; - } - .fa-wikipedia-w:before { - content: "\\f266"; - } - .fa-windows:before { - content: "\\f17a"; - } - .fa-wirsindhandwerk:before, - .fa-wsh:before { - content: "\\e2d0"; - } - .fa-wix:before { - content: "\\f5cf"; - } - .fa-wizards-of-the-coast:before { - content: "\\f730"; - } - .fa-wodu:before { - content: "\\e088"; - } - .fa-wolf-pack-battalion:before { - content: "\\f514"; - } - .fa-wordpress:before { - content: "\\f19a"; - } - .fa-wordpress-simple:before { - content: "\\f411"; - } - .fa-wpbeginner:before { - content: "\\f297"; - } - .fa-wpexplorer:before { - content: "\\f2de"; - } - .fa-wpforms:before { - content: "\\f298"; - } - .fa-wpressr:before { - content: "\\f3e4"; - } - .fa-xbox:before { - content: "\\f412"; - } - .fa-xing:before { - content: "\\f168"; - } - .fa-xing-square:before { - content: "\\f169"; - } - .fa-y-combinator:before { - content: "\\f23b"; - } - .fa-yahoo:before { - content: "\\f19e"; - } - .fa-yammer:before { - content: "\\f840"; - } - .fa-yandex:before { - content: "\\f413"; - } - .fa-yandex-international:before { - content: "\\f414"; - } - .fa-yarn:before { - content: "\\f7e3"; - } - .fa-yelp:before { - content: "\\f1e9"; - } - .fa-yoast:before { - content: "\\f2b1"; - } - .fa-youtube:before { - content: "\\f167"; - } - .fa-youtube-square:before { - content: "\\f431"; - } - .fa-zhihu:before { - content: "\\f63f"; - } - :host, - :root { - --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; - } - @font-face { - font-family: "Font Awesome 6 Free"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url(../webfonts/fa-regular-400.woff2) format("woff2"), - url(../webfonts/fa-regular-400.ttf) format("truetype"); - } - .fa-regular, - .far { - font-family: "Font Awesome 6 Free"; - font-weight: 400; - } - :host, - :root { - --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; - } - @font-face { - font-family: "Font Awesome 6 Free"; - font-style: normal; - font-weight: 900; - font-display: block; - src: url(../webfonts/fa-solid-900.woff2) format("woff2"), - url(../webfonts/fa-solid-900.ttf) format("truetype"); - } - .fa-solid, - .fas { - font-family: "Font Awesome 6 Free"; - font-weight: 900; - } - @font-face { - font-family: "Font Awesome 5 Brands"; - font-display: block; - font-weight: 400; - src: url(../webfonts/fa-brands-400.woff2) format("woff2"), - url(../webfonts/fa-brands-400.ttf) format("truetype"); - } - @font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 900; - src: url(../webfonts/fa-solid-900.woff2) format("woff2"), - url(../webfonts/fa-solid-900.ttf) format("truetype"); - } - @font-face { - font-family: "Font Awesome 5 Free"; - font-display: block; - font-weight: 400; - src: url(../webfonts/fa-regular-400.woff2) format("woff2"), - url(../webfonts/fa-regular-400.ttf) format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-solid-900.woff2) format("woff2"), - url(../webfonts/fa-solid-900.ttf) format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-brands-400.woff2) format("woff2"), - url(../webfonts/fa-brands-400.ttf) format("truetype"); - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-regular-400.woff2) format("woff2"), - url(../webfonts/fa-regular-400.ttf) format("truetype"); - unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, - u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, - u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, - u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, - u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, - u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, - u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, - u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, - u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc; - } - @font-face { - font-family: "FontAwesome"; - font-display: block; - src: url(../webfonts/fa-v4compatibility.woff2) format("woff2"), - url(../webfonts/fa-v4compatibility.ttf) format("truetype"); - unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, - u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, - u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, - u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252, - u+f27a; - }`, - 'KOL-INPUT-RANGE': `input, - select, - textarea { - border: none; - } - input[type="color"] { - border: none; - min-height: 40px !important; - } - input[type="color"], - input[type="file"] { - background-color: transparent; - } - kol-input { - gap: var(--spacing); - } - kol-input > label { - order: 1; - color: var(--default-letter); - } - kol-input > .input { - border-color: var(--kolibri-border-color); - border-radius: 0.25rem; - border-style: solid; - border-width: 2px; - order: 2; - } - kol-input:hover > .input { - border-color: var(--kolibri-color-secondary); - } - kol-input > .input > kol-icon:first-child { - margin-left: 0.75em; - } - kol-input > .input > kol-icon:last-child { - margin-right: 0.75em; - } - kol-input > .error { - order: 3; - } - kol-input > .hint { - order: 4; - font-size: 0.875em; - } - input, - select, - textarea { - color: var(--default-letter); - padding: 0.5em 0.75em; - } - input:not([type="range"]), - select:not([multiple]) { - height: 2.75em; - } - textarea { - display: inherit; - } - input::placeholder { - color: var(--default-border-hover); - } - input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled { - cursor: not-allowed; - } - select[multiple], - textarea { - overflow: auto; - } - select option { - margin: 1px 0; - padding: 0.5em; - border-radius: 0.25em; - cursor: pointer; - } - select option:disabled { - cursor: not-allowed; - } - option:active:not(:disabled), - option:checked:not(:disabled), - option:focus:not(:disabled), - option:hover:not(:disabled) { - background-color: var(--kolibri-color-primary); - color: white; - }`, - 'KOL-SKIP-NAV': `kol-link-wc > a > kol-span-wc { - border-radius: var(--kolibri-border-radius); - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - padding: 0.75rem 1rem; - background-color: var(--kolibri-color-primary); - border-color: var(--kolibri-border-color); - color: white; - cursor: pointer; - }`, - 'KOL-SPLIT-BUTTON': `.popover { - background: #fff; - }`, -}); diff --git a/packages/themes/zoll/src/zoll-v2.ts b/packages/themes/zoll/src/zoll-v2.ts deleted file mode 100644 index 8d50b1532d..0000000000 --- a/packages/themes/zoll/src/zoll-v2.ts +++ /dev/null @@ -1,8645 +0,0 @@ -import { KoliBri } from '@public-ui/schema'; - -/** - * No-op tag function to help with CSS syntax highlighting and provide Prettier support - */ -const css = (input: TemplateStringsArray): string => input.join(``); - -// Design System Zoll (v2) -export const ZOLLv2 = KoliBri.createTheme('zoll-v2', { - GLOBAL: css` - :host { - background-color: transparent; /* Reset global background-color defined by components */ - --border-color: var(--color-neutral); - --border-radius: 0.25rem; - --box-shadow: rgba(0, 0, 0, 0.12) 0 12px 12px -4px, rgba(0, 0, 0, 0.04) 0 4px 4px -4px; - --color-blau: #264f8e; - --color-blau-dark: #08335e; - --color-blau-light: #326cae; - --color-akzent: #ef9e48; - --color-akzent-dark: #da793c; - --color-akzent-light: #f5ba6c; - --color-neutral: #e3e3e3; - --color-neutral-dark: #646464; - --color-neutral-dark-correct: #333333; - --color-neutral-light: #f7f7f7; - --color-rot: #ce3033; - --color-gelb: #f6cd35; - --color-gruen: #008549; - --color-grau-100: hsl(0 0% 0%); - --color-grau-90: hsl(0 0% 10%); - --color-grau-80: hsl(0 0% 20%); - --color-grau-70: hsl(0 0% 30%); - --color-grau-60: hsl(0 0% 40%); - --color-grau-50: #8b8b8b; - --color-grau-40: hsl(0 0% 60%); - --color-grau-30: hsl(0 0% 70%); - --color-grau-20: hsl(0 0% 80%); - --color-grau-10: hsl(0 0% 90%); - --color-grau-0: hsl(0 0% 100%); - --gap: 0.25rem; - --spacing: 0.25rem; - --font-family: Roboto, Kreon, Georgia, Times New Roman, sans-serif; - --font-size: 16px; - --font-weight-bold: 700; - --line-height-bold: 1.2em; /* em! */ - --line-height-regular: 1.5em; /* em! */ - } - *[tabindex]:focus, - a:focus, - button:focus, - summary:focus, - kol-input:not(.checkbox, .radio) .input:focus-within, - kol-input:is(.checkbox, .radio) input:focus { - outline-color: var(--color-blau-dark); - outline-offset: 0.125rem; - outline-style: solid; - outline-width: 0.125rem; - transition: outline-offset 0.25s linear; - border-radius: var(--border-radius); - } - *:not(i) { - font-family: var(--font-family); - } - a, - button { - font-size: var(--font-size); - outline: none; - } - h1, - h2, - h3, - h4, - h5, - h6 { - font-weight: var(--font-weight-bold); - line-height: var(--line-height-heading); - margin: 0; - padding: 0; - } - p { - font-weight: var(--font-weight); - } - kol-span-wc, - kol-span-wc > span { - gap: 0.5em; - } - .required label span::after, - .required legend span::after { - color: var(--color-red); - padding-left: 0.25em; - } - kol-tooltip-wc .tooltip-area { - background-color: #f2f2f2; - } - kol-tooltip-wc .tooltip-arrow { - background-color: #626262; - } - kol-tooltip-wc .tooltip-content { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.25rem; - border-radius: 2px; - border: 1px solid #626262; - } - `, - 'KOL-BADGE': css` - :host { - display: inline-block; - } - :host > span { - border-radius: 0.3125rem; - display: inline-flex; - } - :host > span kol-span-wc { - padding: 0.25rem 0.5rem; - } - :host > span > kol-span-wc { - align-items: center; - font-style: normal; - gap: 0.5rem; - } - :host > span > kol-span-wc > span { - display: flex; - gap: 0.25rem; - } - :host button { - border-radius: 0 var(--spacing) var(--spacing) 0; - } - `, - 'KOL-HEADING': css` - h1, - h2, - h3, - h4, - h5, - h6 { - font-weight: var(--font-weight-bold); - margin: 0; - padding: 1rem 0; - text-align: left; - } - h1 { - font-size: 2.5rem; - line-height: 1.2; - padding: 0 0 1rem 0; - } - h2 { - font-size: 2rem; - line-height: 1.25; - } - h3 { - font-size: 1.75rem; - line-height: 1.29; - } - h4 { - font-size: 1.5rem; - line-height: 1.33; - } - h5 { - font-size: 1.25rem; - line-height: 1.4; - } - h6 { - font-size: 1rem; - line-height: 1.5; - } - `, - 'KOL-LINK': css` - :is(a, button) { - align-items: baseline; - color: var(--color-blau); - gap: 0.25em; - text-decoration-line: none; - } - a:active, - a:focus, - a:hover, - button:active, - button:focus, - button:hover { - color: var(--color-blau-dark); - outline-width: 0; - text-decoration-line: underline; - text-decoration-thickness: 0.1rem !important; - } - :is(a, button) > kol-span-wc { - order: 1; - gap: 0.25em; - } - :is(a, button) > kol-span-wc > span { - align-items: baseline; - gap: 0.25em; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - } - `, - 'KOL-BUTTON-LINK': css` - :is(a, button) { - align-items: baseline; - color: var(--color-blau); - gap: 0.25em; - text-decoration-line: none; - } - a:active, - a:focus, - a:hover, - button:active, - button:focus, - button:hover { - color: var(--color-blau-dark); - outline-width: 0; - text-decoration-line: underline; - text-decoration-thickness: 0.1rem !important; - } - :is(a, button) > kol-span-wc { - order: 1; - gap: 0.25em; - } - :is(a, button) > kol-span-wc > span { - align-items: baseline; - gap: 0.25em; - } - .hidden { - display: none; - visibility: hidden; - } - .skip { - left: -99999px; - overflow: hidden; - position: absolute; - z-index: 9999999; - line-height: 1em; - } - .skip:focus { - background: white; - left: unset; - position: unset; - } - `, - 'KOL-SPIN': css` - .spin { - display: inline-block; - height: 1rem; - position: relative; - width: 3rem; - } - .spin span { - animation-timing-function: cubic-bezier(0, 1, 1, 0); - border: 0.1rem solid rgb(255, 255, 255); - border-radius: 50%; - height: 0.8rem; - width: 0.8rem; - top: 0.1rem; - position: absolute; - } - .spin span:nth-child(1) { - background-color: #fc0; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin1; - left: 0.1rem; - } - .spin span:nth-child(2) { - background-color: #f00; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 0.1rem; - } - .spin span:nth-child(3) { - background-color: #000; - z-index: 1; - animation: 2s ease 0s infinite normal none running spin2; - left: 1.1rem; - } - .spin span:nth-child(4) { - background-color: #666; - z-index: 0; - animation: 2s ease 0s infinite normal none running spin3; - left: 2.1rem; - } - @keyframes spin1 { - 0% { - transform: scale(0); - } - 100% { - transform: scale(1); - } - } - @keyframes spin2 { - 0% { - transform: translate(0px, 0px); - } - 100% { - transform: translate(1rem, 0px); - } - } - @keyframes spin3 { - 0% { - transform: scale(1); - } - 100% { - transform: scale(0); - } - } - `, - 'KOL-TABLE': css` - caption { - caption-side: TOP; - font-size: 1.1rem; /* 1.75rem */ /* line-height: 3rem; */ - font-weight: var(--font-weight-bold); - margin-bottom: 0.25rem; - padding: 0.75rem; - text-align: left; - } - table { - border-spacing: 0; - border-color: var(--color-neutral); - border-style: solid; - border-width: 0; - border-top-width: 1px; - } - th { - background-color: var(--color-neutral); - } - td, - th { - color: var(--color-neutral-dark-correct); - border-color: var(--color-neutral); - border-style: solid; - border-width: 0; - border-bottom-width: 1px; - padding: 0.5rem; - } - th[data-sort] kol-button::part(icon)::before { - font-family: 'FontAwesome'; - color: var(--color-neutral-dark); - } - th[data-sort='sort-NOS'] kol-button::part(icon)::before, - th[data-sort='sort-undefined'] kol-button::part(icon)::before { - content: '\\f0dc'; - } - th[data-sort='sort-ASC'] kol-button::part(icon)::before { - content: '\\f0de'; - } - th[data-sort='sort-DESC'] kol-button::part(icon)::before { - content: '\\f0dd'; - } - `, - 'KOL-ACCORDION': css` - :host > div { - border-color: var(--border-color); - border-radius: var(--border-radius); - border-style: solid; - border-width: 1px; - } - :host > div > kol-heading-wc > * { - display: grid; - margin: -1px; - } - :host > div > kol-heading-wc button > kol-span-wc { - background-color: var(--color-neutral-light); - border-color: var(--border-color); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - color: var(--color-blau); - font-weight: var(--font-weight-bold); - text-align: left; - padding: 1.5rem; - } - :host > div > kol-heading-wc button:hover > kol-span-wc { - border-color: var(--color-blau-dark); - } - :host > div > kol-heading-wc button > kol-span-wc > span { - gap: 0.5em; - } - .content, - [part*='content'] { - padding: 1.5rem 1.5rem 2rem 1.5rem; - } - :host > div > kol-heading-wc button kol-icon::part(icon) { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; - } - :host > div.open > kol-heading-wc button kol-icon::part(icon)::before { - content: '\\f077'; - } - :host > div:not(.open) > kol-heading-wc button kol-icon::part(icon)::before { - content: '\\f078'; - } - `, - 'KOL-ALERT': css` - kol-alert-wc { - border-width: 2px; - border-style: solid; - border-radius: 0.25rem; - color: var(--color-neutral-dark); - } - kol-alert-wc .content { - font-size: 0.8rem; - } - .card { - display: grid; - gap: 0.625rem; - padding: 1.5rem 1.5rem 2rem 1.5rem; - } - .card .heading .heading-icon { - align-items: center; - display: inline-flex; - font-size: 2rem; - margin-right: 1.5rem; - padding: 0; - } - .default { - border-color: var(--color-neutral-dark); - } - .card.default .heading { - color: var(--color-neutral-dark); - } - .info { - border-color: var(--color-blau-light); - } - .card.info .heading { - color: var(--color-blau-light); - } - .warning { - background-color: var(--color-gelb); - border-color: var(--color-gelb); - color: var(--color-neutral-dark-correct); - } - .card.warning .heading { - } - .error { - border-color: var(--color-rot); - } - .card.error .heading { - color: var(--color-rot); - } - .success { - border-color: var(--color-gruen); - } - .card.success .heading { - color: var(--color-gruen); - } - .card .content { - line-height: 1.5rem; - padding-left: 3.5rem; - } - .msg { - border-width: 0; - display: flex; - gap: calc(2 * var(--gap)); - padding: var(--gap); - } - .msg .heading { - display: flex; - gap: var(--spacing); - flex-grow: 1; - align-items: center; - } - .msg .heading > div { - display: flex; - flex-direction: column; - flex-grow: 1; - } - .info .heading kol-icon.heading-icon { - display: grid; - place-items: center; - background-color: var(--color-blau-light); - border-radius: 100%; - min-width: 2em; - min-height: 2em; - } - .card.info .heading kol-icon.heading-icon { - font-size: 1em; - } - .msg.info .heading kol-icon.heading-icon { - font-size: 0.5em; - } - .info .heading kol-icon.heading-icon::part(icon) { - color: white; - } - .msg.default { - color: var(--color-neutral-dark); - } - .msg.error { - color: var(--color-rot); - } - .msg.info { - color: var(--color-blau-light); - } - .msg.warning { - color: var(--color-neutral-dark-correct); - } - .msg.success { - color: var(--color-gruen); - } - div > div > kol-heading-wc { - grid-column: 1 / span 3; - } - .close button { - border-radius: var(--border-radius); - min-height: 44px; - min-width: 44px; - background-color: var(--color-neutral); - padding: 0.75rem; - color: var(--color-blau-light); - } - .card .close button { - transform: translateX(1.5rem) translateY(-1.5rem); - } - kol-icon::part(icon) { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; - } - .default kol-icon::part(icon)::before { - content: '\\f05a'; - } - .error kol-icon::part(icon)::before { - content: '\\f06a'; - } - .info kol-icon::part(icon)::before { - content: '\\f0eb'; - } - .success kol-icon::part(icon)::before { - content: '\\f058'; - } - .warning kol-icon::part(icon)::before { - content: '\\f071'; - } - .close button kol-icon::part(icon)::before { - content: '\\f00d'; - } - `, - 'KOL-CARD': css` - :host > div { - border-color: var(--border-color); - border-radius: var(--border-radius); - border-style: solid; - border-width: 1px; - background: #fff; - } - :host > div .header, - .content, - .footer { - padding: 1.5rem; - } - `, - 'KOL-BUTTON': css` - :host > kol-button-wc > button { - border-radius: var(--border-radius); - } - - :host > kol-button-wc > button > kol-span-wc, - :host > kol-link-wc > a > kol-span-wc { - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - } - :host > kol-button-wc > button > kol-span-wc:not(.hide-label), - :host > kol-link-wc > a > kol-span-wc:not(.hide-label) { - padding: 0.75rem 1rem; - } - :host > kol-button-wc > button > kol-span-wc.hide-label, - :host > kol-link-wc > a > kol-span-wc.hide-label { - padding: 0.75rem; - } - :host > kol-button-wc > button > kol-span-wc span, - :host > kol-link-wc > a > kol-span-wc span { - gap: 0.5rem; - } - :host > kol-button-wc.primary > button > kol-span-wc, - :host > kol-link-wc.primary > a > kol-span-wc { - background-color: var(--color-akzent); - border-color: var(--color-akzent); - color: var(--color-neutral-dark-correct); - } - :host > kol-button-wc.primary > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.primary > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.primary > a:focus > kol-span-wc, - :host > kol-link-wc.primary > a:hover > kol-span-wc { - background-color: var(--color-akzent-dark); - } - :host > kol-button-wc.secondary > button > kol-span-wc, - :host > kol-link-wc.secondary > a > kol-span-wc { - background-color: white; - border-color: var(--color-blau); - color: var(--color-blau); - } - :host > kol-button-wc.secondary > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.secondary > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.secondary > a:focus > kol-span-wc, - :host > kol-link-wc.secondary > a:hover > kol-span-wc { - border-color: var(--color-blau-dark); - color: var(--color-blau-dark); - } - :host > kol-button-wc.normal > button > kol-span-wc, - :host > kol-link-wc.normal > a > kol-span-wc { - background-color: var(--color-blau); - border-color: var(--color-blau); - color: white; - } - :host > kol-button-wc.normal > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.normal > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.normal > a:focus > kol-span-wc, - :host > kol-link-wc.normal > a:hover > kol-span-wc { - background-color: var(--color-blau-dark); - } - :host > kol-button-wc.danger > button > kol-span-wc, - :host > kol-link-wc.danger > a > kol-span-wc { - background-color: var(--color-rot); - border-color: var(--color-rot); - color: white; - } - :host > kol-button-wc.danger > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.danger > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.danger > a:focus > kol-span-wc, - :host > kol-link-wc.danger > a:hover > kol-span-wc { - background-color: var(--color-rot); - } - :host > kol-button-wc.ghost > button > kol-span-wc, - :host > kol-link-wc.ghost > a > kol-span-wc { - background-color: transparent; - border-color: transparent; - color: var(--color-blau); - } - :host > kol-button-wc.ghost > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.ghost > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.ghost > a:focus > kol-span-wc, - :host > kol-link-wc.ghost > a:hover > kol-span-wc { - color: var(--color-blau-dark); - } - :host > kol-button-wc > button:not(:disabled):hover, - :host > kol-link-wc > a:hover { - outline-color: var(--color-blau-dark); - outline-offset: 0.125rem; - outline-style: solid; - outline-width: 0.125rem; - transition: outline-offset 0.2s linear; - } - a:focus, - button:not(:disabled):focus { - cursor: pointer; - outline-color: var(--color-blau-dark); - outline-offset: 0.125rem; - outline-style: solid; - outline-width: 0.125rem; - transition: outline-offset 0.2s linear; - } - `, - 'KOL-LINK-BUTTON': css` - :host > kol-button-wc > button > kol-span-wc, - :host > kol-link-wc > a > kol-span-wc { - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - } - :host > kol-link-wc > a { - border-radius: var(--border-radius); - } - :host > kol-button-wc > button > kol-span-wc:not(.hide-label), - :host > kol-link-wc > a > kol-span-wc:not(.hide-label) { - padding: 0.75rem 1rem; - } - :host > kol-button-wc > button > kol-span-wc.hide-label, - :host > kol-link-wc > a > kol-span-wc.hide-label { - padding: 0.75rem; - } - :host > kol-button-wc > button > kol-span-wc span, - :host > kol-link-wc > a > kol-span-wc span { - gap: 0.5rem; - } - :host > kol-button-wc.primary > button > kol-span-wc, - :host > kol-link-wc.primary > a > kol-span-wc { - background-color: var(--color-akzent); - border-color: var(--color-akzent); - color: var(--color-neutral-dark-correct); - } - :host > kol-button-wc.primary > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.primary > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.primary > a:focus > kol-span-wc, - :host > kol-link-wc.primary > a:hover > kol-span-wc { - background-color: var(--color-akzent-dark); - } - :host > kol-button-wc.secondary > button > kol-span-wc, - :host > kol-link-wc.secondary > a > kol-span-wc { - background-color: white; - border-color: var(--color-blau); - color: var(--color-blau); - } - :host > kol-button-wc.secondary > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.secondary > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.secondary > a:focus > kol-span-wc, - :host > kol-link-wc.secondary > a:hover > kol-span-wc { - border-color: var(--color-blau-dark); - color: var(--color-blau-dark); - } - :host > kol-button-wc.normal > button > kol-span-wc, - :host > kol-link-wc.normal > a > kol-span-wc { - background-color: var(--color-blau); - border-color: var(--color-blau); - color: white; - } - :host > kol-button-wc.normal > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.normal > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.normal > a:focus > kol-span-wc, - :host > kol-link-wc.normal > a:hover > kol-span-wc { - background-color: var(--color-blau-dark); - } - :host > kol-button-wc.danger > button > kol-span-wc, - :host > kol-link-wc.danger > a > kol-span-wc { - background-color: var(--color-rot); - border-color: var(--color-rot); - color: white; - } - :host > kol-button-wc.danger > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.danger > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.danger > a:focus > kol-span-wc, - :host > kol-link-wc.danger > a:hover > kol-span-wc { - background-color: var(--color-rot); - } - :host > kol-button-wc.ghost > button > kol-span-wc, - :host > kol-link-wc.ghost > a > kol-span-wc { - background-color: transparent; - border-color: transparent; - color: var(--color-blau); - } - :host > kol-button-wc.ghost > button:not(:disabled):focus > kol-span-wc, - :host > kol-button-wc.ghost > button:not(:disabled):hover > kol-span-wc, - :host > kol-link-wc.ghost > a:focus > kol-span-wc, - :host > kol-link-wc.ghost > a:hover > kol-span-wc { - color: var(--color-blau-dark); - } - :host > kol-button-wc > button:not(:disabled):hover, - :host > kol-link-wc > a:hover { - outline-color: var(--color-blau-dark); - outline-offset: 0.125rem; - outline-style: solid; - outline-width: 0.125rem; - transition: outline-offset 0.2s linear; - } - a:focus, - button:not(:disabled):focus { - cursor: pointer; - outline-color: var(--color-blau-dark); - outline-offset: 0.125rem; - outline-style: solid; - outline-width: 0.125rem; - transition: outline-offset 0.2s linear; - } - `, - 'KOL-BUTTON-GROUP': css` - :host > kol-button-group-wc { - background-color: var(--color-neutral); - border-radius: var(--border-radius); - gap: var(--gap); - } - `, - 'KOL-PAGINATION': css` - :host { - display: grid; - gap: 1rem; - } - :host .navigation-list { - display: inline-flex; - flex-wrap: wrap; - align-items: center; - gap: 0.5em; - } - :host .selected button > kol-span-wc { - background-color: var(--color-akzent); - border-color: var(--color-akzent-dark); - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - color: white; - cursor: not-allowed; - font-weight: 700; - line-height: 1rem; - padding: 0.75rem 1rem; - text-decoration: underline; - } - `, - 'KOL-TOAST-CONTAINER': css` - :host { - top: 1rem; - width: 750px; - left: 50%; - transform: translateX(-50%); - } - `, - 'KOL-TOAST': css` - .toast { - background: #fff; - margin-top: 1rem; - } - `, - 'KOL-PROGRESS': css` - svg line:first-child, - svg circle:first-child { - stroke: var(--color-neutral); - } - svg line:last-child, - svg circle:last-child { - stroke: var(--color-blau); - } - `, - 'KOL-INPUT-CHECKBOX': css` - :host { - --spacing: 0.25rem; - } - - .checkbox-container { - justify-content: flex-start; - } - input { - border-color: var(--color-neutral-dark); - border-width: 2px; - border-style: solid; - } - .input-label { - padding-left: 0.75rem; - } - kol-input:not(.disabled):hover label, - kol-input:not(.disabled):focus-within label { - text-decoration: underline; - } - kol-input:not(.disabled):hover input { - border-color: var(--color-neutral-dark-correct); - } - :host kol-input:not(.disabled) :is(.input, label) { - cursor: pointer; - } - .required label > span::after { - content: '*'; - padding-left: 0.125em; - } /* NEU */ - kol-input { - display: grid; - align-items: center; - justify-items: left; - width: 100%; - } - kol-input.default { - grid-template-columns: calc(6 * var(--spacing)) auto; - } - kol-input.switch { - grid-template-columns: calc(13 * var(--spacing)) auto; - } - .button { - grid-template-areas: - 'input label' - 'hint hint' - 'error error'; - gap: 0.5rem 0; - } - kol-input > div.input { - display: inline-flex; - order: 1; - } - kol-input > div.input input { - margin: 0px; - } - kol-input > label { - order: 2; - } - kol-input > kol-alert.error { - order: 3; - padding-top: 0.25em; - grid-column: span 2 / auto; - } /* CHECKBOX */ - input[type='checkbox'] { - appearance: none; - background-color: white; - transition: 0.5s; - } - input[type='checkbox']:checked, - input[type='checkbox']:indeterminate { - background-color: var(--color-blau); - border-color: var(--color-blau); - } - .default input[type='checkbox'] { - border-radius: 0.25em; - height: calc(6 * var(--spacing)); - min-width: calc(6 * var(--spacing)); - width: calc(6 * var(--spacing)); - } - .default input[type='checkbox']:indeterminate { - background-color: var(--color-blau); - } - .default .icon { - color: #fff; - margin-left: 0.25rem; - } - .switch input[type='checkbox'] { - display: block; - min-width: 3.2em; - width: 3.2em; - height: 1.7em; - border-radius: 0.25em; - position: relative; - } - .switch input[type='checkbox']:before { - -webkit-transition: 0.5s; - -moz-transition: 0.5s; - -ms-transition: 0.5s; - transition: 0.5; - width: 1.2em; - height: 1.2em; - left: calc(0.25em - 2px); - top: calc(0.25em - 2px); - border-radius: 0.25em; - background-color: black; - position: absolute; - } - .switch input[type='checkbox']:checked:before { - -webkit-transform: translateX(1.5em); - -moz-transform: translateX(1.5em); - -ms-transform: translateX(1.5em); - transform: translateX(1.5em); - background-color: white; - } - .switch input[type='checkbox']:indeterminate { - background-color: var(--color-blau); - } - .switch input[type='checkbox']:indeterminate:before { - -webkit-transform: translateX(0.75em); - -moz-transform: translateX(0.75em); - -ms-transform: translateX(0.75em); - transform: translateX(0.75em); - background-color: white; - } - .switch:not(.checked):not(.indeterminate) .icon { - color: #fff; - } - .disabled { - opacity: 0.33; - } - .button:focus-within { - border-radius: var(--border-radius); - outline-color: var(--color-blau-dark); - outline-offset: 0.125rem; - outline-style: solid; - outline-width: 0.125rem; - } - `, - 'KOL-INPUT-RADIO': css` - /* ALL INPUT, SELECT, TEXTAREA */ - :host { - --spacing: 0.25rem; - } - legend { - font-weight: var(--font-weight-bold); - margin-bottom: 0.5rem; - } - input { - border-color: var(--color-neutral-dark); - border-width: 2px; - border-style: solid; - } - - kol-input.disabled input, - kol-input.disabled label { - cursor: not-allowed !important; - opacity: 0.5; - } - kol-input:hover:not(.disabled) label, - kol-input:focus-within { - text-decoration: underline; - } - .required legend > span::after { - content: '*'; - padding-left: 0.125em; - } - input { - width: 100%; - border-color: var(--color-neutral-dark); - border-width: 2px; - border-style: solid; - } - input:hover { - border-color: var(--color-blau); - } - kol-alert { - display: block; - width: 100%; - margin-bottom: 0.4em; - } /* RADIO */ - fieldset { - border: 0; - margin: 0; - padding: 1.5rem; - display: flex; - flex-direction: column; - } - fieldset div.input { - display: flex; - } - fieldset div.input > div { - margin: auto 0; - display: flex; - flex-direction: row; - align-items: center; - gap: 0.75rem; - } - fieldset div input[type='radio'] { - appearance: none; - transition: 0.5s; - border-radius: 100%; - height: calc(6 * var(--spacing)); - min-width: calc(6 * var(--spacing)); - width: calc(6 * var(--spacing)); - border-color: var(--color-grau-30); - } - kol-input:not(.disabled):hover input[type='radio'] { - border-color: var(--color-neutral-dark); - } - fieldset div input[type='radio']:checked:before { - box-shadow: 0 0 0.1rem black; - background-color: var(--color-blau); - } - kol-alert.error { - margin: 0.4em 0; - order: 3; - } - fieldset legend { - order: 1; - display: contents; - } - fieldset kol-input { - order: 2; - } - .radio-input-wrapper { - display: flex; - align-items: center; - } - .radio-label { - padding-left: 0.5rem; - } - .disabled { - opacity: 0.33; - } - fieldset.horizontal { - flex-direction: row; - flex-wrap: wrap; - gap: 0.5rem 1rem; - } - fieldset.horizontal legend { - display: inline-block; - margin-bottom: 0.25em; - } - `, - 'KOL-INPUT-COLOR': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-INPUT-FILE': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-INPUT-EMAIL': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-INPUT-NUMBER': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-INPUT-DATE': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-INPUT-TEXT': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-SELECT': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-50); - border-style: solid; - border-width: 2px; - gap: var(--gap); - overflow: hidden; - padding: 0 0.75em; - } - .error .input { - border-color: var(--color-rot); - } - select:not([multiple]) { - appearance: none; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2308335e' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E"); - background-position: right center; - background-repeat: no-repeat; - background-size: 14px auto; - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-neutral-dark-correct); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-TEXTAREA': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input .counter { - order: 3; - } - kol-input > kol-alert.error { - order: 4; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 5; - font-size: 0.8rem; - } - `, - 'KOL-INDENTED-TEXT': css` - :host > div { - background: white; - border-left: none; - box-shadow: calc(-1 * var(--gap)) 0px 0px var(--color-blau); - padding: var(--gap) calc(2 * var(--gap)); - width: 100%; - } - `, - 'KOL-DETAILS': css` - :host details > kol-indented-text { - margin: 0.25em 0 0 0.65em; - } - `, - 'KOL-NAV': css` - :host > div { - gap: var(--gap); - } - .entry kol-span-wc { - color: black; - } - nav { - background-color: #f2f2f2; - } - .expand-button button { - margin: auto; - height: 100%; - } - :is(a, button):focus { - outline: none; - } - kol-span-wc { - border-color: transparent; - border-style: solid; - border-width: 2px; - color: var(--color-white); - font-size: 18px; - justify-items: start; - padding: 1rem; - height: 100%; - } - a { - text-decoration: none; - } - :is(kol-button-wc, kol-link-wc):focus-within kol-span-wc { - border-color: var(--color-white); - } - :is(kol-button-wc, kol-link-wc):focus-within kol-span-wc, - :is(kol-button-wc, kol-link-wc):hover kol-span-wc { - text-decoration: underline; - } - div > .expand-button kol-icon::part(icon)::before { - content: '\\eab6'; - } - .expanded > div > .expand-button kol-icon::part(icon)::before { - content: '\\eab4'; - } - .vertical li.active { - border-right: 0.375em solid var(--color-akzent); - } - `, - 'KOL-TABS': css` - :host > div { - display: block; - width: 100%; - } - :host kol-button-group-wc { - border-radius: 0.25rem 0.25rem 0 0; - background-color: var(--color-blau-light); - } - :host kol-button-group-wc > div { - display: inline-flex; - } - :host kol-button-group-wc > div + div { - margin-left: 0.25em; - } - :host kol-button-group-wc button { - width: 100%; - } - :host > div > div { - padding: 0.25em; - border: 1px solid var(--border-color); - border-radius: 0 0 0.25rem 0.25rem; - } - button { - box-sizing: border-box; - font-size: inherit; - line-height: 1.25em; - cursor: pointer; - border-width: 2px; - box-shadow: 0 0 0.25em gray; - font-family: var(--font-family); - width: inherit; - border-radius: var(--border-radius); - border-style: solid; - padding: calc(2 * var(--spacing)); - display: grid; - gap: 0.25em; - align-items: center; - justify-content: center; - text-align: center; - transition-duration: 0.5s; - transition-property: background-color, color, border-color; - } - kol-button-wc button.selected, - kol-button-wc[aria-selected='true'] button { - background-color: white; - border-bottom-width: 0.25em !important; - border-bottom-style: solid; - border-bottom-color: var(--color-akzent) !important; - } - button > kol-span-wc span { - display: flex; - gap: 0.25em; - align-items: center; - justify-content: center; - } - button:disabled { - cursor: not-allowed; - opacity: 0.5; - } - button.primary, - button.primary:disabled:hover { - background-color: var(--color-primary); - border-color: var(--color-primary); - color: white; - } - button.primary:hover, - button.primary:focus { - color: var(--color-primary); - } - button.secondary, - button.secondary:disabled:hover { - background-color: var(--color-secondary); - border-color: var(--color-secondary); - color: white; - } - button.secondary:hover, - button.secondary:focus { - color: var(--color-secondary); - } - button.normal, - button.normal:disabled:hover { - background-color: var(--color-normal); - border-color: var(--color-normal); - color: white; - } - button.normal:hover, - button.normal:focus { - color: var(--color-normal); - } - button.danger, - button.danger:disabled:hover { - background-color: var(--color-danger); - border-color: var(--color-danger); - color: white; - } - button.danger:hover, - button.danger:focus { - color: var(--color-danger); - } - button.ghost, - button.ghost:disabled:hover { - background-color: white; - border-color: var(--color-ghost); - color: var(--color-ghost); - } - button.ghost:hover, - button.ghost:focus { - background-color: var(--color-ghost); - color: white; - } - button:hover, - button:focus { - background-color: white; - box-shadow: 0 0 0.25em black; - } - button:active { - outline: 0 !important; - box-shadow: none !important; - } - .close-button { - font-size: 25%; - height: fit-content; - width: 0; - } - .close-button button { - width: 1rem; - position: relative; - height: 1rem; - left: -4.25em; - top: 0.25em; - } - :host > div { - display: grid; - } - :host > div.tabs-align-left { - grid-template-columns: auto 1fr; - } - :host > div.tabs-align-right { - grid-template-columns: 1fr auto; - } - :host > .tabs-align-left kol-button-group-wc, - :host > .tabs-align-top kol-button-group-wc { - order: 0; - } - :host > .tabs-align-bottom kol-button-group-wc, - :host > .tabs-align-right kol-button-group-wc { - order: 1; - } - :host > div.tabs-align-left kol-button-group-wc > div, - :host > div.tabs-align-left kol-button-group-wc > div > div, - :host > div.tabs-align-right kol-button-group-wc > div, - :host > div.tabs-align-right kol-button-group-wc > div > div { - display: grid; - } - :host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc, - :host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc { - width: 100%; - } - :host > div.tabs-align-bottom kol-button-group-wc div, - :host > div.tabs-align-top kol-button-group-wc div { - display: flex; - flex-wrap: wrap; - } - :host > div.tabs-align-bottom > kol-button-group-wc { - border-radius: 0 0 0.25rem 0.25rem; - } - :host > div.tabs-align-bottom > div { - border-radius: 0.25rem 0.25rem 0 0; - } - :host > div.tabs-align-top > kol-button-group-wc { - border-radius: 0.25rem 0.25rem 0 0; - } - :host > div.tabs-align-top > div { - border-radius: 0 0 0.25rem 0.25rem; - } - :host > div.tabs-align-left > kol-button-group-wc { - border-radius: 0.25rem 0 0 0.25rem; - } - :host > div.tabs-align-left > div { - border-radius: 0 0.25rem 0.25rem 0; - } - :host > div.tabs-align-right > kol-button-group-wc { - border-radius: 0 0.25rem 0.25rem 0; - } - :host > div.tabs-align-right > div { - border-radius: 0.25rem 0 0 0.25rem; - } - `, - 'KOL-BREADCRUMB': css` - ul, - li { - gap: 0px; - place-items: baseline; - } - kol-icon { - text-align: center; - } - kol-icon::part(icon):before { - content: '/'; - text-align: center; - } - `, - 'KOL-INPUT-PASSWORD': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - `, - 'KOL-INPUT-RANGE': css` - kol-input { - gap: var(--gap); - } - kol-input .input { - border-color: var(--color-grau-30); - border-width: 2px; - border-style: solid; - padding: 0px 0.75em; - gap: var(--gap); - overflow: hidden; - } - .error .input { - border-color: var(--color-rot); - } - kol-input:not(.disabled) .input:focus-within, - kol-input:not(.disabled) .input:hover { - border-color: var(--color-grau-60); - } - kol-input:not(.select, .textarea) .input { - height: calc(var(--a11y-min-size) - 4px); - } - kol-input:not(.range) .input :is(input, select, textarea) { - background-color: white; - border: 0; - } - kol-input .input input[type='file'] { - padding-top: calc(0.5em + 2px); - } - kol-input > label { - font-weight: var(--font-weight-bold); - order: 1; - margin-bottom: 0.25rem; - } - kol-input > label > span { - color: var(--default-letter); - } - kol-input > div.input { - border-radius: 0.25rem; - order: 2; - } - kol-input > span.hint { - color: var(--color-grau-60); - font-style: italic; - order: 4; - font-size: 0.8rem; - } - kol-input > kol-alert.error { - order: 3; - } - .inputs-wrapper { - gap: 1em; - } - `, - 'KOL-ICON': css` - /*! * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2022 Fonticons, Inc. */ - .fa { - font-family: var(--fa-style-family, 'Font Awesome 6 Free'); - font-weight: var(--fa-style, 900); - } - .fa, - .fa-brands, - .fa-duotone, - .fa-light, - .fa-regular, - .fa-solid, - .fa-thin, - .fab, - .fad, - .fal, - .far, - .fas, - .fat { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: var(--fa-display, inline-block); - font-style: normal; - font-variant: normal; - line-height: 1; - text-rendering: auto; - } - .fa-1x { - font-size: 1em; - } - .fa-2x { - font-size: 2em; - } - .fa-3x { - font-size: 3em; - } - .fa-4x { - font-size: 4em; - } - .fa-5x { - font-size: 5em; - } - .fa-6x { - font-size: 6em; - } - .fa-7x { - font-size: 7em; - } - .fa-8x { - font-size: 8em; - } - .fa-9x { - font-size: 9em; - } - .fa-10x { - font-size: 10em; - } - .fa-2xs { - font-size: 0.625em; - line-height: 0.1em; - vertical-align: 0.225em; - } - .fa-xs { - font-size: 0.75em; - line-height: 0.08333em; - vertical-align: 0.125em; - } - .fa-sm { - font-size: 0.875em; - line-height: 0.07143em; - vertical-align: 0.05357em; - } - .fa-lg { - font-size: 1.25em; - line-height: 0.05em; - vertical-align: -0.075em; - } - .fa-xl { - font-size: 1.5em; - line-height: 0.04167em; - vertical-align: -0.125em; - } - .fa-2xl { - font-size: 2em; - line-height: 0.03125em; - vertical-align: -0.1875em; - } - .fa-fw { - text-align: center; - width: 1.25em; - } - .fa-ul { - list-style-type: none; - margin-left: var(--fa-li-margin, 2.5em); - padding-left: 0; - } - .fa-ul > li { - position: relative; - } - .fa-li { - left: calc(var(--fa-li-width, 2em) * -1); - position: absolute; - text-align: center; - width: var(--fa-li-width, 2em); - line-height: inherit; - } - .fa-border { - border-radius: var(--fa-border-radius, 0.1em); - border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) var(--fa-border-color, #eee); - padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); - } - .fa-pull-left { - float: left; - margin-right: var(--fa-pull-margin, 0.3em); - } - .fa-pull-right { - float: right; - margin-left: var(--fa-pull-margin, 0.3em); - } - .fa-beat { - -webkit-animation-name: fa-beat; - animation-name: fa-beat; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); - } - .fa-bounce { - -webkit-animation-name: fa-bounce; - animation-name: fa-bounce; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); - } - .fa-fade { - -webkit-animation-name: fa-fade; - animation-name: fa-fade; - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - } - .fa-beat-fade, - .fa-fade { - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - } - .fa-beat-fade { - -webkit-animation-name: fa-beat-fade; - animation-name: fa-beat-fade; - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); - } - .fa-flip { - -webkit-animation-name: fa-flip; - animation-name: fa-flip; - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); - animation-timing-function: var(--fa-animation-timing, ease-in-out); - } - .fa-shake { - -webkit-animation-name: fa-shake; - animation-name: fa-shake; - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); - } - .fa-shake, - .fa-spin { - -webkit-animation-delay: var(--fa-animation-delay, 0); - animation-delay: var(--fa-animation-delay, 0); - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - } - .fa-spin { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-duration: var(--fa-animation-duration, 2s); - animation-duration: var(--fa-animation-duration, 2s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, linear); - animation-timing-function: var(--fa-animation-timing, linear); - } - .fa-spin-reverse { - --fa-animation-direction: reverse; - } - .fa-pulse, - .fa-spin-pulse { - -webkit-animation-name: fa-spin; - animation-name: fa-spin; - -webkit-animation-direction: var(--fa-animation-direction, normal); - animation-direction: var(--fa-animation-direction, normal); - -webkit-animation-duration: var(--fa-animation-duration, 1s); - animation-duration: var(--fa-animation-duration, 1s); - -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); - animation-iteration-count: var(--fa-animation-iteration-count, infinite); - -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); - animation-timing-function: var(--fa-animation-timing, steps(8)); - } - @media (prefers-reduced-motion: reduce) { - .fa-beat, - .fa-beat-fade, - .fa-bounce, - .fa-fade, - .fa-flip, - .fa-pulse, - .fa-shake, - .fa-spin, - .fa-spin-pulse { - -webkit-animation-delay: -1ms; - animation-delay: -1ms; - -webkit-animation-duration: 1ms; - animation-duration: 1ms; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transition-delay: 0s; - transition-duration: 0s; - } - } - @-webkit-keyframes fa-beat { - 0%, - 90% { - -webkit-transform: scale(1); - transform: scale(1); - } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); - } - } - @keyframes fa-beat { - 0%, - 90% { - -webkit-transform: scale(1); - transform: scale(1); - } - 45% { - -webkit-transform: scale(var(--fa-beat-scale, 1.25)); - transform: scale(var(--fa-beat-scale, 1.25)); - } - } - @-webkit-keyframes fa-bounce { - 0% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - } - 57% { - -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - } - 64% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - to { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - } - @keyframes fa-bounce { - 0% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - 10% { - -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); - } - 30% { - -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); - } - 50% { - -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); - } - 57% { - -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); - } - 64% { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - to { - -webkit-transform: scale(1) translateY(0); - transform: scale(1) translateY(0); - } - } - @-webkit-keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); - } - } - @keyframes fa-fade { - 50% { - opacity: var(--fa-fade-opacity, 0.4); - } - } - @-webkit-keyframes fa-beat-fade { - 0%, - to { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); - } - } - @keyframes fa-beat-fade { - 0%, - to { - opacity: var(--fa-beat-fade-opacity, 0.4); - -webkit-transform: scale(1); - transform: scale(1); - } - 50% { - opacity: 1; - -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); - transform: scale(var(--fa-beat-fade-scale, 1.125)); - } - } - @-webkit-keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - } - } - @keyframes fa-flip { - 50% { - -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); - } - } - @-webkit-keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); - } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 8%, - 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); - } - 12%, - 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); - } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); - } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); - } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); - } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); - } - 40%, - to { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - } - @keyframes fa-shake { - 0% { - -webkit-transform: rotate(-15deg); - transform: rotate(-15deg); - } - 4% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - 8%, - 24% { - -webkit-transform: rotate(-18deg); - transform: rotate(-18deg); - } - 12%, - 28% { - -webkit-transform: rotate(18deg); - transform: rotate(18deg); - } - 16% { - -webkit-transform: rotate(-22deg); - transform: rotate(-22deg); - } - 20% { - -webkit-transform: rotate(22deg); - transform: rotate(22deg); - } - 32% { - -webkit-transform: rotate(-12deg); - transform: rotate(-12deg); - } - 36% { - -webkit-transform: rotate(12deg); - transform: rotate(12deg); - } - 40%, - to { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - } - @-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } - } - @keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } - } - .fa-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - } - .fa-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - } - .fa-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); - } - .fa-flip-horizontal { - -webkit-transform: scaleX(-1); - transform: scaleX(-1); - } - .fa-flip-vertical { - -webkit-transform: scaleY(-1); - transform: scaleY(-1); - } - .fa-flip-both, - .fa-flip-horizontal.fa-flip-vertical { - -webkit-transform: scale(-1); - transform: scale(-1); - } - .fa-rotate-by { - -webkit-transform: rotate(var(--fa-rotate-angle, none)); - transform: rotate(var(--fa-rotate-angle, none)); - } - .fa-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; - } - .fa-stack-1x, - .fa-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; - z-index: var(--fa-stack-z-index, auto); - } - .fa-stack-1x { - line-height: inherit; - } - .fa-stack-2x { - font-size: 2em; - } - .fa-inverse { - color: var(--fa-inverse, #fff); - } - .fa-0:before { - content: '\\30'; - } - .fa-1:before { - content: '\\31'; - } - .fa-2:before { - content: '\\32'; - } - .fa-3:before { - content: '\\33'; - } - .fa-4:before { - content: '\\34'; - } - .fa-5:before { - content: '\\35'; - } - .fa-6:before { - content: '\\36'; - } - .fa-7:before { - content: '\\37'; - } - .fa-8:before { - content: '\\38'; - } - .fa-9:before { - content: '\\39'; - } - .fa-a:before { - content: '\\41'; - } - .fa-address-book:before, - .fa-contact-book:before { - content: '\\f2b9'; - } - .fa-address-card:before, - .fa-contact-card:before, - .fa-vcard:before { - content: '\\f2bb'; - } - .fa-align-center:before { - content: '\\f037'; - } - .fa-align-justify:before { - content: '\\f039'; - } - .fa-align-left:before { - content: '\\f036'; - } - .fa-align-right:before { - content: '\\f038'; - } - .fa-anchor:before { - content: '\\f13d'; - } - .fa-anchor-circle-check:before { - content: '\\e4aa'; - } - .fa-anchor-circle-exclamation:before { - content: '\\e4ab'; - } - .fa-anchor-circle-xmark:before { - content: '\\e4ac'; - } - .fa-anchor-lock:before { - content: '\\e4ad'; - } - .fa-angle-down:before { - content: '\\f107'; - } - .fa-angle-left:before { - content: '\\f104'; - } - .fa-angle-right:before { - content: '\\f105'; - } - .fa-angle-up:before { - content: '\\f106'; - } - .fa-angle-double-down:before, - .fa-angles-down:before { - content: '\\f103'; - } - .fa-angle-double-left:before, - .fa-angles-left:before { - content: '\\f100'; - } - .fa-angle-double-right:before, - .fa-angles-right:before { - content: '\\f101'; - } - .fa-angle-double-up:before, - .fa-angles-up:before { - content: '\\f102'; - } - .fa-ankh:before { - content: '\\f644'; - } - .fa-apple-alt:before, - .fa-apple-whole:before { - content: '\\f5d1'; - } - .fa-archway:before { - content: '\\f557'; - } - .fa-arrow-down:before { - content: '\\f063'; - } - .fa-arrow-down-1-9:before, - .fa-sort-numeric-asc:before, - .fa-sort-numeric-down:before { - content: '\\f162'; - } - .fa-arrow-down-9-1:before, - .fa-sort-numeric-desc:before, - .fa-sort-numeric-down-alt:before { - content: '\\f886'; - } - .fa-arrow-down-a-z:before, - .fa-sort-alpha-asc:before, - .fa-sort-alpha-down:before { - content: '\\f15d'; - } - .fa-arrow-down-long:before, - .fa-long-arrow-down:before { - content: '\\f175'; - } - .fa-arrow-down-short-wide:before, - .fa-sort-amount-desc:before, - .fa-sort-amount-down-alt:before { - content: '\\f884'; - } - .fa-arrow-down-up-across-line:before { - content: '\\e4af'; - } - .fa-arrow-down-up-lock:before { - content: '\\e4b0'; - } - .fa-arrow-down-wide-short:before, - .fa-sort-amount-asc:before, - .fa-sort-amount-down:before { - content: '\\f160'; - } - .fa-arrow-down-z-a:before, - .fa-sort-alpha-desc:before, - .fa-sort-alpha-down-alt:before { - content: '\\f881'; - } - .fa-arrow-left:before { - content: '\\f060'; - } - .fa-arrow-left-long:before, - .fa-long-arrow-left:before { - content: '\\f177'; - } - .fa-arrow-pointer:before, - .fa-mouse-pointer:before { - content: '\\f245'; - } - .fa-arrow-right:before { - content: '\\f061'; - } - .fa-arrow-right-arrow-left:before, - .fa-exchange:before { - content: '\\f0ec'; - } - .fa-arrow-right-from-bracket:before, - .fa-sign-out:before { - content: '\\f08b'; - } - .fa-arrow-right-long:before, - .fa-long-arrow-right:before { - content: '\\f178'; - } - .fa-arrow-right-to-bracket:before, - .fa-sign-in:before { - content: '\\f090'; - } - .fa-arrow-right-to-city:before { - content: '\\e4b3'; - } - .fa-arrow-left-rotate:before, - .fa-arrow-rotate-back:before, - .fa-arrow-rotate-backward:before, - .fa-arrow-rotate-left:before, - .fa-undo:before { - content: '\\f0e2'; - } - .fa-arrow-right-rotate:before, - .fa-arrow-rotate-forward:before, - .fa-arrow-rotate-right:before, - .fa-redo:before { - content: '\\f01e'; - } - .fa-arrow-trend-down:before { - content: '\\e097'; - } - .fa-arrow-trend-up:before { - content: '\\e098'; - } - .fa-arrow-turn-down:before, - .fa-level-down:before { - content: '\\f149'; - } - .fa-arrow-turn-up:before, - .fa-level-up:before { - content: '\\f148'; - } - .fa-arrow-up:before { - content: '\\f062'; - } - .fa-arrow-up-1-9:before, - .fa-sort-numeric-up:before { - content: '\\f163'; - } - .fa-arrow-up-9-1:before, - .fa-sort-numeric-up-alt:before { - content: '\\f887'; - } - .fa-arrow-up-a-z:before, - .fa-sort-alpha-up:before { - content: '\\f15e'; - } - .fa-arrow-up-from-bracket:before { - content: '\\e09a'; - } - .fa-arrow-up-from-ground-water:before { - content: '\\e4b5'; - } - .fa-arrow-up-from-water-pump:before { - content: '\\e4b6'; - } - .fa-arrow-up-long:before, - .fa-long-arrow-up:before { - content: '\\f176'; - } - .fa-arrow-up-right-dots:before { - content: '\\e4b7'; - } - .fa-arrow-up-right-from-square:before, - .fa-external-link:before { - content: '\\f08e'; - } - .fa-arrow-up-short-wide:before, - .fa-sort-amount-up-alt:before { - content: '\\f885'; - } - .fa-arrow-up-wide-short:before, - .fa-sort-amount-up:before { - content: '\\f161'; - } - .fa-arrow-up-z-a:before, - .fa-sort-alpha-up-alt:before { - content: '\\f882'; - } - .fa-arrows-down-to-line:before { - content: '\\e4b8'; - } - .fa-arrows-down-to-people:before { - content: '\\e4b9'; - } - .fa-arrows-h:before, - .fa-arrows-left-right:before { - content: '\\f07e'; - } - .fa-arrows-left-right-to-line:before { - content: '\\e4ba'; - } - .fa-arrows-rotate:before, - .fa-refresh:before, - .fa-sync:before { - content: '\\f021'; - } - .fa-arrows-spin:before { - content: '\\e4bb'; - } - .fa-arrows-split-up-and-left:before { - content: '\\e4bc'; - } - .fa-arrows-to-circle:before { - content: '\\e4bd'; - } - .fa-arrows-to-dot:before { - content: '\\e4be'; - } - .fa-arrows-to-eye:before { - content: '\\e4bf'; - } - .fa-arrows-turn-right:before { - content: '\\e4c0'; - } - .fa-arrows-turn-to-dots:before { - content: '\\e4c1'; - } - .fa-arrows-up-down:before, - .fa-arrows-v:before { - content: '\\f07d'; - } - .fa-arrows-up-down-left-right:before, - .fa-arrows:before { - content: '\\f047'; - } - .fa-arrows-up-to-line:before { - content: '\\e4c2'; - } - .fa-asterisk:before { - content: '\\2a'; - } - .fa-at:before { - content: '\\40'; - } - .fa-atom:before { - content: '\\f5d2'; - } - .fa-audio-description:before { - content: '\\f29e'; - } - .fa-austral-sign:before { - content: '\\e0a9'; - } - .fa-award:before { - content: '\\f559'; - } - .fa-b:before { - content: '\\42'; - } - .fa-baby:before { - content: '\\f77c'; - } - .fa-baby-carriage:before, - .fa-carriage-baby:before { - content: '\\f77d'; - } - .fa-backward:before { - content: '\\f04a'; - } - .fa-backward-fast:before, - .fa-fast-backward:before { - content: '\\f049'; - } - .fa-backward-step:before, - .fa-step-backward:before { - content: '\\f048'; - } - .fa-bacon:before { - content: '\\f7e5'; - } - .fa-bacteria:before { - content: '\\e059'; - } - .fa-bacterium:before { - content: '\\e05a'; - } - .fa-bag-shopping:before, - .fa-shopping-bag:before { - content: '\\f290'; - } - .fa-bahai:before { - content: '\\f666'; - } - .fa-baht-sign:before { - content: '\\e0ac'; - } - .fa-ban:before, - .fa-cancel:before { - content: '\\f05e'; - } - .fa-ban-smoking:before, - .fa-smoking-ban:before { - content: '\\f54d'; - } - .fa-band-aid:before, - .fa-bandage:before { - content: '\\f462'; - } - .fa-barcode:before { - content: '\\f02a'; - } - .fa-bars:before, - .fa-navicon:before { - content: '\\f0c9'; - } - .fa-bars-progress:before, - .fa-tasks-alt:before { - content: '\\f828'; - } - .fa-bars-staggered:before, - .fa-reorder:before, - .fa-stream:before { - content: '\\f550'; - } - .fa-baseball-ball:before, - .fa-baseball:before { - content: '\\f433'; - } - .fa-baseball-bat-ball:before { - content: '\\f432'; - } - .fa-basket-shopping:before, - .fa-shopping-basket:before { - content: '\\f291'; - } - .fa-basketball-ball:before, - .fa-basketball:before { - content: '\\f434'; - } - .fa-bath:before, - .fa-bathtub:before { - content: '\\f2cd'; - } - .fa-battery-0:before, - .fa-battery-empty:before { - content: '\\f244'; - } - .fa-battery-5:before, - .fa-battery-full:before, - .fa-battery:before { - content: '\\f240'; - } - .fa-battery-3:before, - .fa-battery-half:before { - content: '\\f242'; - } - .fa-battery-2:before, - .fa-battery-quarter:before { - content: '\\f243'; - } - .fa-battery-4:before, - .fa-battery-three-quarters:before { - content: '\\f241'; - } - .fa-bed:before { - content: '\\f236'; - } - .fa-bed-pulse:before, - .fa-procedures:before { - content: '\\f487'; - } - .fa-beer-mug-empty:before, - .fa-beer:before { - content: '\\f0fc'; - } - .fa-bell:before { - content: '\\f0f3'; - } - .fa-bell-concierge:before, - .fa-concierge-bell:before { - content: '\\f562'; - } - .fa-bell-slash:before { - content: '\\f1f6'; - } - .fa-bezier-curve:before { - content: '\\f55b'; - } - .fa-bicycle:before { - content: '\\f206'; - } - .fa-binoculars:before { - content: '\\f1e5'; - } - .fa-biohazard:before { - content: '\\f780'; - } - .fa-bitcoin-sign:before { - content: '\\e0b4'; - } - .fa-blender:before { - content: '\\f517'; - } - .fa-blender-phone:before { - content: '\\f6b6'; - } - .fa-blog:before { - content: '\\f781'; - } - .fa-bold:before { - content: '\\f032'; - } - .fa-bolt:before, - .fa-zap:before { - content: '\\f0e7'; - } - .fa-bolt-lightning:before { - content: '\\e0b7'; - } - .fa-bomb:before { - content: '\\f1e2'; - } - .fa-bone:before { - content: '\\f5d7'; - } - .fa-bong:before { - content: '\\f55c'; - } - .fa-book:before { - content: '\\f02d'; - } - .fa-atlas:before, - .fa-book-atlas:before { - content: '\\f558'; - } - .fa-bible:before, - .fa-book-bible:before { - content: '\\f647'; - } - .fa-book-bookmark:before { - content: '\\e0bb'; - } - .fa-book-journal-whills:before, - .fa-journal-whills:before { - content: '\\f66a'; - } - .fa-book-medical:before { - content: '\\f7e6'; - } - .fa-book-open:before { - content: '\\f518'; - } - .fa-book-open-reader:before, - .fa-book-reader:before { - content: '\\f5da'; - } - .fa-book-quran:before, - .fa-quran:before { - content: '\\f687'; - } - .fa-book-dead:before, - .fa-book-skull:before { - content: '\\f6b7'; - } - .fa-bookmark:before { - content: '\\f02e'; - } - .fa-border-all:before { - content: '\\f84c'; - } - .fa-border-none:before { - content: '\\f850'; - } - .fa-border-style:before, - .fa-border-top-left:before { - content: '\\f853'; - } - .fa-bore-hole:before { - content: '\\e4c3'; - } - .fa-bottle-droplet:before { - content: '\\e4c4'; - } - .fa-bottle-water:before { - content: '\\e4c5'; - } - .fa-bowl-food:before { - content: '\\e4c6'; - } - .fa-bowl-rice:before { - content: '\\e2eb'; - } - .fa-bowling-ball:before { - content: '\\f436'; - } - .fa-box:before { - content: '\\f466'; - } - .fa-archive:before, - .fa-box-archive:before { - content: '\\f187'; - } - .fa-box-open:before { - content: '\\f49e'; - } - .fa-box-tissue:before { - content: '\\e05b'; - } - .fa-boxes-packing:before { - content: '\\e4c7'; - } - .fa-boxes-alt:before, - .fa-boxes-stacked:before, - .fa-boxes:before { - content: '\\f468'; - } - .fa-braille:before { - content: '\\f2a1'; - } - .fa-brain:before { - content: '\\f5dc'; - } - .fa-brazilian-real-sign:before { - content: '\\e46c'; - } - .fa-bread-slice:before { - content: '\\f7ec'; - } - .fa-bridge:before { - content: '\\e4c8'; - } - .fa-bridge-circle-check:before { - content: '\\e4c9'; - } - .fa-bridge-circle-exclamation:before { - content: '\\e4ca'; - } - .fa-bridge-circle-xmark:before { - content: '\\e4cb'; - } - .fa-bridge-lock:before { - content: '\\e4cc'; - } - .fa-bridge-water:before { - content: '\\e4ce'; - } - .fa-briefcase:before { - content: '\\f0b1'; - } - .fa-briefcase-medical:before { - content: '\\f469'; - } - .fa-broom:before { - content: '\\f51a'; - } - .fa-broom-ball:before, - .fa-quidditch-broom-ball:before, - .fa-quidditch:before { - content: '\\f458'; - } - .fa-brush:before { - content: '\\f55d'; - } - .fa-bucket:before { - content: '\\e4cf'; - } - .fa-bug:before { - content: '\\f188'; - } - .fa-bug-slash:before { - content: '\\e490'; - } - .fa-bugs:before { - content: '\\e4d0'; - } - .fa-building:before { - content: '\\f1ad'; - } - .fa-building-circle-arrow-right:before { - content: '\\e4d1'; - } - .fa-building-circle-check:before { - content: '\\e4d2'; - } - .fa-building-circle-exclamation:before { - content: '\\e4d3'; - } - .fa-building-circle-xmark:before { - content: '\\e4d4'; - } - .fa-bank:before, - .fa-building-columns:before, - .fa-institution:before, - .fa-museum:before, - .fa-university:before { - content: '\\f19c'; - } - .fa-building-flag:before { - content: '\\e4d5'; - } - .fa-building-lock:before { - content: '\\e4d6'; - } - .fa-building-ngo:before { - content: '\\e4d7'; - } - .fa-building-shield:before { - content: '\\e4d8'; - } - .fa-building-un:before { - content: '\\e4d9'; - } - .fa-building-user:before { - content: '\\e4da'; - } - .fa-building-wheat:before { - content: '\\e4db'; - } - .fa-bullhorn:before { - content: '\\f0a1'; - } - .fa-bullseye:before { - content: '\\f140'; - } - .fa-burger:before, - .fa-hamburger:before { - content: '\\f805'; - } - .fa-burst:before { - content: '\\e4dc'; - } - .fa-bus:before { - content: '\\f207'; - } - .fa-bus-alt:before, - .fa-bus-simple:before { - content: '\\f55e'; - } - .fa-briefcase-clock:before, - .fa-business-time:before { - content: '\\f64a'; - } - .fa-c:before { - content: '\\43'; - } - .fa-birthday-cake:before, - .fa-cake-candles:before, - .fa-cake:before { - content: '\\f1fd'; - } - .fa-calculator:before { - content: '\\f1ec'; - } - .fa-calendar:before { - content: '\\f133'; - } - .fa-calendar-check:before { - content: '\\f274'; - } - .fa-calendar-day:before { - content: '\\f783'; - } - .fa-calendar-alt:before, - .fa-calendar-days:before { - content: '\\f073'; - } - .fa-calendar-minus:before { - content: '\\f272'; - } - .fa-calendar-plus:before { - content: '\\f271'; - } - .fa-calendar-week:before { - content: '\\f784'; - } - .fa-calendar-times:before, - .fa-calendar-xmark:before { - content: '\\f273'; - } - .fa-camera-alt:before, - .fa-camera:before { - content: '\\f030'; - } - .fa-camera-retro:before { - content: '\\f083'; - } - .fa-camera-rotate:before { - content: '\\e0d8'; - } - .fa-campground:before { - content: '\\f6bb'; - } - .fa-candy-cane:before { - content: '\\f786'; - } - .fa-cannabis:before { - content: '\\f55f'; - } - .fa-capsules:before { - content: '\\f46b'; - } - .fa-automobile:before, - .fa-car:before { - content: '\\f1b9'; - } - .fa-battery-car:before, - .fa-car-battery:before { - content: '\\f5df'; - } - .fa-car-burst:before, - .fa-car-crash:before { - content: '\\f5e1'; - } - .fa-car-on:before { - content: '\\e4dd'; - } - .fa-car-alt:before, - .fa-car-rear:before { - content: '\\f5de'; - } - .fa-car-side:before { - content: '\\f5e4'; - } - .fa-car-tunnel:before { - content: '\\e4de'; - } - .fa-caravan:before { - content: '\\f8ff'; - } - .fa-caret-down:before { - content: '\\f0d7'; - } - .fa-caret-left:before { - content: '\\f0d9'; - } - .fa-caret-right:before { - content: '\\f0da'; - } - .fa-caret-up:before { - content: '\\f0d8'; - } - .fa-carrot:before { - content: '\\f787'; - } - .fa-cart-arrow-down:before { - content: '\\f218'; - } - .fa-cart-flatbed:before, - .fa-dolly-flatbed:before { - content: '\\f474'; - } - .fa-cart-flatbed-suitcase:before, - .fa-luggage-cart:before { - content: '\\f59d'; - } - .fa-cart-plus:before { - content: '\\f217'; - } - .fa-cart-shopping:before, - .fa-shopping-cart:before { - content: '\\f07a'; - } - .fa-cash-register:before { - content: '\\f788'; - } - .fa-cat:before { - content: '\\f6be'; - } - .fa-cedi-sign:before { - content: '\\e0df'; - } - .fa-cent-sign:before { - content: '\\e3f5'; - } - .fa-certificate:before { - content: '\\f0a3'; - } - .fa-chair:before { - content: '\\f6c0'; - } - .fa-blackboard:before, - .fa-chalkboard:before { - content: '\\f51b'; - } - .fa-chalkboard-teacher:before, - .fa-chalkboard-user:before { - content: '\\f51c'; - } - .fa-champagne-glasses:before, - .fa-glass-cheers:before { - content: '\\f79f'; - } - .fa-charging-station:before { - content: '\\f5e7'; - } - .fa-area-chart:before, - .fa-chart-area:before { - content: '\\f1fe'; - } - .fa-bar-chart:before, - .fa-chart-bar:before { - content: '\\f080'; - } - .fa-chart-column:before { - content: '\\e0e3'; - } - .fa-chart-gantt:before { - content: '\\e0e4'; - } - .fa-chart-line:before, - .fa-line-chart:before { - content: '\\f201'; - } - .fa-chart-pie:before, - .fa-pie-chart:before { - content: '\\f200'; - } - .fa-chart-simple:before { - content: '\\e473'; - } - .fa-check:before { - content: '\\f00c'; - } - .fa-check-double:before { - content: '\\f560'; - } - .fa-check-to-slot:before, - .fa-vote-yea:before { - content: '\\f772'; - } - .fa-cheese:before { - content: '\\f7ef'; - } - .fa-chess:before { - content: '\\f439'; - } - .fa-chess-bishop:before { - content: '\\f43a'; - } - .fa-chess-board:before { - content: '\\f43c'; - } - .fa-chess-king:before { - content: '\\f43f'; - } - .fa-chess-knight:before { - content: '\\f441'; - } - .fa-chess-pawn:before { - content: '\\f443'; - } - .fa-chess-queen:before { - content: '\\f445'; - } - .fa-chess-rook:before { - content: '\\f447'; - } - .fa-chevron-down:before { - content: '\\f078'; - } - .fa-chevron-left:before { - content: '\\f053'; - } - .fa-chevron-right:before { - content: '\\f054'; - } - .fa-chevron-up:before { - content: '\\f077'; - } - .fa-child:before { - content: '\\f1ae'; - } - .fa-child-dress:before { - content: '\\e59c'; - } - .fa-child-reaching:before { - content: '\\e59d'; - } - .fa-child-rifle:before { - content: '\\e4e0'; - } - .fa-children:before { - content: '\\e4e1'; - } - .fa-church:before { - content: '\\f51d'; - } - .fa-circle:before { - content: '\\f111'; - } - .fa-arrow-circle-down:before, - .fa-circle-arrow-down:before { - content: '\\f0ab'; - } - .fa-arrow-circle-left:before, - .fa-circle-arrow-left:before { - content: '\\f0a8'; - } - .fa-arrow-circle-right:before, - .fa-circle-arrow-right:before { - content: '\\f0a9'; - } - .fa-arrow-circle-up:before, - .fa-circle-arrow-up:before { - content: '\\f0aa'; - } - .fa-check-circle:before, - .fa-circle-check:before { - content: '\\f058'; - } - .fa-chevron-circle-down:before, - .fa-circle-chevron-down:before { - content: '\\f13a'; - } - .fa-chevron-circle-left:before, - .fa-circle-chevron-left:before { - content: '\\f137'; - } - .fa-chevron-circle-right:before, - .fa-circle-chevron-right:before { - content: '\\f138'; - } - .fa-chevron-circle-up:before, - .fa-circle-chevron-up:before { - content: '\\f139'; - } - .fa-circle-dollar-to-slot:before, - .fa-donate:before { - content: '\\f4b9'; - } - .fa-circle-dot:before, - .fa-dot-circle:before { - content: '\\f192'; - } - .fa-arrow-alt-circle-down:before, - .fa-circle-down:before { - content: '\\f358'; - } - .fa-circle-exclamation:before, - .fa-exclamation-circle:before { - content: '\\f06a'; - } - .fa-circle-h:before, - .fa-hospital-symbol:before { - content: '\\f47e'; - } - .fa-adjust:before, - .fa-circle-half-stroke:before { - content: '\\f042'; - } - .fa-circle-info:before, - .fa-info-circle:before { - content: '\\f05a'; - } - .fa-arrow-alt-circle-left:before, - .fa-circle-left:before { - content: '\\f359'; - } - .fa-circle-minus:before, - .fa-minus-circle:before { - content: '\\f056'; - } - .fa-circle-nodes:before { - content: '\\e4e2'; - } - .fa-circle-notch:before { - content: '\\f1ce'; - } - .fa-circle-pause:before, - .fa-pause-circle:before { - content: '\\f28b'; - } - .fa-circle-play:before, - .fa-play-circle:before { - content: '\\f144'; - } - .fa-circle-plus:before, - .fa-plus-circle:before { - content: '\\f055'; - } - .fa-circle-question:before, - .fa-question-circle:before { - content: '\\f059'; - } - .fa-circle-radiation:before, - .fa-radiation-alt:before { - content: '\\f7ba'; - } - .fa-arrow-alt-circle-right:before, - .fa-circle-right:before { - content: '\\f35a'; - } - .fa-circle-stop:before, - .fa-stop-circle:before { - content: '\\f28d'; - } - .fa-arrow-alt-circle-up:before, - .fa-circle-up:before { - content: '\\f35b'; - } - .fa-circle-user:before, - .fa-user-circle:before { - content: '\\f2bd'; - } - .fa-circle-xmark:before, - .fa-times-circle:before, - .fa-xmark-circle:before { - content: '\\f057'; - } - .fa-city:before { - content: '\\f64f'; - } - .fa-clapperboard:before { - content: '\\e131'; - } - .fa-clipboard:before { - content: '\\f328'; - } - .fa-clipboard-check:before { - content: '\\f46c'; - } - .fa-clipboard-list:before { - content: '\\f46d'; - } - .fa-clipboard-question:before { - content: '\\e4e3'; - } - .fa-clipboard-user:before { - content: '\\f7f3'; - } - .fa-clock-four:before, - .fa-clock:before { - content: '\\f017'; - } - .fa-clock-rotate-left:before, - .fa-history:before { - content: '\\f1da'; - } - .fa-clone:before { - content: '\\f24d'; - } - .fa-closed-captioning:before { - content: '\\f20a'; - } - .fa-cloud:before { - content: '\\f0c2'; - } - .fa-cloud-arrow-down:before, - .fa-cloud-download-alt:before, - .fa-cloud-download:before { - content: '\\f0ed'; - } - .fa-cloud-arrow-up:before, - .fa-cloud-upload-alt:before, - .fa-cloud-upload:before { - content: '\\f0ee'; - } - .fa-cloud-bolt:before, - .fa-thunderstorm:before { - content: '\\f76c'; - } - .fa-cloud-meatball:before { - content: '\\f73b'; - } - .fa-cloud-moon:before { - content: '\\f6c3'; - } - .fa-cloud-moon-rain:before { - content: '\\f73c'; - } - .fa-cloud-rain:before { - content: '\\f73d'; - } - .fa-cloud-showers-heavy:before { - content: '\\f740'; - } - .fa-cloud-showers-water:before { - content: '\\e4e4'; - } - .fa-cloud-sun:before { - content: '\\f6c4'; - } - .fa-cloud-sun-rain:before { - content: '\\f743'; - } - .fa-clover:before { - content: '\\e139'; - } - .fa-code:before { - content: '\\f121'; - } - .fa-code-branch:before { - content: '\\f126'; - } - .fa-code-commit:before { - content: '\\f386'; - } - .fa-code-compare:before { - content: '\\e13a'; - } - .fa-code-fork:before { - content: '\\e13b'; - } - .fa-code-merge:before { - content: '\\f387'; - } - .fa-code-pull-request:before { - content: '\\e13c'; - } - .fa-coins:before { - content: '\\f51e'; - } - .fa-colon-sign:before { - content: '\\e140'; - } - .fa-comment:before { - content: '\\f075'; - } - .fa-comment-dollar:before { - content: '\\f651'; - } - .fa-comment-dots:before, - .fa-commenting:before { - content: '\\f4ad'; - } - .fa-comment-medical:before { - content: '\\f7f5'; - } - .fa-comment-slash:before { - content: '\\f4b3'; - } - .fa-comment-sms:before, - .fa-sms:before { - content: '\\f7cd'; - } - .fa-comments:before { - content: '\\f086'; - } - .fa-comments-dollar:before { - content: '\\f653'; - } - .fa-compact-disc:before { - content: '\\f51f'; - } - .fa-compass:before { - content: '\\f14e'; - } - .fa-compass-drafting:before, - .fa-drafting-compass:before { - content: '\\f568'; - } - .fa-compress:before { - content: '\\f066'; - } - .fa-computer:before { - content: '\\e4e5'; - } - .fa-computer-mouse:before, - .fa-mouse:before { - content: '\\f8cc'; - } - .fa-cookie:before { - content: '\\f563'; - } - .fa-cookie-bite:before { - content: '\\f564'; - } - .fa-copy:before { - content: '\\f0c5'; - } - .fa-copyright:before { - content: '\\f1f9'; - } - .fa-couch:before { - content: '\\f4b8'; - } - .fa-cow:before { - content: '\\f6c8'; - } - .fa-credit-card-alt:before, - .fa-credit-card:before { - content: '\\f09d'; - } - .fa-crop:before { - content: '\\f125'; - } - .fa-crop-alt:before, - .fa-crop-simple:before { - content: '\\f565'; - } - .fa-cross:before { - content: '\\f654'; - } - .fa-crosshairs:before { - content: '\\f05b'; - } - .fa-crow:before { - content: '\\f520'; - } - .fa-crown:before { - content: '\\f521'; - } - .fa-crutch:before { - content: '\\f7f7'; - } - .fa-cruzeiro-sign:before { - content: '\\e152'; - } - .fa-cube:before { - content: '\\f1b2'; - } - .fa-cubes:before { - content: '\\f1b3'; - } - .fa-cubes-stacked:before { - content: '\\e4e6'; - } - .fa-d:before { - content: '\\44'; - } - .fa-database:before { - content: '\\f1c0'; - } - .fa-backspace:before, - .fa-delete-left:before { - content: '\\f55a'; - } - .fa-democrat:before { - content: '\\f747'; - } - .fa-desktop-alt:before, - .fa-desktop:before { - content: '\\f390'; - } - .fa-dharmachakra:before { - content: '\\f655'; - } - .fa-diagram-next:before { - content: '\\e476'; - } - .fa-diagram-predecessor:before { - content: '\\e477'; - } - .fa-diagram-project:before, - .fa-project-diagram:before { - content: '\\f542'; - } - .fa-diagram-successor:before { - content: '\\e47a'; - } - .fa-diamond:before { - content: '\\f219'; - } - .fa-diamond-turn-right:before, - .fa-directions:before { - content: '\\f5eb'; - } - .fa-dice:before { - content: '\\f522'; - } - .fa-dice-d20:before { - content: '\\f6cf'; - } - .fa-dice-d6:before { - content: '\\f6d1'; - } - .fa-dice-five:before { - content: '\\f523'; - } - .fa-dice-four:before { - content: '\\f524'; - } - .fa-dice-one:before { - content: '\\f525'; - } - .fa-dice-six:before { - content: '\\f526'; - } - .fa-dice-three:before { - content: '\\f527'; - } - .fa-dice-two:before { - content: '\\f528'; - } - .fa-disease:before { - content: '\\f7fa'; - } - .fa-display:before { - content: '\\e163'; - } - .fa-divide:before { - content: '\\f529'; - } - .fa-dna:before { - content: '\\f471'; - } - .fa-dog:before { - content: '\\f6d3'; - } - .fa-dollar-sign:before, - .fa-dollar:before, - .fa-usd:before { - content: '\\24'; - } - .fa-dolly-box:before, - .fa-dolly:before { - content: '\\f472'; - } - .fa-dong-sign:before { - content: '\\e169'; - } - .fa-door-closed:before { - content: '\\f52a'; - } - .fa-door-open:before { - content: '\\f52b'; - } - .fa-dove:before { - content: '\\f4ba'; - } - .fa-compress-alt:before, - .fa-down-left-and-up-right-to-center:before { - content: '\\f422'; - } - .fa-down-long:before, - .fa-long-arrow-alt-down:before { - content: '\\f309'; - } - .fa-download:before { - content: '\\f019'; - } - .fa-dragon:before { - content: '\\f6d5'; - } - .fa-draw-polygon:before { - content: '\\f5ee'; - } - .fa-droplet:before, - .fa-tint:before { - content: '\\f043'; - } - .fa-droplet-slash:before, - .fa-tint-slash:before { - content: '\\f5c7'; - } - .fa-drum:before { - content: '\\f569'; - } - .fa-drum-steelpan:before { - content: '\\f56a'; - } - .fa-drumstick-bite:before { - content: '\\f6d7'; - } - .fa-dumbbell:before { - content: '\\f44b'; - } - .fa-dumpster:before { - content: '\\f793'; - } - .fa-dumpster-fire:before { - content: '\\f794'; - } - .fa-dungeon:before { - content: '\\f6d9'; - } - .fa-e:before { - content: '\\45'; - } - .fa-deaf:before, - .fa-deafness:before, - .fa-ear-deaf:before, - .fa-hard-of-hearing:before { - content: '\\f2a4'; - } - .fa-assistive-listening-systems:before, - .fa-ear-listen:before { - content: '\\f2a2'; - } - .fa-earth-africa:before, - .fa-globe-africa:before { - content: '\\f57c'; - } - .fa-earth-america:before, - .fa-earth-americas:before, - .fa-earth:before, - .fa-globe-americas:before { - content: '\\f57d'; - } - .fa-earth-asia:before, - .fa-globe-asia:before { - content: '\\f57e'; - } - .fa-earth-europe:before, - .fa-globe-europe:before { - content: '\\f7a2'; - } - .fa-earth-oceania:before, - .fa-globe-oceania:before { - content: '\\e47b'; - } - .fa-egg:before { - content: '\\f7fb'; - } - .fa-eject:before { - content: '\\f052'; - } - .fa-elevator:before { - content: '\\e16d'; - } - .fa-ellipsis-h:before, - .fa-ellipsis:before { - content: '\\f141'; - } - .fa-ellipsis-v:before, - .fa-ellipsis-vertical:before { - content: '\\f142'; - } - .fa-envelope:before { - content: '\\f0e0'; - } - .fa-envelope-circle-check:before { - content: '\\e4e8'; - } - .fa-envelope-open:before { - content: '\\f2b6'; - } - .fa-envelope-open-text:before { - content: '\\f658'; - } - .fa-envelopes-bulk:before, - .fa-mail-bulk:before { - content: '\\f674'; - } - .fa-equals:before { - content: '\\3d'; - } - .fa-eraser:before { - content: '\\f12d'; - } - .fa-ethernet:before { - content: '\\f796'; - } - .fa-eur:before, - .fa-euro-sign:before, - .fa-euro:before { - content: '\\f153'; - } - .fa-exclamation:before { - content: '\\21'; - } - .fa-expand:before { - content: '\\f065'; - } - .fa-explosion:before { - content: '\\e4e9'; - } - .fa-eye:before { - content: '\\f06e'; - } - .fa-eye-dropper-empty:before, - .fa-eye-dropper:before, - .fa-eyedropper:before { - content: '\\f1fb'; - } - .fa-eye-low-vision:before, - .fa-low-vision:before { - content: '\\f2a8'; - } - .fa-eye-slash:before { - content: '\\f070'; - } - .fa-f:before { - content: '\\46'; - } - .fa-angry:before, - .fa-face-angry:before { - content: '\\f556'; - } - .fa-dizzy:before, - .fa-face-dizzy:before { - content: '\\f567'; - } - .fa-face-flushed:before, - .fa-flushed:before { - content: '\\f579'; - } - .fa-face-frown:before, - .fa-frown:before { - content: '\\f119'; - } - .fa-face-frown-open:before, - .fa-frown-open:before { - content: '\\f57a'; - } - .fa-face-grimace:before, - .fa-grimace:before { - content: '\\f57f'; - } - .fa-face-grin:before, - .fa-grin:before { - content: '\\f580'; - } - .fa-face-grin-beam:before, - .fa-grin-beam:before { - content: '\\f582'; - } - .fa-face-grin-beam-sweat:before, - .fa-grin-beam-sweat:before { - content: '\\f583'; - } - .fa-face-grin-hearts:before, - .fa-grin-hearts:before { - content: '\\f584'; - } - .fa-face-grin-squint:before, - .fa-grin-squint:before { - content: '\\f585'; - } - .fa-face-grin-squint-tears:before, - .fa-grin-squint-tears:before { - content: '\\f586'; - } - .fa-face-grin-stars:before, - .fa-grin-stars:before { - content: '\\f587'; - } - .fa-face-grin-tears:before, - .fa-grin-tears:before { - content: '\\f588'; - } - .fa-face-grin-tongue:before, - .fa-grin-tongue:before { - content: '\\f589'; - } - .fa-face-grin-tongue-squint:before, - .fa-grin-tongue-squint:before { - content: '\\f58a'; - } - .fa-face-grin-tongue-wink:before, - .fa-grin-tongue-wink:before { - content: '\\f58b'; - } - .fa-face-grin-wide:before, - .fa-grin-alt:before { - content: '\\f581'; - } - .fa-face-grin-wink:before, - .fa-grin-wink:before { - content: '\\f58c'; - } - .fa-face-kiss:before, - .fa-kiss:before { - content: '\\f596'; - } - .fa-face-kiss-beam:before, - .fa-kiss-beam:before { - content: '\\f597'; - } - .fa-face-kiss-wink-heart:before, - .fa-kiss-wink-heart:before { - content: '\\f598'; - } - .fa-face-laugh:before, - .fa-laugh:before { - content: '\\f599'; - } - .fa-face-laugh-beam:before, - .fa-laugh-beam:before { - content: '\\f59a'; - } - .fa-face-laugh-squint:before, - .fa-laugh-squint:before { - content: '\\f59b'; - } - .fa-face-laugh-wink:before, - .fa-laugh-wink:before { - content: '\\f59c'; - } - .fa-face-meh:before, - .fa-meh:before { - content: '\\f11a'; - } - .fa-face-meh-blank:before, - .fa-meh-blank:before { - content: '\\f5a4'; - } - .fa-face-rolling-eyes:before, - .fa-meh-rolling-eyes:before { - content: '\\f5a5'; - } - .fa-face-sad-cry:before, - .fa-sad-cry:before { - content: '\\f5b3'; - } - .fa-face-sad-tear:before, - .fa-sad-tear:before { - content: '\\f5b4'; - } - .fa-face-smile:before, - .fa-smile:before { - content: '\\f118'; - } - .fa-face-smile-beam:before, - .fa-smile-beam:before { - content: '\\f5b8'; - } - .fa-face-smile-wink:before, - .fa-smile-wink:before { - content: '\\f4da'; - } - .fa-face-surprise:before, - .fa-surprise:before { - content: '\\f5c2'; - } - .fa-face-tired:before, - .fa-tired:before { - content: '\\f5c8'; - } - .fa-fan:before { - content: '\\f863'; - } - .fa-faucet:before { - content: '\\e005'; - } - .fa-faucet-drip:before { - content: '\\e006'; - } - .fa-fax:before { - content: '\\f1ac'; - } - .fa-feather:before { - content: '\\f52d'; - } - .fa-feather-alt:before, - .fa-feather-pointed:before { - content: '\\f56b'; - } - .fa-ferry:before { - content: '\\e4ea'; - } - .fa-file:before { - content: '\\f15b'; - } - .fa-file-arrow-down:before, - .fa-file-download:before { - content: '\\f56d'; - } - .fa-file-arrow-up:before, - .fa-file-upload:before { - content: '\\f574'; - } - .fa-file-audio:before { - content: '\\f1c7'; - } - .fa-file-circle-check:before { - content: '\\e493'; - } - .fa-file-circle-exclamation:before { - content: '\\e4eb'; - } - .fa-file-circle-minus:before { - content: '\\e4ed'; - } - .fa-file-circle-plus:before { - content: '\\e4ee'; - } - .fa-file-circle-question:before { - content: '\\e4ef'; - } - .fa-file-circle-xmark:before { - content: '\\e494'; - } - .fa-file-code:before { - content: '\\f1c9'; - } - .fa-file-contract:before { - content: '\\f56c'; - } - .fa-file-csv:before { - content: '\\f6dd'; - } - .fa-file-excel:before { - content: '\\f1c3'; - } - .fa-arrow-right-from-file:before, - .fa-file-export:before { - content: '\\f56e'; - } - .fa-file-image:before { - content: '\\f1c5'; - } - .fa-arrow-right-to-file:before, - .fa-file-import:before { - content: '\\f56f'; - } - .fa-file-invoice:before { - content: '\\f570'; - } - .fa-file-invoice-dollar:before { - content: '\\f571'; - } - .fa-file-alt:before, - .fa-file-lines:before, - .fa-file-text:before { - content: '\\f15c'; - } - .fa-file-medical:before { - content: '\\f477'; - } - .fa-file-pdf:before { - content: '\\f1c1'; - } - .fa-file-edit:before, - .fa-file-pen:before { - content: '\\f31c'; - } - .fa-file-powerpoint:before { - content: '\\f1c4'; - } - .fa-file-prescription:before { - content: '\\f572'; - } - .fa-file-shield:before { - content: '\\e4f0'; - } - .fa-file-signature:before { - content: '\\f573'; - } - .fa-file-video:before { - content: '\\f1c8'; - } - .fa-file-medical-alt:before, - .fa-file-waveform:before { - content: '\\f478'; - } - .fa-file-word:before { - content: '\\f1c2'; - } - .fa-file-archive:before, - .fa-file-zipper:before { - content: '\\f1c6'; - } - .fa-fill:before { - content: '\\f575'; - } - .fa-fill-drip:before { - content: '\\f576'; - } - .fa-film:before { - content: '\\f008'; - } - .fa-filter:before { - content: '\\f0b0'; - } - .fa-filter-circle-dollar:before, - .fa-funnel-dollar:before { - content: '\\f662'; - } - .fa-filter-circle-xmark:before { - content: '\\e17b'; - } - .fa-fingerprint:before { - content: '\\f577'; - } - .fa-fire:before { - content: '\\f06d'; - } - .fa-fire-burner:before { - content: '\\e4f1'; - } - .fa-fire-extinguisher:before { - content: '\\f134'; - } - .fa-fire-alt:before, - .fa-fire-flame-curved:before { - content: '\\f7e4'; - } - .fa-burn:before, - .fa-fire-flame-simple:before { - content: '\\f46a'; - } - .fa-fish:before { - content: '\\f578'; - } - .fa-fish-fins:before { - content: '\\e4f2'; - } - .fa-flag:before { - content: '\\f024'; - } - .fa-flag-checkered:before { - content: '\\f11e'; - } - .fa-flag-usa:before { - content: '\\f74d'; - } - .fa-flask:before { - content: '\\f0c3'; - } - .fa-flask-vial:before { - content: '\\e4f3'; - } - .fa-floppy-disk:before, - .fa-save:before { - content: '\\f0c7'; - } - .fa-florin-sign:before { - content: '\\e184'; - } - .fa-folder-blank:before, - .fa-folder:before { - content: '\\f07b'; - } - .fa-folder-closed:before { - content: '\\e185'; - } - .fa-folder-minus:before { - content: '\\f65d'; - } - .fa-folder-open:before { - content: '\\f07c'; - } - .fa-folder-plus:before { - content: '\\f65e'; - } - .fa-folder-tree:before { - content: '\\f802'; - } - .fa-font:before { - content: '\\f031'; - } - .fa-football-ball:before, - .fa-football:before { - content: '\\f44e'; - } - .fa-forward:before { - content: '\\f04e'; - } - .fa-fast-forward:before, - .fa-forward-fast:before { - content: '\\f050'; - } - .fa-forward-step:before, - .fa-step-forward:before { - content: '\\f051'; - } - .fa-franc-sign:before { - content: '\\e18f'; - } - .fa-frog:before { - content: '\\f52e'; - } - .fa-futbol-ball:before, - .fa-futbol:before, - .fa-soccer-ball:before { - content: '\\f1e3'; - } - .fa-g:before { - content: '\\47'; - } - .fa-gamepad:before { - content: '\\f11b'; - } - .fa-gas-pump:before { - content: '\\f52f'; - } - .fa-dashboard:before, - .fa-gauge-med:before, - .fa-gauge:before, - .fa-tachometer-alt-average:before { - content: '\\f624'; - } - .fa-gauge-high:before, - .fa-tachometer-alt-fast:before, - .fa-tachometer-alt:before { - content: '\\f625'; - } - .fa-gauge-simple-med:before, - .fa-gauge-simple:before, - .fa-tachometer-average:before { - content: '\\f629'; - } - .fa-gauge-simple-high:before, - .fa-tachometer-fast:before, - .fa-tachometer:before { - content: '\\f62a'; - } - .fa-gavel:before, - .fa-legal:before { - content: '\\f0e3'; - } - .fa-cog:before, - .fa-gear:before { - content: '\\f013'; - } - .fa-cogs:before, - .fa-gears:before { - content: '\\f085'; - } - .fa-gem:before { - content: '\\f3a5'; - } - .fa-genderless:before { - content: '\\f22d'; - } - .fa-ghost:before { - content: '\\f6e2'; - } - .fa-gift:before { - content: '\\f06b'; - } - .fa-gifts:before { - content: '\\f79c'; - } - .fa-glass-water:before { - content: '\\e4f4'; - } - .fa-glass-water-droplet:before { - content: '\\e4f5'; - } - .fa-glasses:before { - content: '\\f530'; - } - .fa-globe:before { - content: '\\f0ac'; - } - .fa-golf-ball-tee:before, - .fa-golf-ball:before { - content: '\\f450'; - } - .fa-gopuram:before { - content: '\\f664'; - } - .fa-graduation-cap:before, - .fa-mortar-board:before { - content: '\\f19d'; - } - .fa-greater-than:before { - content: '\\3e'; - } - .fa-greater-than-equal:before { - content: '\\f532'; - } - .fa-grip-horizontal:before, - .fa-grip:before { - content: '\\f58d'; - } - .fa-grip-lines:before { - content: '\\f7a4'; - } - .fa-grip-lines-vertical:before { - content: '\\f7a5'; - } - .fa-grip-vertical:before { - content: '\\f58e'; - } - .fa-group-arrows-rotate:before { - content: '\\e4f6'; - } - .fa-guarani-sign:before { - content: '\\e19a'; - } - .fa-guitar:before { - content: '\\f7a6'; - } - .fa-gun:before { - content: '\\e19b'; - } - .fa-h:before { - content: '\\48'; - } - .fa-hammer:before { - content: '\\f6e3'; - } - .fa-hamsa:before { - content: '\\f665'; - } - .fa-hand-paper:before, - .fa-hand:before { - content: '\\f256'; - } - .fa-hand-back-fist:before, - .fa-hand-rock:before { - content: '\\f255'; - } - .fa-allergies:before, - .fa-hand-dots:before { - content: '\\f461'; - } - .fa-fist-raised:before, - .fa-hand-fist:before { - content: '\\f6de'; - } - .fa-hand-holding:before { - content: '\\f4bd'; - } - .fa-hand-holding-dollar:before, - .fa-hand-holding-usd:before { - content: '\\f4c0'; - } - .fa-hand-holding-droplet:before, - .fa-hand-holding-water:before { - content: '\\f4c1'; - } - .fa-hand-holding-hand:before { - content: '\\e4f7'; - } - .fa-hand-holding-heart:before { - content: '\\f4be'; - } - .fa-hand-holding-medical:before { - content: '\\e05c'; - } - .fa-hand-lizard:before { - content: '\\f258'; - } - .fa-hand-middle-finger:before { - content: '\\f806'; - } - .fa-hand-peace:before { - content: '\\f25b'; - } - .fa-hand-point-down:before { - content: '\\f0a7'; - } - .fa-hand-point-left:before { - content: '\\f0a5'; - } - .fa-hand-point-right:before { - content: '\\f0a4'; - } - .fa-hand-point-up:before { - content: '\\f0a6'; - } - .fa-hand-pointer:before { - content: '\\f25a'; - } - .fa-hand-scissors:before { - content: '\\f257'; - } - .fa-hand-sparkles:before { - content: '\\e05d'; - } - .fa-hand-spock:before { - content: '\\f259'; - } - .fa-handcuffs:before { - content: '\\e4f8'; - } - .fa-hands:before, - .fa-sign-language:before, - .fa-signing:before { - content: '\\f2a7'; - } - .fa-american-sign-language-interpreting:before, - .fa-asl-interpreting:before, - .fa-hands-american-sign-language-interpreting:before, - .fa-hands-asl-interpreting:before { - content: '\\f2a3'; - } - .fa-hands-bound:before { - content: '\\e4f9'; - } - .fa-hands-bubbles:before, - .fa-hands-wash:before { - content: '\\e05e'; - } - .fa-hands-clapping:before { - content: '\\e1a8'; - } - .fa-hands-holding:before { - content: '\\f4c2'; - } - .fa-hands-holding-child:before { - content: '\\e4fa'; - } - .fa-hands-holding-circle:before { - content: '\\e4fb'; - } - .fa-hands-praying:before, - .fa-praying-hands:before { - content: '\\f684'; - } - .fa-handshake:before { - content: '\\f2b5'; - } - .fa-hands-helping:before, - .fa-handshake-angle:before { - content: '\\f4c4'; - } - .fa-handshake-alt:before, - .fa-handshake-simple:before { - content: '\\f4c6'; - } - .fa-handshake-alt-slash:before, - .fa-handshake-simple-slash:before { - content: '\\e05f'; - } - .fa-handshake-slash:before { - content: '\\e060'; - } - .fa-hanukiah:before { - content: '\\f6e6'; - } - .fa-hard-drive:before, - .fa-hdd:before { - content: '\\f0a0'; - } - .fa-hashtag:before { - content: '\\23'; - } - .fa-hat-cowboy:before { - content: '\\f8c0'; - } - .fa-hat-cowboy-side:before { - content: '\\f8c1'; - } - .fa-hat-wizard:before { - content: '\\f6e8'; - } - .fa-head-side-cough:before { - content: '\\e061'; - } - .fa-head-side-cough-slash:before { - content: '\\e062'; - } - .fa-head-side-mask:before { - content: '\\e063'; - } - .fa-head-side-virus:before { - content: '\\e064'; - } - .fa-header:before, - .fa-heading:before { - content: '\\f1dc'; - } - .fa-headphones:before { - content: '\\f025'; - } - .fa-headphones-alt:before, - .fa-headphones-simple:before { - content: '\\f58f'; - } - .fa-headset:before { - content: '\\f590'; - } - .fa-heart:before { - content: '\\f004'; - } - .fa-heart-circle-bolt:before { - content: '\\e4fc'; - } - .fa-heart-circle-check:before { - content: '\\e4fd'; - } - .fa-heart-circle-exclamation:before { - content: '\\e4fe'; - } - .fa-heart-circle-minus:before { - content: '\\e4ff'; - } - .fa-heart-circle-plus:before { - content: '\\e500'; - } - .fa-heart-circle-xmark:before { - content: '\\e501'; - } - .fa-heart-broken:before, - .fa-heart-crack:before { - content: '\\f7a9'; - } - .fa-heart-pulse:before, - .fa-heartbeat:before { - content: '\\f21e'; - } - .fa-helicopter:before { - content: '\\f533'; - } - .fa-helicopter-symbol:before { - content: '\\e502'; - } - .fa-hard-hat:before, - .fa-hat-hard:before, - .fa-helmet-safety:before { - content: '\\f807'; - } - .fa-helmet-un:before { - content: '\\e503'; - } - .fa-highlighter:before { - content: '\\f591'; - } - .fa-hill-avalanche:before { - content: '\\e507'; - } - .fa-hill-rockslide:before { - content: '\\e508'; - } - .fa-hippo:before { - content: '\\f6ed'; - } - .fa-hockey-puck:before { - content: '\\f453'; - } - .fa-holly-berry:before { - content: '\\f7aa'; - } - .fa-horse:before { - content: '\\f6f0'; - } - .fa-horse-head:before { - content: '\\f7ab'; - } - .fa-hospital-alt:before, - .fa-hospital-wide:before, - .fa-hospital:before { - content: '\\f0f8'; - } - .fa-hospital-user:before { - content: '\\f80d'; - } - .fa-hot-tub-person:before, - .fa-hot-tub:before { - content: '\\f593'; - } - .fa-hotdog:before { - content: '\\f80f'; - } - .fa-hotel:before { - content: '\\f594'; - } - .fa-hourglass-2:before, - .fa-hourglass-half:before, - .fa-hourglass:before { - content: '\\f254'; - } - .fa-hourglass-empty:before { - content: '\\f252'; - } - .fa-hourglass-3:before, - .fa-hourglass-end:before { - content: '\\f253'; - } - .fa-hourglass-1:before, - .fa-hourglass-start:before { - content: '\\f251'; - } - .fa-home-alt:before, - .fa-home-lg-alt:before, - .fa-home:before, - .fa-house:before { - content: '\\f015'; - } - .fa-home-lg:before, - .fa-house-chimney:before { - content: '\\e3af'; - } - .fa-house-chimney-crack:before, - .fa-house-damage:before { - content: '\\f6f1'; - } - .fa-clinic-medical:before, - .fa-house-chimney-medical:before { - content: '\\f7f2'; - } - .fa-house-chimney-user:before { - content: '\\e065'; - } - .fa-house-chimney-window:before { - content: '\\e00d'; - } - .fa-house-circle-check:before { - content: '\\e509'; - } - .fa-house-circle-exclamation:before { - content: '\\e50a'; - } - .fa-house-circle-xmark:before { - content: '\\e50b'; - } - .fa-house-crack:before { - content: '\\e3b1'; - } - .fa-house-fire:before { - content: '\\e50c'; - } - .fa-house-flag:before { - content: '\\e50d'; - } - .fa-house-flood-water:before { - content: '\\e50e'; - } - .fa-house-flood-water-circle-arrow-right:before { - content: '\\e50f'; - } - .fa-house-laptop:before, - .fa-laptop-house:before { - content: '\\e066'; - } - .fa-house-lock:before { - content: '\\e510'; - } - .fa-house-medical:before { - content: '\\e3b2'; - } - .fa-house-medical-circle-check:before { - content: '\\e511'; - } - .fa-house-medical-circle-exclamation:before { - content: '\\e512'; - } - .fa-house-medical-circle-xmark:before { - content: '\\e513'; - } - .fa-house-medical-flag:before { - content: '\\e514'; - } - .fa-house-signal:before { - content: '\\e012'; - } - .fa-house-tsunami:before { - content: '\\e515'; - } - .fa-home-user:before, - .fa-house-user:before { - content: '\\e1b0'; - } - .fa-hryvnia-sign:before, - .fa-hryvnia:before { - content: '\\f6f2'; - } - .fa-hurricane:before { - content: '\\f751'; - } - .fa-i:before { - content: '\\49'; - } - .fa-i-cursor:before { - content: '\\f246'; - } - .fa-ice-cream:before { - content: '\\f810'; - } - .fa-icicles:before { - content: '\\f7ad'; - } - .fa-heart-music-camera-bolt:before, - .fa-icons:before { - content: '\\f86d'; - } - .fa-id-badge:before { - content: '\\f2c1'; - } - .fa-drivers-license:before, - .fa-id-card:before { - content: '\\f2c2'; - } - .fa-id-card-alt:before, - .fa-id-card-clip:before { - content: '\\f47f'; - } - .fa-igloo:before { - content: '\\f7ae'; - } - .fa-image:before { - content: '\\f03e'; - } - .fa-image-portrait:before, - .fa-portrait:before { - content: '\\f3e0'; - } - .fa-images:before { - content: '\\f302'; - } - .fa-inbox:before { - content: '\\f01c'; - } - .fa-indent:before { - content: '\\f03c'; - } - .fa-indian-rupee-sign:before, - .fa-indian-rupee:before, - .fa-inr:before { - content: '\\e1bc'; - } - .fa-industry:before { - content: '\\f275'; - } - .fa-infinity:before { - content: '\\f534'; - } - .fa-info:before { - content: '\\f129'; - } - .fa-italic:before { - content: '\\f033'; - } - .fa-j:before { - content: '\\4a'; - } - .fa-jar:before { - content: '\\e516'; - } - .fa-jar-wheat:before { - content: '\\e517'; - } - .fa-jedi:before { - content: '\\f669'; - } - .fa-fighter-jet:before, - .fa-jet-fighter:before { - content: '\\f0fb'; - } - .fa-jet-fighter-up:before { - content: '\\e518'; - } - .fa-joint:before { - content: '\\f595'; - } - .fa-jug-detergent:before { - content: '\\e519'; - } - .fa-k:before { - content: '\\4b'; - } - .fa-kaaba:before { - content: '\\f66b'; - } - .fa-key:before { - content: '\\f084'; - } - .fa-keyboard:before { - content: '\\f11c'; - } - .fa-khanda:before { - content: '\\f66d'; - } - .fa-kip-sign:before { - content: '\\e1c4'; - } - .fa-first-aid:before, - .fa-kit-medical:before { - content: '\\f479'; - } - .fa-kitchen-set:before { - content: '\\e51a'; - } - .fa-kiwi-bird:before { - content: '\\f535'; - } - .fa-l:before { - content: '\\4c'; - } - .fa-land-mine-on:before { - content: '\\e51b'; - } - .fa-landmark:before { - content: '\\f66f'; - } - .fa-landmark-alt:before, - .fa-landmark-dome:before { - content: '\\f752'; - } - .fa-landmark-flag:before { - content: '\\e51c'; - } - .fa-language:before { - content: '\\f1ab'; - } - .fa-laptop:before { - content: '\\f109'; - } - .fa-laptop-code:before { - content: '\\f5fc'; - } - .fa-laptop-file:before { - content: '\\e51d'; - } - .fa-laptop-medical:before { - content: '\\f812'; - } - .fa-lari-sign:before { - content: '\\e1c8'; - } - .fa-layer-group:before { - content: '\\f5fd'; - } - .fa-leaf:before { - content: '\\f06c'; - } - .fa-left-long:before, - .fa-long-arrow-alt-left:before { - content: '\\f30a'; - } - .fa-arrows-alt-h:before, - .fa-left-right:before { - content: '\\f337'; - } - .fa-lemon:before { - content: '\\f094'; - } - .fa-less-than:before { - content: '\\3c'; - } - .fa-less-than-equal:before { - content: '\\f537'; - } - .fa-life-ring:before { - content: '\\f1cd'; - } - .fa-lightbulb:before { - content: '\\f0eb'; - } - .fa-lines-leaning:before { - content: '\\e51e'; - } - .fa-chain:before, - .fa-link:before { - content: '\\f0c1'; - } - .fa-chain-broken:before, - .fa-chain-slash:before, - .fa-link-slash:before, - .fa-unlink:before { - content: '\\f127'; - } - .fa-lira-sign:before { - content: '\\f195'; - } - .fa-list-squares:before, - .fa-list:before { - content: '\\f03a'; - } - .fa-list-check:before, - .fa-tasks:before { - content: '\\f0ae'; - } - .fa-list-1-2:before, - .fa-list-numeric:before, - .fa-list-ol:before { - content: '\\f0cb'; - } - .fa-list-dots:before, - .fa-list-ul:before { - content: '\\f0ca'; - } - .fa-litecoin-sign:before { - content: '\\e1d3'; - } - .fa-location-arrow:before { - content: '\\f124'; - } - .fa-location-crosshairs:before, - .fa-location:before { - content: '\\f601'; - } - .fa-location-dot:before, - .fa-map-marker-alt:before { - content: '\\f3c5'; - } - .fa-location-pin:before, - .fa-map-marker:before { - content: '\\f041'; - } - .fa-location-pin-lock:before { - content: '\\e51f'; - } - .fa-lock:before { - content: '\\f023'; - } - .fa-lock-open:before { - content: '\\f3c1'; - } - .fa-locust:before { - content: '\\e520'; - } - .fa-lungs:before { - content: '\\f604'; - } - .fa-lungs-virus:before { - content: '\\e067'; - } - .fa-m:before { - content: '\\4d'; - } - .fa-magnet:before { - content: '\\f076'; - } - .fa-magnifying-glass:before, - .fa-search:before { - content: '\\f002'; - } - .fa-magnifying-glass-arrow-right:before { - content: '\\e521'; - } - .fa-magnifying-glass-chart:before { - content: '\\e522'; - } - .fa-magnifying-glass-dollar:before, - .fa-search-dollar:before { - content: '\\f688'; - } - .fa-magnifying-glass-location:before, - .fa-search-location:before { - content: '\\f689'; - } - .fa-magnifying-glass-minus:before, - .fa-search-minus:before { - content: '\\f010'; - } - .fa-magnifying-glass-plus:before, - .fa-search-plus:before { - content: '\\f00e'; - } - .fa-manat-sign:before { - content: '\\e1d5'; - } - .fa-map:before { - content: '\\f279'; - } - .fa-map-location:before, - .fa-map-marked:before { - content: '\\f59f'; - } - .fa-map-location-dot:before, - .fa-map-marked-alt:before { - content: '\\f5a0'; - } - .fa-map-pin:before { - content: '\\f276'; - } - .fa-marker:before { - content: '\\f5a1'; - } - .fa-mars:before { - content: '\\f222'; - } - .fa-mars-and-venus:before { - content: '\\f224'; - } - .fa-mars-and-venus-burst:before { - content: '\\e523'; - } - .fa-mars-double:before { - content: '\\f227'; - } - .fa-mars-stroke:before { - content: '\\f229'; - } - .fa-mars-stroke-h:before, - .fa-mars-stroke-right:before { - content: '\\f22b'; - } - .fa-mars-stroke-up:before, - .fa-mars-stroke-v:before { - content: '\\f22a'; - } - .fa-glass-martini-alt:before, - .fa-martini-glass:before { - content: '\\f57b'; - } - .fa-cocktail:before, - .fa-martini-glass-citrus:before { - content: '\\f561'; - } - .fa-glass-martini:before, - .fa-martini-glass-empty:before { - content: '\\f000'; - } - .fa-mask:before { - content: '\\f6fa'; - } - .fa-mask-face:before { - content: '\\e1d7'; - } - .fa-mask-ventilator:before { - content: '\\e524'; - } - .fa-masks-theater:before, - .fa-theater-masks:before { - content: '\\f630'; - } - .fa-mattress-pillow:before { - content: '\\e525'; - } - .fa-expand-arrows-alt:before, - .fa-maximize:before { - content: '\\f31e'; - } - .fa-medal:before { - content: '\\f5a2'; - } - .fa-memory:before { - content: '\\f538'; - } - .fa-menorah:before { - content: '\\f676'; - } - .fa-mercury:before { - content: '\\f223'; - } - .fa-comment-alt:before, - .fa-message:before { - content: '\\f27a'; - } - .fa-meteor:before { - content: '\\f753'; - } - .fa-microchip:before { - content: '\\f2db'; - } - .fa-microphone:before { - content: '\\f130'; - } - .fa-microphone-alt:before, - .fa-microphone-lines:before { - content: '\\f3c9'; - } - .fa-microphone-alt-slash:before, - .fa-microphone-lines-slash:before { - content: '\\f539'; - } - .fa-microphone-slash:before { - content: '\\f131'; - } - .fa-microscope:before { - content: '\\f610'; - } - .fa-mill-sign:before { - content: '\\e1ed'; - } - .fa-compress-arrows-alt:before, - .fa-minimize:before { - content: '\\f78c'; - } - .fa-minus:before, - .fa-subtract:before { - content: '\\f068'; - } - .fa-mitten:before { - content: '\\f7b5'; - } - .fa-mobile-android:before, - .fa-mobile-phone:before, - .fa-mobile:before { - content: '\\f3ce'; - } - .fa-mobile-button:before { - content: '\\f10b'; - } - .fa-mobile-retro:before { - content: '\\e527'; - } - .fa-mobile-android-alt:before, - .fa-mobile-screen:before { - content: '\\f3cf'; - } - .fa-mobile-alt:before, - .fa-mobile-screen-button:before { - content: '\\f3cd'; - } - .fa-money-bill:before { - content: '\\f0d6'; - } - .fa-money-bill-1:before, - .fa-money-bill-alt:before { - content: '\\f3d1'; - } - .fa-money-bill-1-wave:before, - .fa-money-bill-wave-alt:before { - content: '\\f53b'; - } - .fa-money-bill-transfer:before { - content: '\\e528'; - } - .fa-money-bill-trend-up:before { - content: '\\e529'; - } - .fa-money-bill-wave:before { - content: '\\f53a'; - } - .fa-money-bill-wheat:before { - content: '\\e52a'; - } - .fa-money-bills:before { - content: '\\e1f3'; - } - .fa-money-check:before { - content: '\\f53c'; - } - .fa-money-check-alt:before, - .fa-money-check-dollar:before { - content: '\\f53d'; - } - .fa-monument:before { - content: '\\f5a6'; - } - .fa-moon:before { - content: '\\f186'; - } - .fa-mortar-pestle:before { - content: '\\f5a7'; - } - .fa-mosque:before { - content: '\\f678'; - } - .fa-mosquito:before { - content: '\\e52b'; - } - .fa-mosquito-net:before { - content: '\\e52c'; - } - .fa-motorcycle:before { - content: '\\f21c'; - } - .fa-mound:before { - content: '\\e52d'; - } - .fa-mountain:before { - content: '\\f6fc'; - } - .fa-mountain-city:before { - content: '\\e52e'; - } - .fa-mountain-sun:before { - content: '\\e52f'; - } - .fa-mug-hot:before { - content: '\\f7b6'; - } - .fa-coffee:before, - .fa-mug-saucer:before { - content: '\\f0f4'; - } - .fa-music:before { - content: '\\f001'; - } - .fa-n:before { - content: '\\4e'; - } - .fa-naira-sign:before { - content: '\\e1f6'; - } - .fa-network-wired:before { - content: '\\f6ff'; - } - .fa-neuter:before { - content: '\\f22c'; - } - .fa-newspaper:before { - content: '\\f1ea'; - } - .fa-not-equal:before { - content: '\\f53e'; - } - .fa-note-sticky:before, - .fa-sticky-note:before { - content: '\\f249'; - } - .fa-notes-medical:before { - content: '\\f481'; - } - .fa-o:before { - content: '\\4f'; - } - .fa-object-group:before { - content: '\\f247'; - } - .fa-object-ungroup:before { - content: '\\f248'; - } - .fa-oil-can:before { - content: '\\f613'; - } - .fa-oil-well:before { - content: '\\e532'; - } - .fa-om:before { - content: '\\f679'; - } - .fa-otter:before { - content: '\\f700'; - } - .fa-dedent:before, - .fa-outdent:before { - content: '\\f03b'; - } - .fa-p:before { - content: '\\50'; - } - .fa-pager:before { - content: '\\f815'; - } - .fa-paint-roller:before { - content: '\\f5aa'; - } - .fa-paint-brush:before, - .fa-paintbrush:before { - content: '\\f1fc'; - } - .fa-palette:before { - content: '\\f53f'; - } - .fa-pallet:before { - content: '\\f482'; - } - .fa-panorama:before { - content: '\\e209'; - } - .fa-paper-plane:before { - content: '\\f1d8'; - } - .fa-paperclip:before { - content: '\\f0c6'; - } - .fa-parachute-box:before { - content: '\\f4cd'; - } - .fa-paragraph:before { - content: '\\f1dd'; - } - .fa-passport:before { - content: '\\f5ab'; - } - .fa-file-clipboard:before, - .fa-paste:before { - content: '\\f0ea'; - } - .fa-pause:before { - content: '\\f04c'; - } - .fa-paw:before { - content: '\\f1b0'; - } - .fa-peace:before { - content: '\\f67c'; - } - .fa-pen:before { - content: '\\f304'; - } - .fa-pen-alt:before, - .fa-pen-clip:before { - content: '\\f305'; - } - .fa-pen-fancy:before { - content: '\\f5ac'; - } - .fa-pen-nib:before { - content: '\\f5ad'; - } - .fa-pen-ruler:before, - .fa-pencil-ruler:before { - content: '\\f5ae'; - } - .fa-edit:before, - .fa-pen-to-square:before { - content: '\\f044'; - } - .fa-pencil-alt:before, - .fa-pencil:before { - content: '\\f303'; - } - .fa-people-arrows-left-right:before, - .fa-people-arrows:before { - content: '\\e068'; - } - .fa-people-carry-box:before, - .fa-people-carry:before { - content: '\\f4ce'; - } - .fa-people-group:before { - content: '\\e533'; - } - .fa-people-line:before { - content: '\\e534'; - } - .fa-people-pulling:before { - content: '\\e535'; - } - .fa-people-robbery:before { - content: '\\e536'; - } - .fa-people-roof:before { - content: '\\e537'; - } - .fa-pepper-hot:before { - content: '\\f816'; - } - .fa-percent:before, - .fa-percentage:before { - content: '\\25'; - } - .fa-male:before, - .fa-person:before { - content: '\\f183'; - } - .fa-person-arrow-down-to-line:before { - content: '\\e538'; - } - .fa-person-arrow-up-from-line:before { - content: '\\e539'; - } - .fa-biking:before, - .fa-person-biking:before { - content: '\\f84a'; - } - .fa-person-booth:before { - content: '\\f756'; - } - .fa-person-breastfeeding:before { - content: '\\e53a'; - } - .fa-person-burst:before { - content: '\\e53b'; - } - .fa-person-cane:before { - content: '\\e53c'; - } - .fa-person-chalkboard:before { - content: '\\e53d'; - } - .fa-person-circle-check:before { - content: '\\e53e'; - } - .fa-person-circle-exclamation:before { - content: '\\e53f'; - } - .fa-person-circle-minus:before { - content: '\\e540'; - } - .fa-person-circle-plus:before { - content: '\\e541'; - } - .fa-person-circle-question:before { - content: '\\e542'; - } - .fa-person-circle-xmark:before { - content: '\\e543'; - } - .fa-digging:before, - .fa-person-digging:before { - content: '\\f85e'; - } - .fa-diagnoses:before, - .fa-person-dots-from-line:before { - content: '\\f470'; - } - .fa-female:before, - .fa-person-dress:before { - content: '\\f182'; - } - .fa-person-dress-burst:before { - content: '\\e544'; - } - .fa-person-drowning:before { - content: '\\e545'; - } - .fa-person-falling:before { - content: '\\e546'; - } - .fa-person-falling-burst:before { - content: '\\e547'; - } - .fa-person-half-dress:before { - content: '\\e548'; - } - .fa-person-harassing:before { - content: '\\e549'; - } - .fa-hiking:before, - .fa-person-hiking:before { - content: '\\f6ec'; - } - .fa-person-military-pointing:before { - content: '\\e54a'; - } - .fa-person-military-rifle:before { - content: '\\e54b'; - } - .fa-person-military-to-person:before { - content: '\\e54c'; - } - .fa-person-praying:before, - .fa-pray:before { - content: '\\f683'; - } - .fa-person-pregnant:before { - content: '\\e31e'; - } - .fa-person-rays:before { - content: '\\e54d'; - } - .fa-person-rifle:before { - content: '\\e54e'; - } - .fa-person-running:before, - .fa-running:before { - content: '\\f70c'; - } - .fa-person-shelter:before { - content: '\\e54f'; - } - .fa-person-skating:before, - .fa-skating:before { - content: '\\f7c5'; - } - .fa-person-skiing:before, - .fa-skiing:before { - content: '\\f7c9'; - } - .fa-person-skiing-nordic:before, - .fa-skiing-nordic:before { - content: '\\f7ca'; - } - .fa-person-snowboarding:before, - .fa-snowboarding:before { - content: '\\f7ce'; - } - .fa-person-swimming:before, - .fa-swimmer:before { - content: '\\f5c4'; - } - .fa-person-through-window:before { - content: '\\e433'; - } - .fa-person-walking:before, - .fa-walking:before { - content: '\\f554'; - } - .fa-person-walking-arrow-loop-left:before { - content: '\\e551'; - } - .fa-person-walking-arrow-right:before { - content: '\\e552'; - } - .fa-person-walking-dashed-line-arrow-right:before { - content: '\\e553'; - } - .fa-person-walking-luggage:before { - content: '\\e554'; - } - .fa-blind:before, - .fa-person-walking-with-cane:before { - content: '\\f29d'; - } - .fa-peseta-sign:before { - content: '\\e221'; - } - .fa-peso-sign:before { - content: '\\e222'; - } - .fa-phone:before { - content: '\\f095'; - } - .fa-phone-alt:before, - .fa-phone-flip:before { - content: '\\f879'; - } - .fa-phone-slash:before { - content: '\\f3dd'; - } - .fa-phone-volume:before, - .fa-volume-control-phone:before { - content: '\\f2a0'; - } - .fa-photo-film:before, - .fa-photo-video:before { - content: '\\f87c'; - } - .fa-piggy-bank:before { - content: '\\f4d3'; - } - .fa-pills:before { - content: '\\f484'; - } - .fa-pizza-slice:before { - content: '\\f818'; - } - .fa-place-of-worship:before { - content: '\\f67f'; - } - .fa-plane:before { - content: '\\f072'; - } - .fa-plane-arrival:before { - content: '\\f5af'; - } - .fa-plane-circle-check:before { - content: '\\e555'; - } - .fa-plane-circle-exclamation:before { - content: '\\e556'; - } - .fa-plane-circle-xmark:before { - content: '\\e557'; - } - .fa-plane-departure:before { - content: '\\f5b0'; - } - .fa-plane-lock:before { - content: '\\e558'; - } - .fa-plane-slash:before { - content: '\\e069'; - } - .fa-plane-up:before { - content: '\\e22d'; - } - .fa-plant-wilt:before { - content: '\\e43b'; - } - .fa-plate-wheat:before { - content: '\\e55a'; - } - .fa-play:before { - content: '\\f04b'; - } - .fa-plug:before { - content: '\\f1e6'; - } - .fa-plug-circle-bolt:before { - content: '\\e55b'; - } - .fa-plug-circle-check:before { - content: '\\e55c'; - } - .fa-plug-circle-exclamation:before { - content: '\\e55d'; - } - .fa-plug-circle-minus:before { - content: '\\e55e'; - } - .fa-plug-circle-plus:before { - content: '\\e55f'; - } - .fa-plug-circle-xmark:before { - content: '\\e560'; - } - .fa-add:before, - .fa-plus:before { - content: '\\2b'; - } - .fa-plus-minus:before { - content: '\\e43c'; - } - .fa-podcast:before { - content: '\\f2ce'; - } - .fa-poo:before { - content: '\\f2fe'; - } - .fa-poo-bolt:before, - .fa-poo-storm:before { - content: '\\f75a'; - } - .fa-poop:before { - content: '\\f619'; - } - .fa-power-off:before { - content: '\\f011'; - } - .fa-prescription:before { - content: '\\f5b1'; - } - .fa-prescription-bottle:before { - content: '\\f485'; - } - .fa-prescription-bottle-alt:before, - .fa-prescription-bottle-medical:before { - content: '\\f486'; - } - .fa-print:before { - content: '\\f02f'; - } - .fa-pump-medical:before { - content: '\\e06a'; - } - .fa-pump-soap:before { - content: '\\e06b'; - } - .fa-puzzle-piece:before { - content: '\\f12e'; - } - .fa-q:before { - content: '\\51'; - } - .fa-qrcode:before { - content: '\\f029'; - } - .fa-question:before { - content: '\\3f'; - } - .fa-quote-left-alt:before, - .fa-quote-left:before { - content: '\\f10d'; - } - .fa-quote-right-alt:before, - .fa-quote-right:before { - content: '\\f10e'; - } - .fa-r:before { - content: '\\52'; - } - .fa-radiation:before { - content: '\\f7b9'; - } - .fa-radio:before { - content: '\\f8d7'; - } - .fa-rainbow:before { - content: '\\f75b'; - } - .fa-ranking-star:before { - content: '\\e561'; - } - .fa-receipt:before { - content: '\\f543'; - } - .fa-record-vinyl:before { - content: '\\f8d9'; - } - .fa-ad:before, - .fa-rectangle-ad:before { - content: '\\f641'; - } - .fa-list-alt:before, - .fa-rectangle-list:before { - content: '\\f022'; - } - .fa-rectangle-times:before, - .fa-rectangle-xmark:before, - .fa-times-rectangle:before, - .fa-window-close:before { - content: '\\f410'; - } - .fa-recycle:before { - content: '\\f1b8'; - } - .fa-registered:before { - content: '\\f25d'; - } - .fa-repeat:before { - content: '\\f363'; - } - .fa-mail-reply:before, - .fa-reply:before { - content: '\\f3e5'; - } - .fa-mail-reply-all:before, - .fa-reply-all:before { - content: '\\f122'; - } - .fa-republican:before { - content: '\\f75e'; - } - .fa-restroom:before { - content: '\\f7bd'; - } - .fa-retweet:before { - content: '\\f079'; - } - .fa-ribbon:before { - content: '\\f4d6'; - } - .fa-right-from-bracket:before, - .fa-sign-out-alt:before { - content: '\\f2f5'; - } - .fa-exchange-alt:before, - .fa-right-left:before { - content: '\\f362'; - } - .fa-long-arrow-alt-right:before, - .fa-right-long:before { - content: '\\f30b'; - } - .fa-right-to-bracket:before, - .fa-sign-in-alt:before { - content: '\\f2f6'; - } - .fa-ring:before { - content: '\\f70b'; - } - .fa-road:before { - content: '\\f018'; - } - .fa-road-barrier:before { - content: '\\e562'; - } - .fa-road-bridge:before { - content: '\\e563'; - } - .fa-road-circle-check:before { - content: '\\e564'; - } - .fa-road-circle-exclamation:before { - content: '\\e565'; - } - .fa-road-circle-xmark:before { - content: '\\e566'; - } - .fa-road-lock:before { - content: '\\e567'; - } - .fa-road-spikes:before { - content: '\\e568'; - } - .fa-robot:before { - content: '\\f544'; - } - .fa-rocket:before { - content: '\\f135'; - } - .fa-rotate:before, - .fa-sync-alt:before { - content: '\\f2f1'; - } - .fa-rotate-back:before, - .fa-rotate-backward:before, - .fa-rotate-left:before, - .fa-undo-alt:before { - content: '\\f2ea'; - } - .fa-redo-alt:before, - .fa-rotate-forward:before, - .fa-rotate-right:before { - content: '\\f2f9'; - } - .fa-route:before { - content: '\\f4d7'; - } - .fa-feed:before, - .fa-rss:before { - content: '\\f09e'; - } - .fa-rouble:before, - .fa-rub:before, - .fa-ruble-sign:before, - .fa-ruble:before { - content: '\\f158'; - } - .fa-rug:before { - content: '\\e569'; - } - .fa-ruler:before { - content: '\\f545'; - } - .fa-ruler-combined:before { - content: '\\f546'; - } - .fa-ruler-horizontal:before { - content: '\\f547'; - } - .fa-ruler-vertical:before { - content: '\\f548'; - } - .fa-rupee-sign:before, - .fa-rupee:before { - content: '\\f156'; - } - .fa-rupiah-sign:before { - content: '\\e23d'; - } - .fa-s:before { - content: '\\53'; - } - .fa-sack-dollar:before { - content: '\\f81d'; - } - .fa-sack-xmark:before { - content: '\\e56a'; - } - .fa-sailboat:before { - content: '\\e445'; - } - .fa-satellite:before { - content: '\\f7bf'; - } - .fa-satellite-dish:before { - content: '\\f7c0'; - } - .fa-balance-scale:before, - .fa-scale-balanced:before { - content: '\\f24e'; - } - .fa-balance-scale-left:before, - .fa-scale-unbalanced:before { - content: '\\f515'; - } - .fa-balance-scale-right:before, - .fa-scale-unbalanced-flip:before { - content: '\\f516'; - } - .fa-school:before { - content: '\\f549'; - } - .fa-school-circle-check:before { - content: '\\e56b'; - } - .fa-school-circle-exclamation:before { - content: '\\e56c'; - } - .fa-school-circle-xmark:before { - content: '\\e56d'; - } - .fa-school-flag:before { - content: '\\e56e'; - } - .fa-school-lock:before { - content: '\\e56f'; - } - .fa-cut:before, - .fa-scissors:before { - content: '\\f0c4'; - } - .fa-screwdriver:before { - content: '\\f54a'; - } - .fa-screwdriver-wrench:before, - .fa-tools:before { - content: '\\f7d9'; - } - .fa-scroll:before { - content: '\\f70e'; - } - .fa-scroll-torah:before, - .fa-torah:before { - content: '\\f6a0'; - } - .fa-sd-card:before { - content: '\\f7c2'; - } - .fa-section:before { - content: '\\e447'; - } - .fa-seedling:before, - .fa-sprout:before { - content: '\\f4d8'; - } - .fa-server:before { - content: '\\f233'; - } - .fa-shapes:before, - .fa-triangle-circle-square:before { - content: '\\f61f'; - } - .fa-arrow-turn-right:before, - .fa-mail-forward:before, - .fa-share:before { - content: '\\f064'; - } - .fa-share-from-square:before, - .fa-share-square:before { - content: '\\f14d'; - } - .fa-share-alt:before, - .fa-share-nodes:before { - content: '\\f1e0'; - } - .fa-sheet-plastic:before { - content: '\\e571'; - } - .fa-ils:before, - .fa-shekel-sign:before, - .fa-shekel:before, - .fa-sheqel-sign:before, - .fa-sheqel:before { - content: '\\f20b'; - } - .fa-shield-blank:before, - .fa-shield:before { - content: '\\f132'; - } - .fa-shield-cat:before { - content: '\\e572'; - } - .fa-shield-dog:before { - content: '\\e573'; - } - .fa-shield-alt:before, - .fa-shield-halved:before { - content: '\\f3ed'; - } - .fa-shield-heart:before { - content: '\\e574'; - } - .fa-shield-virus:before { - content: '\\e06c'; - } - .fa-ship:before { - content: '\\f21a'; - } - .fa-shirt:before, - .fa-t-shirt:before, - .fa-tshirt:before { - content: '\\f553'; - } - .fa-shoe-prints:before { - content: '\\f54b'; - } - .fa-shop:before, - .fa-store-alt:before { - content: '\\f54f'; - } - .fa-shop-lock:before { - content: '\\e4a5'; - } - .fa-shop-slash:before, - .fa-store-alt-slash:before { - content: '\\e070'; - } - .fa-shower:before { - content: '\\f2cc'; - } - .fa-shrimp:before { - content: '\\e448'; - } - .fa-random:before, - .fa-shuffle:before { - content: '\\f074'; - } - .fa-shuttle-space:before, - .fa-space-shuttle:before { - content: '\\f197'; - } - .fa-sign-hanging:before, - .fa-sign:before { - content: '\\f4d9'; - } - .fa-signal-5:before, - .fa-signal-perfect:before, - .fa-signal:before { - content: '\\f012'; - } - .fa-signature:before { - content: '\\f5b7'; - } - .fa-map-signs:before, - .fa-signs-post:before { - content: '\\f277'; - } - .fa-sim-card:before { - content: '\\f7c4'; - } - .fa-sink:before { - content: '\\e06d'; - } - .fa-sitemap:before { - content: '\\f0e8'; - } - .fa-skull:before { - content: '\\f54c'; - } - .fa-skull-crossbones:before { - content: '\\f714'; - } - .fa-slash:before { - content: '\\f715'; - } - .fa-sleigh:before { - content: '\\f7cc'; - } - .fa-sliders-h:before, - .fa-sliders:before { - content: '\\f1de'; - } - .fa-smog:before { - content: '\\f75f'; - } - .fa-smoking:before { - content: '\\f48d'; - } - .fa-snowflake:before { - content: '\\f2dc'; - } - .fa-snowman:before { - content: '\\f7d0'; - } - .fa-snowplow:before { - content: '\\f7d2'; - } - .fa-soap:before { - content: '\\e06e'; - } - .fa-socks:before { - content: '\\f696'; - } - .fa-solar-panel:before { - content: '\\f5ba'; - } - .fa-sort:before, - .fa-unsorted:before { - content: '\\f0dc'; - } - .fa-sort-desc:before, - .fa-sort-down:before { - content: '\\f0dd'; - } - .fa-sort-asc:before, - .fa-sort-up:before { - content: '\\f0de'; - } - .fa-spa:before { - content: '\\f5bb'; - } - .fa-pastafarianism:before, - .fa-spaghetti-monster-flying:before { - content: '\\f67b'; - } - .fa-spell-check:before { - content: '\\f891'; - } - .fa-spider:before { - content: '\\f717'; - } - .fa-spinner:before { - content: '\\f110'; - } - .fa-splotch:before { - content: '\\f5bc'; - } - .fa-spoon:before, - .fa-utensil-spoon:before { - content: '\\f2e5'; - } - .fa-spray-can:before { - content: '\\f5bd'; - } - .fa-air-freshener:before, - .fa-spray-can-sparkles:before { - content: '\\f5d0'; - } - .fa-square:before { - content: '\\f0c8'; - } - .fa-external-link-square:before, - .fa-square-arrow-up-right:before { - content: '\\f14c'; - } - .fa-caret-square-down:before, - .fa-square-caret-down:before { - content: '\\f150'; - } - .fa-caret-square-left:before, - .fa-square-caret-left:before { - content: '\\f191'; - } - .fa-caret-square-right:before, - .fa-square-caret-right:before { - content: '\\f152'; - } - .fa-caret-square-up:before, - .fa-square-caret-up:before { - content: '\\f151'; - } - .fa-check-square:before, - .fa-square-check:before { - content: '\\f14a'; - } - .fa-envelope-square:before, - .fa-square-envelope:before { - content: '\\f199'; - } - .fa-square-full:before { - content: '\\f45c'; - } - .fa-h-square:before, - .fa-square-h:before { - content: '\\f0fd'; - } - .fa-minus-square:before, - .fa-square-minus:before { - content: '\\f146'; - } - .fa-square-nfi:before { - content: '\\e576'; - } - .fa-parking:before, - .fa-square-parking:before { - content: '\\f540'; - } - .fa-pen-square:before, - .fa-pencil-square:before, - .fa-square-pen:before { - content: '\\f14b'; - } - .fa-square-person-confined:before { - content: '\\e577'; - } - .fa-phone-square:before, - .fa-square-phone:before { - content: '\\f098'; - } - .fa-phone-square-alt:before, - .fa-square-phone-flip:before { - content: '\\f87b'; - } - .fa-plus-square:before, - .fa-square-plus:before { - content: '\\f0fe'; - } - .fa-poll-h:before, - .fa-square-poll-horizontal:before { - content: '\\f682'; - } - .fa-poll:before, - .fa-square-poll-vertical:before { - content: '\\f681'; - } - .fa-square-root-alt:before, - .fa-square-root-variable:before { - content: '\\f698'; - } - .fa-rss-square:before, - .fa-square-rss:before { - content: '\\f143'; - } - .fa-share-alt-square:before, - .fa-square-share-nodes:before { - content: '\\f1e1'; - } - .fa-external-link-square-alt:before, - .fa-square-up-right:before { - content: '\\f360'; - } - .fa-square-virus:before { - content: '\\e578'; - } - .fa-square-xmark:before, - .fa-times-square:before, - .fa-xmark-square:before { - content: '\\f2d3'; - } - .fa-rod-asclepius:before, - .fa-rod-snake:before, - .fa-staff-aesculapius:before, - .fa-staff-snake:before { - content: '\\e579'; - } - .fa-stairs:before { - content: '\\e289'; - } - .fa-stamp:before { - content: '\\f5bf'; - } - .fa-star:before { - content: '\\f005'; - } - .fa-star-and-crescent:before { - content: '\\f699'; - } - .fa-star-half:before { - content: '\\f089'; - } - .fa-star-half-alt:before, - .fa-star-half-stroke:before { - content: '\\f5c0'; - } - .fa-star-of-david:before { - content: '\\f69a'; - } - .fa-star-of-life:before { - content: '\\f621'; - } - .fa-gbp:before, - .fa-pound-sign:before, - .fa-sterling-sign:before { - content: '\\f154'; - } - .fa-stethoscope:before { - content: '\\f0f1'; - } - .fa-stop:before { - content: '\\f04d'; - } - .fa-stopwatch:before { - content: '\\f2f2'; - } - .fa-stopwatch-20:before { - content: '\\e06f'; - } - .fa-store:before { - content: '\\f54e'; - } - .fa-store-slash:before { - content: '\\e071'; - } - .fa-street-view:before { - content: '\\f21d'; - } - .fa-strikethrough:before { - content: '\\f0cc'; - } - .fa-stroopwafel:before { - content: '\\f551'; - } - .fa-subscript:before { - content: '\\f12c'; - } - .fa-suitcase:before { - content: '\\f0f2'; - } - .fa-medkit:before, - .fa-suitcase-medical:before { - content: '\\f0fa'; - } - .fa-suitcase-rolling:before { - content: '\\f5c1'; - } - .fa-sun:before { - content: '\\f185'; - } - .fa-sun-plant-wilt:before { - content: '\\e57a'; - } - .fa-superscript:before { - content: '\\f12b'; - } - .fa-swatchbook:before { - content: '\\f5c3'; - } - .fa-synagogue:before { - content: '\\f69b'; - } - .fa-syringe:before { - content: '\\f48e'; - } - .fa-t:before { - content: '\\54'; - } - .fa-table:before { - content: '\\f0ce'; - } - .fa-table-cells:before, - .fa-th:before { - content: '\\f00a'; - } - .fa-table-cells-large:before, - .fa-th-large:before { - content: '\\f009'; - } - .fa-columns:before, - .fa-table-columns:before { - content: '\\f0db'; - } - .fa-table-list:before, - .fa-th-list:before { - content: '\\f00b'; - } - .fa-ping-pong-paddle-ball:before, - .fa-table-tennis-paddle-ball:before, - .fa-table-tennis:before { - content: '\\f45d'; - } - .fa-tablet-android:before, - .fa-tablet:before { - content: '\\f3fb'; - } - .fa-tablet-button:before { - content: '\\f10a'; - } - .fa-tablet-alt:before, - .fa-tablet-screen-button:before { - content: '\\f3fa'; - } - .fa-tablets:before { - content: '\\f490'; - } - .fa-digital-tachograph:before, - .fa-tachograph-digital:before { - content: '\\f566'; - } - .fa-tag:before { - content: '\\f02b'; - } - .fa-tags:before { - content: '\\f02c'; - } - .fa-tape:before { - content: '\\f4db'; - } - .fa-tarp:before { - content: '\\e57b'; - } - .fa-tarp-droplet:before { - content: '\\e57c'; - } - .fa-cab:before, - .fa-taxi:before { - content: '\\f1ba'; - } - .fa-teeth:before { - content: '\\f62e'; - } - .fa-teeth-open:before { - content: '\\f62f'; - } - .fa-temperature-arrow-down:before, - .fa-temperature-down:before { - content: '\\e03f'; - } - .fa-temperature-arrow-up:before, - .fa-temperature-up:before { - content: '\\e040'; - } - .fa-temperature-0:before, - .fa-temperature-empty:before, - .fa-thermometer-0:before, - .fa-thermometer-empty:before { - content: '\\f2cb'; - } - .fa-temperature-4:before, - .fa-temperature-full:before, - .fa-thermometer-4:before, - .fa-thermometer-full:before { - content: '\\f2c7'; - } - .fa-temperature-2:before, - .fa-temperature-half:before, - .fa-thermometer-2:before, - .fa-thermometer-half:before { - content: '\\f2c9'; - } - .fa-temperature-high:before { - content: '\\f769'; - } - .fa-temperature-low:before { - content: '\\f76b'; - } - .fa-temperature-1:before, - .fa-temperature-quarter:before, - .fa-thermometer-1:before, - .fa-thermometer-quarter:before { - content: '\\f2ca'; - } - .fa-temperature-3:before, - .fa-temperature-three-quarters:before, - .fa-thermometer-3:before, - .fa-thermometer-three-quarters:before { - content: '\\f2c8'; - } - .fa-tenge-sign:before, - .fa-tenge:before { - content: '\\f7d7'; - } - .fa-tent:before { - content: '\\e57d'; - } - .fa-tent-arrow-down-to-line:before { - content: '\\e57e'; - } - .fa-tent-arrow-left-right:before { - content: '\\e57f'; - } - .fa-tent-arrow-turn-left:before { - content: '\\e580'; - } - .fa-tent-arrows-down:before { - content: '\\e581'; - } - .fa-tents:before { - content: '\\e582'; - } - .fa-terminal:before { - content: '\\f120'; - } - .fa-text-height:before { - content: '\\f034'; - } - .fa-remove-format:before, - .fa-text-slash:before { - content: '\\f87d'; - } - .fa-text-width:before { - content: '\\f035'; - } - .fa-thermometer:before { - content: '\\f491'; - } - .fa-thumbs-down:before { - content: '\\f165'; - } - .fa-thumbs-up:before { - content: '\\f164'; - } - .fa-thumb-tack:before, - .fa-thumbtack:before { - content: '\\f08d'; - } - .fa-ticket:before { - content: '\\f145'; - } - .fa-ticket-alt:before, - .fa-ticket-simple:before { - content: '\\f3ff'; - } - .fa-timeline:before { - content: '\\e29c'; - } - .fa-toggle-off:before { - content: '\\f204'; - } - .fa-toggle-on:before { - content: '\\f205'; - } - .fa-toilet:before { - content: '\\f7d8'; - } - .fa-toilet-paper:before { - content: '\\f71e'; - } - .fa-toilet-paper-slash:before { - content: '\\e072'; - } - .fa-toilet-portable:before { - content: '\\e583'; - } - .fa-toilets-portable:before { - content: '\\e584'; - } - .fa-toolbox:before { - content: '\\f552'; - } - .fa-tooth:before { - content: '\\f5c9'; - } - .fa-torii-gate:before { - content: '\\f6a1'; - } - .fa-tornado:before { - content: '\\f76f'; - } - .fa-broadcast-tower:before, - .fa-tower-broadcast:before { - content: '\\f519'; - } - .fa-tower-cell:before { - content: '\\e585'; - } - .fa-tower-observation:before { - content: '\\e586'; - } - .fa-tractor:before { - content: '\\f722'; - } - .fa-trademark:before { - content: '\\f25c'; - } - .fa-traffic-light:before { - content: '\\f637'; - } - .fa-trailer:before { - content: '\\e041'; - } - .fa-train:before { - content: '\\f238'; - } - .fa-subway:before, - .fa-train-subway:before { - content: '\\f239'; - } - .fa-train-tram:before, - .fa-tram:before { - content: '\\f7da'; - } - .fa-transgender-alt:before, - .fa-transgender:before { - content: '\\f225'; - } - .fa-trash:before { - content: '\\f1f8'; - } - .fa-trash-arrow-up:before, - .fa-trash-restore:before { - content: '\\f829'; - } - .fa-trash-alt:before, - .fa-trash-can:before { - content: '\\f2ed'; - } - .fa-trash-can-arrow-up:before, - .fa-trash-restore-alt:before { - content: '\\f82a'; - } - .fa-tree:before { - content: '\\f1bb'; - } - .fa-tree-city:before { - content: '\\e587'; - } - .fa-exclamation-triangle:before, - .fa-triangle-exclamation:before, - .fa-warning:before { - content: '\\f071'; - } - .fa-trophy:before { - content: '\\f091'; - } - .fa-trowel:before { - content: '\\e589'; - } - .fa-trowel-bricks:before { - content: '\\e58a'; - } - .fa-truck:before { - content: '\\f0d1'; - } - .fa-truck-arrow-right:before { - content: '\\e58b'; - } - .fa-truck-droplet:before { - content: '\\e58c'; - } - .fa-shipping-fast:before, - .fa-truck-fast:before { - content: '\\f48b'; - } - .fa-truck-field:before { - content: '\\e58d'; - } - .fa-truck-field-un:before { - content: '\\e58e'; - } - .fa-truck-front:before { - content: '\\e2b7'; - } - .fa-ambulance:before, - .fa-truck-medical:before { - content: '\\f0f9'; - } - .fa-truck-monster:before { - content: '\\f63b'; - } - .fa-truck-moving:before { - content: '\\f4df'; - } - .fa-truck-pickup:before { - content: '\\f63c'; - } - .fa-truck-plane:before { - content: '\\e58f'; - } - .fa-truck-loading:before, - .fa-truck-ramp-box:before { - content: '\\f4de'; - } - .fa-teletype:before, - .fa-tty:before { - content: '\\f1e4'; - } - .fa-try:before, - .fa-turkish-lira-sign:before, - .fa-turkish-lira:before { - content: '\\e2bb'; - } - .fa-level-down-alt:before, - .fa-turn-down:before { - content: '\\f3be'; - } - .fa-level-up-alt:before, - .fa-turn-up:before { - content: '\\f3bf'; - } - .fa-television:before, - .fa-tv-alt:before, - .fa-tv:before { - content: '\\f26c'; - } - .fa-u:before { - content: '\\55'; - } - .fa-umbrella:before { - content: '\\f0e9'; - } - .fa-umbrella-beach:before { - content: '\\f5ca'; - } - .fa-underline:before { - content: '\\f0cd'; - } - .fa-universal-access:before { - content: '\\f29a'; - } - .fa-unlock:before { - content: '\\f09c'; - } - .fa-unlock-alt:before, - .fa-unlock-keyhole:before { - content: '\\f13e'; - } - .fa-arrows-alt-v:before, - .fa-up-down:before { - content: '\\f338'; - } - .fa-arrows-alt:before, - .fa-up-down-left-right:before { - content: '\\f0b2'; - } - .fa-long-arrow-alt-up:before, - .fa-up-long:before { - content: '\\f30c'; - } - .fa-expand-alt:before, - .fa-up-right-and-down-left-from-center:before { - content: '\\f424'; - } - .fa-external-link-alt:before, - .fa-up-right-from-square:before { - content: '\\f35d'; - } - .fa-upload:before { - content: '\\f093'; - } - .fa-user:before { - content: '\\f007'; - } - .fa-user-astronaut:before { - content: '\\f4fb'; - } - .fa-user-check:before { - content: '\\f4fc'; - } - .fa-user-clock:before { - content: '\\f4fd'; - } - .fa-user-doctor:before, - .fa-user-md:before { - content: '\\f0f0'; - } - .fa-user-cog:before, - .fa-user-gear:before { - content: '\\f4fe'; - } - .fa-user-graduate:before { - content: '\\f501'; - } - .fa-user-friends:before, - .fa-user-group:before { - content: '\\f500'; - } - .fa-user-injured:before { - content: '\\f728'; - } - .fa-user-alt:before, - .fa-user-large:before { - content: '\\f406'; - } - .fa-user-alt-slash:before, - .fa-user-large-slash:before { - content: '\\f4fa'; - } - .fa-user-lock:before { - content: '\\f502'; - } - .fa-user-minus:before { - content: '\\f503'; - } - .fa-user-ninja:before { - content: '\\f504'; - } - .fa-user-nurse:before { - content: '\\f82f'; - } - .fa-user-edit:before, - .fa-user-pen:before { - content: '\\f4ff'; - } - .fa-user-plus:before { - content: '\\f234'; - } - .fa-user-secret:before { - content: '\\f21b'; - } - .fa-user-shield:before { - content: '\\f505'; - } - .fa-user-slash:before { - content: '\\f506'; - } - .fa-user-tag:before { - content: '\\f507'; - } - .fa-user-tie:before { - content: '\\f508'; - } - .fa-user-times:before, - .fa-user-xmark:before { - content: '\\f235'; - } - .fa-users:before { - content: '\\f0c0'; - } - .fa-users-between-lines:before { - content: '\\e591'; - } - .fa-users-cog:before, - .fa-users-gear:before { - content: '\\f509'; - } - .fa-users-line:before { - content: '\\e592'; - } - .fa-users-rays:before { - content: '\\e593'; - } - .fa-users-rectangle:before { - content: '\\e594'; - } - .fa-users-slash:before { - content: '\\e073'; - } - .fa-users-viewfinder:before { - content: '\\e595'; - } - .fa-cutlery:before, - .fa-utensils:before { - content: '\\f2e7'; - } - .fa-v:before { - content: '\\56'; - } - .fa-shuttle-van:before, - .fa-van-shuttle:before { - content: '\\f5b6'; - } - .fa-vault:before { - content: '\\e2c5'; - } - .fa-vector-square:before { - content: '\\f5cb'; - } - .fa-venus:before { - content: '\\f221'; - } - .fa-venus-double:before { - content: '\\f226'; - } - .fa-venus-mars:before { - content: '\\f228'; - } - .fa-vest:before { - content: '\\e085'; - } - .fa-vest-patches:before { - content: '\\e086'; - } - .fa-vial:before { - content: '\\f492'; - } - .fa-vial-circle-check:before { - content: '\\e596'; - } - .fa-vial-virus:before { - content: '\\e597'; - } - .fa-vials:before { - content: '\\f493'; - } - .fa-video-camera:before, - .fa-video:before { - content: '\\f03d'; - } - .fa-video-slash:before { - content: '\\f4e2'; - } - .fa-vihara:before { - content: '\\f6a7'; - } - .fa-virus:before { - content: '\\e074'; - } - .fa-virus-covid:before { - content: '\\e4a8'; - } - .fa-virus-covid-slash:before { - content: '\\e4a9'; - } - .fa-virus-slash:before { - content: '\\e075'; - } - .fa-viruses:before { - content: '\\e076'; - } - .fa-voicemail:before { - content: '\\f897'; - } - .fa-volcano:before { - content: '\\f770'; - } - .fa-volleyball-ball:before, - .fa-volleyball:before { - content: '\\f45f'; - } - .fa-volume-high:before, - .fa-volume-up:before { - content: '\\f028'; - } - .fa-volume-down:before, - .fa-volume-low:before { - content: '\\f027'; - } - .fa-volume-off:before { - content: '\\f026'; - } - .fa-volume-mute:before, - .fa-volume-times:before, - .fa-volume-xmark:before { - content: '\\f6a9'; - } - .fa-vr-cardboard:before { - content: '\\f729'; - } - .fa-w:before { - content: '\\57'; - } - .fa-walkie-talkie:before { - content: '\\f8ef'; - } - .fa-wallet:before { - content: '\\f555'; - } - .fa-magic:before, - .fa-wand-magic:before { - content: '\\f0d0'; - } - .fa-magic-wand-sparkles:before, - .fa-wand-magic-sparkles:before { - content: '\\e2ca'; - } - .fa-wand-sparkles:before { - content: '\\f72b'; - } - .fa-warehouse:before { - content: '\\f494'; - } - .fa-water:before { - content: '\\f773'; - } - .fa-ladder-water:before, - .fa-swimming-pool:before, - .fa-water-ladder:before { - content: '\\f5c5'; - } - .fa-wave-square:before { - content: '\\f83e'; - } - .fa-weight-hanging:before { - content: '\\f5cd'; - } - .fa-weight-scale:before, - .fa-weight:before { - content: '\\f496'; - } - .fa-wheat-alt:before, - .fa-wheat-awn:before { - content: '\\e2cd'; - } - .fa-wheat-awn-circle-exclamation:before { - content: '\\e598'; - } - .fa-wheelchair:before { - content: '\\f193'; - } - .fa-wheelchair-alt:before, - .fa-wheelchair-move:before { - content: '\\e2ce'; - } - .fa-glass-whiskey:before, - .fa-whiskey-glass:before { - content: '\\f7a0'; - } - .fa-wifi-3:before, - .fa-wifi-strong:before, - .fa-wifi:before { - content: '\\f1eb'; - } - .fa-wind:before { - content: '\\f72e'; - } - .fa-window-maximize:before { - content: '\\f2d0'; - } - .fa-window-minimize:before { - content: '\\f2d1'; - } - .fa-window-restore:before { - content: '\\f2d2'; - } - .fa-wine-bottle:before { - content: '\\f72f'; - } - .fa-wine-glass:before { - content: '\\f4e3'; - } - .fa-wine-glass-alt:before, - .fa-wine-glass-empty:before { - content: '\\f5ce'; - } - .fa-krw:before, - .fa-won-sign:before, - .fa-won:before { - content: '\\f159'; - } - .fa-worm:before { - content: '\\e599'; - } - .fa-wrench:before { - content: '\\f0ad'; - } - .fa-x:before { - content: '\\58'; - } - .fa-x-ray:before { - content: '\\f497'; - } - .fa-close:before, - .fa-multiply:before, - .fa-remove:before, - .fa-times:before, - .fa-xmark:before { - content: '\\f00d'; - } - .fa-xmarks-lines:before { - content: '\\e59a'; - } - .fa-y:before { - content: '\\59'; - } - .fa-cny:before, - .fa-jpy:before, - .fa-rmb:before, - .fa-yen-sign:before, - .fa-yen:before { - content: '\\f157'; - } - .fa-yin-yang:before { - content: '\\f6ad'; - } - .fa-z:before { - content: '\\5a'; - } - .fa-sr-only, - .fa-sr-only-focusable:not(:focus), - .sr-only, - .sr-only-focusable:not(:focus) { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; - } - :host, - :root { - --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; - } - @font-face { - font-family: 'Font Awesome 6 Brands'; - font-style: normal; - font-weight: 400; - font-display: block; - src: - url(../webfonts/fa-brands-400.woff2) format('woff2'), - url(../webfonts/fa-brands-400.ttf) format('truetype'); - } - .fa-brands, - .fab { - font-family: 'Font Awesome 6 Brands'; - font-weight: 400; - } - .fa-42-group:before, - .fa-innosoft:before { - content: '\\e080'; - } - .fa-500px:before { - content: '\\f26e'; - } - .fa-accessible-icon:before { - content: '\\f368'; - } - .fa-accusoft:before { - content: '\\f369'; - } - .fa-adn:before { - content: '\\f170'; - } - .fa-adversal:before { - content: '\\f36a'; - } - .fa-affiliatetheme:before { - content: '\\f36b'; - } - .fa-airbnb:before { - content: '\\f834'; - } - .fa-algolia:before { - content: '\\f36c'; - } - .fa-alipay:before { - content: '\\f642'; - } - .fa-amazon:before { - content: '\\f270'; - } - .fa-amazon-pay:before { - content: '\\f42c'; - } - .fa-amilia:before { - content: '\\f36d'; - } - .fa-android:before { - content: '\\f17b'; - } - .fa-angellist:before { - content: '\\f209'; - } - .fa-angrycreative:before { - content: '\\f36e'; - } - .fa-angular:before { - content: '\\f420'; - } - .fa-app-store:before { - content: '\\f36f'; - } - .fa-app-store-ios:before { - content: '\\f370'; - } - .fa-apper:before { - content: '\\f371'; - } - .fa-apple:before { - content: '\\f179'; - } - .fa-apple-pay:before { - content: '\\f415'; - } - .fa-artstation:before { - content: '\\f77a'; - } - .fa-asymmetrik:before { - content: '\\f372'; - } - .fa-atlassian:before { - content: '\\f77b'; - } - .fa-audible:before { - content: '\\f373'; - } - .fa-autoprefixer:before { - content: '\\f41c'; - } - .fa-avianex:before { - content: '\\f374'; - } - .fa-aviato:before { - content: '\\f421'; - } - .fa-aws:before { - content: '\\f375'; - } - .fa-bandcamp:before { - content: '\\f2d5'; - } - .fa-battle-net:before { - content: '\\f835'; - } - .fa-behance:before { - content: '\\f1b4'; - } - .fa-behance-square:before { - content: '\\f1b5'; - } - .fa-bilibili:before { - content: '\\e3d9'; - } - .fa-bimobject:before { - content: '\\f378'; - } - .fa-bitbucket:before { - content: '\\f171'; - } - .fa-bitcoin:before { - content: '\\f379'; - } - .fa-bity:before { - content: '\\f37a'; - } - .fa-black-tie:before { - content: '\\f27e'; - } - .fa-blackberry:before { - content: '\\f37b'; - } - .fa-blogger:before { - content: '\\f37c'; - } - .fa-blogger-b:before { - content: '\\f37d'; - } - .fa-bluetooth:before { - content: '\\f293'; - } - .fa-bluetooth-b:before { - content: '\\f294'; - } - .fa-bootstrap:before { - content: '\\f836'; - } - .fa-bots:before { - content: '\\e340'; - } - .fa-btc:before { - content: '\\f15a'; - } - .fa-buffer:before { - content: '\\f837'; - } - .fa-buromobelexperte:before { - content: '\\f37f'; - } - .fa-buy-n-large:before { - content: '\\f8a6'; - } - .fa-buysellads:before { - content: '\\f20d'; - } - .fa-canadian-maple-leaf:before { - content: '\\f785'; - } - .fa-cc-amazon-pay:before { - content: '\\f42d'; - } - .fa-cc-amex:before { - content: '\\f1f3'; - } - .fa-cc-apple-pay:before { - content: '\\f416'; - } - .fa-cc-diners-club:before { - content: '\\f24c'; - } - .fa-cc-discover:before { - content: '\\f1f2'; - } - .fa-cc-jcb:before { - content: '\\f24b'; - } - .fa-cc-mastercard:before { - content: '\\f1f1'; - } - .fa-cc-paypal:before { - content: '\\f1f4'; - } - .fa-cc-stripe:before { - content: '\\f1f5'; - } - .fa-cc-visa:before { - content: '\\f1f0'; - } - .fa-centercode:before { - content: '\\f380'; - } - .fa-centos:before { - content: '\\f789'; - } - .fa-chrome:before { - content: '\\f268'; - } - .fa-chromecast:before { - content: '\\f838'; - } - .fa-cloudflare:before { - content: '\\e07d'; - } - .fa-cloudscale:before { - content: '\\f383'; - } - .fa-cloudsmith:before { - content: '\\f384'; - } - .fa-cloudversify:before { - content: '\\f385'; - } - .fa-cmplid:before { - content: '\\e360'; - } - .fa-codepen:before { - content: '\\f1cb'; - } - .fa-codiepie:before { - content: '\\f284'; - } - .fa-confluence:before { - content: '\\f78d'; - } - .fa-connectdevelop:before { - content: '\\f20e'; - } - .fa-contao:before { - content: '\\f26d'; - } - .fa-cotton-bureau:before { - content: '\\f89e'; - } - .fa-cpanel:before { - content: '\\f388'; - } - .fa-creative-commons:before { - content: '\\f25e'; - } - .fa-creative-commons-by:before { - content: '\\f4e7'; - } - .fa-creative-commons-nc:before { - content: '\\f4e8'; - } - .fa-creative-commons-nc-eu:before { - content: '\\f4e9'; - } - .fa-creative-commons-nc-jp:before { - content: '\\f4ea'; - } - .fa-creative-commons-nd:before { - content: '\\f4eb'; - } - .fa-creative-commons-pd:before { - content: '\\f4ec'; - } - .fa-creative-commons-pd-alt:before { - content: '\\f4ed'; - } - .fa-creative-commons-remix:before { - content: '\\f4ee'; - } - .fa-creative-commons-sa:before { - content: '\\f4ef'; - } - .fa-creative-commons-sampling:before { - content: '\\f4f0'; - } - .fa-creative-commons-sampling-plus:before { - content: '\\f4f1'; - } - .fa-creative-commons-share:before { - content: '\\f4f2'; - } - .fa-creative-commons-zero:before { - content: '\\f4f3'; - } - .fa-critical-role:before { - content: '\\f6c9'; - } - .fa-css3:before { - content: '\\f13c'; - } - .fa-css3-alt:before { - content: '\\f38b'; - } - .fa-cuttlefish:before { - content: '\\f38c'; - } - .fa-d-and-d:before { - content: '\\f38d'; - } - .fa-d-and-d-beyond:before { - content: '\\f6ca'; - } - .fa-dailymotion:before { - content: '\\e052'; - } - .fa-dashcube:before { - content: '\\f210'; - } - .fa-deezer:before { - content: '\\e077'; - } - .fa-delicious:before { - content: '\\f1a5'; - } - .fa-deploydog:before { - content: '\\f38e'; - } - .fa-deskpro:before { - content: '\\f38f'; - } - .fa-dev:before { - content: '\\f6cc'; - } - .fa-deviantart:before { - content: '\\f1bd'; - } - .fa-dhl:before { - content: '\\f790'; - } - .fa-diaspora:before { - content: '\\f791'; - } - .fa-digg:before { - content: '\\f1a6'; - } - .fa-digital-ocean:before { - content: '\\f391'; - } - .fa-discord:before { - content: '\\f392'; - } - .fa-discourse:before { - content: '\\f393'; - } - .fa-dochub:before { - content: '\\f394'; - } - .fa-docker:before { - content: '\\f395'; - } - .fa-draft2digital:before { - content: '\\f396'; - } - .fa-dribbble:before { - content: '\\f17d'; - } - .fa-dribbble-square:before { - content: '\\f397'; - } - .fa-dropbox:before { - content: '\\f16b'; - } - .fa-drupal:before { - content: '\\f1a9'; - } - .fa-dyalog:before { - content: '\\f399'; - } - .fa-earlybirds:before { - content: '\\f39a'; - } - .fa-ebay:before { - content: '\\f4f4'; - } - .fa-edge:before { - content: '\\f282'; - } - .fa-edge-legacy:before { - content: '\\e078'; - } - .fa-elementor:before { - content: '\\f430'; - } - .fa-ello:before { - content: '\\f5f1'; - } - .fa-ember:before { - content: '\\f423'; - } - .fa-empire:before { - content: '\\f1d1'; - } - .fa-envira:before { - content: '\\f299'; - } - .fa-erlang:before { - content: '\\f39d'; - } - .fa-ethereum:before { - content: '\\f42e'; - } - .fa-etsy:before { - content: '\\f2d7'; - } - .fa-evernote:before { - content: '\\f839'; - } - .fa-expeditedssl:before { - content: '\\f23e'; - } - .fa-facebook:before { - content: '\\f09a'; - } - .fa-facebook-f:before { - content: '\\f39e'; - } - .fa-facebook-messenger:before { - content: '\\f39f'; - } - .fa-facebook-square:before { - content: '\\f082'; - } - .fa-fantasy-flight-games:before { - content: '\\f6dc'; - } - .fa-fedex:before { - content: '\\f797'; - } - .fa-fedora:before { - content: '\\f798'; - } - .fa-figma:before { - content: '\\f799'; - } - .fa-firefox:before { - content: '\\f269'; - } - .fa-firefox-browser:before { - content: '\\e007'; - } - .fa-first-order:before { - content: '\\f2b0'; - } - .fa-first-order-alt:before { - content: '\\f50a'; - } - .fa-firstdraft:before { - content: '\\f3a1'; - } - .fa-flickr:before { - content: '\\f16e'; - } - .fa-flipboard:before { - content: '\\f44d'; - } - .fa-fly:before { - content: '\\f417'; - } - .fa-font-awesome-flag:before, - .fa-font-awesome-logo-full:before, - .fa-font-awesome:before { - content: '\\f2b4'; - } - .fa-fonticons:before { - content: '\\f280'; - } - .fa-fonticons-fi:before { - content: '\\f3a2'; - } - .fa-fort-awesome:before { - content: '\\f286'; - } - .fa-fort-awesome-alt:before { - content: '\\f3a3'; - } - .fa-forumbee:before { - content: '\\f211'; - } - .fa-foursquare:before { - content: '\\f180'; - } - .fa-free-code-camp:before { - content: '\\f2c5'; - } - .fa-freebsd:before { - content: '\\f3a4'; - } - .fa-fulcrum:before { - content: '\\f50b'; - } - .fa-galactic-republic:before { - content: '\\f50c'; - } - .fa-galactic-senate:before { - content: '\\f50d'; - } - .fa-get-pocket:before { - content: '\\f265'; - } - .fa-gg:before { - content: '\\f260'; - } - .fa-gg-circle:before { - content: '\\f261'; - } - .fa-git:before { - content: '\\f1d3'; - } - .fa-git-alt:before { - content: '\\f841'; - } - .fa-git-square:before { - content: '\\f1d2'; - } - .fa-github:before { - content: '\\f09b'; - } - .fa-github-alt:before { - content: '\\f113'; - } - .fa-github-square:before { - content: '\\f092'; - } - .fa-gitkraken:before { - content: '\\f3a6'; - } - .fa-gitlab:before { - content: '\\f296'; - } - .fa-gitter:before { - content: '\\f426'; - } - .fa-glide:before { - content: '\\f2a5'; - } - .fa-glide-g:before { - content: '\\f2a6'; - } - .fa-gofore:before { - content: '\\f3a7'; - } - .fa-golang:before { - content: '\\e40f'; - } - .fa-goodreads:before { - content: '\\f3a8'; - } - .fa-goodreads-g:before { - content: '\\f3a9'; - } - .fa-google:before { - content: '\\f1a0'; - } - .fa-google-drive:before { - content: '\\f3aa'; - } - .fa-google-pay:before { - content: '\\e079'; - } - .fa-google-play:before { - content: '\\f3ab'; - } - .fa-google-plus:before { - content: '\\f2b3'; - } - .fa-google-plus-g:before { - content: '\\f0d5'; - } - .fa-google-plus-square:before { - content: '\\f0d4'; - } - .fa-google-wallet:before { - content: '\\f1ee'; - } - .fa-gratipay:before { - content: '\\f184'; - } - .fa-grav:before { - content: '\\f2d6'; - } - .fa-gripfire:before { - content: '\\f3ac'; - } - .fa-grunt:before { - content: '\\f3ad'; - } - .fa-guilded:before { - content: '\\e07e'; - } - .fa-gulp:before { - content: '\\f3ae'; - } - .fa-hacker-news:before { - content: '\\f1d4'; - } - .fa-hacker-news-square:before { - content: '\\f3af'; - } - .fa-hackerrank:before { - content: '\\f5f7'; - } - .fa-hashnode:before { - content: '\\e499'; - } - .fa-hips:before { - content: '\\f452'; - } - .fa-hire-a-helper:before { - content: '\\f3b0'; - } - .fa-hive:before { - content: '\\e07f'; - } - .fa-hooli:before { - content: '\\f427'; - } - .fa-hornbill:before { - content: '\\f592'; - } - .fa-hotjar:before { - content: '\\f3b1'; - } - .fa-houzz:before { - content: '\\f27c'; - } - .fa-html5:before { - content: '\\f13b'; - } - .fa-hubspot:before { - content: '\\f3b2'; - } - .fa-ideal:before { - content: '\\e013'; - } - .fa-imdb:before { - content: '\\f2d8'; - } - .fa-instagram:before { - content: '\\f16d'; - } - .fa-instagram-square:before { - content: '\\e055'; - } - .fa-instalod:before { - content: '\\e081'; - } - .fa-intercom:before { - content: '\\f7af'; - } - .fa-internet-explorer:before { - content: '\\f26b'; - } - .fa-invision:before { - content: '\\f7b0'; - } - .fa-ioxhost:before { - content: '\\f208'; - } - .fa-itch-io:before { - content: '\\f83a'; - } - .fa-itunes:before { - content: '\\f3b4'; - } - .fa-itunes-note:before { - content: '\\f3b5'; - } - .fa-java:before { - content: '\\f4e4'; - } - .fa-jedi-order:before { - content: '\\f50e'; - } - .fa-jenkins:before { - content: '\\f3b6'; - } - .fa-jira:before { - content: '\\f7b1'; - } - .fa-joget:before { - content: '\\f3b7'; - } - .fa-joomla:before { - content: '\\f1aa'; - } - .fa-js:before { - content: '\\f3b8'; - } - .fa-js-square:before { - content: '\\f3b9'; - } - .fa-jsfiddle:before { - content: '\\f1cc'; - } - .fa-kaggle:before { - content: '\\f5fa'; - } - .fa-keybase:before { - content: '\\f4f5'; - } - .fa-keycdn:before { - content: '\\f3ba'; - } - .fa-kickstarter:before { - content: '\\f3bb'; - } - .fa-kickstarter-k:before { - content: '\\f3bc'; - } - .fa-korvue:before { - content: '\\f42f'; - } - .fa-laravel:before { - content: '\\f3bd'; - } - .fa-lastfm:before { - content: '\\f202'; - } - .fa-lastfm-square:before { - content: '\\f203'; - } - .fa-leanpub:before { - content: '\\f212'; - } - .fa-less:before { - content: '\\f41d'; - } - .fa-line:before { - content: '\\f3c0'; - } - .fa-linkedin:before { - content: '\\f08c'; - } - .fa-linkedin-in:before { - content: '\\f0e1'; - } - .fa-linode:before { - content: '\\f2b8'; - } - .fa-linux:before { - content: '\\f17c'; - } - .fa-lyft:before { - content: '\\f3c3'; - } - .fa-magento:before { - content: '\\f3c4'; - } - .fa-mailchimp:before { - content: '\\f59e'; - } - .fa-mandalorian:before { - content: '\\f50f'; - } - .fa-markdown:before { - content: '\\f60f'; - } - .fa-mastodon:before { - content: '\\f4f6'; - } - .fa-maxcdn:before { - content: '\\f136'; - } - .fa-mdb:before { - content: '\\f8ca'; - } - .fa-medapps:before { - content: '\\f3c6'; - } - .fa-medium-m:before, - .fa-medium:before { - content: '\\f23a'; - } - .fa-medrt:before { - content: '\\f3c8'; - } - .fa-meetup:before { - content: '\\f2e0'; - } - .fa-megaport:before { - content: '\\f5a3'; - } - .fa-mendeley:before { - content: '\\f7b3'; - } - .fa-microblog:before { - content: '\\e01a'; - } - .fa-microsoft:before { - content: '\\f3ca'; - } - .fa-mix:before { - content: '\\f3cb'; - } - .fa-mixcloud:before { - content: '\\f289'; - } - .fa-mixer:before { - content: '\\e056'; - } - .fa-mizuni:before { - content: '\\f3cc'; - } - .fa-modx:before { - content: '\\f285'; - } - .fa-monero:before { - content: '\\f3d0'; - } - .fa-napster:before { - content: '\\f3d2'; - } - .fa-neos:before { - content: '\\f612'; - } - .fa-nfc-directional:before { - content: '\\e530'; - } - .fa-nfc-symbol:before { - content: '\\e531'; - } - .fa-nimblr:before { - content: '\\f5a8'; - } - .fa-node:before { - content: '\\f419'; - } - .fa-node-js:before { - content: '\\f3d3'; - } - .fa-npm:before { - content: '\\f3d4'; - } - .fa-ns8:before { - content: '\\f3d5'; - } - .fa-nutritionix:before { - content: '\\f3d6'; - } - .fa-octopus-deploy:before { - content: '\\e082'; - } - .fa-odnoklassniki:before { - content: '\\f263'; - } - .fa-odnoklassniki-square:before { - content: '\\f264'; - } - .fa-old-republic:before { - content: '\\f510'; - } - .fa-opencart:before { - content: '\\f23d'; - } - .fa-openid:before { - content: '\\f19b'; - } - .fa-opera:before { - content: '\\f26a'; - } - .fa-optin-monster:before { - content: '\\f23c'; - } - .fa-orcid:before { - content: '\\f8d2'; - } - .fa-osi:before { - content: '\\f41a'; - } - .fa-padlet:before { - content: '\\e4a0'; - } - .fa-page4:before { - content: '\\f3d7'; - } - .fa-pagelines:before { - content: '\\f18c'; - } - .fa-palfed:before { - content: '\\f3d8'; - } - .fa-patreon:before { - content: '\\f3d9'; - } - .fa-paypal:before { - content: '\\f1ed'; - } - .fa-perbyte:before { - content: '\\e083'; - } - .fa-periscope:before { - content: '\\f3da'; - } - .fa-phabricator:before { - content: '\\f3db'; - } - .fa-phoenix-framework:before { - content: '\\f3dc'; - } - .fa-phoenix-squadron:before { - content: '\\f511'; - } - .fa-php:before { - content: '\\f457'; - } - .fa-pied-piper:before { - content: '\\f2ae'; - } - .fa-pied-piper-alt:before { - content: '\\f1a8'; - } - .fa-pied-piper-hat:before { - content: '\\f4e5'; - } - .fa-pied-piper-pp:before { - content: '\\f1a7'; - } - .fa-pied-piper-square:before { - content: '\\e01e'; - } - .fa-pinterest:before { - content: '\\f0d2'; - } - .fa-pinterest-p:before { - content: '\\f231'; - } - .fa-pinterest-square:before { - content: '\\f0d3'; - } - .fa-pix:before { - content: '\\e43a'; - } - .fa-playstation:before { - content: '\\f3df'; - } - .fa-product-hunt:before { - content: '\\f288'; - } - .fa-pushed:before { - content: '\\f3e1'; - } - .fa-python:before { - content: '\\f3e2'; - } - .fa-qq:before { - content: '\\f1d6'; - } - .fa-quinscape:before { - content: '\\f459'; - } - .fa-quora:before { - content: '\\f2c4'; - } - .fa-r-project:before { - content: '\\f4f7'; - } - .fa-raspberry-pi:before { - content: '\\f7bb'; - } - .fa-ravelry:before { - content: '\\f2d9'; - } - .fa-react:before { - content: '\\f41b'; - } - .fa-reacteurope:before { - content: '\\f75d'; - } - .fa-readme:before { - content: '\\f4d5'; - } - .fa-rebel:before { - content: '\\f1d0'; - } - .fa-red-river:before { - content: '\\f3e3'; - } - .fa-reddit:before { - content: '\\f1a1'; - } - .fa-reddit-alien:before { - content: '\\f281'; - } - .fa-reddit-square:before { - content: '\\f1a2'; - } - .fa-redhat:before { - content: '\\f7bc'; - } - .fa-renren:before { - content: '\\f18b'; - } - .fa-replyd:before { - content: '\\f3e6'; - } - .fa-researchgate:before { - content: '\\f4f8'; - } - .fa-resolving:before { - content: '\\f3e7'; - } - .fa-rev:before { - content: '\\f5b2'; - } - .fa-rocketchat:before { - content: '\\f3e8'; - } - .fa-rockrms:before { - content: '\\f3e9'; - } - .fa-rust:before { - content: '\\e07a'; - } - .fa-safari:before { - content: '\\f267'; - } - .fa-salesforce:before { - content: '\\f83b'; - } - .fa-sass:before { - content: '\\f41e'; - } - .fa-schlix:before { - content: '\\f3ea'; - } - .fa-screenpal:before { - content: '\\e570'; - } - .fa-scribd:before { - content: '\\f28a'; - } - .fa-searchengin:before { - content: '\\f3eb'; - } - .fa-sellcast:before { - content: '\\f2da'; - } - .fa-sellsy:before { - content: '\\f213'; - } - .fa-servicestack:before { - content: '\\f3ec'; - } - .fa-shirtsinbulk:before { - content: '\\f214'; - } - .fa-shopify:before { - content: '\\e057'; - } - .fa-shopware:before { - content: '\\f5b5'; - } - .fa-simplybuilt:before { - content: '\\f215'; - } - .fa-sistrix:before { - content: '\\f3ee'; - } - .fa-sith:before { - content: '\\f512'; - } - .fa-sitrox:before { - content: '\\e44a'; - } - .fa-sketch:before { - content: '\\f7c6'; - } - .fa-skyatlas:before { - content: '\\f216'; - } - .fa-skype:before { - content: '\\f17e'; - } - .fa-slack-hash:before, - .fa-slack:before { - content: '\\f198'; - } - .fa-slideshare:before { - content: '\\f1e7'; - } - .fa-snapchat-ghost:before, - .fa-snapchat:before { - content: '\\f2ab'; - } - .fa-snapchat-square:before { - content: '\\f2ad'; - } - .fa-soundcloud:before { - content: '\\f1be'; - } - .fa-sourcetree:before { - content: '\\f7d3'; - } - .fa-speakap:before { - content: '\\f3f3'; - } - .fa-speaker-deck:before { - content: '\\f83c'; - } - .fa-spotify:before { - content: '\\f1bc'; - } - .fa-square-font-awesome:before { - content: '\\f425'; - } - .fa-font-awesome-alt:before, - .fa-square-font-awesome-stroke:before { - content: '\\f35c'; - } - .fa-squarespace:before { - content: '\\f5be'; - } - .fa-stack-exchange:before { - content: '\\f18d'; - } - .fa-stack-overflow:before { - content: '\\f16c'; - } - .fa-stackpath:before { - content: '\\f842'; - } - .fa-staylinked:before { - content: '\\f3f5'; - } - .fa-steam:before { - content: '\\f1b6'; - } - .fa-steam-square:before { - content: '\\f1b7'; - } - .fa-steam-symbol:before { - content: '\\f3f6'; - } - .fa-sticker-mule:before { - content: '\\f3f7'; - } - .fa-strava:before { - content: '\\f428'; - } - .fa-stripe:before { - content: '\\f429'; - } - .fa-stripe-s:before { - content: '\\f42a'; - } - .fa-studiovinari:before { - content: '\\f3f8'; - } - .fa-stumbleupon:before { - content: '\\f1a4'; - } - .fa-stumbleupon-circle:before { - content: '\\f1a3'; - } - .fa-superpowers:before { - content: '\\f2dd'; - } - .fa-supple:before { - content: '\\f3f9'; - } - .fa-suse:before { - content: '\\f7d6'; - } - .fa-swift:before { - content: '\\f8e1'; - } - .fa-symfony:before { - content: '\\f83d'; - } - .fa-teamspeak:before { - content: '\\f4f9'; - } - .fa-telegram-plane:before, - .fa-telegram:before { - content: '\\f2c6'; - } - .fa-tencent-weibo:before { - content: '\\f1d5'; - } - .fa-the-red-yeti:before { - content: '\\f69d'; - } - .fa-themeco:before { - content: '\\f5c6'; - } - .fa-themeisle:before { - content: '\\f2b2'; - } - .fa-think-peaks:before { - content: '\\f731'; - } - .fa-tiktok:before { - content: '\\e07b'; - } - .fa-trade-federation:before { - content: '\\f513'; - } - .fa-trello:before { - content: '\\f181'; - } - .fa-tumblr:before { - content: '\\f173'; - } - .fa-tumblr-square:before { - content: '\\f174'; - } - .fa-twitch:before { - content: '\\f1e8'; - } - .fa-twitter:before { - content: '\\f099'; - } - .fa-twitter-square:before { - content: '\\f081'; - } - .fa-typo3:before { - content: '\\f42b'; - } - .fa-uber:before { - content: '\\f402'; - } - .fa-ubuntu:before { - content: '\\f7df'; - } - .fa-uikit:before { - content: '\\f403'; - } - .fa-umbraco:before { - content: '\\f8e8'; - } - .fa-uncharted:before { - content: '\\e084'; - } - .fa-uniregistry:before { - content: '\\f404'; - } - .fa-unity:before { - content: '\\e049'; - } - .fa-unsplash:before { - content: '\\e07c'; - } - .fa-untappd:before { - content: '\\f405'; - } - .fa-ups:before { - content: '\\f7e0'; - } - .fa-usb:before { - content: '\\f287'; - } - .fa-usps:before { - content: '\\f7e1'; - } - .fa-ussunnah:before { - content: '\\f407'; - } - .fa-vaadin:before { - content: '\\f408'; - } - .fa-viacoin:before { - content: '\\f237'; - } - .fa-viadeo:before { - content: '\\f2a9'; - } - .fa-viadeo-square:before { - content: '\\f2aa'; - } - .fa-viber:before { - content: '\\f409'; - } - .fa-vimeo:before { - content: '\\f40a'; - } - .fa-vimeo-square:before { - content: '\\f194'; - } - .fa-vimeo-v:before { - content: '\\f27d'; - } - .fa-vine:before { - content: '\\f1ca'; - } - .fa-vk:before { - content: '\\f189'; - } - .fa-vnv:before { - content: '\\f40b'; - } - .fa-vuejs:before { - content: '\\f41f'; - } - .fa-watchman-monitoring:before { - content: '\\e087'; - } - .fa-waze:before { - content: '\\f83f'; - } - .fa-weebly:before { - content: '\\f5cc'; - } - .fa-weibo:before { - content: '\\f18a'; - } - .fa-weixin:before { - content: '\\f1d7'; - } - .fa-whatsapp:before { - content: '\\f232'; - } - .fa-whatsapp-square:before { - content: '\\f40c'; - } - .fa-whmcs:before { - content: '\\f40d'; - } - .fa-wikipedia-w:before { - content: '\\f266'; - } - .fa-windows:before { - content: '\\f17a'; - } - .fa-wirsindhandwerk:before, - .fa-wsh:before { - content: '\\e2d0'; - } - .fa-wix:before { - content: '\\f5cf'; - } - .fa-wizards-of-the-coast:before { - content: '\\f730'; - } - .fa-wodu:before { - content: '\\e088'; - } - .fa-wolf-pack-battalion:before { - content: '\\f514'; - } - .fa-wordpress:before { - content: '\\f19a'; - } - .fa-wordpress-simple:before { - content: '\\f411'; - } - .fa-wpbeginner:before { - content: '\\f297'; - } - .fa-wpexplorer:before { - content: '\\f2de'; - } - .fa-wpforms:before { - content: '\\f298'; - } - .fa-wpressr:before { - content: '\\f3e4'; - } - .fa-xbox:before { - content: '\\f412'; - } - .fa-xing:before { - content: '\\f168'; - } - .fa-xing-square:before { - content: '\\f169'; - } - .fa-y-combinator:before { - content: '\\f23b'; - } - .fa-yahoo:before { - content: '\\f19e'; - } - .fa-yammer:before { - content: '\\f840'; - } - .fa-yandex:before { - content: '\\f413'; - } - .fa-yandex-international:before { - content: '\\f414'; - } - .fa-yarn:before { - content: '\\f7e3'; - } - .fa-yelp:before { - content: '\\f1e9'; - } - .fa-yoast:before { - content: '\\f2b1'; - } - .fa-youtube:before { - content: '\\f167'; - } - .fa-youtube-square:before { - content: '\\f431'; - } - .fa-zhihu:before { - content: '\\f63f'; - } - :host, - :root { - --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; - } - @font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 400; - font-display: block; - src: - url(../webfonts/fa-regular-400.woff2) format('woff2'), - url(../webfonts/fa-regular-400.ttf) format('truetype'); - } - .fa-regular, - .far { - font-family: 'Font Awesome 6 Free'; - font-weight: 400; - } - :host, - :root { - --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; - } - @font-face { - font-family: 'Font Awesome 6 Free'; - font-style: normal; - font-weight: 900; - font-display: block; - src: - url(../webfonts/fa-solid-900.woff2) format('woff2'), - url(../webfonts/fa-solid-900.ttf) format('truetype'); - } - .fa-solid, - .fas { - font-family: 'Font Awesome 6 Free'; - font-weight: 900; - } - @font-face { - font-family: 'Font Awesome 5 Brands'; - font-display: block; - font-weight: 400; - src: - url(../webfonts/fa-brands-400.woff2) format('woff2'), - url(../webfonts/fa-brands-400.ttf) format('truetype'); - } - @font-face { - font-family: 'Font Awesome 5 Free'; - font-display: block; - font-weight: 900; - src: - url(../webfonts/fa-solid-900.woff2) format('woff2'), - url(../webfonts/fa-solid-900.ttf) format('truetype'); - } - @font-face { - font-family: 'Font Awesome 5 Free'; - font-display: block; - font-weight: 400; - src: - url(../webfonts/fa-regular-400.woff2) format('woff2'), - url(../webfonts/fa-regular-400.ttf) format('truetype'); - } - @font-face { - font-family: 'FontAwesome'; - font-display: block; - src: - url(../webfonts/fa-solid-900.woff2) format('woff2'), - url(../webfonts/fa-solid-900.ttf) format('truetype'); - } - @font-face { - font-family: 'FontAwesome'; - font-display: block; - src: - url(../webfonts/fa-brands-400.woff2) format('woff2'), - url(../webfonts/fa-brands-400.ttf) format('truetype'); - } - @font-face { - font-family: 'FontAwesome'; - font-display: block; - src: - url(../webfonts/fa-regular-400.woff2) format('woff2'), - url(../webfonts/fa-regular-400.ttf) format('truetype'); - unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, - u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, - u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, - u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, - u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc; - } - @font-face { - font-family: 'FontAwesome'; - font-display: block; - src: - url(../webfonts/fa-v4compatibility.woff2) format('woff2'), - url(../webfonts/fa-v4compatibility.ttf) format('truetype'); - unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, - u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252, u+f27a; - } - `, - 'KOL-SKIP-NAV': css` - kol-link-wc > a > kol-span-wc { - border-radius: var(--border-radius); - border-style: solid; - border-width: 2px; - gap: 0.5rem; - line-height: 1rem; - padding: 0.75rem 1rem; - background-color: var(--color-blau); - border-color: var(--color-blau-dark); - color: white; - cursor: pointer; - } - `, - 'KOL-SPLIT-BUTTON': css` - .popover { - background: #fff; - } - `, -}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cd6241a5b8..b16e2b8608 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -814,7 +814,7 @@ importers: version: 1.3.49(chromedriver@120.0.0)(esbuild@0.19.3)(typescript@5.3.3) '@leanup/stack-solid': specifier: 1.3.49 - version: 1.3.49(@babel/core@7.23.2)(solid-js@1.8.7)(vite@4.4.9)(webpack@5.89.0) + version: 1.3.49(@babel/core@7.23.6)(solid-js@1.8.7)(vite@4.4.9)(webpack@5.89.0) '@leanup/stack-webpack': specifier: 1.3.49 version: 1.3.49(@leanup/stack@1.3.49)(esbuild@0.19.3)(less@4.2.0)(postcss@8.4.32) @@ -1038,25 +1038,6 @@ importers: specifier: 5.3.3 version: 5.3.3 - packages/themes/bzst: - dependencies: - '@public-ui/components': - specifier: 1.7.8 - version: link:../../components - devDependencies: - '@public-ui/schema': - specifier: 1.7.8 - version: link:../../schema - '@public-ui/visual-tests': - specifier: 1.7.8 - version: link:../../tools/visual-tests - '@types/node': - specifier: ts5.3 - version: 20.10.4 - typescript: - specifier: 5.3.3 - version: 5.3.3 - packages/themes/default: dependencies: '@public-ui/components': @@ -1132,47 +1113,6 @@ importers: specifier: 5.3.3 version: 5.3.3 - packages/themes/mfm: - dependencies: - '@public-ui/components': - specifier: 1.7.8 - version: link:../../components - devDependencies: - '@public-ui/schema': - specifier: 1.7.8 - version: link:../../schema - '@public-ui/visual-tests': - specifier: 1.7.8 - version: link:../../tools/visual-tests - '@types/node': - specifier: ts5.3 - version: 20.10.4 - typescript: - specifier: 5.3.3 - version: 5.3.3 - - packages/themes/zoll: - dependencies: - '@public-ui/components': - specifier: 1.7.8 - version: link:../../components - devDependencies: - '@public-ui/schema': - specifier: 1.7.8 - version: link:../../schema - '@public-ui/visual-tests': - specifier: 1.7.8 - version: link:../../tools/visual-tests - '@types/node': - specifier: ts5.3 - version: 20.10.4 - npm-run-all: - specifier: 4.1.5 - version: 4.1.5 - typescript: - specifier: 5.3.3 - version: 5.3.3 - packages/tools/kolibri-cli: dependencies: chalk: @@ -1281,13 +1221,13 @@ importers: devDependencies: '@babel/eslint-parser': specifier: 7.23.3 - version: 7.23.3(@babel/core@7.23.2)(eslint@8.56.0) + version: 7.23.3(@babel/core@7.23.6)(eslint@8.56.0) '@babel/plugin-syntax-import-attributes': specifier: 7.23.3 - version: 7.23.3(@babel/core@7.23.2) + version: 7.23.3(@babel/core@7.23.6) '@babel/preset-env': specifier: 7.23.6 - version: 7.23.6(@babel/core@7.23.2) + version: 7.23.6(@babel/core@7.23.6) depcheck: specifier: 1.4.7 version: 1.4.7 @@ -1789,14 +1729,14 @@ packages: - supports-color dev: true - /@babel/eslint-parser@7.23.3(@babel/core@7.23.2)(eslint@8.56.0): + /@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@8.56.0): resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.6 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.56.0 eslint-visitor-keys: 2.1.0 @@ -1903,24 +1843,6 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - dev: true - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.6): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} @@ -1957,18 +1879,6 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.6): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} @@ -1993,18 +1903,6 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.2): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.6): resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} engines: {node: '>=6.9.0'} @@ -2032,21 +1930,6 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2): - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.6 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.6): resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: @@ -2195,18 +2078,6 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.6): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} @@ -2243,18 +2114,6 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} @@ -2419,16 +2278,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} @@ -2451,18 +2300,6 @@ packages: '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.22.11) dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.2) - dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} @@ -2475,17 +2312,6 @@ packages: '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6) dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} engines: {node: '>=6.9.0'} @@ -2546,15 +2372,6 @@ packages: '@babel/core': 7.22.11 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} @@ -2637,16 +2454,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -2676,15 +2483,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -2703,15 +2501,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -2731,16 +2520,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} @@ -2761,16 +2540,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} @@ -2835,16 +2604,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.6): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} @@ -3037,16 +2796,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -3108,17 +2857,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} @@ -3126,7 +2864,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.23.6 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.6) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3140,16 +2878,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} @@ -3173,26 +2901,13 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.2): + /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - dev: true - - /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.6): - resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6) @@ -3211,18 +2926,6 @@ packages: '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} @@ -3245,16 +2948,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} @@ -3275,16 +2968,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} @@ -3306,17 +2989,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} @@ -3340,18 +3012,6 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} engines: {node: '>=6.9.0'} @@ -3382,24 +3042,6 @@ packages: globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.2): - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - dev: true - /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6): resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} engines: {node: '>=6.9.0'} @@ -3429,17 +3071,6 @@ packages: '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - dev: true - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} @@ -3461,16 +3092,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} @@ -3492,17 +3113,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} @@ -3524,16 +3134,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} @@ -3555,17 +3155,6 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} engines: {node: '>=6.9.0'} @@ -3588,17 +3177,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} @@ -3621,17 +3199,6 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} engines: {node: '>=6.9.0'} @@ -3653,17 +3220,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.2): - resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - dev: true - /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6): resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} @@ -3687,18 +3243,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} @@ -3722,17 +3266,6 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} engines: {node: '>=6.9.0'} @@ -3754,16 +3287,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} @@ -3785,17 +3308,6 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} engines: {node: '>=6.9.0'} @@ -3817,16 +3329,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} @@ -3848,17 +3350,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} @@ -3882,18 +3373,6 @@ packages: '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - dev: true - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} @@ -3919,19 +3398,6 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - dev: true - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} engines: {node: '>=6.9.0'} @@ -3956,17 +3422,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} @@ -3989,17 +3444,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.6): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} @@ -4021,16 +3465,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} @@ -4052,17 +3486,6 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} engines: {node: '>=6.9.0'} @@ -4085,17 +3508,6 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} engines: {node: '>=6.9.0'} @@ -4117,22 +3529,8 @@ packages: '@babel/core': 7.22.11 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.22.11) - dev: true - - /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.22.11) dev: true /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.6): @@ -4160,17 +3558,6 @@ packages: '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} @@ -4193,17 +3580,6 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} engines: {node: '>=6.9.0'} @@ -4239,18 +3615,6 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} engines: {node: '>=6.9.0'} @@ -4283,16 +3647,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} @@ -4314,17 +3668,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} @@ -4349,19 +3692,6 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.2): - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) - dev: true - /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.6): resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} engines: {node: '>=6.9.0'} @@ -4385,16 +3715,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} @@ -4416,17 +3736,6 @@ packages: regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.2 - dev: true - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} @@ -4448,16 +3757,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} @@ -4478,16 +3777,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} @@ -4509,17 +3798,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - dev: true - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} @@ -4541,16 +3819,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} @@ -4571,16 +3839,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} @@ -4601,16 +3859,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} @@ -4644,16 +3892,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} @@ -4675,17 +3913,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} @@ -4708,17 +3935,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} @@ -4741,17 +3957,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} @@ -4854,97 +4059,6 @@ packages: - supports-color dev: true - /@babel/preset-env@7.23.6(@babel/core@7.23.2): - resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.2) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.2) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.2) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.2) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) - core-js-compat: 3.34.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/preset-env@7.23.6(@babel/core@7.23.6): resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==} engines: {node: '>=6.9.0'} @@ -5047,17 +4161,6 @@ packages: esutils: 2.0.3 dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.6 - esutils: 2.0.3 - dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: @@ -6561,14 +5664,14 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@leanup/stack-solid@1.3.49(@babel/core@7.23.2)(solid-js@1.8.7)(vite@4.4.9)(webpack@5.89.0): + /@leanup/stack-solid@1.3.49(@babel/core@7.23.6)(solid-js@1.8.7)(vite@4.4.9)(webpack@5.89.0): resolution: {integrity: sha512-DCrcyPuD3hKSQFz57T/1Fz3vNFSkQgQ1Up7vrv1IZJpsveUoZqTAUJBdPvMBaLQSsZvJMha8AnnPtVNDuxzeMw==} peerDependencies: solid-js: ^1 dependencies: '@leanup/cli-core-babel': 1.3.49(webpack@5.89.0) '@snowpack/plugin-babel': 2.1.7 - babel-preset-solid: 1.8.6(@babel/core@7.23.2) + babel-preset-solid: 1.8.6(@babel/core@7.23.6) solid-js: 1.8.7 vite-plugin-solid: 2.8.0(solid-js@1.8.7)(vite@4.4.9) transitivePeerDependencies: @@ -9643,19 +8746,6 @@ packages: '@types/babel__traverse': 7.20.1 dev: true - /babel-plugin-jsx-dom-expressions@0.37.9(@babel/core@7.23.2): - resolution: {integrity: sha512-6w+zs2i14fVanj4e1hXCU5cp+x0U0LJ5jScknpMZZUteHhwFRGJflHMVJ+xAcW7ku41FYjr7DgtK9mnc2SXlJg==} - peerDependencies: - '@babel/core': ^7.20.12 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) - '@babel/types': 7.23.6 - html-entities: 2.3.3 - validate-html-nesting: 1.2.2 - dev: true - /babel-plugin-jsx-dom-expressions@0.37.9(@babel/core@7.23.6): resolution: {integrity: sha512-6w+zs2i14fVanj4e1hXCU5cp+x0U0LJ5jScknpMZZUteHhwFRGJflHMVJ+xAcW7ku41FYjr7DgtK9mnc2SXlJg==} peerDependencies: @@ -9682,19 +8772,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2): - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.6): resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} peerDependencies: @@ -9720,18 +8797,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2): - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) - core-js-compat: 3.34.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.6): resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} peerDependencies: @@ -9755,17 +8820,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2): - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.6): resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} peerDependencies: @@ -9808,15 +8862,6 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) dev: true - /babel-preset-solid@1.8.6(@babel/core@7.23.2): - resolution: {integrity: sha512-Ened42CHjU4EFkvNeS042/3Pm21yvMWn8p4G4ddzQTlKaMwSGGD1VciA/e7EshBVHJCcBj9vHiUd/r3A4qLPZA==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - babel-plugin-jsx-dom-expressions: 0.37.9(@babel/core@7.23.2) - dev: true - /babel-preset-solid@1.8.6(@babel/core@7.23.6): resolution: {integrity: sha512-Ened42CHjU4EFkvNeS042/3Pm21yvMWn8p4G4ddzQTlKaMwSGGD1VciA/e7EshBVHJCcBj9vHiUd/r3A4qLPZA==} peerDependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index dfd26ea4cb..52c4f46f35 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -13,11 +13,8 @@ packages: - 'packages/schema' - 'packages/themes' - 'packages/themes/bmf' - - 'packages/themes/bzst' - 'packages/themes/default' - 'packages/themes/ecl' - 'packages/themes/itzbund' - - 'packages/themes/mfm' - - 'packages/themes/zoll' - 'packages/tools/kolibri-cli' - 'packages/tools/visual-tests' diff --git a/scripts/license-reports.sh b/scripts/license-reports.sh index ca0322de45..2c7a0dacf8 100644 --- a/scripts/license-reports.sh +++ b/scripts/license-reports.sh @@ -4,16 +4,23 @@ npx license-report --output=html --package=packages/adapters/angular/v12/package npx license-report --output=html --package=packages/adapters/angular/v13/package.json >> license-reports/adapter-angular-v13.html npx license-report --output=html --package=packages/adapters/angular/v14/package.json >> license-reports/adapter-angular-v14.html npx license-report --output=html --package=packages/adapters/angular/v15/package.json >> license-reports/adapter-angular-v15.html -npx license-report --output=html --package=packages/adapters/angular/v16/package.json >> license-reports/adapter-angular-v15.html -npx license-report --output=html --package=packages/adapters/angular/v17/package.json >> license-reports/adapter-angular-v15.html +npx license-report --output=html --package=packages/adapters/angular/v16/package.json >> license-reports/adapter-angular-v16.html +npx license-report --output=html --package=packages/adapters/angular/v17/package.json >> license-reports/adapter-angular-v17.html npx license-report --output=html --package=packages/adapters/hydrate/package.json >> license-reports/adapter-hydrate.html npx license-report --output=html --package=packages/adapters/preact/package.json >> license-reports/adapter-preact.html npx license-report --output=html --package=packages/adapters/react/package.json >> license-reports/adapter-react.html npx license-report --output=html --package=packages/adapters/react-standalone/package.json >> license-reports/adapter-react-standalone.html npx license-report --output=html --package=packages/adapters/solid/package.json >> license-reports/adapter-solid.html npx license-report --output=html --package=packages/adapters/vue/package.json >> license-reports/adapter-vue.html +npx license-report --output=html --package=packages/components/package.json >> license-reports/components.html npx license-report --output=html --package=packages/core/package.json >> license-reports/core.html -npx license-report --output=html --package=packages/library/package.json >> license-reports/library.html +npx license-report --output=html --package=packages/create-kolibri/package.json >> license-reports/create-kolibri.html +npx license-report --output=html --package=packages/designer/package.json >> license-reports/designer.html +npx license-report --output=html --package=packages/samples/angular/package.json >> license-reports/sample-angular.html +npx license-report --output=html --package=packages/samples/react/package.json >> license-reports/sample-react.html +npx license-report --output=html --package=packages/samples/ssr/package.json >> license-reports/sample-ssr.html +npx license-report --output=html --package=packages/samples/vite/package.json >> license-reports/sample-vite.html +npx license-report --output=html --package=packages/storybook/package.json >> license-reports/storybook.html npx license-report --output=html --package=packages/schema/package.json >> license-reports/schema.html npx license-report --output=html --package=packages/themes/package.json >> license-reports/themes.html npx license-report --output=html --package=packages/tools/kolibri-cli/package.json >> license-reports/themes.html