diff --git a/themes/PaperMod/.github/ISSUE_TEMPLATE/bug.yaml b/themes/PaperMod/.github/ISSUE_TEMPLATE/bug.yaml
new file mode 100644
index 0000000..0d9cec5
--- /dev/null
+++ b/themes/PaperMod/.github/ISSUE_TEMPLATE/bug.yaml
@@ -0,0 +1,112 @@
+name: Bug Report 🐞
+description: Create a report to help us improve
+title: "[Bug]: "
+labels: ["bug", "triage"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report :)
+ - Kindly **DO NOT** ask for instructions.
+ - Use [Discussions](https://github.com/adityatelange/hugo-PaperMod/discussions) section if you have a query or doubts or any orther relevant question.
+ - You may join [Discord community](https://discord.gg/ahpmTvhVmp) to interact with fellow contributors and users
+ - Read project's [Wiki](https://github.com/adityatelange/hugo-PaperMod/wiki) for detailed documentation.
+ - Read project's [FAQs](https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs) section for Frequently asked questions.
+ - Search for previous [Issues](https://github.com/adityatelange/hugo-PaperMod/issues)/[Pull Requests](https://github.com/adityatelange/hugo-PaperMod/pulls) if this issue is already reported or fix has been created.
+ - type: textarea
+ id: what_happened
+ attributes:
+ label: What happened?
+ description: Also tell us, what did you expect to happen?
+ placeholder: A bug happened! Here are the screenshots.. Tell us what you see!
+ validations:
+ required: true
+ - type: textarea
+ id: steps_to_reproduce
+ attributes:
+ label: Steps to reproduce
+ description: How to reproduce this issue. Here are the steps...
+ placeholder: |
+ 1. Go to '...'
+ 2. Click on '....'
+ 3. Scroll down to '....'
+ 4. See error
+ validations:
+ required: true
+ - type: dropdown
+ id: hugo_version
+ attributes:
+ label: Hugo Version
+ description: What version of Hugo are you running?
+ options:
+ - Hugo >= 0.112.4 (Recommended - Minimum version required for PaperMod)
+ - Hugo < 0.112.4 (Incompatible - Not recommended to build PaperMod on lower verions)
+ validations:
+ required: true
+ - type: input
+ id: papermod_version
+ attributes:
+ label: PaperMod Version
+ description: What version of PaperMod are you running?
+ placeholder: |
+ PaperMod v7.0 or
+ Branch master or
+ Commit-id: 3f50861a0ced88f9b614a43662edeb4c0bc45da8
+ validations:
+ required: true
+ - type: dropdown
+ id: browser_type
+ attributes:
+ label: What kind of devices are you seeing the problem on?
+ multiple: true
+ options:
+ - Mobile
+ - Desktop
+ validations:
+ required: false
+ - type: dropdown
+ id: browsers
+ attributes:
+ label: What browsers are you seeing the problem on?
+ multiple: true
+ options:
+ - Firefox
+ - Chrome
+ - Safari
+ - Microsoft Edge
+ validations:
+ required: false
+ - type: input
+ id: browser_version
+ attributes:
+ label: Browser Version
+ description: Please add browser version or enter user agent string (navigator.userAgent)
+ placeholder: ex. Google Chrome 86.0
+ validations:
+ required: false
+ - type: textarea
+ id: logs
+ attributes:
+ label: Relevant log output
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
+ render: shell
+ validations:
+ required: true
+ - type: input
+ id: repo_url
+ attributes:
+ label: Repository/Source Code link where this issue can be reproduced
+ description: Please add url of the repository where this issue can be reproduced
+ placeholder: https://github.com//
+ validations:
+ required: false
+ - type: checkboxes
+ id: terms
+ attributes:
+ label: Code of Conduct
+ description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/adityatelange/hugo-PaperMod?tab=coc-ov-file#readme).
+ options:
+ - label: I agree to follow this project's Code of Conduct
+ required: true
+ validations:
+ required: true
diff --git a/themes/PaperMod/.github/ISSUE_TEMPLATE/config.yml b/themes/PaperMod/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..eeb6e55
--- /dev/null
+++ b/themes/PaperMod/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+ - name: PaperMod Discussions
+ url: https://github.com/adityatelange/hugo-PaperMod/discussions
+ about: Please ask and answer questions/doubts here, DO NOT open an issue for questions.
diff --git a/themes/PaperMod/.github/ISSUE_TEMPLATE/enhancement.yaml b/themes/PaperMod/.github/ISSUE_TEMPLATE/enhancement.yaml
new file mode 100644
index 0000000..0eef833
--- /dev/null
+++ b/themes/PaperMod/.github/ISSUE_TEMPLATE/enhancement.yaml
@@ -0,0 +1,32 @@
+name: Enhancement 🚀
+description: Propose a new feature or change for enhancing the experience.
+title: "[Enhancement]: "
+labels: ["enhancement", "triage"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this enahancement form :)
+ - Use [Discussions](https://github.com/adityatelange/hugo-PaperMod/discussions) section if you have a query or doubts or any orther relevant question.
+ - You may join [Discord community](https://discord.gg/ahpmTvhVmp) to interact with fellow contributors and users
+ - Read project's [Wiki](https://github.com/adityatelange/hugo-PaperMod/wiki) for detailed documentation.
+ - Read project's [FAQs](https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs) section for Frequently asked questions.
+ - Search for previous [Issues](https://github.com/adityatelange/hugo-PaperMod/issues)/[Pull Requests](https://github.com/adityatelange/hugo-PaperMod/pulls) if this issue is already reported or fix has been created.
+ - type: textarea
+ id: what_happened
+ attributes:
+ label: What you'd like to propose?
+ description:
+ placeholder:
+ validations:
+ required: true
+ - type: checkboxes
+ id: terms
+ attributes:
+ label: Code of Conduct
+ description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/adityatelange/hugo-PaperMod?tab=coc-ov-file#readme).
+ options:
+ - label: I agree to follow this project's Code of Conduct
+ required: true
+ validations:
+ required: true
\ No newline at end of file
diff --git a/themes/PaperMod/.github/PULL_REQUEST_TEMPLATE.md b/themes/PaperMod/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..00b856c
--- /dev/null
+++ b/themes/PaperMod/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,44 @@
+
+
+
+**What does this PR change? What problem does it solve?**
+
+
+
+
+**Was the change discussed in an issue or in the Discussions before?**
+
+
+
+
+## PR Checklist
+
+- [ ] This change adds/updates translations and I have used the [template present here](https://github.com/adityatelange/hugo-PaperMod/wiki/Translations#want-to-add-your-language-).
+- [ ] I have enabled [maintainer edits for this PR](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork).
+- [ ] I have verified that the code works as described/as intended.
+- [ ] This change adds a Social Icon which has a permissive license to use it.
+- [ ] This change **does not** include any CDN resources/links.
+- [ ] This change **does not** include any unrelated scripts such as bash and python scripts.
+- [ ] This change updates the overridden internal templates from HUGO's repository.
diff --git a/themes/PaperMod/.github/workflows/gh-pages.yml b/themes/PaperMod/.github/workflows/gh-pages.yml
new file mode 100644
index 0000000..6a43bcd
--- /dev/null
+++ b/themes/PaperMod/.github/workflows/gh-pages.yml
@@ -0,0 +1,77 @@
+name: Deploy Hugo PaperMod Demo to Pages
+
+on:
+ push:
+ paths-ignore:
+ - "images/**"
+ - "LICENSE"
+ - "README.md"
+ branches:
+ - master
+ - exampleSite
+ workflow_dispatch:
+ # manual run
+ inputs:
+ hugoVersion:
+ description: "Hugo Version"
+ required: false
+ default: "0.112.4"
+
+# Allow one concurrent deployment
+concurrency:
+ group: "pages"
+ cancel-in-progress: true
+
+# Default to bash
+defaults:
+ run:
+ shell: bash
+
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+jobs:
+ # Build job
+ build:
+ runs-on: ubuntu-latest
+ env:
+ HUGO_VERSION: ${{ github.event.inputs.hugoVersion || '0.112.4' }}
+ steps:
+ - name: Install Hugo CLI
+ run: |
+ wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.deb \
+ && sudo dpkg -i ${{ runner.temp }}/hugo.deb
+ - name: Checkout
+ uses: actions/checkout@v3
+ with:
+ ref: exampleSite
+ - name: Setup Pages
+ id: pages
+ uses: actions/configure-pages@v3
+ - name: Get Theme
+ run: git submodule update --init --recursive
+ - name: Update theme to Latest commit
+ run: git submodule update --remote --merge
+ - name: Build with Hugo
+ run: |
+ hugo \
+ --buildDrafts --gc \
+ --baseURL ${{ steps.pages.outputs.base_url }}
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v2
+ with:
+ path: ./public
+ # Deployment job
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v2
diff --git a/themes/PaperMod/LICENSE b/themes/PaperMod/LICENSE
new file mode 100644
index 0000000..07edff3
--- /dev/null
+++ b/themes/PaperMod/LICENSE
@@ -0,0 +1,22 @@
+MIT License
+
+Copyright (c) 2020 nanxiaobei and adityatelange
+Copyright (c) 2021-2024 adityatelange
+
+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.
diff --git a/themes/PaperMod/README.md b/themes/PaperMod/README.md
new file mode 100644
index 0000000..0637bf9
--- /dev/null
+++ b/themes/PaperMod/README.md
@@ -0,0 +1,106 @@
+Hugo PaperMod | Demo
+
+☄️ Fast | ☁️ Fluent | 🌙 Smooth | 📱 Responsive
+
+
+> Hugo PaperMod is a theme based on [hugo-paper](https://github.com/nanxiaobei/hugo-paper/tree/4330c8b12aa48bfdecbcad6ad66145f679a430b3).
+> The goal of this project is to add more features and customization to the og theme.
+
+**Documentation** can be found here: [**📚 Wiki**](https://github.com/adityatelange/hugo-PaperMod/wiki)
+
+**ExampleSite** can be found here: [**exampleSite**](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite). Demo is built up with [exampleSite](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite) as source.
+
+[](https://themes.gohugo.io/themes/hugo-papermod/)
+[](https://github.com/gohugoio/hugo/releases/tag/v0.112.4)
+[](https://discord.gg/ahpmTvhVmp)
+[](https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE)
+
+[](https://x.com/intent/tweet/?text=Checkout%20Hugo%20PaperMod%20%E2%9C%A8%0AA%20fast,%20clean,%20responsive%20Hugo%20theme.&url=https://github.com/adityatelange/hugo-PaperMod&hashtags=Hugo,PaperMod)
+
+
+---
+
+
+
+
+
+---
+
+## Features/Mods 💥
+
+- Uses Hugo's asset generator with pipelining, fingerprinting, bundling and minification by default.
+- 3 Modes:
+ - [Regular Mode.](https://github.com/adityatelange/hugo-PaperMod/wiki/Features#regular-mode-default-mode)
+ - [Home-Info Mode.](https://github.com/adityatelange/hugo-PaperMod/wiki/Features#home-info-mode)
+ - [Profile Mode.](https://github.com/adityatelange/hugo-PaperMod/wiki/Features#profile-mode)
+- Table of Content Generation (newer implementation).
+- Archive of posts.
+- Social Icons (home-info and profile-mode).
+- Social-Media Share buttons on posts.
+- Menu location indicator.
+- Multilingual support. (with language selector).
+- Taxonomies.
+- Cover image for each post (with Responsive image support).
+- Light/Dark theme (automatic theme switch a/c to browser theme and theme-switch button).
+- SEO Friendly.
+- Multiple Author support.
+- Search Page with Fuse.js
+- Other Posts suggestion below a post
+- Breadcrumb Navigation.
+- Code Block Copy buttons.
+- Hugo's Chroma syntax highlighter.
+- No webpack, nodejs and other dependencies are required to edit the theme.
+
+Read Wiki For More Details => **[PaperMod - Features](https://github.com/adityatelange/hugo-PaperMod/wiki/Features)**
+
+---
+
+## Install/Update 📥
+
+Read Wiki For More Details => **[PaperMod - Installation](https://github.com/adityatelange/hugo-PaperMod/wiki/Installation)**
+
+---
+
+## FAQs / How To's Guide 🙋
+
+Read Wiki For More Details => **[PaperMod-FAQs](https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs)**
+
+---
+
+## Social-Icons/Share-Icons 🖼️
+
+Read Wiki For More Details => **[PaperMod-Icons](https://github.com/adityatelange/hugo-PaperMod/wiki/Icons)**
+
+---
+
+## Release Changelog 📃
+
+Release ChangeLog has info about stuff added: **[Releases](https://github.com/adityatelange/hugo-PaperMod/releases)**
+
+---
+
+## [Pagespeed Insights (100% ?)](https://pagespeed.web.dev/report?url=https://adityatelange.github.io/hugo-PaperMod/) 👀
+
+---
+
+## Support 🫶
+
+- Star 🌟 this repository.
+- Help spread the word about PaperMod by sharing it on social media and recommending it to your friends. 🗣️
+- You can also sponsor 🏅 on [Github Sponsors](https://github.com/sponsors/adityatelange) / [Ko-Fi](https://ko-fi.com/adityatelange).
+
+---
+
+## Special Thanks 🌟
+
+- [**Highlight.js**](https://github.com/highlightjs/highlight.js)
+- [**Fuse.js**](https://github.com/krisk/fuse)
+- [**Feather Icons**](https://github.com/feathericons/feather)
+- [**Simple Icons**](https://github.com/simple-icons/simple-icons)
+- **All Contributors and Supporters**
+
+---
+
+## Stargazers over time 📈
+
+[](https://starchart.cc/adityatelange/hugo-PaperMod)
diff --git a/themes/PaperMod/assets/css/common/404.css b/themes/PaperMod/assets/css/common/404.css
new file mode 100644
index 0000000..8a23430
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/404.css
@@ -0,0 +1,11 @@
+.not-found {
+ position: absolute;
+ left: 0;
+ right: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 80%;
+ font-size: 160px;
+ font-weight: 700;
+}
diff --git a/themes/PaperMod/assets/css/common/archive.css b/themes/PaperMod/assets/css/common/archive.css
new file mode 100644
index 0000000..7e7e245
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/archive.css
@@ -0,0 +1,44 @@
+.archive-posts {
+ width: 100%;
+ font-size: 16px;
+}
+
+.archive-year {
+ margin-top: 40px;
+}
+
+.archive-year:not(:last-of-type) {
+ border-bottom: 2px solid var(--border);
+}
+
+.archive-month {
+ display: flex;
+ align-items: flex-start;
+ padding: 10px 0;
+}
+
+.archive-month-header {
+ margin: 25px 0;
+ width: 200px;
+}
+
+.archive-month:not(:last-of-type) {
+ border-bottom: 1px solid var(--border);
+}
+
+.archive-entry {
+ position: relative;
+ padding: 5px;
+ margin: 10px 0;
+}
+
+.archive-entry-title {
+ margin: 5px 0;
+ font-weight: 400;
+}
+
+.archive-count,
+.archive-meta {
+ color: var(--secondary);
+ font-size: 14px;
+}
diff --git a/themes/PaperMod/assets/css/common/footer.css b/themes/PaperMod/assets/css/common/footer.css
new file mode 100644
index 0000000..5addb1e
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/footer.css
@@ -0,0 +1,60 @@
+.footer,
+.top-link {
+ font-size: 12px;
+ color: var(--secondary);
+}
+
+.footer {
+ max-width: calc(var(--main-width) + var(--gap) * 2);
+ margin: auto;
+ padding: calc((var(--footer-height) - var(--gap)) / 2) var(--gap);
+ text-align: center;
+ line-height: 24px;
+}
+
+.footer span {
+ margin-inline-start: 1px;
+ margin-inline-end: 1px;
+}
+
+.footer span:last-child {
+ white-space: nowrap;
+}
+
+.footer a {
+ color: inherit;
+ border-bottom: 1px solid var(--secondary);
+}
+
+.footer a:hover {
+ border-bottom: 1px solid var(--primary);
+}
+
+.top-link {
+ visibility: hidden;
+ position: fixed;
+ bottom: 60px;
+ right: 30px;
+ z-index: 99;
+ background: var(--tertiary);
+ width: 42px;
+ height: 42px;
+ padding: 12px;
+ border-radius: 64px;
+ transition: visibility 0.5s, opacity 0.8s linear;
+}
+
+.top-link,
+.top-link svg {
+ filter: drop-shadow(0px 0px 0px var(--theme));
+}
+
+.footer a:hover,
+.top-link:hover {
+ color: var(--primary);
+}
+
+.top-link:focus,
+#theme-toggle:focus {
+ outline: 0;
+}
diff --git a/themes/PaperMod/assets/css/common/header.css b/themes/PaperMod/assets/css/common/header.css
new file mode 100644
index 0000000..64894da
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/header.css
@@ -0,0 +1,93 @@
+.nav {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ max-width: calc(var(--nav-width) + var(--gap) * 2);
+ margin-inline-start: auto;
+ margin-inline-end: auto;
+ line-height: var(--header-height);
+}
+
+.nav a {
+ display: block;
+}
+
+.logo,
+#menu {
+ display: flex;
+ margin: auto var(--gap);
+}
+
+.logo {
+ flex-wrap: inherit;
+}
+
+.logo a {
+ font-size: 24px;
+ font-weight: 700;
+}
+
+.logo a img, .logo a svg {
+ display: inline;
+ vertical-align: middle;
+ pointer-events: none;
+ transform: translate(0, -10%);
+ border-radius: 6px;
+ margin-inline-end: 8px;
+}
+
+button#theme-toggle {
+ font-size: 26px;
+ margin: auto 4px;
+}
+
+body.dark #moon {
+ vertical-align: middle;
+ display: none;
+}
+
+body:not(.dark) #sun {
+ display: none;
+}
+
+#menu {
+ list-style: none;
+ word-break: keep-all;
+ overflow-x: auto;
+ white-space: nowrap;
+}
+
+#menu li + li {
+ margin-inline-start: var(--gap);
+}
+
+#menu a {
+ font-size: 16px;
+}
+
+#menu .active {
+ font-weight: 500;
+ border-bottom: 2px solid currentColor;
+}
+
+.lang-switch li,
+.lang-switch ul,
+.logo-switches {
+ display: inline-flex;
+ margin: auto 4px;
+}
+
+.lang-switch {
+ display: flex;
+ flex-wrap: inherit;
+}
+
+.lang-switch a {
+ margin: auto 3px;
+ font-size: 16px;
+ font-weight: 500;
+}
+
+.logo-switches {
+ flex-wrap: inherit;
+}
diff --git a/themes/PaperMod/assets/css/common/main.css b/themes/PaperMod/assets/css/common/main.css
new file mode 100644
index 0000000..25ae4da
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/main.css
@@ -0,0 +1,66 @@
+.main {
+ position: relative;
+ min-height: calc(100vh - var(--header-height) - var(--footer-height));
+ max-width: calc(var(--main-width) + var(--gap) * 2);
+ margin: auto;
+ padding: var(--gap);
+}
+
+.page-header h1 {
+ font-size: 40px;
+}
+
+.pagination {
+ display: flex;
+}
+
+.pagination a {
+ color: var(--theme);
+ font-size: 13px;
+ line-height: 36px;
+ background: var(--primary);
+ border-radius: calc(36px / 2);
+ padding: 0 16px;
+}
+
+.pagination .next {
+ margin-inline-start: auto;
+}
+
+
+.social-icons a {
+ display: inline-flex;
+ padding: 10px;
+}
+
+.social-icons a svg {
+ height: 26px;
+ width: 26px;
+}
+
+code {
+ direction: ltr;
+}
+
+div.highlight,
+pre {
+ position: relative;
+}
+
+.copy-code {
+ display: none;
+ position: absolute;
+ top: 4px;
+ right: 4px;
+ color: rgba(255, 255, 255, 0.8);
+ background: rgba(78, 78, 78, 0.8);
+ border-radius: var(--radius);
+ padding: 0 5px;
+ font-size: 14px;
+ user-select: none;
+}
+
+div.highlight:hover .copy-code,
+pre:hover .copy-code {
+ display: block;
+}
diff --git a/themes/PaperMod/assets/css/common/post-entry.css b/themes/PaperMod/assets/css/common/post-entry.css
new file mode 100644
index 0000000..c3cba37
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/post-entry.css
@@ -0,0 +1,108 @@
+.first-entry {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ min-height: 320px;
+ margin: var(--gap) 0 calc(var(--gap) * 2) 0;
+}
+
+.first-entry .entry-header {
+ overflow: hidden;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 3;
+}
+
+.first-entry .entry-header h1 {
+ font-size: 34px;
+ line-height: 1.3;
+}
+
+.first-entry .entry-content {
+ margin: 14px 0;
+ font-size: 16px;
+ -webkit-line-clamp: 3;
+}
+
+.first-entry .entry-footer {
+ font-size: 14px;
+}
+
+.home-info .entry-content {
+ -webkit-line-clamp: unset;
+}
+
+.post-entry {
+ position: relative;
+ margin-bottom: var(--gap);
+ padding: var(--gap);
+ background: var(--entry);
+ border-radius: var(--radius);
+ transition: transform 0.1s;
+ border: 1px solid var(--border);
+}
+
+.post-entry:active {
+ transform: scale(0.96);
+}
+
+.tag-entry .entry-cover {
+ display: none;
+}
+
+.entry-header h2 {
+ font-size: 24px;
+ line-height: 1.3;
+}
+
+.entry-content {
+ margin: 8px 0;
+ color: var(--secondary);
+ font-size: 14px;
+ line-height: 1.6;
+ overflow: hidden;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+}
+
+.entry-footer {
+ color: var(--secondary);
+ font-size: 13px;
+}
+
+.entry-link {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+}
+
+.entry-hint {
+ color: var(--secondary);
+}
+
+.entry-hint-parent {
+ display: flex;
+ justify-content: space-between;
+}
+
+.entry-cover {
+ font-size: 14px;
+ margin-bottom: var(--gap);
+ text-align: center;
+}
+
+.entry-cover img {
+ border-radius: var(--radius);
+ pointer-events: none;
+ width: 100%;
+ height: auto;
+}
+
+.entry-cover a {
+ color: var(--secondary);
+ box-shadow: 0 1px 0 var(--primary);
+}
diff --git a/themes/PaperMod/assets/css/common/post-single.css b/themes/PaperMod/assets/css/common/post-single.css
new file mode 100644
index 0000000..486ad36
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/post-single.css
@@ -0,0 +1,409 @@
+.page-header,
+.post-header {
+ margin: 24px auto var(--content-gap) auto;
+}
+
+.post-title {
+ margin-bottom: 2px;
+ font-size: 40px;
+}
+
+.post-description {
+ margin-top: 10px;
+ margin-bottom: 5px;
+}
+
+.post-meta,
+.breadcrumbs {
+ color: var(--secondary);
+ font-size: 14px;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.post-meta .i18n_list li {
+ display: inline-flex;
+ list-style: none;
+ margin: auto 3px;
+ box-shadow: 0 1px 0 var(--secondary);
+}
+
+.breadcrumbs a {
+ font-size: 16px;
+}
+
+.post-content {
+ color: var(--content);
+}
+
+.post-content h3,
+.post-content h4,
+.post-content h5,
+.post-content h6 {
+ margin: 24px 0 16px;
+}
+
+.post-content h1 {
+ margin: 40px auto 32px;
+ font-size: 40px;
+}
+
+.post-content h2 {
+ margin: 32px auto 24px;
+ font-size: 32px;
+}
+
+.post-content h3 {
+ font-size: 24px;
+}
+
+.post-content h4 {
+ font-size: 16px;
+}
+
+.post-content h5 {
+ font-size: 14px;
+}
+
+.post-content h6 {
+ font-size: 12px;
+}
+
+.post-content a,
+.toc a:hover {
+ box-shadow: 0 1px 0;
+ box-decoration-break: clone;
+ -webkit-box-decoration-break: clone;
+}
+
+.post-content a code {
+ margin: auto 0;
+ border-radius: 0;
+ box-shadow: 0 -1px 0 var(--primary) inset;
+}
+
+.post-content del {
+ text-decoration: line-through;
+}
+
+.post-content dl,
+.post-content ol,
+.post-content p,
+.post-content figure,
+.post-content ul {
+ margin-bottom: var(--content-gap);
+}
+
+.post-content ol,
+.post-content ul {
+ padding-inline-start: 20px;
+}
+
+.post-content li {
+ margin-top: 5px;
+}
+
+.post-content li p {
+ margin-bottom: 0;
+}
+
+.post-content dl {
+ display: flex;
+ flex-wrap: wrap;
+ margin: 0;
+}
+
+.post-content dt {
+ width: 25%;
+ font-weight: 700;
+}
+
+.post-content dd {
+ width: 75%;
+ margin-inline-start: 0;
+ padding-inline-start: 10px;
+}
+
+.post-content dd ~ dd,
+.post-content dt ~ dt {
+ margin-top: 10px;
+}
+
+.post-content table {
+ margin-bottom: var(--content-gap);
+}
+
+.post-content table th,
+.post-content table:not(.highlighttable, .highlight table, .gist .highlight) td {
+ min-width: 80px;
+ padding: 8px 5px;
+ line-height: 1.5;
+ border-bottom: 1px solid var(--border);
+}
+
+.post-content table th {
+ text-align: start;
+}
+
+.post-content table:not(.highlighttable) td code:only-child {
+ margin: auto 0;
+}
+
+.post-content .highlight table {
+ border-radius: var(--radius);
+}
+
+.post-content .highlight:not(table) {
+ margin: 10px auto;
+ background: var(--code-block-bg) !important;
+ border-radius: var(--radius);
+ direction: ltr;
+}
+
+.post-content li > .highlight {
+ margin-inline-end: 0;
+}
+
+.post-content ul pre {
+ margin-inline-start: calc(var(--gap) * -2);
+}
+
+.post-content .highlight pre {
+ margin: 0;
+}
+
+.post-content .highlighttable {
+ table-layout: fixed;
+}
+
+.post-content .highlighttable td:first-child {
+ width: 40px;
+}
+
+.post-content .highlighttable td .linenodiv {
+ padding-inline-end: 0 !important;
+}
+
+.post-content .highlighttable td .highlight,
+.post-content .highlighttable td .linenodiv pre {
+ margin-bottom: 0;
+}
+
+.post-content code {
+ margin: auto 4px;
+ padding: 4px 6px;
+ font-size: 0.78em;
+ line-height: 1.5;
+ background: var(--code-bg);
+ border-radius: 2px;
+}
+
+.post-content pre code {
+ display: grid;
+ margin: auto 0;
+ padding: 10px;
+ color: rgb(213, 213, 214);
+ background: var(--code-block-bg) !important;
+ border-radius: var(--radius);
+ overflow-x: auto;
+ word-break: break-all;
+}
+
+.post-content blockquote {
+ margin: 20px 0;
+ padding: 0 14px;
+ border-inline-start: 3px solid var(--primary);
+}
+
+.post-content hr {
+ margin: 30px 0;
+ height: 2px;
+ background: var(--tertiary);
+ border: 0;
+}
+
+.post-content iframe {
+ max-width: 100%;
+}
+
+.post-content img {
+ border-radius: 4px;
+ margin: 1rem 0;
+}
+
+.post-content img[src*="#center"] {
+ margin: 1rem auto;
+}
+
+.post-content figure.align-center {
+ text-align: center;
+}
+
+.post-content figure > figcaption {
+ color: var(--primary);
+ font-size: 16px;
+ font-weight: bold;
+ margin: 8px 0 16px;
+}
+
+.post-content figure > figcaption > p {
+ color: var(--secondary);
+ font-size: 14px;
+ font-weight: normal;
+}
+
+.toc {
+ margin: 0 2px 40px 2px;
+ border: 1px solid var(--border);
+ background: var(--code-bg);
+ border-radius: var(--radius);
+ padding: 0.4em;
+}
+
+.dark .toc {
+ background: var(--entry);
+}
+
+.toc details summary {
+ cursor: zoom-in;
+ margin-inline-start: 10px;
+ user-select: none;
+}
+
+.toc details[open] summary {
+ cursor: zoom-out;
+}
+
+.toc .details {
+ display: inline;
+ font-weight: 500;
+}
+
+.toc .inner {
+ margin: 5px 20px 0;
+ padding: 0 10px;
+ opacity: 0.9;
+}
+
+.toc li ul {
+ margin-inline-start: var(--gap);
+}
+
+.toc summary:focus {
+ outline: 0;
+}
+
+.post-footer {
+ margin-top: 56px;
+}
+
+.post-footer>* {
+ margin-bottom: 10px;
+}
+
+.post-tags {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 10px;
+}
+
+.post-tags li {
+ display: inline-block;
+}
+
+.post-tags a,
+.share-buttons,
+.paginav {
+ border-radius: var(--radius);
+ background: var(--code-bg);
+ border: 1px solid var(--border);
+}
+
+.post-tags a {
+ display: block;
+ padding: 0 14px;
+ color: var(--secondary);
+ font-size: 14px;
+ line-height: 34px;
+ background: var(--code-bg);
+}
+
+.post-tags a:hover,
+.paginav a:hover {
+ background: var(--border);
+}
+
+.share-buttons {
+ padding: 10px;
+ display: flex;
+ justify-content: center;
+ overflow-x: auto;
+ gap: 10px;
+}
+
+.share-buttons li,
+.share-buttons a {
+ display: inline-flex;
+}
+
+.share-buttons a:not(:last-of-type) {
+ margin-inline-end: 12px;
+}
+
+h1:hover .anchor,
+h2:hover .anchor,
+h3:hover .anchor,
+h4:hover .anchor,
+h5:hover .anchor,
+h6:hover .anchor {
+ display: inline-flex;
+ color: var(--secondary);
+ margin-inline-start: 8px;
+ font-weight: 500;
+ user-select: none;
+}
+
+.paginav {
+ display: flex;
+ line-height: 30px;
+}
+
+.paginav a {
+ padding-inline-start: 14px;
+ padding-inline-end: 14px;
+ border-radius: var(--radius);
+}
+
+.paginav .title {
+ letter-spacing: 1px;
+ text-transform: uppercase;
+ font-size: small;
+ color: var(--secondary);
+}
+
+.paginav .prev,
+.paginav .next {
+ width: 50%;
+}
+
+.paginav span:hover:not(.title) {
+ box-shadow: 0 1px 0;
+}
+
+.paginav .next {
+ margin-inline-start: auto;
+ text-align: right;
+}
+
+[dir="rtl"] .paginav .next {
+ text-align: left;
+}
+
+h1>a>svg {
+ display: inline;
+}
+
+img.in-text {
+ display: inline;
+ margin: auto;
+}
diff --git a/themes/PaperMod/assets/css/common/profile-mode.css b/themes/PaperMod/assets/css/common/profile-mode.css
new file mode 100644
index 0000000..9e98df5
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/profile-mode.css
@@ -0,0 +1,43 @@
+.buttons,
+.main .profile {
+ display: flex;
+ justify-content: center;
+}
+
+.main .profile {
+ align-items: center;
+ min-height: calc(100vh - var(--header-height) - var(--footer-height) - (var(--gap) * 2));
+ text-align: center;
+}
+
+.profile .profile_inner {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 10px;
+}
+
+.profile img {
+ border-radius: 50%;
+}
+
+.buttons {
+ flex-wrap: wrap;
+ max-width: 400px;
+}
+
+.button {
+ background: var(--tertiary);
+ border-radius: var(--radius);
+ margin: 8px;
+ padding: 6px;
+ transition: transform 0.1s;
+}
+
+.button-inner {
+ padding: 0 8px;
+}
+
+.button:active {
+ transform: scale(0.96);
+}
diff --git a/themes/PaperMod/assets/css/common/search.css b/themes/PaperMod/assets/css/common/search.css
new file mode 100644
index 0000000..38d5b6b
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/search.css
@@ -0,0 +1,45 @@
+#searchbox input {
+ padding: 4px 10px;
+ width: 100%;
+ color: var(--primary);
+ font-weight: bold;
+ border: 2px solid var(--tertiary);
+ border-radius: var(--radius);
+}
+
+#searchbox input:focus {
+ border-color: var(--secondary);
+}
+
+#searchResults li {
+ list-style: none;
+ border-radius: var(--radius);
+ padding: 10px;
+ margin: 10px 0;
+ position: relative;
+ font-weight: 500;
+}
+
+#searchResults {
+ margin: 10px 0;
+ width: 100%;
+}
+
+#searchResults li:active {
+ transition: transform 0.1s;
+ transform: scale(0.98);
+}
+
+#searchResults a {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0px;
+ left: 0px;
+ outline: none;
+}
+
+#searchResults .focus {
+ transform: scale(0.98);
+ border: 2px solid var(--tertiary);
+}
diff --git a/themes/PaperMod/assets/css/common/terms.css b/themes/PaperMod/assets/css/common/terms.css
new file mode 100644
index 0000000..244614b
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/terms.css
@@ -0,0 +1,18 @@
+.terms-tags li {
+ display: inline-block;
+ margin: 10px;
+ font-weight: 500;
+}
+
+.terms-tags a {
+ display: block;
+ padding: 3px 10px;
+ background: var(--tertiary);
+ border-radius: 6px;
+ transition: transform 0.1s;
+}
+
+.terms-tags a:active {
+ background: var(--tertiary);
+ transform: scale(0.96);
+}
diff --git a/themes/PaperMod/assets/css/core/license.css b/themes/PaperMod/assets/css/core/license.css
new file mode 100644
index 0000000..fb3dfec
--- /dev/null
+++ b/themes/PaperMod/assets/css/core/license.css
@@ -0,0 +1,6 @@
+/*
+ PaperMod v7
+ License: MIT https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE
+ Copyright (c) 2020 nanxiaobei and adityatelange
+ Copyright (c) 2021-2024 adityatelange
+*/
diff --git a/themes/PaperMod/assets/css/core/reset.css b/themes/PaperMod/assets/css/core/reset.css
new file mode 100644
index 0000000..7393d57
--- /dev/null
+++ b/themes/PaperMod/assets/css/core/reset.css
@@ -0,0 +1,118 @@
+*,
+::after,
+::before {
+ box-sizing: border-box;
+}
+
+html {
+ -webkit-tap-highlight-color: transparent;
+ overflow-y: scroll;
+ -webkit-text-size-adjust: 100%;
+ text-size-adjust: 100%;
+}
+
+a,
+button,
+body,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ color: var(--primary);
+}
+
+body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+ font-size: 18px;
+ line-height: 1.6;
+ word-break: break-word;
+ background: var(--theme);
+}
+
+article,
+aside,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+nav,
+section,
+table {
+ display: block;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ line-height: 1.2;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+p {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+ul {
+ padding: 0;
+}
+
+a {
+ text-decoration: none;
+}
+
+body,
+figure,
+ul {
+ margin: 0;
+}
+
+table {
+ width: 100%;
+ border-collapse: collapse;
+ border-spacing: 0;
+ overflow-x: auto;
+ word-break: keep-all;
+}
+
+button,
+input,
+textarea {
+ padding: 0;
+ font: inherit;
+ background: 0 0;
+ border: 0;
+}
+
+input,
+textarea {
+ outline: 0;
+}
+
+button,
+input[type=button],
+input[type=submit] {
+ cursor: pointer;
+}
+
+input:-webkit-autofill,
+textarea:-webkit-autofill {
+ box-shadow: 0 0 0 50px var(--theme) inset;
+}
+
+img {
+ display: block;
+ max-width: 100%;
+}
diff --git a/themes/PaperMod/assets/css/core/theme-vars.css b/themes/PaperMod/assets/css/core/theme-vars.css
new file mode 100644
index 0000000..db1845d
--- /dev/null
+++ b/themes/PaperMod/assets/css/core/theme-vars.css
@@ -0,0 +1,38 @@
+:root {
+ --gap: 24px;
+ --content-gap: 20px;
+ --nav-width: 1024px;
+ --main-width: 720px;
+ --header-height: 60px;
+ --footer-height: 60px;
+ --radius: 8px;
+ --theme: rgb(255, 255, 255);
+ --entry: rgb(255, 255, 255);
+ --primary: rgb(30, 30, 30);
+ --secondary: rgb(108, 108, 108);
+ --tertiary: rgb(214, 214, 214);
+ --content: rgb(31, 31, 31);
+ --code-block-bg: rgb(28, 29, 33);
+ --code-bg: rgb(245, 245, 245);
+ --border: rgb(238, 238, 238);
+}
+
+.dark {
+ --theme: rgb(29, 30, 32);
+ --entry: rgb(46, 46, 51);
+ --primary: rgb(218, 218, 219);
+ --secondary: rgb(155, 156, 157);
+ --tertiary: rgb(65, 66, 68);
+ --content: rgb(196, 196, 197);
+ --code-block-bg: rgb(46, 46, 51);
+ --code-bg: rgb(55, 56, 62);
+ --border: rgb(51, 51, 51);
+}
+
+.list {
+ background: var(--code-bg);
+}
+
+.dark.list {
+ background: var(--theme);
+}
diff --git a/themes/PaperMod/assets/css/core/zmedia.css b/themes/PaperMod/assets/css/core/zmedia.css
new file mode 100644
index 0000000..a68fd71
--- /dev/null
+++ b/themes/PaperMod/assets/css/core/zmedia.css
@@ -0,0 +1,55 @@
+@media screen and (max-width: 768px) {
+ /* theme-vars */
+ :root {
+ --gap: 14px;
+ }
+
+ /* profile-mode */
+ .profile img {
+ transform: scale(0.85);
+ }
+
+ /* post-entry */
+ .first-entry {
+ min-height: 260px;
+ }
+
+ /* archive */
+ .archive-month {
+ flex-direction: column;
+ }
+
+ .archive-year {
+ margin-top: 20px;
+ }
+
+ /* footer */
+ .footer {
+ padding: calc((var(--footer-height) - var(--gap) - 10px) / 2) var(--gap);
+ }
+}
+
+/* footer */
+@media screen and (max-width: 900px) {
+ .list .top-link {
+ transform: translateY(-5rem);
+ }
+}
+
+@media screen and (max-width: 340px) {
+ .share-buttons {
+ justify-content: unset;
+ }
+}
+
+@media (prefers-reduced-motion) {
+ /* terms; profile-mode; post-single; post-entry; post-entry; search; search */
+ .terms-tags a:active,
+ .button:active,
+ .post-entry:active,
+ .top-link,
+ #searchResults .focus,
+ #searchResults li:active {
+ transform: none;
+ }
+}
diff --git a/themes/PaperMod/assets/css/extended/blank.css b/themes/PaperMod/assets/css/extended/blank.css
new file mode 100644
index 0000000..a577295
--- /dev/null
+++ b/themes/PaperMod/assets/css/extended/blank.css
@@ -0,0 +1,5 @@
+/*
+This is just a placeholder blank stylesheet so as to support adding custom styles budled with theme's default styles
+
+Read https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs#bundling-custom-css-with-themes-assets for more info
+*/
diff --git a/themes/PaperMod/assets/css/includes/chroma-mod.css b/themes/PaperMod/assets/css/includes/chroma-mod.css
new file mode 100644
index 0000000..ad89b96
--- /dev/null
+++ b/themes/PaperMod/assets/css/includes/chroma-mod.css
@@ -0,0 +1,24 @@
+.chroma {
+ background-color: unset !important;
+}
+
+.chroma .hl {
+ display: flex;
+}
+
+.chroma .lnt {
+ padding: 0 0 0 12px;
+}
+
+.highlight pre.chroma code {
+ padding: 8px 0;
+}
+
+.highlight pre.chroma .line .cl,
+.chroma .ln {
+ padding: 0 10px;
+}
+
+.chroma .lntd:last-of-type {
+ width: 100%;
+}
diff --git a/themes/PaperMod/assets/css/includes/chroma-styles.css b/themes/PaperMod/assets/css/includes/chroma-styles.css
new file mode 100644
index 0000000..63a73ab
--- /dev/null
+++ b/themes/PaperMod/assets/css/includes/chroma-styles.css
@@ -0,0 +1,86 @@
+/* Background */ .bg { color: #cad3f5; background-color: #24273a; }
+/* PreWrapper */ .chroma { color: #cad3f5; background-color: #24273a; }
+/* Other */ .chroma .x { }
+/* Error */ .chroma .err { color: #ed8796 }
+/* CodeLine */ .chroma .cl { }
+/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
+/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
+/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
+/* LineHighlight */ .chroma .hl { background-color: #474733 }
+/* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #8087a2 }
+/* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #8087a2 }
+/* Line */ .chroma .line { display: flex; }
+/* Keyword */ .chroma .k { color: #c6a0f6 }
+/* KeywordConstant */ .chroma .kc { color: #f5a97f }
+/* KeywordDeclaration */ .chroma .kd { color: #ed8796 }
+/* KeywordNamespace */ .chroma .kn { color: #8bd5ca }
+/* KeywordPseudo */ .chroma .kp { color: #c6a0f6 }
+/* KeywordReserved */ .chroma .kr { color: #c6a0f6 }
+/* KeywordType */ .chroma .kt { color: #ed8796 }
+/* Name */ .chroma .n { }
+/* NameAttribute */ .chroma .na { color: #8aadf4 }
+/* NameBuiltin */ .chroma .nb { color: #91d7e3 }
+/* NameBuiltinPseudo */ .chroma .bp { color: #91d7e3 }
+/* NameClass */ .chroma .nc { color: #eed49f }
+/* NameConstant */ .chroma .no { color: #eed49f }
+/* NameDecorator */ .chroma .nd { color: #8aadf4; font-weight: bold }
+/* NameEntity */ .chroma .ni { color: #8bd5ca }
+/* NameException */ .chroma .ne { color: #f5a97f }
+/* NameFunction */ .chroma .nf { color: #8aadf4 }
+/* NameFunctionMagic */ .chroma .fm { color: #8aadf4 }
+/* NameLabel */ .chroma .nl { color: #91d7e3 }
+/* NameNamespace */ .chroma .nn { color: #f5a97f }
+/* NameOther */ .chroma .nx { }
+/* NameProperty */ .chroma .py { color: #f5a97f }
+/* NameTag */ .chroma .nt { color: #c6a0f6 }
+/* NameVariable */ .chroma .nv { color: #f4dbd6 }
+/* NameVariableClass */ .chroma .vc { color: #f4dbd6 }
+/* NameVariableGlobal */ .chroma .vg { color: #f4dbd6 }
+/* NameVariableInstance */ .chroma .vi { color: #f4dbd6 }
+/* NameVariableMagic */ .chroma .vm { color: #f4dbd6 }
+/* Literal */ .chroma .l { }
+/* LiteralDate */ .chroma .ld { }
+/* LiteralString */ .chroma .s { color: #a6da95 }
+/* LiteralStringAffix */ .chroma .sa { color: #ed8796 }
+/* LiteralStringBacktick */ .chroma .sb { color: #a6da95 }
+/* LiteralStringChar */ .chroma .sc { color: #a6da95 }
+/* LiteralStringDelimiter */ .chroma .dl { color: #8aadf4 }
+/* LiteralStringDoc */ .chroma .sd { color: #6e738d }
+/* LiteralStringDouble */ .chroma .s2 { color: #a6da95 }
+/* LiteralStringEscape */ .chroma .se { color: #8aadf4 }
+/* LiteralStringHeredoc */ .chroma .sh { color: #6e738d }
+/* LiteralStringInterpol */ .chroma .si { color: #a6da95 }
+/* LiteralStringOther */ .chroma .sx { color: #a6da95 }
+/* LiteralStringRegex */ .chroma .sr { color: #8bd5ca }
+/* LiteralStringSingle */ .chroma .s1 { color: #a6da95 }
+/* LiteralStringSymbol */ .chroma .ss { color: #a6da95 }
+/* LiteralNumber */ .chroma .m { color: #f5a97f }
+/* LiteralNumberBin */ .chroma .mb { color: #f5a97f }
+/* LiteralNumberFloat */ .chroma .mf { color: #f5a97f }
+/* LiteralNumberHex */ .chroma .mh { color: #f5a97f }
+/* LiteralNumberInteger */ .chroma .mi { color: #f5a97f }
+/* LiteralNumberIntegerLong */ .chroma .il { color: #f5a97f }
+/* LiteralNumberOct */ .chroma .mo { color: #f5a97f }
+/* Operator */ .chroma .o { color: #91d7e3; font-weight: bold }
+/* OperatorWord */ .chroma .ow { color: #91d7e3; font-weight: bold }
+/* Punctuation */ .chroma .p { }
+/* Comment */ .chroma .c { color: #6e738d; font-style: italic }
+/* CommentHashbang */ .chroma .ch { color: #6e738d; font-style: italic }
+/* CommentMultiline */ .chroma .cm { color: #6e738d; font-style: italic }
+/* CommentSingle */ .chroma .c1 { color: #6e738d; font-style: italic }
+/* CommentSpecial */ .chroma .cs { color: #6e738d; font-style: italic }
+/* CommentPreproc */ .chroma .cp { color: #6e738d; font-style: italic }
+/* CommentPreprocFile */ .chroma .cpf { color: #6e738d; font-weight: bold; font-style: italic }
+/* Generic */ .chroma .g { }
+/* GenericDeleted */ .chroma .gd { color: #ed8796; background-color: #363a4f }
+/* GenericEmph */ .chroma .ge { font-style: italic }
+/* GenericError */ .chroma .gr { color: #ed8796 }
+/* GenericHeading */ .chroma .gh { color: #f5a97f; font-weight: bold }
+/* GenericInserted */ .chroma .gi { color: #a6da95; background-color: #363a4f }
+/* GenericOutput */ .chroma .go { }
+/* GenericPrompt */ .chroma .gp { }
+/* GenericStrong */ .chroma .gs { font-weight: bold }
+/* GenericSubheading */ .chroma .gu { color: #f5a97f; font-weight: bold }
+/* GenericTraceback */ .chroma .gt { color: #ed8796 }
+/* GenericUnderline */ .chroma .gl { text-decoration: underline }
+/* TextWhitespace */ .chroma .w { }
diff --git a/themes/PaperMod/assets/css/includes/scroll-bar.css b/themes/PaperMod/assets/css/includes/scroll-bar.css
new file mode 100644
index 0000000..f6e577d
--- /dev/null
+++ b/themes/PaperMod/assets/css/includes/scroll-bar.css
@@ -0,0 +1,63 @@
+/* from reset */
+::-webkit-scrollbar-track {
+ background: 0 0;
+}
+
+.list:not(.dark)::-webkit-scrollbar-track {
+ background: var(--code-bg);
+}
+
+::-webkit-scrollbar-thumb {
+ background: var(--tertiary);
+ border: 5px solid var(--theme);
+ border-radius: var(--radius);
+}
+
+.list:not(.dark)::-webkit-scrollbar-thumb {
+ border: 5px solid var(--code-bg);
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: var(--secondary);
+}
+
+::-webkit-scrollbar:not(.highlighttable, .highlight table, .gist .highlight) {
+ background: var(--theme);
+}
+
+/* from post-single */
+.post-content .highlighttable td .highlight pre code::-webkit-scrollbar {
+ display: none;
+}
+
+.post-content :not(table) ::-webkit-scrollbar-thumb {
+ border: 2px solid var(--code-block-bg);
+ background: rgb(113, 113, 117);
+}
+
+.post-content :not(table) ::-webkit-scrollbar-thumb:hover {
+ background: rgb(163, 163, 165);
+}
+
+.gist table::-webkit-scrollbar-thumb {
+ border: 2px solid rgb(255, 255, 255);
+ background: rgb(173, 173, 173);
+}
+
+.gist table::-webkit-scrollbar-thumb:hover {
+ background: rgb(112, 112, 112);
+}
+
+.post-content table::-webkit-scrollbar-thumb {
+ border-width: 2px;
+}
+
+/* from zmedia */
+@media screen and (min-width: 768px) {
+
+ /* reset */
+ ::-webkit-scrollbar {
+ width: 19px;
+ height: 11px;
+ }
+}
diff --git a/themes/PaperMod/assets/js/fastsearch.js b/themes/PaperMod/assets/js/fastsearch.js
new file mode 100644
index 0000000..9484e75
--- /dev/null
+++ b/themes/PaperMod/assets/js/fastsearch.js
@@ -0,0 +1,152 @@
+import * as params from '@params';
+
+let fuse; // holds our search engine
+let resList = document.getElementById('searchResults');
+let sInput = document.getElementById('searchInput');
+let first, last, current_elem = null
+let resultsAvailable = false;
+
+// load our search index
+window.onload = function () {
+ let xhr = new XMLHttpRequest();
+ xhr.onreadystatechange = function () {
+ if (xhr.readyState === 4) {
+ if (xhr.status === 200) {
+ let data = JSON.parse(xhr.responseText);
+ if (data) {
+ // fuse.js options; check fuse.js website for details
+ let options = {
+ distance: 100,
+ threshold: 0.4,
+ ignoreLocation: true,
+ keys: [
+ 'title',
+ 'permalink',
+ 'summary',
+ 'content'
+ ]
+ };
+ if (params.fuseOpts) {
+ options = {
+ isCaseSensitive: params.fuseOpts.iscasesensitive ?? false,
+ includeScore: params.fuseOpts.includescore ?? false,
+ includeMatches: params.fuseOpts.includematches ?? false,
+ minMatchCharLength: params.fuseOpts.minmatchcharlength ?? 1,
+ shouldSort: params.fuseOpts.shouldsort ?? true,
+ findAllMatches: params.fuseOpts.findallmatches ?? false,
+ keys: params.fuseOpts.keys ?? ['title', 'permalink', 'summary', 'content'],
+ location: params.fuseOpts.location ?? 0,
+ threshold: params.fuseOpts.threshold ?? 0.4,
+ distance: params.fuseOpts.distance ?? 100,
+ ignoreLocation: params.fuseOpts.ignorelocation ?? true
+ }
+ }
+ fuse = new Fuse(data, options); // build the index from the json file
+ }
+ } else {
+ console.log(xhr.responseText);
+ }
+ }
+ };
+ xhr.open('GET', "../index.json");
+ xhr.send();
+}
+
+function activeToggle(ae) {
+ document.querySelectorAll('.focus').forEach(function (element) {
+ // rm focus class
+ element.classList.remove("focus")
+ });
+ if (ae) {
+ ae.focus()
+ document.activeElement = current_elem = ae;
+ ae.parentElement.classList.add("focus")
+ } else {
+ document.activeElement.parentElement.classList.add("focus")
+ }
+}
+
+function reset() {
+ resultsAvailable = false;
+ resList.innerHTML = sInput.value = ''; // clear inputbox and searchResults
+ sInput.focus(); // shift focus to input box
+}
+
+// execute search as each character is typed
+sInput.onkeyup = function (e) {
+ // run a search query (for "term") every time a letter is typed
+ // in the search box
+ if (fuse) {
+ let results;
+ if (params.fuseOpts) {
+ results = fuse.search(this.value.trim(), {limit: params.fuseOpts.limit}); // the actual query being run using fuse.js along with options
+ } else {
+ results = fuse.search(this.value.trim()); // the actual query being run using fuse.js
+ }
+ if (results.length !== 0) {
+ // build our html if result exists
+ let resultSet = ''; // our results bucket
+
+ for (let item in results) {
+ resultSet += `` +
+ ` `
+ }
+
+ resList.innerHTML = resultSet;
+ resultsAvailable = true;
+ first = resList.firstChild;
+ last = resList.lastChild;
+ } else {
+ resultsAvailable = false;
+ resList.innerHTML = '';
+ }
+ }
+}
+
+sInput.addEventListener('search', function (e) {
+ // clicked on x
+ if (!this.value) reset()
+})
+
+// kb bindings
+document.onkeydown = function (e) {
+ let key = e.key;
+ let ae = document.activeElement;
+
+ let inbox = document.getElementById("searchbox").contains(ae)
+
+ if (ae === sInput) {
+ let elements = document.getElementsByClassName('focus');
+ while (elements.length > 0) {
+ elements[0].classList.remove('focus');
+ }
+ } else if (current_elem) ae = current_elem;
+
+ if (key === "Escape") {
+ reset()
+ } else if (!resultsAvailable || !inbox) {
+ return
+ } else if (key === "ArrowDown") {
+ e.preventDefault();
+ if (ae == sInput) {
+ // if the currently focused element is the search input, focus the of first
+ activeToggle(resList.firstChild.lastChild);
+ } else if (ae.parentElement != last) {
+ // if the currently focused element's parent is last, do nothing
+ // otherwise select the next search result
+ activeToggle(ae.parentElement.nextSibling.lastChild);
+ }
+ } else if (key === "ArrowUp") {
+ e.preventDefault();
+ if (ae.parentElement == first) {
+ // if the currently focused element is first item, go to input box
+ activeToggle(sInput);
+ } else if (ae != sInput) {
+ // if the currently focused element is input box, do nothing
+ // otherwise select the previous search result
+ activeToggle(ae.parentElement.previousSibling.lastChild);
+ }
+ } else if (key === "ArrowRight") {
+ ae.click(); // click on active link
+ }
+}
diff --git a/themes/PaperMod/assets/js/fuse.basic.min.js b/themes/PaperMod/assets/js/fuse.basic.min.js
new file mode 100644
index 0000000..7457721
--- /dev/null
+++ b/themes/PaperMod/assets/js/fuse.basic.min.js
@@ -0,0 +1,9 @@
+/**
+ * Fuse.js v7.0.0 - Lightweight fuzzy-search (http://fusejs.io)
+ *
+ * Copyright (c) 2023 Kiro Risk (http://kiro.me)
+ * All Rights Reserved. Apache Software License 2.0
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ */
+var e,t;e=this,t=function(){"use strict";function e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function t(t){for(var n=1;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:{},n=t.getFn,i=void 0===n?O.getFn:n,o=t.fieldNormWeight,a=void 0===o?O.fieldNormWeight:o;r(this,e),this.norm=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=new Map,r=Math.pow(10,t);return{get:function(t){var i=t.match(j).length;if(n.has(i))return n.get(i);var o=1/Math.pow(i,.5*e),a=parseFloat(Math.round(o*r)/r);return n.set(i,a),a},clear:function(){n.clear()}}}(a,3),this.getFn=i,this.isCreated=!1,this.setIndexRecords()}return o(e,[{key:"setSources",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.docs=e}},{key:"setIndexRecords",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.records=e}},{key:"setKeys",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.keys=t,this._keysMap={},t.forEach((function(t,n){e._keysMap[t.id]=n}))}},{key:"create",value:function(){var e=this;!this.isCreated&&this.docs.length&&(this.isCreated=!0,f(this.docs[0])?this.docs.forEach((function(t,n){e._addString(t,n)})):this.docs.forEach((function(t,n){e._addObject(t,n)})),this.norm.clear())}},{key:"add",value:function(e){var t=this.size();f(e)?this._addString(e,t):this._addObject(e,t)}},{key:"removeAt",value:function(e){this.records.splice(e,1);for(var t=e,n=this.size();t2&&void 0!==arguments[2]?arguments[2]:{},r=n.getFn,i=void 0===r?O.getFn:r,o=n.fieldNormWeight,a=void 0===o?O.fieldNormWeight:o,c=new A({getFn:i,fieldNormWeight:a});return c.setKeys(e.map(x)),c.setSources(t),c.create(),c}function I(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.errors,r=void 0===n?0:n,i=t.currentLocation,o=void 0===i?0:i,a=t.expectedLocation,c=void 0===a?0:a,s=t.distance,h=void 0===s?O.distance:s,u=t.ignoreLocation,l=void 0===u?O.ignoreLocation:u,d=r/e.length;if(l)return d;var f=Math.abs(c-o);return h?d+f/h:f?1:d}var F=32;function C(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=r.location,o=void 0===i?O.location:i,a=r.distance,c=void 0===a?O.distance:a,s=r.threshold,h=void 0===s?O.threshold:s,u=r.findAllMatches,l=void 0===u?O.findAllMatches:u,d=r.minMatchCharLength,f=void 0===d?O.minMatchCharLength:d,v=r.includeMatches,g=void 0===v?O.includeMatches:v,y=r.ignoreLocation,p=void 0===y?O.ignoreLocation:y;if(t.length>F)throw new Error("Pattern length exceeds max of ".concat(F,"."));for(var m,b=t.length,k=e.length,M=Math.max(0,Math.min(o,k)),w=h,x=M,L=f>1||g,S=L?Array(k):[];(m=e.indexOf(t,x))>-1;){var _=I(t,{currentLocation:m,expectedLocation:M,distance:c,ignoreLocation:p});if(w=Math.min(_,w),x=m+b,L)for(var j=0;j=$;z-=1){var J=z-1,R=n[e.charAt(J)];if(L&&(S[J]=+!!R),K[z]=(K[z+1]<<1|1)&R,P&&(K[z]|=(A[z+1]|A[z])<<1|1|A[z+1]),K[z]&N&&(E=I(t,{errors:P,currentLocation:J,expectedLocation:M,distance:c,ignoreLocation:p}))<=w){if(w=E,(x=J)<=M)break;$=Math.max(1,2*M-x)}}if(I(t,{errors:P+1,currentLocation:M,expectedLocation:M,distance:c,ignoreLocation:p})>w)break;A=K}var U={isMatch:x>=0,score:Math.max(.001,E)};if(L){var B=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:O.minMatchCharLength,n=[],r=-1,i=-1,o=0,a=e.length;o=t&&n.push([r,i]),r=-1)}return e[o-1]&&o-r>=t&&n.push([r,o-1]),n}(S,f);B.length?g&&(U.indices=B):U.isMatch=!1}return U}function N(e){for(var t={},n=0,r=e.length;n1&&void 0!==arguments[1]?arguments[1]:{},o=i.location,a=void 0===o?O.location:o,c=i.threshold,s=void 0===c?O.threshold:c,h=i.distance,u=void 0===h?O.distance:h,l=i.includeMatches,d=void 0===l?O.includeMatches:l,f=i.findAllMatches,v=void 0===f?O.findAllMatches:f,g=i.minMatchCharLength,y=void 0===g?O.minMatchCharLength:g,p=i.isCaseSensitive,m=void 0===p?O.isCaseSensitive:p,b=i.ignoreLocation,k=void 0===b?O.ignoreLocation:b;if(r(this,e),this.options={location:a,threshold:s,distance:u,includeMatches:d,findAllMatches:v,minMatchCharLength:y,isCaseSensitive:m,ignoreLocation:k},this.pattern=m?t:t.toLowerCase(),this.chunks=[],this.pattern.length){var M=function(e,t){n.chunks.push({pattern:e,alphabet:N(e),startIndex:t})},w=this.pattern.length;if(w>F){for(var x=0,L=w%F,S=w-L;x-1&&(n.refIndex=e.idx),t.matches.push(n)}}))}function D(e,t){t.score=e.score}var K=function(){function e(n){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2?arguments[2]:void 0;if(r(this,e),this.options=t(t({},O),i),this.options.useExtendedSearch)throw new Error("Extended search is not available");this._keyStore=new w(this.options.keys),this.setCollection(n,o)}return o(e,[{key:"setCollection",value:function(e,t){if(this._docs=e,t&&!(t instanceof A))throw new Error("Incorrect 'index' type");this._myIndex=t||E(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}},{key:"add",value:function(e){y(e)&&(this._docs.push(e),this._myIndex.add(e))}},{key:"remove",value:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!1},t=[],n=0,r=this._docs.length;n1&&void 0!==arguments[1]?arguments[1]:{}).limit,n=void 0===t?-1:t,r=this.options,i=r.includeMatches,o=r.includeScore,a=r.shouldSort,c=r.sortFn,s=r.ignoreFieldNorm,h=f(e)?f(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return function(e,t){var n=t.ignoreFieldNorm,r=void 0===n?O.ignoreFieldNorm:n;e.forEach((function(e){var t=1;e.matches.forEach((function(e){var n=e.key,i=e.norm,o=e.score,a=n?n.weight:null;t*=Math.pow(0===o&&a?Number.EPSILON:o,(a||1)*(r?1:i))})),e.score=t}))}(h,{ignoreFieldNorm:s}),a&&h.sort(c),v(n)&&n>-1&&(h=h.slice(0,n)),function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.includeMatches,i=void 0===r?O.includeMatches:r,o=n.includeScore,a=void 0===o?O.includeScore:o,c=[];return i&&c.push($),a&&c.push(D),e.map((function(e){var n=e.idx,r={item:t[n],refIndex:n};return c.length&&c.forEach((function(t){t(e,r)})),r}))}(h,this._docs,{includeMatches:i,includeScore:o})}},{key:"_searchStringList",value:function(e){var t=T(e,this.options),n=this._myIndex.records,r=[];return n.forEach((function(e){var n=e.v,i=e.i,o=e.n;if(y(n)){var a=t.searchIn(n),c=a.isMatch,s=a.score,h=a.indices;c&&r.push({item:n,idx:i,matches:[{score:s,value:n,norm:o,indices:h}]})}})),r}},{key:"_searchLogical",value:function(e){throw new Error("Logical search is not available")}},{key:"_searchObjectList",value:function(e){var t=this,n=T(e,this.options),r=this._myIndex,i=r.keys,o=r.records,a=[];return o.forEach((function(e){var r=e.$,o=e.i;if(y(r)){var s=[];i.forEach((function(e,i){s.push.apply(s,c(t._findMatches({key:e,value:r[i],searcher:n})))})),s.length&&a.push({idx:o,item:r,matches:s})}})),a}},{key:"_findMatches",value:function(e){var t=e.key,n=e.value,r=e.searcher;if(!y(n))return[];var i=[];if(u(n))n.forEach((function(e){var n=e.v,o=e.i,a=e.n;if(y(n)){var c=r.searchIn(n),s=c.isMatch,h=c.score,u=c.indices;s&&i.push({score:h,key:t,value:n,idx:o,norm:a,indices:u})}}));else{var o=n.v,a=n.n,c=r.searchIn(o),s=c.isMatch,h=c.score,l=c.indices;s&&i.push({score:h,key:t,value:o,norm:a,indices:l})}return i}}]),e}();return K.version="7.0.0",K.createIndex=E,K.parseIndex=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.getFn,r=void 0===n?O.getFn:n,i=t.fieldNormWeight,o=void 0===i?O.fieldNormWeight:i,a=e.keys,c=e.records,s=new A({getFn:r,fieldNormWeight:o});return s.setKeys(a),s.setIndexRecords(c),s},K.config=O,K},"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).Fuse=t();
\ No newline at end of file
diff --git a/themes/PaperMod/assets/js/license.js b/themes/PaperMod/assets/js/license.js
new file mode 100644
index 0000000..fb3dfec
--- /dev/null
+++ b/themes/PaperMod/assets/js/license.js
@@ -0,0 +1,6 @@
+/*
+ PaperMod v7
+ License: MIT https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE
+ Copyright (c) 2020 nanxiaobei and adityatelange
+ Copyright (c) 2021-2024 adityatelange
+*/
diff --git a/themes/PaperMod/go.mod b/themes/PaperMod/go.mod
new file mode 100644
index 0000000..af95855
--- /dev/null
+++ b/themes/PaperMod/go.mod
@@ -0,0 +1,3 @@
+module github.com/adityatelange/hugo-PaperMod
+
+go 1.12
diff --git a/themes/PaperMod/i18n/ar.yaml b/themes/PaperMod/i18n/ar.yaml
new file mode 100644
index 0000000..52990c2
--- /dev/null
+++ b/themes/PaperMod/i18n/ar.yaml
@@ -0,0 +1,28 @@
+- id: prev_page
+ translation: "السابق"
+
+- id: next_page
+ translation: "التالي"
+
+- id: read_time
+ translation:
+ one: "دقيقة واحدة"
+ two: "دقيقتان"
+ few: "بضع ثوان"
+ zero: "الآن"
+ other: "دقائق {{ .Count }}"
+
+- id: toc
+ translation: "فهرس المحتوى"
+
+- id: translations
+ translation: "ترجمات أخرى"
+
+- id: home
+ translation: "الصفحة الرئيسية"
+
+- id: code_copied
+ translation: "تم النسخ!"
+
+- id: code_copy
+ translation: "نسخ الكود"
diff --git a/themes/PaperMod/i18n/be.yaml b/themes/PaperMod/i18n/be.yaml
new file mode 100644
index 0000000..22902ab
--- /dev/null
+++ b/themes/PaperMod/i18n/be.yaml
@@ -0,0 +1,39 @@
+- id: prev_page
+ translation: "Папярэдняя"
+
+- id: next_page
+ translation: "Наступная"
+
+- id: read_time
+ translation:
+ zero: "0 хвілін"
+ one: "1 хвіліна"
+ few: "{{ .Count }} хвіліны"
+ many: "{{ .Count }} хвілін"
+ other: "{{ .Count }} хвілін"
+
+- id: words
+ translation:
+ zero: "няма слоў"
+ one: "1 слова"
+ few: "{{ .Count }} слова"
+ many: "{{ .Count }} слоў"
+ other: "{{ .Count }} слова"
+
+- id: toc
+ translation: "Змест"
+
+- id: translations
+ translation: "Пераклады"
+
+- id: home
+ translation: "Галоўная"
+
+- id: edit_post
+ translation: "Рэдагаваць"
+
+- id: code_copy
+ translation: "капіяваць"
+
+- id: code_copied
+ translation: "скапіявана!"
diff --git a/themes/PaperMod/i18n/bg.yaml b/themes/PaperMod/i18n/bg.yaml
new file mode 100644
index 0000000..1e314af
--- /dev/null
+++ b/themes/PaperMod/i18n/bg.yaml
@@ -0,0 +1,16 @@
+- id: prev_page
+ translation: "Предишна страница"
+
+- id: next_page
+ translation: "Следваща страница"
+
+- id: read_time
+ translation:
+ one : "1 мин"
+ other: "{{ .Count }} мин"
+
+- id: toc
+ translation: "Съдържание"
+
+- id: translations
+ translation: "Преводи"
diff --git a/themes/PaperMod/i18n/bn.yaml b/themes/PaperMod/i18n/bn.yaml
new file mode 100644
index 0000000..f42780f
--- /dev/null
+++ b/themes/PaperMod/i18n/bn.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "পূর্ববর্তী"
+
+- id: next_page
+ translation: "পরবর্তী"
+
+- id: read_time
+ translation:
+ one : "১ মিনিট"
+ other: "{{ .Count }} মিনিট"
+
+- id: words
+ translation:
+ one : "১ টি শব্দ"
+ other: "{{ .Count }} টি শব্দ"
+
+- id: toc
+ translation: "সূচিপত্র"
+
+- id: translations
+ translation: "অনুবাদসমূহ"
+
+- id: home
+ translation: "হোম"
+
+- id: edit_post
+ translation: "সম্পাদনা করুন"
+
+- id: code_copy
+ translation: "কপি করুন"
+
+- id: code_copied
+ translation: "কপি হয়েছে!"
diff --git a/themes/PaperMod/i18n/ca.yaml b/themes/PaperMod/i18n/ca.yaml
new file mode 100644
index 0000000..15713e1
--- /dev/null
+++ b/themes/PaperMod/i18n/ca.yaml
@@ -0,0 +1,19 @@
+- id: prev_page
+ translation: "Pàgina anterior"
+
+- id: next_page
+ translation: "Pàgina següent"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: toc
+ translation: "Taula de Continguts"
+
+- id: translations
+ translation: "Traduccions"
+
+- id: home
+ translation: "Inici"
diff --git a/themes/PaperMod/i18n/ckb.yaml b/themes/PaperMod/i18n/ckb.yaml
new file mode 100644
index 0000000..25789d1
--- /dev/null
+++ b/themes/PaperMod/i18n/ckb.yaml
@@ -0,0 +1,25 @@
+- id: prev_page
+ translation: "پەڕەی پێشتر"
+
+- id: next_page
+ translation: "پەڕەی دواتر"
+
+- id: read_time
+ translation:
+ one : "1 خولەک"
+ other: "{{ .Count }} خولەک"
+
+- id: toc
+ translation: "پێڕست"
+
+- id: translations
+ translation: "وەرگێڕانەکان"
+
+- id: home
+ translation: "ماڵەوە"
+
+- id: code_copy
+ translation: "لەبەری بگرەوە"
+
+- id: code_copied
+ translation: "لەبەر گیرایەوە!"
diff --git a/themes/PaperMod/i18n/cs.yaml b/themes/PaperMod/i18n/cs.yaml
new file mode 100644
index 0000000..058c3a1
--- /dev/null
+++ b/themes/PaperMod/i18n/cs.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Předchozí"
+
+- id: next_page
+ translation: "Další"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "slovo"
+ other: "{{ .Count }} slov"
+
+- id: toc
+ translation: "Obsah"
+
+- id: translations
+ translation: "Překlady"
+
+- id: home
+ translation: "Domů"
+
+- id: edit_post
+ translation: "Upravit"
+
+- id: code_copy
+ translation: "kopírovat"
+
+- id: code_copied
+ translation: "zkopírováno!"
diff --git a/themes/PaperMod/i18n/da.yaml b/themes/PaperMod/i18n/da.yaml
new file mode 100644
index 0000000..03b0abe
--- /dev/null
+++ b/themes/PaperMod/i18n/da.yaml
@@ -0,0 +1,28 @@
+- id: prev_page
+ translation: "Forrige Side"
+
+- id: next_page
+ translation: "Næste Side"
+
+- id: read_time
+ translation:
+ one: "1 min"
+ other: "{{ .Count }} min"
+
+- id: toc
+ translation: "Indholdsfortegnelse"
+
+- id: translations
+ translation: "Oversættelser"
+
+- id: home
+ translation: "Start"
+
+- id: edit_post
+ translation: "Rediger"
+
+- id: code_copy
+ translation: "kopier"
+
+- id: code_copied
+ translation: "kopieret!"
diff --git a/themes/PaperMod/i18n/de.yaml b/themes/PaperMod/i18n/de.yaml
new file mode 100644
index 0000000..f64aad9
--- /dev/null
+++ b/themes/PaperMod/i18n/de.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Vorherige"
+
+- id: next_page
+ translation: "Nächste"
+
+- id: read_time
+ translation:
+ one: "1 Minute"
+ other: "{{ .Count }} Minuten"
+
+- id: words
+ translation:
+ one : "Wort"
+ other: "{{ .Count }} Wörter"
+
+- id: toc
+ translation: "Inhaltsverzeichnis"
+
+- id: translations
+ translation: "Übersetzungen"
+
+- id: home
+ translation: "Home"
+
+- id: edit_post
+ translation: "Bearbeiten"
+
+- id: code_copy
+ translation: "Kopieren"
+
+- id: code_copied
+ translation: "Kopiert!"
diff --git a/themes/PaperMod/i18n/el.yaml b/themes/PaperMod/i18n/el.yaml
new file mode 100644
index 0000000..4257bac
--- /dev/null
+++ b/themes/PaperMod/i18n/el.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Προηγούμενο"
+
+- id: next_page
+ translation: "Επόμενο"
+
+- id: read_time
+ translation:
+ one: "1 λεπτό"
+ other: "{{ .Count }} λεπτά"
+
+- id: words
+ translation:
+ one: "λέξη"
+ other: "{{ .Count }} λέξεις"
+
+- id: toc
+ translation: "Πίνακας Περιεχομένων"
+
+- id: translations
+ translation: "Μεταφράσεις"
+
+- id: home
+ translation: "Αρχική"
+
+- id: edit_post
+ translation: "Επεξεργασία"
+
+- id: code_copy
+ translation: "αντιγραφή"
+
+- id: code_copied
+ translation: "αντιγράφηκε!"
\ No newline at end of file
diff --git a/themes/PaperMod/i18n/en.yaml b/themes/PaperMod/i18n/en.yaml
new file mode 100644
index 0000000..3a1e215
--- /dev/null
+++ b/themes/PaperMod/i18n/en.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Prev"
+
+- id: next_page
+ translation: "Next"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "word"
+ other: "{{ .Count }} words"
+
+- id: toc
+ translation: "Table of Contents"
+
+- id: translations
+ translation: "Translations"
+
+- id: home
+ translation: "Home"
+
+- id: edit_post
+ translation: "Edit"
+
+- id: code_copy
+ translation: "copy"
+
+- id: code_copied
+ translation: "copied!"
diff --git a/themes/PaperMod/i18n/eo.yaml b/themes/PaperMod/i18n/eo.yaml
new file mode 100644
index 0000000..de5d744
--- /dev/null
+++ b/themes/PaperMod/i18n/eo.yaml
@@ -0,0 +1,25 @@
+- id: prev_page
+ translation: "antaŭa paĝo"
+
+- id: next_page
+ translation: "sekva paĝo"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: toc
+ translation: "Enhavo"
+
+- id: translations
+ translation: "tradukoj"
+
+- id: home
+ translation: "ĉefpaĝo"
+
+- id: code_copy
+ translation: "kopii"
+
+- id: code_copied
+ translation: "kopiite!"
diff --git a/themes/PaperMod/i18n/es.yaml b/themes/PaperMod/i18n/es.yaml
new file mode 100644
index 0000000..52a559c
--- /dev/null
+++ b/themes/PaperMod/i18n/es.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Anterior"
+
+- id: next_page
+ translation: "Siguiente"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "palabra"
+ other: "{{ .Count }} palabras"
+
+- id: toc
+ translation: "Tabla de Contenidos"
+
+- id: translations
+ translation: "Traducciones"
+
+- id: home
+ translation: "Inicio"
+
+- id: edit_post
+ translation: "Editar"
+
+- id: code_copy
+ translation: "copiar"
+
+- id: code_copied
+ translation: "¡copiado!"
diff --git a/themes/PaperMod/i18n/fa.yaml b/themes/PaperMod/i18n/fa.yaml
new file mode 100644
index 0000000..3fd5927
--- /dev/null
+++ b/themes/PaperMod/i18n/fa.yaml
@@ -0,0 +1,28 @@
+- id: prev_page
+ translation: "صفحه قبلی"
+
+- id: next_page
+ translation: "صفحه بعدی"
+
+- id: read_time
+ translation:
+ one: "۱ دقیقه"
+ other: "{{ .Count }} دقیقه"
+
+- id: toc
+ translation: "فهرست مطالب"
+
+- id: translations
+ translation: "ترجمه ها"
+
+- id: home
+ translation: "خانه"
+
+- id: edit_post
+ translation: "ویرایش"
+
+- id: code_copy
+ translation: "کپی"
+
+- id: code_copied
+ translation: "کپی شد!"
\ No newline at end of file
diff --git a/themes/PaperMod/i18n/fr.yaml b/themes/PaperMod/i18n/fr.yaml
new file mode 100644
index 0000000..e48d8e9
--- /dev/null
+++ b/themes/PaperMod/i18n/fr.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Précédent"
+
+- id: next_page
+ translation: "Suivant"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "mot"
+ other: "{{ .Count }} mots"
+
+- id: toc
+ translation: "Table des matières"
+
+- id: translations
+ translation: "Traductions"
+
+- id: home
+ translation: "Accueil"
+
+- id: edit_post
+ translation: "Modifier"
+
+- id: code_copy
+ translation: "Copier"
+
+- id: code_copied
+ translation: "Copié !"
diff --git a/themes/PaperMod/i18n/he.yaml b/themes/PaperMod/i18n/he.yaml
new file mode 100644
index 0000000..3912fb8
--- /dev/null
+++ b/themes/PaperMod/i18n/he.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "קודם"
+
+- id: next_page
+ translation: "הבא"
+
+- id: read_time
+ translation:
+ one : "דקה אחת"
+ other: "דקות {{ .Count }}"
+
+- id: words
+ translation:
+ one : "word"
+ other: "מילים {{ .Count }} "
+
+- id: toc
+ translation: "תוכן העניינים"
+
+- id: translations
+ translation: "תרגומים"
+
+- id: home
+ translation: "בית"
+
+- id: edit_post
+ translation: "ערוך"
+
+- id: code_copy
+ translation: "העתק"
+
+- id: code_copied
+ translation: "!הועתק"
diff --git a/themes/PaperMod/i18n/hi.yaml b/themes/PaperMod/i18n/hi.yaml
new file mode 100644
index 0000000..681efdc
--- /dev/null
+++ b/themes/PaperMod/i18n/hi.yaml
@@ -0,0 +1,19 @@
+- id: prev_page
+ translation: "पिछला"
+
+- id: next_page
+ translation: "अगला"
+
+- id: read_time
+ translation:
+ one : "एक मिनट"
+ other: "{{ .Count }} मिनट"
+
+- id: edit_post
+ translation: "सुधारें"
+
+- id: toc
+ translation: "विषय - सूची"
+
+- id: translations
+ translation: "अनुवाद"
diff --git a/themes/PaperMod/i18n/hr.yaml b/themes/PaperMod/i18n/hr.yaml
new file mode 100644
index 0000000..2f2d228
--- /dev/null
+++ b/themes/PaperMod/i18n/hr.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Prethodna stranica"
+
+- id: next_page
+ translation: "Sljedeća stranica"
+
+- id: read_time
+ translation:
+ one : "1 minuta"
+ other: "{{ .Count }} minute"
+
+- id: words
+ translation:
+ one : "riječ"
+ other: "{{ .Count }} riječi"
+
+- id: toc
+ translation: "Tablica Sadržaja"
+
+- id: translations
+ translation: "Prijevodi"
+
+- id: home
+ translation: "Početna stranica"
+
+- id: edit_post
+ translation: "Promjeni"
+
+- id: code_copy
+ translation: "kopiraj"
+
+- id: code_copied
+ translation: "kopirano!"
diff --git a/themes/PaperMod/i18n/hu.yaml b/themes/PaperMod/i18n/hu.yaml
new file mode 100644
index 0000000..a039dda
--- /dev/null
+++ b/themes/PaperMod/i18n/hu.yaml
@@ -0,0 +1,16 @@
+- id: prev_page
+ translation: "Előző oldal"
+
+- id: next_page
+ translation: "Következő oldal"
+
+- id: read_time
+ translation:
+ one: "1 perc"
+ other: "{{ .Count }} perc"
+
+- id: toc
+ translation: "Tartalomjegyzék"
+
+- id: translations
+ translation: "Fordítások"
diff --git a/themes/PaperMod/i18n/id.yaml b/themes/PaperMod/i18n/id.yaml
new file mode 100644
index 0000000..93d34f5
--- /dev/null
+++ b/themes/PaperMod/i18n/id.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Sebelumnya"
+
+- id: next_page
+ translation: "Selanjutnya"
+
+- id: read_time
+ translation:
+ one : "1 menit"
+ other: "{{ .Count }} menit"
+
+- id: words
+ translation:
+ one : "kata"
+ other: "{{ .Count }} kata"
+
+- id: toc
+ translation: "Daftar isi"
+
+- id: translations
+ translation: "Terjemahan"
+
+- id: home
+ translation: "Beranda"
+
+- id: edit_post
+ translation: "Sunting"
+
+- id: code_copy
+ translation: "salin"
+
+- id: code_copied
+ translation: "disalin!"
\ No newline at end of file
diff --git a/themes/PaperMod/i18n/it.yaml b/themes/PaperMod/i18n/it.yaml
new file mode 100644
index 0000000..c87c95d
--- /dev/null
+++ b/themes/PaperMod/i18n/it.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Precedente"
+
+- id: next_page
+ translation: "Successivo"
+
+- id: read_time
+ translation:
+ one: "1 minuto"
+ other: "{{ .Count }} minuti"
+
+- id: words
+ translation:
+ one : "parola"
+ other: "{{ .Count }} parole"
+
+- id: toc
+ translation: "Indice contenuti"
+
+- id: translations
+ translation: "Traduzioni"
+
+- id: home
+ translation: "Home"
+
+- id: edit_post
+ translation: "Modifica"
+
+- id: code_copy
+ translation: "copia"
+
+- id: code_copied
+ translation: "copiato!"
diff --git a/themes/PaperMod/i18n/ja.yaml b/themes/PaperMod/i18n/ja.yaml
new file mode 100644
index 0000000..93948d3
--- /dev/null
+++ b/themes/PaperMod/i18n/ja.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "前へ"
+
+- id: next_page
+ translation: "次へ"
+
+- id: read_time
+ translation:
+ one : "1 分"
+ other: "{{ .Count }} 分"
+
+- id: words
+ translation:
+ one: "文字"
+ other: "{{ .Count }} 文字"
+
+- id: toc
+ translation: "目次"
+
+- id: translations
+ translation: "言語"
+
+- id: home
+ translation: "ホーム"
+
+- id: edit_post
+ translation: "編集"
+
+- id: code_copy
+ translation: "コピー"
+
+- id: code_copied
+ translation: "コピーされました!"
diff --git a/themes/PaperMod/i18n/ko.yaml b/themes/PaperMod/i18n/ko.yaml
new file mode 100644
index 0000000..777dd93
--- /dev/null
+++ b/themes/PaperMod/i18n/ko.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "이전 페이지"
+
+- id: next_page
+ translation: "다음 페이지"
+
+- id: read_time
+ translation:
+ one : "1 분"
+ other: "{{ .Count }} 분"
+
+- id: words
+ translation:
+ one : "단어"
+ other: "{{ .Count }} 단어"
+
+- id: toc
+ translation: "목차"
+
+- id: translations
+ translation: "번역"
+
+- id: home
+ translation: "홈"
+
+- id: edit_post
+ translation: "편집"
+
+- id: code_copy
+ translation: "복사"
+
+- id: code_copied
+ translation: "복사 완료!"
diff --git a/themes/PaperMod/i18n/ku.yaml b/themes/PaperMod/i18n/ku.yaml
new file mode 100644
index 0000000..d1d30a5
--- /dev/null
+++ b/themes/PaperMod/i18n/ku.yaml
@@ -0,0 +1,25 @@
+- id: prev_page
+ translation: "Rûpela Paş"
+
+- id: next_page
+ translation: "Rûpela Pêş"
+
+- id: read_time
+ translation:
+ one : "1 xulek"
+ other: "{{ .Count }} xulek"
+
+- id: toc
+ translation: "Pêrist"
+
+- id: translations
+ translation: "Wergeran"
+
+- id: home
+ translation: "Xanî"
+
+- id: code_copy
+ translation: "Jê bigire"
+
+- id: code_copied
+ translation: "Hat jêgirtin!"
diff --git a/themes/PaperMod/i18n/mn.yaml b/themes/PaperMod/i18n/mn.yaml
new file mode 100644
index 0000000..dbce2ce
--- /dev/null
+++ b/themes/PaperMod/i18n/mn.yaml
@@ -0,0 +1,25 @@
+- id: prev_page
+ translation: "Ѳмнѳх"
+
+- id: next_page
+ translation: "Дараах"
+
+- id: read_time
+ translation:
+ one : "1 МИН"
+ other: "{{ .Count }} МИН"
+
+- id: toc
+ translation: "Агуулга"
+
+- id: translations
+ translation: "Орчуулга"
+
+- id: home
+ translation: "Нүүр"
+
+- id: code_copy
+ translation: "хуулах"
+
+- id: code_copied
+ translation: "хуулсан!"
diff --git a/themes/PaperMod/i18n/ms.yaml b/themes/PaperMod/i18n/ms.yaml
new file mode 100644
index 0000000..d8a9eff
--- /dev/null
+++ b/themes/PaperMod/i18n/ms.yaml
@@ -0,0 +1,28 @@
+- id: prev_page
+ translation: "Halaman Sebelumnya"
+
+- id: next_page
+ translation: "Halaman Seterusnya"
+
+- id: read_time
+ translation:
+ one: "1 minit"
+ other: "{{ .Count }} minit"
+
+- id: toc
+ translation: "Isi Kandungan"
+
+- id: translations
+ translation: "Terjemahan"
+
+- id: home
+ translation: "Home"
+
+- id: edit_post
+ translation: "Sunting"
+
+- id: code_copy
+ translation: "Salin"
+
+- id: code_copied
+ translation: "Disalin!"
diff --git a/themes/PaperMod/i18n/nl.yaml b/themes/PaperMod/i18n/nl.yaml
new file mode 100644
index 0000000..e9d06fa
--- /dev/null
+++ b/themes/PaperMod/i18n/nl.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Vorige"
+
+- id: next_page
+ translation: "Volgende"
+
+- id: read_time
+ translation:
+ one: "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "woord"
+ other: "{{ .Count }} woorden"
+
+- id: toc
+ translation: "Inhoudsopgave"
+
+- id: translations
+ translation: "Vertalingen"
+
+- id: home
+ translation: "Startpagina"
+
+- id: edit_post
+ translation: "Bewerk"
+
+- id: code_copy
+ translation: "kopieer"
+
+- id: code_copied
+ translation: "gekopieerd!"
diff --git a/themes/PaperMod/i18n/no.yaml b/themes/PaperMod/i18n/no.yaml
new file mode 100644
index 0000000..2400348
--- /dev/null
+++ b/themes/PaperMod/i18n/no.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Forrige Side"
+
+- id: next_page
+ translation: "Neste Side"
+
+- id: read_time
+ translation:
+ one: "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one: "ord"
+ other: "{{ .Count }} ord"
+
+- id: toc
+ translation: "Innholdsfortegnelse"
+
+- id: translations
+ translation: "Oversettelser"
+
+- id: home
+ translation: "Hjem"
+
+- id: edit_post
+ translation: "Rediger"
+
+- id: code_copy
+ translation: "Kopier"
+
+- id: code_copied
+ translation: "Kopiert!"
diff --git a/themes/PaperMod/i18n/oc.yaml b/themes/PaperMod/i18n/oc.yaml
new file mode 100644
index 0000000..9292fd8
--- /dev/null
+++ b/themes/PaperMod/i18n/oc.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Prec."
+
+- id: next_page
+ translation: "Seg."
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "mot"
+ other: "{{ .Count }} motss"
+
+- id: toc
+ translation: "Taula de contengut"
+
+- id: translations
+ translation: "Traduccions"
+
+- id: home
+ translation: "Acuèlh"
+
+- id: edit_post
+ translation: "Modificar"
+
+- id: code_copy
+ translation: "copiar"
+
+- id: code_copied
+ translation: "copiat !"
diff --git a/themes/PaperMod/i18n/pa.yaml b/themes/PaperMod/i18n/pa.yaml
new file mode 100644
index 0000000..32192c5
--- /dev/null
+++ b/themes/PaperMod/i18n/pa.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "ਪਿਛਲਾ"
+
+- id: next_page
+ translation: "ਅਗਲਾ"
+
+- id: read_time
+ translation:
+ one: "1 ਮਿੰਟ"
+ other: "{{ .Count }} ਮਿੰਟ"
+
+- id: words
+ translation:
+ one: "ਸ਼ਬਦ"
+ other: "{{ .Count }} ਸ਼ਬਦ"
+
+- id: toc
+ translation: "ਤਤਕਰਾ"
+
+- id: translations
+ translation: "ਅਨੁਵਾਦ"
+
+- id: home
+ translation: "ਘਰ"
+
+- id: edit_post
+ translation: "ਸੋਧ"
+
+- id: code_copy
+ translation: "ਕਾਪੀ"
+
+- id: code_copied
+ translation: "ਕਾਪੀ ਕੀਤੀ ਗਈ!!"
diff --git a/themes/PaperMod/i18n/pl.yaml b/themes/PaperMod/i18n/pl.yaml
new file mode 100644
index 0000000..81b0e77
--- /dev/null
+++ b/themes/PaperMod/i18n/pl.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Poprzednia"
+
+- id: next_page
+ translation: "Następna"
+
+- id: read_time
+ translation:
+ one: "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "słowo"
+ other: "{{ .Count }} słów"
+
+- id: toc
+ translation: "Spis treści"
+
+- id: translations
+ translation: "Tłumaczenia"
+
+- id: home
+ translation: "Strona Główna"
+
+- id: edit_post
+ translation: "Edytuj"
+
+- id: code_copy
+ translation: "Kopiuj"
+
+- id: code_copied
+ translation: "Skopiowano!"
diff --git a/themes/PaperMod/i18n/pnb.yaml b/themes/PaperMod/i18n/pnb.yaml
new file mode 100644
index 0000000..fa2f8a8
--- /dev/null
+++ b/themes/PaperMod/i18n/pnb.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "پِچھلا"
+
+- id: next_page
+ translation: "اگلا"
+
+- id: read_time
+ translation:
+ one: "ایک منٹ"
+ other: "مِنٹ {{ .Count }}"
+
+- id: words
+ translation:
+ one: "لفظ"
+ other: "لفظ {{ .Count }}"
+
+- id: toc
+ translation: "تتکرا"
+
+- id: translations
+ translation: "انوواد"
+
+- id: home
+ translation: "گھر"
+
+- id: edit_post
+ translation: "سودھ"
+
+- id: code_copy
+ translation: "کاپی"
+
+- id: code_copied
+ translation: "کاپی کیتی گئی!"
diff --git a/themes/PaperMod/i18n/pt.yaml b/themes/PaperMod/i18n/pt.yaml
new file mode 100644
index 0000000..ab06429
--- /dev/null
+++ b/themes/PaperMod/i18n/pt.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Página Anterior"
+
+- id: next_page
+ translation: "Próxima Página"
+
+- id: read_time
+ translation:
+ one: "1 minuto"
+ other: "{{ .Count }} minutos"
+
+- id: words
+ translation:
+ one : "palavra"
+ other: "{{ .Count }} palavras"
+
+- id: toc
+ translation: "Conteúdo"
+
+- id: translations
+ translation: "Traduções"
+
+- id: home
+ translation: "Início"
+
+- id: edit_post
+ translation: "Editar"
+
+- id: code_copy
+ translation: "copiar"
+
+- id: code_copied
+ translation: "copiado!"
diff --git a/themes/PaperMod/i18n/ro.yaml b/themes/PaperMod/i18n/ro.yaml
new file mode 100644
index 0000000..694f20b
--- /dev/null
+++ b/themes/PaperMod/i18n/ro.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Înapoi"
+
+- id: next_page
+ translation: "Înainte"
+
+- id: read_time
+ translation:
+ one : "1 minut"
+ other: "{{ .Count }} minute"
+
+- id: words
+ translation:
+ one : "cuvânt"
+ other: "{{ .Count }} cuvinte"
+
+- id: toc
+ translation: "Sumar"
+
+- id: translations
+ translation: "Traduceri"
+
+- id: home
+ translation: "Acasă"
+
+- id: edit_post
+ translation: "Editează"
+
+- id: code_copy
+ translation: "copiază"
+
+- id: code_copied
+ translation: "copiat!"
diff --git a/themes/PaperMod/i18n/ru.yaml b/themes/PaperMod/i18n/ru.yaml
new file mode 100644
index 0000000..a5dbb5c
--- /dev/null
+++ b/themes/PaperMod/i18n/ru.yaml
@@ -0,0 +1,39 @@
+- id: prev_page
+ translation: "Предыдущая"
+
+- id: next_page
+ translation: "Следующая"
+
+- id: read_time
+ translation:
+ zero: "0 минут"
+ one: "1 минута"
+ few: "{{ .Count }} минуты"
+ many: "{{ .Count }} минут"
+ other: "{{ .Count }} минута"
+
+- id: words
+ translation:
+ zero: "0 слов"
+ one: "1 слово"
+ few: "{{ .Count }} слова"
+ many: "{{ .Count }} слов"
+ other: "{{ .Count }} слово"
+
+- id: toc
+ translation: "Оглавление"
+
+- id: translations
+ translation: "Переводы"
+
+- id: home
+ translation: "Главная"
+
+- id: edit_post
+ translation: "Редактировать"
+
+- id: code_copy
+ translation: "копировать"
+
+- id: code_copied
+ translation: "скопировано!"
\ No newline at end of file
diff --git a/themes/PaperMod/i18n/sk.yaml b/themes/PaperMod/i18n/sk.yaml
new file mode 100644
index 0000000..f129d37
--- /dev/null
+++ b/themes/PaperMod/i18n/sk.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Predch"
+
+- id: next_page
+ translation: "Ďaľší"
+
+- id: read_time
+ translation:
+ one : "1 min"
+ other: "{{ .Count }} min"
+
+- id: words
+ translation:
+ one : "slovo"
+ other: "{{ .Count }} slov"
+
+- id: toc
+ translation: "Obsah"
+
+- id: translations
+ translation: "Preklady"
+
+- id: home
+ translation: "Domov"
+
+- id: edit_post
+ translation: "Upraviť"
+
+- id: code_copy
+ translation: "kopírovať"
+
+- id: code_copied
+ translation: "skopírované!"
diff --git a/themes/PaperMod/i18n/sv.yaml b/themes/PaperMod/i18n/sv.yaml
new file mode 100644
index 0000000..65ce422
--- /dev/null
+++ b/themes/PaperMod/i18n/sv.yaml
@@ -0,0 +1,28 @@
+- id: prev_page
+ translation: "Förra Sidan"
+
+- id: next_page
+ translation: "Nästa Sida"
+
+- id: read_time
+ translation:
+ one: "1 min"
+ other: "{{ .Count }} min"
+
+- id: toc
+ translation: "Innehållsförteckning"
+
+- id: translations
+ translation: "Översättningar"
+
+- id: home
+ translation: "Hem"
+
+- id: edit_post
+ translation: "Redigera"
+
+- id: code_copy
+ translation: "kopiera"
+
+- id: code_copied
+ translation: "kopierad!"
diff --git a/themes/PaperMod/i18n/sw.yaml b/themes/PaperMod/i18n/sw.yaml
new file mode 100644
index 0000000..5fceb1a
--- /dev/null
+++ b/themes/PaperMod/i18n/sw.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Uliopita"
+
+- id: next_page
+ translation: "Ujao"
+
+- id: read_time
+ translation:
+ one : "dakika 1"
+ other: "dakika {{ .Count }}"
+
+- id: words
+ translation:
+ one : "neno"
+ other: "maneno {{ .Count }}"
+
+- id: toc
+ translation: "Jedwali la Yaliyomo"
+
+- id: translations
+ translation: "Tafsiri"
+
+- id: home
+ translation: "Mwanzo"
+
+- id: edit_post
+ translation: "Hariri"
+
+- id: code_copy
+ translation: "nakili"
+
+- id: code_copied
+ translation: "nakiliwa!"
diff --git a/themes/PaperMod/i18n/th.yaml b/themes/PaperMod/i18n/th.yaml
new file mode 100644
index 0000000..d8036ae
--- /dev/null
+++ b/themes/PaperMod/i18n/th.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "ก่อนหน้า"
+
+- id: next_page
+ translation: "ถัดไป"
+
+- id: read_time
+ translation:
+ one : "1 นาที"
+ other: "{{ .Count }} นาที"
+
+- id: words
+ translation:
+ one : "คำ"
+ other: "{{ .Count }} คำ"
+
+- id: toc
+ translation: "สารบัญ"
+
+- id: translations
+ translation: "การแปล"
+
+- id: home
+ translation: "หน้าหลัก"
+
+- id: edit_post
+ translation: "แก้ไข"
+
+- id: code_copy
+ translation: "คัดลอก"
+
+- id: code_copied
+ translation: "คัดลอกแล้ว!"
diff --git a/themes/PaperMod/i18n/tr.yaml b/themes/PaperMod/i18n/tr.yaml
new file mode 100644
index 0000000..b014a15
--- /dev/null
+++ b/themes/PaperMod/i18n/tr.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Önceki"
+
+- id: next_page
+ translation: "Sonraki"
+
+- id: read_time
+ translation:
+ one : "1 dk"
+ other: "{{ .Count }} dk"
+
+- id: words
+ translation:
+ one : "sözcük"
+ other: "{{ .Count }} sözcük"
+
+- id: toc
+ translation: "İçindekiler"
+
+- id: translations
+ translation: "Çeviriler"
+
+- id: home
+ translation: "Ana Sayfa"
+
+- id: edit_post
+ translation: "Düzenle"
+
+- id: code_copy
+ translation: "Kopyala"
+
+- id: code_copied
+ translation: "Kopyalandı!"
diff --git a/themes/PaperMod/i18n/uk.yaml b/themes/PaperMod/i18n/uk.yaml
new file mode 100644
index 0000000..41be964
--- /dev/null
+++ b/themes/PaperMod/i18n/uk.yaml
@@ -0,0 +1,25 @@
+- id: prev_page
+ translation: "Попередня"
+
+- id: next_page
+ translation: "Наступна"
+
+- id: read_time
+ translation:
+ one : "1 хвилина"
+ other: "{{ .Count }} хвилин"
+
+- id: toc
+ translation: "Зміст"
+
+- id: translations
+ translation: "Переклади"
+
+- id: home
+ translation: "Головна"
+
+- id: code_copy
+ translation: "копіювати"
+
+- id: code_copied
+ translation: "скопійовано!"
\ No newline at end of file
diff --git a/themes/PaperMod/i18n/uz.yaml b/themes/PaperMod/i18n/uz.yaml
new file mode 100644
index 0000000..6c3c44e
--- /dev/null
+++ b/themes/PaperMod/i18n/uz.yaml
@@ -0,0 +1,20 @@
+- id: prev_page
+ translation: "Oldingi sahifa"
+
+- id: next_page
+ translation: "Keyingi sahifa"
+
+- id: read_time
+ translation:
+ one : "Bir daqiqa"
+ other: "{{ .Count }} daqiqa"
+
+- id: toc
+ translation: "Mundarija"
+
+- id: translations
+ translation: "Tarjimalar"
+
+- id: home
+ translation: "Bosh sahifa"
+
diff --git a/themes/PaperMod/i18n/vi.yaml b/themes/PaperMod/i18n/vi.yaml
new file mode 100644
index 0000000..2eb05d0
--- /dev/null
+++ b/themes/PaperMod/i18n/vi.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "Trang trước"
+
+- id: next_page
+ translation: "Trang tiếp theo"
+
+- id: read_time
+ translation:
+ one: "1 phút"
+ other: "{{ .Count }} phút"
+
+- id: words
+ translation:
+ one: "từ"
+ other: "{{ .Count }} từ"
+
+- id: toc
+ translation: "Mục lục"
+
+- id: translations
+ translation: "Bản dịch"
+
+- id: home
+ translation: "Trang chủ"
+
+- id: edit_post
+ translation: "Chỉnh sửa"
+
+- id: code_copy
+ translation: "Sao chép"
+
+- id: code_copied
+ translation: "Đã sao chép!"
diff --git a/themes/PaperMod/i18n/zh-tw.yaml b/themes/PaperMod/i18n/zh-tw.yaml
new file mode 100644
index 0000000..99cd15e
--- /dev/null
+++ b/themes/PaperMod/i18n/zh-tw.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "上一頁"
+
+- id: next_page
+ translation: "下一頁"
+
+- id: read_time
+ translation:
+ one : "1 分鐘"
+ other: "{{ .Count }} 分鐘"
+
+- id: words
+ translation:
+ one: "字"
+ other: "{{ .Count }} 字"
+
+- id: toc
+ translation: "目錄"
+
+- id: translations
+ translation: "語言"
+
+- id: home
+ translation: "首頁"
+
+- id: edit_post
+ translation: "編輯"
+
+- id: code_copy
+ translation: "複製"
+
+- id: code_copied
+ translation: "已複製!"
diff --git a/themes/PaperMod/i18n/zh.yaml b/themes/PaperMod/i18n/zh.yaml
new file mode 100644
index 0000000..0280425
--- /dev/null
+++ b/themes/PaperMod/i18n/zh.yaml
@@ -0,0 +1,33 @@
+- id: prev_page
+ translation: "上一页"
+
+- id: next_page
+ translation: "下一页"
+
+- id: read_time
+ translation:
+ one : "1 分钟"
+ other: "{{ .Count }} 分钟"
+
+- id: words
+ translation:
+ one: "字"
+ other: "{{ .Count }} 字"
+
+- id: toc
+ translation: "目录"
+
+- id: translations
+ translation: "语言"
+
+- id: home
+ translation: "主页"
+
+- id: edit_post
+ translation: "编辑"
+
+- id: code_copy
+ translation: "复制"
+
+- id: code_copied
+ translation: "已复制!"
diff --git a/themes/PaperMod/images/screenshot.png b/themes/PaperMod/images/screenshot.png
new file mode 100644
index 0000000..a37c485
Binary files /dev/null and b/themes/PaperMod/images/screenshot.png differ
diff --git a/themes/PaperMod/images/tn.png b/themes/PaperMod/images/tn.png
new file mode 100644
index 0000000..cf83179
Binary files /dev/null and b/themes/PaperMod/images/tn.png differ
diff --git a/themes/PaperMod/layouts/404.html b/themes/PaperMod/layouts/404.html
new file mode 100644
index 0000000..a405573
--- /dev/null
+++ b/themes/PaperMod/layouts/404.html
@@ -0,0 +1,3 @@
+{{- define "main" }}
+404
+{{- end }}{{/* end main */ -}}
diff --git a/themes/PaperMod/layouts/_default/_markup/render-image.html b/themes/PaperMod/layouts/_default/_markup/render-image.html
new file mode 100644
index 0000000..1acb87d
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/_markup/render-image.html
@@ -0,0 +1 @@
+
diff --git a/themes/PaperMod/layouts/_default/archives.html b/themes/PaperMod/layouts/_default/archives.html
new file mode 100644
index 0000000..eea3fc8
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/archives.html
@@ -0,0 +1,83 @@
+{{- define "main" }}
+
+
+
+{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
+
+{{- if site.Params.ShowAllPagesInArchive }}
+{{- $pages = site.RegularPages }}
+{{- end }}
+
+{{- range $pages.GroupByPublishDate "2006" }}
+{{- if ne .Key "0001" }}
+
+ {{- $year := replace .Key "0001" "" }}
+
+ {{- range .Pages.GroupByDate "January" }}
+
+
+
+ {{- range .Pages }}
+ {{- if eq .Kind "page" }}
+
+
+ {{- .Title | markdownify }}
+ {{- if .Draft }}
+
+
+
+
+
+ {{- end }}
+
+
+ {{- partial "post_meta.html" . -}}
+
+
+
+ {{- end }}
+ {{- end }}
+
+
+ {{- end }}
+
+{{- end }}
+{{- end }}
+
+{{- end }}{{/* end main */}}
diff --git a/themes/PaperMod/layouts/_default/baseof.html b/themes/PaperMod/layouts/_default/baseof.html
new file mode 100644
index 0000000..df611bf
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/baseof.html
@@ -0,0 +1,27 @@
+{{- if lt hugo.Version "0.112.4" }}
+{{- errorf "=> hugo v0.112.4 or greater is required for hugo-PaperMod to build " }}
+{{- end -}}
+
+
+
+
+
+ {{- partial "head.html" . }}
+
+
+
+ {{- partialCached "header.html" . .Page -}}
+
+ {{- block "main" . }}{{ end }}
+
+ {{ partialCached "footer.html" . .Layout .Kind (.Param "hideFooter") (.Param "ShowCodeCopyButtons") -}}
+
+
+
diff --git a/themes/PaperMod/layouts/_default/index.json b/themes/PaperMod/layouts/_default/index.json
new file mode 100644
index 0000000..feeb437
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/index.json
@@ -0,0 +1,7 @@
+{{- $.Scratch.Add "index" slice -}}
+{{- range site.RegularPages -}}
+ {{- if and (not .Params.searchHidden) (ne .Layout `archives`) (ne .Layout `search`) }}
+ {{- $.Scratch.Add "index" (dict "title" .Title "content" .Plain "permalink" .Permalink "summary" .Summary) -}}
+ {{- end }}
+{{- end -}}
+{{- $.Scratch.Get "index" | jsonify -}}
diff --git a/themes/PaperMod/layouts/_default/list.html b/themes/PaperMod/layouts/_default/list.html
new file mode 100644
index 0000000..81aea6e
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/list.html
@@ -0,0 +1,121 @@
+{{- define "main" }}
+
+{{- if (and site.Params.profileMode.enabled .IsHome) }}
+{{- partial "index_profile.html" . }}
+{{- else }} {{/* if not profileMode */}}
+
+{{- if not .IsHome | and .Title }}
+
+{{- end }}
+
+{{- if .Content }}
+
+ {{- if not (.Param "disableAnchoredHeadings") }}
+ {{- partial "anchored_headings.html" .Content -}}
+ {{- else }}{{ .Content }}{{ end }}
+
+{{- end }}
+
+{{- $pages := union .RegularPages .Sections }}
+
+{{- if .IsHome }}
+{{- $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
+{{- $pages = where $pages "Params.hiddenInHomeList" "!=" "true" }}
+{{- end }}
+
+{{- $paginator := .Paginate $pages }}
+
+{{- if and .IsHome site.Params.homeInfoParams (eq $paginator.PageNumber 1) }}
+{{- partial "home_info.html" . }}
+{{- end }}
+
+{{- $term := .Data.Term }}
+{{- range $index, $page := $paginator.Pages }}
+
+{{- $class := "post-entry" }}
+
+{{- $user_preferred := or site.Params.disableSpecial1stPost site.Params.homeInfoParams }}
+{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0) (not $user_preferred)) }}
+{{- $class = "first-entry" }}
+{{- else if $term }}
+{{- $class = "post-entry tag-entry" }}
+{{- end }}
+
+
+ {{- $isHidden := (.Param "cover.hiddenInList") | default (.Param "cover.hidden") | default false }}
+ {{- partial "cover.html" (dict "cxt" . "IsSingle" false "isHidden" $isHidden) }}
+
+ {{- if (ne (.Param "hideSummary") true) }}
+
+
{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}
+
+ {{- end }}
+ {{- if not (.Param "hideMeta") }}
+
+ {{- end }}
+
+
+{{- end }}
+
+{{- if gt $paginator.TotalPages 1 }}
+
+{{- end }}
+
+{{- end }}{{/* end profileMode */}}
+
+{{- end }}{{- /* end main */ -}}
diff --git a/themes/PaperMod/layouts/_default/rss.xml b/themes/PaperMod/layouts/_default/rss.xml
new file mode 100644
index 0000000..fed8ae9
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/rss.xml
@@ -0,0 +1,83 @@
+{{- /* Deprecate site.Author.email in favor of site.Params.author.email */}}
+{{- $authorEmail := "" }}
+{{- with site.Params.author }}
+ {{- if reflect.IsMap . }}
+ {{- with .email }}
+ {{- $authorEmail = . }}
+ {{- end }}
+ {{- end }}
+{{- else }}
+ {{- with site.Author.email }}
+ {{- $authorEmail = . }}
+ {{- warnf "The author key in site configuration is deprecated. Use params.author.email instead." }}
+ {{- end }}
+{{- end }}
+
+{{- /* Deprecate site.Author.name in favor of site.Params.author.name */}}
+{{- $authorName := "" }}
+{{- with site.Params.author }}
+ {{- if reflect.IsMap . }}
+ {{- with .name }}
+ {{- $authorName = . }}
+ {{- end }}
+ {{- else }}
+ {{- $authorName = . }}
+ {{- end }}
+{{- else }}
+ {{- with site.Author.name }}
+ {{- $authorName = . }}
+ {{- warnf "The author key in site configuration is deprecated. Use params.author.name instead." }}
+ {{- end }}
+{{- end }}
+
+{{- $pctx := . }}
+{{- if .IsHome }}{{ $pctx = site }}{{ end }}
+{{- $pages := slice }}
+{{- if or $.IsHome $.IsSection }}
+{{- $pages = $pctx.RegularPages }}
+{{- else }}
+{{- $pages = $pctx.Pages }}
+{{- end }}
+{{- $limit := site.Config.Services.RSS.Limit }}
+{{- if ge $limit 1 }}
+{{- $pages = $pages | first $limit }}
+{{- end }}
+{{- printf "" | safeHTML }}
+
+
+ {{ if eq .Title site.Title }}{{ site.Title }}{{ else }}{{ with .Title }}{{ . }} on {{ end }}{{ site.Title }}{{ end }}
+ {{ .Permalink }}
+ Recent content {{ if ne .Title site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ site.Title }}
+ {{- with site.Params.images }}
+
+ {{ site.Title }}
+ {{ index . 0 | absURL }}
+ {{ index . 0 | absURL }}
+
+ {{- end }}
+ Hugo -- {{ hugo.Version }}
+ {{ site.Language.LanguageCode }} {{ with $authorEmail }}
+ {{.}}{{ with $authorName }} ({{ . }}){{ end }} {{ end }}{{ with $authorEmail }}
+ {{ . }}{{ with $authorName }} ({{ . }}){{ end }} {{ end }}{{ with site.Copyright }}
+ {{ . | markdownify | plainify | strings.TrimPrefix "© " }} {{ end }}{{ if not .Date.IsZero }}
+ {{ (index $pages.ByLastmod.Reverse 0).Lastmod.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} {{ end }}
+ {{- with .OutputFormats.Get "RSS" }}
+ {{ printf " " .Permalink .MediaType | safeHTML }}
+ {{- end }}
+ {{- range $pages }}
+ {{- if and (ne .Layout `search`) (ne .Layout `archives`) }}
+ -
+
{{ .Title }}
+ {{ .Permalink }}
+ {{ .PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}
+ {{- with $authorEmail }}{{ . }}{{ with $authorName }} ({{ . }}){{ end }} {{ end }}
+ {{ .Permalink }}
+ {{ with .Description | html }}{{ . }}{{ else }}{{ .Summary | html }}{{ end -}}
+ {{- if and site.Params.ShowFullTextinRSS .Content }}
+ {{ (printf "" .Content) | safeHTML }}
+ {{- end }}
+
+ {{- end }}
+ {{- end }}
+
+
diff --git a/themes/PaperMod/layouts/_default/search.html b/themes/PaperMod/layouts/_default/search.html
new file mode 100644
index 0000000..bb7d436
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/search.html
@@ -0,0 +1,29 @@
+{{- define "main" }}
+
+
+
+
+
+{{- end }}{{/* end main */}}
diff --git a/themes/PaperMod/layouts/_default/single.html b/themes/PaperMod/layouts/_default/single.html
new file mode 100644
index 0000000..19a624f
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/single.html
@@ -0,0 +1,65 @@
+{{- define "main" }}
+
+
+
+ {{- $isHidden := (.Param "cover.hiddenInSingle") | default (.Param "cover.hidden") | default false }}
+ {{- partial "cover.html" (dict "cxt" . "IsSingle" true "isHidden" $isHidden) }}
+ {{- if (.Param "ShowToc") }}
+ {{- partial "toc.html" . }}
+ {{- end }}
+
+ {{- if .Content }}
+
+ {{- if not (.Param "disableAnchoredHeadings") }}
+ {{- partial "anchored_headings.html" .Content -}}
+ {{- else }}{{ .Content }}{{ end }}
+
+ {{- end }}
+
+
+
+ {{- if (.Param "comments") }}
+ {{- partial "comments.html" . }}
+ {{- end }}
+
+
+{{- end }}{{/* end main */}}
diff --git a/themes/PaperMod/layouts/_default/terms.html b/themes/PaperMod/layouts/_default/terms.html
new file mode 100644
index 0000000..6fd2654
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/terms.html
@@ -0,0 +1,27 @@
+{{- define "main" }}
+
+{{- if .Title }}
+
+{{- end }}
+
+
+
+{{- end }}{{/* end main */ -}}
diff --git a/themes/PaperMod/layouts/partials/anchored_headings.html b/themes/PaperMod/layouts/partials/anchored_headings.html
new file mode 100644
index 0000000..377af89
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/anchored_headings.html
@@ -0,0 +1,2 @@
+{{- /* formats .Content headings by adding an anchor */ -}}
+{{ . | replaceRE "()" "${1}# ${3}" | safeHTML }}
diff --git a/themes/PaperMod/layouts/partials/author.html b/themes/PaperMod/layouts/partials/author.html
new file mode 100644
index 0000000..8f2758f
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/author.html
@@ -0,0 +1,9 @@
+{{- if or .Params.author site.Params.author }}
+{{- $author := (.Params.author | default site.Params.author) }}
+{{- $author_type := (printf "%T" $author) }}
+{{- if (or (eq $author_type "[]string") (eq $author_type "[]interface {}")) }}
+{{- (delimit $author ", " ) }}
+{{- else }}
+{{- $author }}
+{{- end }}
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/breadcrumbs.html b/themes/PaperMod/layouts/partials/breadcrumbs.html
new file mode 100644
index 0000000..2686ca0
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/breadcrumbs.html
@@ -0,0 +1,19 @@
+{{- if (.Param "ShowBreadCrumbs") -}}
+
+ {{- $url := replace .Parent.Permalink (printf "%s" site.Home.Permalink) "" }}
+ {{- $lang_url := strings.TrimPrefix (printf "%s/" .Lang) $url -}}
+
+
{{ i18n "home" | default "Home" }}
+ {{- $scratch := newScratch }}
+ {{- range $index, $element := split $lang_url "/" }}
+
+ {{- $scratch.Add "path" (printf "%s/" $element )}}
+ {{- $bc_pg := site.GetPage ($scratch.Get "path") -}}
+
+ {{- if (and ($bc_pg) (gt (len . ) 0))}}
+ {{- print " » " | safeHTML -}}
{{ $bc_pg.Name }}
+ {{- end }}
+
+ {{- end -}}
+
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/comments.html b/themes/PaperMod/layouts/partials/comments.html
new file mode 100644
index 0000000..918451a
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/comments.html
@@ -0,0 +1,3 @@
+{{- /* Comments area start */ -}}
+{{- /* to add comments read => https://gohugo.io/content-management/comments/ */ -}}
+{{- /* Comments area end */ -}}
diff --git a/themes/PaperMod/layouts/partials/cover.html b/themes/PaperMod/layouts/partials/cover.html
new file mode 100644
index 0000000..e92b555
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/cover.html
@@ -0,0 +1,43 @@
+{{- with .cxt}} {{/* Apply proper context from dict */}}
+{{- if (and .Params.cover.image (not $.isHidden)) }}
+{{- $alt := (.Params.cover.alt | default .Params.cover.caption | plainify) }}
+{{- $loading := cond $.IsSingle "eager" "lazy" }}
+
+ {{- $responsiveImages := (.Params.cover.responsiveImages | default site.Params.cover.responsiveImages) | default true }}
+ {{- $addLink := (and site.Params.cover.linkFullImages $.IsSingle) }}
+ {{- $pageBundleCover := (.Resources.ByType "image").GetMatch (printf "*%s*" (.Params.cover.image)) }}
+ {{- $globalResourcesCover := (resources.ByType "image").GetMatch (printf "*%s*" (.Params.cover.image)) }}
+ {{- $cover := (or $pageBundleCover $globalResourcesCover)}}
+ {{- if $cover -}}{{/* i.e it is present in page bundle */}}
+ {{- if $addLink }}{{ end -}}
+ {{- $sizes := (slice "360" "480" "720" "1080" "1500") }}
+ {{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}}
+ {{- if hugo.IsExtended -}}
+ {{- $processableFormats = $processableFormats | append "webp" -}}
+ {{- end -}}
+ {{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
+ {{- if (and (in $processableFormats $cover.MediaType.SubType) ($responsiveImages) (eq $prod true)) }}
+
+ {{- else }}{{/* Unprocessable image or responsive images disabled */}}
+
+ {{- end }}
+ {{- else }}{{/* For absolute urls and external links, no img processing here */}}
+ {{- if $addLink }} {{ end -}}
+
+ {{- end }}
+ {{- if $addLink }} {{ end -}}
+ {{/* Display Caption */}}
+ {{- if $.IsSingle }}
+ {{ with .Params.cover.caption }}{{ . | markdownify }}
{{- end }}
+ {{- end }}
+
+{{- end }}{{/* End image */}}
+{{- end -}}{{/* End context */ -}}
diff --git a/themes/PaperMod/layouts/partials/edit_post.html b/themes/PaperMod/layouts/partials/edit_post.html
new file mode 100644
index 0000000..4f2c4de
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/edit_post.html
@@ -0,0 +1,8 @@
+{{- if and (or .Params.editPost.URL site.Params.editPost.URL) (not (.Param "editPost.disabled")) -}}
+{{- $fileUrlPath := path.Join .File.Path }}
+
+{{- if or .Params.author site.Params.author (.Param "ShowReadingTime") (not .Date.IsZero) .IsTranslated }} | {{- end -}}
+
+ {{- .Params.editPost.Text | default (site.Params.editPost.Text | default (i18n "edit_post" | default "Edit")) -}}
+
+{{- end }}
diff --git a/themes/PaperMod/layouts/partials/extend_footer.html b/themes/PaperMod/layouts/partials/extend_footer.html
new file mode 100644
index 0000000..0519748
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/extend_footer.html
@@ -0,0 +1,3 @@
+{{- /* Footer custom content area start */ -}}
+{{- /* Insert any custom code web-analytics, resources, etc. here */ -}}
+{{- /* Footer custom content area end */ -}}
diff --git a/themes/PaperMod/layouts/partials/extend_head.html b/themes/PaperMod/layouts/partials/extend_head.html
new file mode 100644
index 0000000..150cbef
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/extend_head.html
@@ -0,0 +1,4 @@
+{{- /* Head custom content area start */ -}}
+{{- /* Insert any custom code (web-analytics, resources, etc.) - it will appear in the section of every page. */ -}}
+{{- /* Can be overwritten by partial with the same name in the global layouts. */ -}}
+{{- /* Head custom content area end */ -}}
diff --git a/themes/PaperMod/layouts/partials/footer.html b/themes/PaperMod/layouts/partials/footer.html
new file mode 100644
index 0000000..832cdba
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/footer.html
@@ -0,0 +1,144 @@
+{{- if not (.Param "hideFooter") }}
+
+{{- end }}
+
+{{- if (not site.Params.disableScrollToTop) }}
+
+
+
+
+
+{{- end }}
+
+{{- partial "extend_footer.html" . }}
+
+
+
+{{- if (not site.Params.disableScrollToTop) }}
+
+{{- end }}
+
+{{- if (not site.Params.disableThemeToggle) }}
+
+{{- end }}
+
+{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (.Param "ShowCodeCopyButtons")) }}
+
+{{- end }}
diff --git a/themes/PaperMod/layouts/partials/head.html b/themes/PaperMod/layouts/partials/head.html
new file mode 100644
index 0000000..3e55c67
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/head.html
@@ -0,0 +1,157 @@
+
+
+
+{{- if hugo.IsProduction | or (eq site.Params.env "production") | and (ne .Params.robotsNoIndex true) }}
+
+{{- else }}
+
+{{- end }}
+
+{{- /* Title */}}
+{{ if .IsHome }}{{ else }}{{ if .Title }}{{ .Title }} | {{ end }}{{ end }}{{ site.Title }}
+
+{{- /* Meta */}}
+{{- if .IsHome }}
+{{ with site.Params.keywords -}} {{ end }}
+{{- else }}
+
+{{- end }}
+
+
+
+{{- if site.Params.analytics.google.SiteVerificationTag }}
+
+{{- end }}
+{{- if site.Params.analytics.yandex.SiteVerificationTag }}
+
+{{- end }}
+{{- if site.Params.analytics.bing.SiteVerificationTag }}
+
+{{- end }}
+{{- if site.Params.analytics.naver.SiteVerificationTag }}
+
+{{- end }}
+
+{{- /* Styles */}}
+
+{{- /* includes */}}
+{{- $includes := slice }}
+{{- $includes = $includes | append (" " | resources.FromString "assets/css/includes-blank.css")}}
+
+{{- if not (eq site.Params.assets.disableScrollBarStyle true) }}
+ {{- $ScrollStyle := (resources.Get "css/includes/scroll-bar.css") }}
+ {{- $includes = (append $ScrollStyle $includes) }}
+{{- end }}
+
+{{- $includes_all := $includes | resources.Concat "assets/css/includes.css" }}
+
+{{- $theme_vars := (resources.Get "css/core/theme-vars.css") }}
+{{- $reset := (resources.Get "css/core/reset.css") }}
+{{- $media := (resources.Get "css/core/zmedia.css") }}
+{{- $license_css := (resources.Get "css/core/license.css") }}
+{{- $common := (resources.Match "css/common/*.css") | resources.Concat "assets/css/common.css" }}
+
+{{- /* markup.highlight.noClasses should be set to `false` */}}
+{{- $chroma_styles := (resources.Get "css/includes/chroma-styles.css") }}
+{{- $chroma_mod := (resources.Get "css/includes/chroma-mod.css") }}
+
+{{- /* order is important */}}
+{{- $core := (slice $theme_vars $reset $common $chroma_styles $chroma_mod $includes_all $media) | resources.Concat "assets/css/core.css" | resources.Minify }}
+{{- $extended := (resources.Match "css/extended/*.css") | resources.Concat "assets/css/extended.css" | resources.Minify }}
+
+{{- /* bundle all required css */}}
+{{- /* Add extended css after theme style */ -}}
+{{- $stylesheet := (slice $license_css $core $extended) | resources.Concat "assets/css/stylesheet.css" }}
+
+{{- if not site.Params.assets.disableFingerprinting }}
+{{- $stylesheet := $stylesheet | fingerprint }}
+
+{{- else }}
+
+{{- end }}
+
+{{- /* Search */}}
+{{- if (eq .Layout `search`) -}}
+
+{{- $fastsearch := resources.Get "js/fastsearch.js" | js.Build (dict "params" (dict "fuseOpts" site.Params.fuseOpts)) | resources.Minify }}
+{{- $fusejs := resources.Get "js/fuse.basic.min.js" }}
+{{- $license_js := resources.Get "js/license.js" }}
+{{- if not site.Params.assets.disableFingerprinting }}
+{{- $search := (slice $fusejs $license_js $fastsearch ) | resources.Concat "assets/js/search.js" | fingerprint }}
+
+{{- else }}
+{{- $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" }}
+
+{{- end }}
+{{- end -}}
+
+{{- /* Favicons */}}
+
+
+
+
+
+
+
+
+{{- /* RSS */}}
+{{ range .AlternativeOutputFormats -}}
+
+{{ end -}}
+{{- range .AllTranslations -}}
+
+{{ end -}}
+
+
+
+ {{- if (and (ne site.Params.defaultTheme "light") (ne site.Params.defaultTheme "dark")) }}
+
+ {{- end }}
+
+
+{{- partial "extend_head.html" . -}}
+
+{{- /* Misc */}}
+{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
+{{- template "_internal/google_analytics.html" . }}
+{{- template "partials/templates/opengraph.html" . }}
+{{- template "partials/templates/twitter_cards.html" . }}
+{{- template "partials/templates/schema_json.html" . }}
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/header.html b/themes/PaperMod/layouts/partials/header.html
new file mode 100644
index 0000000..44336e1
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/header.html
@@ -0,0 +1,149 @@
+{{- /* theme-toggle is enabled */}}
+{{- if (not site.Params.disableThemeToggle) }}
+{{- /* theme is light */}}
+{{- if (eq site.Params.defaultTheme "light") }}
+
+{{- /* theme is dark */}}
+{{- else if (eq site.Params.defaultTheme "dark") }}
+
+{{- else }}
+{{- /* theme is auto */}}
+
+{{- end }}
+{{- /* theme-toggle is disabled and theme is auto */}}
+{{- else if (and (ne site.Params.defaultTheme "light") (ne site.Params.defaultTheme "dark"))}}
+
+{{- end }}
+
+
diff --git a/themes/PaperMod/layouts/partials/home_info.html b/themes/PaperMod/layouts/partials/home_info.html
new file mode 100644
index 0000000..199dfb7
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/home_info.html
@@ -0,0 +1,13 @@
+{{- with site.Params.homeInfoParams }}
+
+
+
+ {{ .Content | markdownify }}
+
+
+
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/index_profile.html b/themes/PaperMod/layouts/partials/index_profile.html
new file mode 100644
index 0000000..6882f39
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/index_profile.html
@@ -0,0 +1,58 @@
+
+ {{- with site.Params.profileMode }}
+
+ {{- if .imageUrl -}}
+ {{- $img := "" }}
+ {{- if not (urls.Parse .imageUrl).IsAbs }}
+ {{- $img = resources.Get .imageUrl }}
+ {{- end }}
+ {{- if $img }}
+ {{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}}
+ {{- if hugo.IsExtended -}}
+ {{- $processableFormats = $processableFormats | append "webp" -}}
+ {{- end -}}
+ {{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
+ {{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}}
+ {{- if (not (and (not .imageHeight) (not .imageWidth))) }}
+ {{- $img = $img.Resize (printf "%dx%d" .imageWidth .imageHeight) }}
+ {{- else if .imageHeight }}
+ {{- $img = $img.Resize (printf "x%d" .imageHeight) }}
+ {{ else if .imageWidth }}
+ {{- $img = $img.Resize (printf "%dx" .imageWidth) }}
+ {{ else }}
+ {{- $img = $img.Resize "150x150" }}
+ {{- end }}
+ {{- end }}
+
+ {{- else }}
+
+ {{- end }}
+ {{- end }}
+
{{ .title | default site.Title | markdownify }}
+
{{ .subtitle | markdownify }}
+ {{- partial "social_icons.html" -}}
+
+ {{- with .buttons }}
+
+ {{- end }}
+
+ {{- end}}
+
diff --git a/themes/PaperMod/layouts/partials/post_canonical.html b/themes/PaperMod/layouts/partials/post_canonical.html
new file mode 100644
index 0000000..abfc1e3
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/post_canonical.html
@@ -0,0 +1,9 @@
+{{ if and (.Params.canonicalURL) (.Params.ShowCanonicalLink ) -}}
+{{ $url := urls.Parse .Params.canonicalURL }}
+
+{{- if or .Params.author site.Params.author (.Param "ShowReadingTime") (not .Date.IsZero) .IsTranslated (or .Params.editPost.URL site.Params.editPost.URL) }} | {{- end -}}
+
+ {{- (site.Params.CanonicalLinkText | default .Params.CanonicalLinkText) | default "Originally published at" -}}
+ {{ $url.Host }}
+
+{{- end }}
diff --git a/themes/PaperMod/layouts/partials/post_meta.html b/themes/PaperMod/layouts/partials/post_meta.html
new file mode 100644
index 0000000..b0c0417
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/post_meta.html
@@ -0,0 +1,23 @@
+{{- $scratch := newScratch }}
+
+{{- if not .Date.IsZero -}}
+{{- $scratch.Add "meta" (slice (printf "%s " (.Date) (.Date | time.Format (default "January 2, 2006" site.Params.DateFormat)))) }}
+{{- end }}
+
+{{- if (.Param "ShowReadingTime") -}}
+{{- $scratch.Add "meta" (slice (i18n "read_time" .ReadingTime | default (printf "%d min" .ReadingTime))) }}
+{{- end }}
+
+{{- if (.Param "ShowWordCount") -}}
+{{- $scratch.Add "meta" (slice (i18n "words" .WordCount | default (printf "%d words" .WordCount))) }}
+{{- end }}
+
+{{- if not (.Param "hideAuthor") -}}
+{{- with (partial "author.html" .) }}
+{{- $scratch.Add "meta" (slice .) }}
+{{- end }}
+{{- end }}
+
+{{- with ($scratch.Get "meta") }}
+{{- delimit . " · " | safeHTML -}}
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/post_nav_links.html b/themes/PaperMod/layouts/partials/post_nav_links.html
new file mode 100644
index 0000000..b988641
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/post_nav_links.html
@@ -0,0 +1,19 @@
+{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
+{{- if and (gt (len $pages) 1) (in $pages . ) }}
+
+ {{- with $pages.Next . }}
+
+ « {{ i18n "prev_page" }}
+
+ {{- .Name -}}
+
+ {{- end }}
+ {{- with $pages.Prev . }}
+
+ {{ i18n "next_page" }} »
+
+ {{- .Name -}}
+
+ {{- end }}
+
+{{- end }}
diff --git a/themes/PaperMod/layouts/partials/share_icons.html b/themes/PaperMod/layouts/partials/share_icons.html
new file mode 100644
index 0000000..910ba7f
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/share_icons.html
@@ -0,0 +1,95 @@
+{{- $pageurl := .Permalink }}
+{{- $title := .Title }}
+
+{{- $.Scratch.Set "tags" ""}}
+
+{{- with .Params.Tags }}
+{{- $hashtags := newScratch}}
+{{- range . }}{{ $hashtags.Add "tags" (slice (replaceRE "(\\s)" "" . ))}}{{end}}
+{{- $.Scratch.Set "tags" (delimit ($hashtags.Get "tags") ",") }}
+{{- end -}}
+
+{{- $custom := false }}
+{{- $ShareButtons := (.Param "ShareButtons")}}
+{{- with $ShareButtons }}{{ $custom = true }}{{ end }}
+
+
diff --git a/themes/PaperMod/layouts/partials/social_icons.html b/themes/PaperMod/layouts/partials/social_icons.html
new file mode 100644
index 0000000..ce76a30
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/social_icons.html
@@ -0,0 +1,8 @@
+
diff --git a/themes/PaperMod/layouts/partials/svg.html b/themes/PaperMod/layouts/partials/svg.html
new file mode 100644
index 0000000..890b909
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/svg.html
@@ -0,0 +1,949 @@
+{{- $icon_name := ( trim .name " " | lower )}}
+{{- if (eq $icon_name "123rf") -}}
+
+
+
+
+{{- else if (eq $icon_name "500px") -}}
+
+
+
+{{- else if (eq $icon_name "adobestock") -}}
+
+
+
+
+{{- else if (eq $icon_name "anilist") -}}
+
+
+
+{{- else if or (eq $icon_name "ao3") (eq $icon_name "archiveofourown") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "applemusic") -}}
+
+
+
+{{- else if (eq $icon_name "applepodcasts") -}}
+
+
+
+{{- else if (eq $icon_name "bandcamp") -}}
+
+
+
+{{- else if (eq $icon_name "behance") -}}
+
+
+
+{{- else if (eq $icon_name "bilibili") -}}
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "bitcoin") -}}
+
+
+
+{{- else if (eq $icon_name "bluesky") -}}
+
+
+
+{{- else if (eq $icon_name "bugcrowd") -}}
+
+
+
+{{- else if (eq $icon_name "buttondown") -}}
+
+
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "buymeacoffee") -}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "codeberg") -}}
+
+
+
+{{- else if (eq $icon_name "codeforces") -}}
+
+
+
+{{- else if (eq $icon_name "codepen") -}}
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "credly") -}}
+
+
+
+{{- else if (eq $icon_name "cryptohack") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "ctftime") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "cv") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "deezer") -}}
+
+
+
+{{- else if (eq $icon_name "dev") -}}
+
+
+
+{{- else if (eq $icon_name "deviantart") -}}
+
+
+
+{{- else if (eq $icon_name "discogs") -}}
+
+
+
+{{- else if (eq $icon_name "discord") -}}
+
+
+
+{{- else if (eq $icon_name "douban") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "dreamstime") -}}
+
+
+
+{{- else if (eq $icon_name "dribbble") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "dzen") -}}
+
+
+
+{{- else if (eq $icon_name "email") -}}
+
+
+
+
+{{- else if (eq $icon_name "ethereum") -}}
+
+
+
+{{- else if (eq $icon_name "exercism") -}}
+
+
+
+
+{{- else if (eq $icon_name "facebook") -}}
+
+
+
+{{- else if (eq $icon_name "fediverse") -}}
+
+
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "firefish") -}}
+
+
+
+{{- else if (eq $icon_name "flickr") -}}
+
+
+
+{{- else if (eq $icon_name "freepik") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "git") -}}
+
+
+
+{{- else if (eq $icon_name "gitea") -}}
+
+
+
+{{- else if (eq $icon_name "github") -}}
+
+
+
+
+{{- else if (eq $icon_name "gitlab") -}}
+
+
+
+
+{{- else if (eq $icon_name "goodreads") -}}
+
+
+
+{{- else if (eq $icon_name "googleplaystore") -}}
+
+
+
+{{- else if (eq $icon_name "googlepodcasts") -}}
+
+
+
+{{- else if (eq $icon_name "googlescholar") -}}
+
+
+
+{{- else if (eq $icon_name "gurushots") -}}
+
+
+
+
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "hackerone") -}}
+
+
+
+{{- else if (eq $icon_name "hackerrank") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "hackthebox") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "imdb") -}}
+
+
+
+{{- else if (eq $icon_name "instagram") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "intigriti") -}}
+
+
+
+{{- else if (eq $icon_name "itchio") -}}
+
+
+
+{{- else if (eq $icon_name "juejin") -}}
+
+
+
+{{- else if (eq $icon_name "kaggle") -}}
+
+
+
+{{- else if (eq $icon_name "kakaotalk") -}}
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "keybase") -}}
+
+
+
+{{- else if (eq $icon_name "keyoxide") -}}
+
+
+
+
+{{- else if (eq $icon_name "kofi") -}}
+
+
+
+{{- else if (eq $icon_name "komoot") -}}
+
+
+
+{{- else if (eq $icon_name "lastfm") -}}
+
+
+
+{{- else if (eq $icon_name "leetcode") -}}
+
+
+
+{{- else if (eq $icon_name "letterboxd") -}}
+
+
+
+{{- else if (eq $icon_name "liberapay") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "lichess" ) -}}
+
+
+
+{{- else if (eq $icon_name "linkedin") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "mastodon") -}}
+
+
+
+
+{{- else if (eq $icon_name "matrix") -}}
+
+
+
+{{- else if (eq $icon_name "medium") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "microblog") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "mixcloud") -}}
+
+
+
+{{- else if (eq $icon_name "monero") -}}
+
+
+
+{{- else if (eq $icon_name "neteasecloudmusic") -}}
+
+
+
+{{- else if (eq $icon_name "nuget") -}}
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "orcid") -}}
+
+
+
+{{- else if (eq $icon_name "osu!") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "overcast") -}}
+
+
+
+{{- else if (eq $icon_name "patreon") -}}
+
+
+
+
+
+
+{{- else if (eq $icon_name "paypal") -}}
+
+
+
+{{- else if (eq $icon_name "peertube") -}}
+
+
+
+{{- else if or (eq $icon_name "pgpkey") (eq $icon_name "key") -}}
+
+
+
+
+{{- else if (eq $icon_name "phone") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "pinterest") -}}
+
+
+
+{{- else if (eq $icon_name "pixelfed") -}}
+
+
+
+{{- else if (eq $icon_name "pleroma") -}}
+
+
+
+{{- else if (eq $icon_name "pocketcasts") -}}
+
+
+
+{{- else if (eq $icon_name "polywork") -}}
+
+
+
+{{- else if (eq $icon_name "printables") -}}
+
+
+
+{{- else if (eq $icon_name "qq") -}}
+
+
+
+
+{{- else if (eq $icon_name "reddit") -}}
+
+
+
+{{- else if (eq $icon_name "raycast") -}}
+
+
+
+{{- else if (eq $icon_name "researchgate") -}}
+
+
+
+{{- else if (eq $icon_name "rootme") -}}
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "rss") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "serverfault") -}}
+
+
+
+{{- else if (eq $icon_name "sessionmessenger") -}}
+
+
+
+
+{{- else if (eq $icon_name "shutterstock") -}}
+
+
+
+
+{{- else if (eq $icon_name "signal") -}}
+
+
+
+{{- else if (eq $icon_name "sketchfab") -}}
+
+
+
+{{- else if (eq $icon_name "slack") -}}
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "snapchat") -}}
+
+
+
+{{- else if (eq $icon_name "soundcloud") -}}
+
+
+
+{{- else if (eq $icon_name "sourcehut") -}}
+
+
+
+
+{{- else if (eq $icon_name "spacehey") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "spotify") -}}
+
+
+
+{{- else if (eq $icon_name "stackoverflow") -}}
+
+
+
+{{- else if (eq $icon_name "steam") -}}
+
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "strava") -}}
+
+
+
+
+{{- else if (eq $icon_name "substack") -}}
+
+
+
+{{- else if (eq $icon_name "tableau") -}}
+
+
+
+
+
+
+
+
+
+
+{{- else if (eq $icon_name "telegram") -}}
+
+
+
+{{- else if (eq $icon_name "thingiverse") -}}
+
+
+
+{{- else if (eq $icon_name "threads") -}}
+
+
+
+
+{{- else if (eq $icon_name "threema") -}}
+
+
+
+
+{{- else if (eq $icon_name "tidal") -}}
+
+
+
+{{- else if (eq $icon_name "tiktok") -}}
+
+
+
+{{- else if (eq $icon_name "tryhackme") -}}
+
+
+
+{{- else if (eq $icon_name "tumblr") -}}
+
+
+
+{{- else if (eq $icon_name "twitch") -}}
+
+
+
+{{- else if (eq $icon_name "twitter") -}}
+
+
+
+
+{{- else if (eq $icon_name "unsplash") -}}
+
+
+
+
+{{- else if (eq $icon_name "vimeo") -}}
+
+
+
+{{- else if or (eq $icon_name "vk") (eq $icon_name "vkontakte") -}}
+
+
+
+{{- else if (eq $icon_name "wantedly") -}}
+
+
+
+{{- else if (eq $icon_name "wechat") -}}
+
+
+
+
+{{- else if or (eq $icon_name "wikipedia") (eq $icon_name "wiki") -}}
+
+
+
+
+{{- else if (eq $icon_name "wordpress") -}}
+
+
+
+{{- else if (eq $icon_name "x") -}}
+
+
+
+
+{{- else if (eq $icon_name "xda") -}}
+
+
+
+{{- else if (eq $icon_name "xing") -}}
+
+
+
+
+{{- else if (eq $icon_name "xmpp") -}}
+
+
+
+
+{{- else if (eq $icon_name "ycombinator") -}}
+
+
+
+{{- else if (eq $icon_name "youtube") -}}
+
+
+
+
+
+{{- else if (eq $icon_name "zhihu") -}}
+
+
+
+{{- else if $icon_name -}}
+
+
+
+
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/templates/_funcs/get-page-images.html b/themes/PaperMod/layouts/partials/templates/_funcs/get-page-images.html
new file mode 100644
index 0000000..268ceb4
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/templates/_funcs/get-page-images.html
@@ -0,0 +1,47 @@
+{{- $imgs := slice }}
+{{- $imgParams := .Params.images }}
+{{- $resources := .Resources.ByType "image" -}}
+{{/* Find featured image resources if the images parameter is empty. */}}
+{{- if not $imgParams }}
+ {{- $featured := $resources.GetMatch "*feature*" -}}
+ {{- if not $featured }}{{ $featured = $resources.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
+ {{- with $featured }}
+ {{- $imgs = $imgs | append (dict
+ "Image" .
+ "RelPermalink" .RelPermalink
+ "Permalink" .Permalink) }}
+ {{- end }}
+{{- end }}
+{{/* Use the first one of site images as the fallback. */}}
+{{- if and (not $imgParams) (not $imgs) }}
+ {{- with site.Params.images }}
+ {{- $imgParams = first 1 . }}
+ {{- end }}
+{{- end }}
+{{/* Parse page's images parameter. */}}
+{{- range $imgParams }}
+ {{- $img := . }}
+ {{- $url := urls.Parse $img }}
+ {{- if eq $url.Scheme "" }}
+ {{/* Internal image. */}}
+ {{- with $resources.GetMatch $img -}}
+ {{/* Image resource. */}}
+ {{- $imgs = $imgs | append (dict
+ "Image" .
+ "RelPermalink" .RelPermalink
+ "Permalink" .Permalink) }}
+ {{- else }}
+ {{- $imgs = $imgs | append (dict
+ "RelPermalink" (relURL $img)
+ "Permalink" (absURL $img)
+ ) }}
+ {{- end }}
+ {{- else }}
+ {{/* External image */}}
+ {{- $imgs = $imgs | append (dict
+ "RelPermalink" $img
+ "Permalink" $img
+ ) }}
+ {{- end }}
+{{- end }}
+{{- return $imgs }}
diff --git a/themes/PaperMod/layouts/partials/templates/opengraph.html b/themes/PaperMod/layouts/partials/templates/opengraph.html
new file mode 100644
index 0000000..95f037c
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/templates/opengraph.html
@@ -0,0 +1,59 @@
+
+
+
+
+{{- if .Params.cover.image -}}
+{{- if (ne .Params.cover.relative true) }}
+
+{{- else}}
+
+{{- end}}
+{{- else }}
+
+{{- $images := partial "partials/templates/_funcs/get-page-images" . -}}
+{{- range first 6 $images }}
+
+{{ end -}}
+{{- end }}
+
+{{- if .IsPage }}
+{{- $iso8601 := "2006-01-02T15:04:05-07:00" -}}
+
+{{ with .PublishDate }} {{ end }}
+{{ with .Lastmod }} {{ end }}
+{{- end -}}
+
+{{- with .Params.audio }} {{ end }}
+{{- with .Params.locale }} {{ end }}
+{{- with site.Params.title }} {{ end }}
+{{- with .Params.videos }}{{- range . }}
+
+{{ end }}{{ end }}
+
+{{- /* If it is part of a series, link to related articles */}}
+{{- $permalink := .Permalink }}
+{{- $siteSeries := site.Taxonomies.series }}
+{{- if $siteSeries }}
+{{ with .Params.series }}{{- range $name := . }}
+ {{- $series := index $siteSeries ($name | urlize) }}
+ {{- range $page := first 6 $series.Pages }}
+ {{- if ne $page.Permalink $permalink }} {{ end }}
+ {{- end }}
+{{ end }}{{ end }}
+{{- end }}
+
+{{- /* Deprecate site.Social.facebook_admin in favor of site.Params.social.facebook_admin */}}
+{{- $facebookAdmin := "" }}
+{{- with site.Params.social }}
+ {{- if reflect.IsMap . }}
+ {{- $facebookAdmin = .facebook_admin }}
+ {{- end }}
+{{- else }}
+ {{- with site.Social.facebook_admin }}
+ {{- $facebookAdmin = . }}
+ {{- warnf "The social key in site configuration is deprecated. Use params.social.facebook_admin instead." }}
+ {{- end }}
+{{- end }}
+
+{{- /* Facebook Page Admin ID for Domain Insights */}}
+{{ with $facebookAdmin }} {{ end }}
diff --git a/themes/PaperMod/layouts/partials/templates/schema_json.html b/themes/PaperMod/layouts/partials/templates/schema_json.html
new file mode 100644
index 0000000..ed4d689
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/templates/schema_json.html
@@ -0,0 +1,124 @@
+{{ if .IsHome }}
+
+{{- else if (or .IsPage .IsSection) }}
+{{/* BreadcrumbList */}}
+{{- $url := replace .Parent.Permalink ( printf "%s" site.Home.Permalink) "" }}
+{{- $lang_url := strings.TrimPrefix ( printf "%s/" .Lang) $url }}
+{{- $bc_list := (split $lang_url "/")}}
+
+{{- $scratch := newScratch }}
+
+{{- if .IsPage }}
+
+{{- end }}{{/* .IsPage end */}}
+
+{{- end -}}
diff --git a/themes/PaperMod/layouts/partials/templates/twitter_cards.html b/themes/PaperMod/layouts/partials/templates/twitter_cards.html
new file mode 100644
index 0000000..46b0d04
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/templates/twitter_cards.html
@@ -0,0 +1,38 @@
+{{- if .Params.cover.image -}}
+
+{{- if (ne $.Params.cover.relative true) }}
+
+{{- else }}
+
+{{- end}}
+{{- else }}
+{{- $images := partial "partials/templates/_funcs/get-page-images" . -}}
+{{- with index $images 0 -}}
+
+
+{{- else -}}
+
+{{- end -}}
+{{- end }}
+
+
+{{- /* Deprecate site.Social.twitter in favor of site.Params.social.twitter */}}
+{{- $twitterSite := "" }}
+{{- with site.Params.social }}
+ {{- if reflect.IsMap . }}
+ {{- $twitterSite = .twitter }}
+ {{- end }}
+{{- else }}
+ {{- with site.Social.twitter }}
+ {{- $twitterSite = . }}
+ {{- warnf "The social key in site configuration is deprecated. Use params.social.twitter instead." }}
+ {{- end }}
+{{- end }}
+
+{{- with $twitterSite }}
+ {{- $content := . }}
+ {{- if not (strings.HasPrefix . "@") }}
+ {{- $content = printf "@%v" $twitterSite }}
+ {{- end }}
+
+{{- end }}
diff --git a/themes/PaperMod/layouts/partials/toc.html b/themes/PaperMod/layouts/partials/toc.html
new file mode 100644
index 0000000..28f8694
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/toc.html
@@ -0,0 +1,97 @@
+{{- $headers := findRE "(.|\n])+? " .Content -}}
+{{- $has_headers := ge (len $headers) 1 -}}
+{{- if $has_headers -}}
+
+
+
+ {{- i18n "toc" | default "Table of Contents" }}
+
+
+
+ {{- if (.Param "UseHugoToc") }}
+ {{- .TableOfContents -}}
+ {{- else }}
+ {{- $largest := 6 -}}
+ {{- range $headers -}}
+ {{- $headerLevel := index (findRE "[1-6]" . 1) 0 -}}
+ {{- $headerLevel := len (seq $headerLevel) -}}
+ {{- if lt $headerLevel $largest -}}
+ {{- $largest = $headerLevel -}}
+ {{- end -}}
+ {{- end -}}
+
+ {{- $firstHeaderLevel := len (seq (index (findRE "[1-6]" (index $headers 0) 1) 0)) -}}
+
+ {{- $.Scratch.Set "bareul" slice -}}
+
+ {{- range seq (sub $firstHeaderLevel $largest) -}}
+
+ {{- $.Scratch.Add "bareul" (sub (add $largest .) 1) -}}
+ {{- end -}}
+ {{- range $i, $header := $headers -}}
+ {{- $headerLevel := index (findRE "[1-6]" . 1) 0 -}}
+ {{- $headerLevel := len (seq $headerLevel) -}}
+
+ {{/* get id="xyz" */}}
+ {{- $id := index (findRE "(id=\"(.*?)\")" $header 9) 0 }}
+
+ {{- /* strip id="" to leave xyz, no way to get regex capturing groups in hugo */ -}}
+ {{- $cleanedID := replace (replace $id "id=\"" "") "\"" "" }}
+ {{- $header := replaceRE "((.|\n])+?) " "$1" $header -}}
+
+ {{- if ne $i 0 -}}
+ {{- $prevHeaderLevel := index (findRE "[1-6]" (index $headers (sub $i 1)) 1) 0 -}}
+ {{- $prevHeaderLevel := len (seq $prevHeaderLevel) -}}
+ {{- if gt $headerLevel $prevHeaderLevel -}}
+ {{- range seq $prevHeaderLevel (sub $headerLevel 1) -}}
+
+ {{/* the first should not be recorded */}}
+ {{- if ne $prevHeaderLevel . -}}
+ {{- $.Scratch.Add "bareul" . -}}
+ {{- end -}}
+ {{- end -}}
+ {{- else -}}
+
+ {{- if lt $headerLevel $prevHeaderLevel -}}
+ {{- range seq (sub $prevHeaderLevel 1) -1 $headerLevel -}}
+ {{- if in ($.Scratch.Get "bareul") . -}}
+
+ {{/* manually do pop item */}}
+ {{- $tmp := $.Scratch.Get "bareul" -}}
+ {{- $.Scratch.Delete "bareul" -}}
+ {{- $.Scratch.Set "bareul" slice}}
+ {{- range seq (sub (len $tmp) 1) -}}
+ {{- $.Scratch.Add "bareul" (index $tmp (sub . 1)) -}}
+ {{- end -}}
+ {{- else -}}
+
+
+ {{- end -}}
+ {{- end -}}
+ {{- end -}}
+ {{- end }}
+
+ {{- $header | plainify | safeHTML -}}
+ {{- else }}
+
+ {{- $header | plainify | safeHTML -}}
+ {{- end -}}
+ {{- end -}}
+
+ {{- $firstHeaderLevel := $largest }}
+ {{- $lastHeaderLevel := len (seq (index (findRE "[1-6]" (index $headers (sub (len $headers) 1)) 1) 0)) }}
+
+ {{- range seq (sub $lastHeaderLevel $firstHeaderLevel) -}}
+ {{- if in ($.Scratch.Get "bareul") (add . $firstHeaderLevel) }}
+
+ {{- else }}
+
+
+ {{- end -}}
+ {{- end }}
+
+ {{- end }}
+
+
+
+{{- end }}
diff --git a/themes/PaperMod/layouts/partials/translation_list.html b/themes/PaperMod/layouts/partials/translation_list.html
new file mode 100644
index 0000000..0028251
--- /dev/null
+++ b/themes/PaperMod/layouts/partials/translation_list.html
@@ -0,0 +1,19 @@
+{{- if .IsTranslated -}}
+{{- if (ne .Layout "search") }}
+{{- if or .Params.author site.Params.author (.Param "ShowReadingTime") (not .Date.IsZero) }} | {{- end -}}
+{{- end }}
+{{- i18n "translations" | default "Translations" }}:
+
+{{- end -}}
diff --git a/themes/PaperMod/layouts/robots.txt b/themes/PaperMod/layouts/robots.txt
new file mode 100644
index 0000000..f26f508
--- /dev/null
+++ b/themes/PaperMod/layouts/robots.txt
@@ -0,0 +1,7 @@
+User-agent: *
+{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
+Disallow:
+{{- else }}
+Disallow: /
+{{- end }}
+Sitemap: {{ "sitemap.xml" | absURL }}
diff --git a/themes/PaperMod/layouts/shortcodes/collapse.html b/themes/PaperMod/layouts/shortcodes/collapse.html
new file mode 100644
index 0000000..17d8d3b
--- /dev/null
+++ b/themes/PaperMod/layouts/shortcodes/collapse.html
@@ -0,0 +1,8 @@
+{{ if .Get "summary" }}
+{{ else }}
+{{ warnf "missing value for param 'summary': %s" .Position }}
+{{ end }}
+
+ {{ .Get "summary" | markdownify }}
+ {{ .Inner | markdownify }}
+
diff --git a/themes/PaperMod/layouts/shortcodes/figure.html b/themes/PaperMod/layouts/shortcodes/figure.html
new file mode 100644
index 0000000..8c93eff
--- /dev/null
+++ b/themes/PaperMod/layouts/shortcodes/figure.html
@@ -0,0 +1,31 @@
+
+ {{- if .Get "link" -}}
+
+ {{- end }}
+
+ {{- if .Get "link" }} {{ end -}}
+ {{- if or (or (.Get "title") (.Get "caption")) (.Get "attr") -}}
+
+ {{ with (.Get "title") -}}
+ {{ . }}
+ {{- end -}}
+ {{- if or (.Get "caption") (.Get "attr") -}}
+ {{- .Get "caption" | markdownify -}}
+ {{- with .Get "attrlink" }}
+
+ {{- end -}}
+ {{- .Get "attr" | markdownify -}}
+ {{- if .Get "attrlink" }} {{ end }}
+ {{- end }}
+
+ {{- end }}
+
diff --git a/themes/PaperMod/layouts/shortcodes/inTextImg.html b/themes/PaperMod/layouts/shortcodes/inTextImg.html
new file mode 100644
index 0000000..0239fd6
--- /dev/null
+++ b/themes/PaperMod/layouts/shortcodes/inTextImg.html
@@ -0,0 +1,5 @@
+{{- $Img := (.Get "url") }}
+{{- $height := (.Get "height") }}
+{{- $alt := (.Get "alt") }}
+
+
diff --git a/themes/PaperMod/layouts/shortcodes/ltr.html b/themes/PaperMod/layouts/shortcodes/ltr.html
new file mode 100644
index 0000000..4ad7682
--- /dev/null
+++ b/themes/PaperMod/layouts/shortcodes/ltr.html
@@ -0,0 +1,15 @@
+{{ $.Scratch.Set "md" false }}
+
+{{ if .IsNamedParams }}
+{{ $.Scratch.Set "md" (.Get "md") }}
+{{ else }}
+{{ $.Scratch.Set "md" (.Get 0) }}
+{{ end }}
+
+
+ {{ if eq ($.Scratch.Get "md") false }}
+ {{ .Inner }}
+ {{ else }}
+ {{ .Inner | markdownify }}
+ {{ end }}
+
diff --git a/themes/PaperMod/layouts/shortcodes/rawhtml.html b/themes/PaperMod/layouts/shortcodes/rawhtml.html
new file mode 100644
index 0000000..9350c13
--- /dev/null
+++ b/themes/PaperMod/layouts/shortcodes/rawhtml.html
@@ -0,0 +1,2 @@
+
+{{- .Inner -}}
\ No newline at end of file
diff --git a/themes/PaperMod/layouts/shortcodes/rtl.html b/themes/PaperMod/layouts/shortcodes/rtl.html
new file mode 100644
index 0000000..a69b8ce
--- /dev/null
+++ b/themes/PaperMod/layouts/shortcodes/rtl.html
@@ -0,0 +1,15 @@
+{{ $.Scratch.Set "md" false }}
+
+{{ if .IsNamedParams }}
+{{ $.Scratch.Set "md" (.Get "md") }}
+{{ else }}
+{{ $.Scratch.Set "md" (.Get 0) }}
+{{ end }}
+
+
+ {{ if eq ($.Scratch.Get "md") false }}
+ {{ .Inner }}
+ {{ else }}
+ {{ .Inner | markdownify }}
+ {{ end }}
+
diff --git a/themes/PaperMod/theme.toml b/themes/PaperMod/theme.toml
new file mode 100644
index 0000000..f659f5c
--- /dev/null
+++ b/themes/PaperMod/theme.toml
@@ -0,0 +1,51 @@
+# theme.toml template for a Hugo theme
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
+
+name = "PaperMod"
+license = "MIT"
+licenselink = "https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE"
+description = "A fast, clean, responsive Hugo theme"
+homepage = "https://adityatelange.github.io/hugo-PaperMod/"
+tags = [
+ "responsive",
+ "simple",
+ "clean",
+ "light",
+ "dark",
+ "blog",
+ "minimalist",
+ "highlight.js",
+ "search"
+]
+features = [
+ "responsive",
+ "single-column",
+ "blog",
+ "cover-image",
+ "table-of-contents",
+ "opengraph",
+ "highlight.js",
+ "favicon",
+ "archive",
+ "share-icons",
+ "cover",
+ "multilingual",
+ "social-icons",
+ "minified-assets",
+ "theme-toggle",
+ "menu-location-indicator",
+ "scroll-to-top",
+ "search"
+]
+min_version = "0.112.4"
+
+[author]
+ name = "Aditya Telange"
+ homepage = "https://github.com/adityatelange/"
+
+# If porting an existing theme
+[original]
+ name = "Paper"
+ author = "nanxiaobei"
+ homepage = "https://github.com/nanxiaobei"
+ repo = "https://github.com/nanxiaobei/hugo-paper/"
diff --git a/themes/hugo-coder/.editorconfig b/themes/hugo-coder/.editorconfig
deleted file mode 100644
index 51c74a1..0000000
--- a/themes/hugo-coder/.editorconfig
+++ /dev/null
@@ -1,29 +0,0 @@
-# https://editorconfig.org
-
-# this file is the top-most editorconfig file
-root = true
-
-# all files
-[*]
-charset = utf-8
-end_of_line = lf
-indent_style = space
-indent_size = 4
-insert_final_newline = true
-trim_trailing_whitespace = true
-
-# markdown files
-[*.md]
-insert_final_newline = false
-trim_trailing_whitespace = false
-
-# configuration files
-[*.toml]
-indent_size = 2
-
-# web files
-[*.{html,css,scss}]
-indent_size = 2
-
-[Makefile]
-indent_style = tab
diff --git a/themes/hugo-coder/.github/FUNDING.yml b/themes/hugo-coder/.github/FUNDING.yml
deleted file mode 100644
index f100056..0000000
--- a/themes/hugo-coder/.github/FUNDING.yml
+++ /dev/null
@@ -1 +0,0 @@
-custom: https://www.buymeacoffee.com/luizdepra
diff --git a/themes/hugo-coder/.github/ISSUE_TEMPLATE/bug_report.md b/themes/hugo-coder/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 0c8827e..0000000
--- a/themes/hugo-coder/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,30 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ""
-labels: "Triage Needed"
-assignees: ""
----
-
-## Describe the problem:
-
-_Explain the problem you have encountered_
-
-### Steps to reproduce:
-
-1. ***
-2. ***
-3. ***
-
-### Observed Results:
-
-- What happened?
-- What did you expect to happen?
-
-### Relevant code exceptions or logs
-
-Note: Please copy/paste text of the messages, no screenshots of logs please.
-
-```
-// paste your log here
-```
diff --git a/themes/hugo-coder/.github/ISSUE_TEMPLATE/feature_request.md b/themes/hugo-coder/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index 1e99de0..0000000
--- a/themes/hugo-coder/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: ""
-labels: ""
-assignees: ""
----
-
-## Describe the enhancement
-
-_Explain the enhancement you would like_
diff --git a/themes/hugo-coder/.github/ISSUE_TEMPLATE/question.md b/themes/hugo-coder/.github/ISSUE_TEMPLATE/question.md
deleted file mode 100644
index 4aeca23..0000000
--- a/themes/hugo-coder/.github/ISSUE_TEMPLATE/question.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-name: Question
-about: Ask a question you could not find an answer in the docs
-title: ""
-labels: "Question"
-assignees: ""
----
-
-## Your question
-
-_Ask the question you have not been able to find an answer in the Documentation_
diff --git a/themes/hugo-coder/.github/pull_request_template.md b/themes/hugo-coder/.github/pull_request_template.md
deleted file mode 100644
index f690988..0000000
--- a/themes/hugo-coder/.github/pull_request_template.md
+++ /dev/null
@@ -1,33 +0,0 @@
-### Prerequisites
-
-Put an `x` into the box(es) that apply:
-
-- [ ] This pull request fixes a bug.
-- [ ] This pull request adds a feature.
-- [ ] This pull request introduces breaking change.
-
-### Description
-
-Describe what this pull request achieves.
-
-### Issues Resolved
-
-List any existing issues this pull request resolves.
-
-### Checklist
-
-Put an `x` into the box(es) that apply:
-
-#### General
-
-- [ ] Describe what changes are being made
-- [ ] Explain why and how the changes were necessary and implemented respectively
-- [ ] Reference issue with `#` if applicable
-
-#### Resources
-
-- [ ] If you have changed any SCSS code, run `make release` to regenerate all CSS files
-
-#### Contributors
-
-- [ ] Add yourself to `CONTRIBUTORS.md` if you aren't on it already
diff --git a/themes/hugo-coder/.gitignore b/themes/hugo-coder/.gitignore
deleted file mode 100644
index 2be26dd..0000000
--- a/themes/hugo-coder/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-.idea
-**/themes/
-exampleSite/public/
-exampleSite/resources/
-*.lock
-public
diff --git a/themes/hugo-coder/CONTRIBUTORS.md b/themes/hugo-coder/CONTRIBUTORS.md
deleted file mode 100644
index 3cb5375..0000000
--- a/themes/hugo-coder/CONTRIBUTORS.md
+++ /dev/null
@@ -1,152 +0,0 @@
-# Contributors
-
-- [Chip Senkbeil](https://github.com/chipsenkbeil)
-- [Dale Noe](https://github.com/dalenoe)
-- [Gabor Nagy](https://github.com/Aigeruth)
-- [Harry Khanna](https://github.com/hkhanna)
-- [Ihor Dvoretskyi](https://github.com/idvoretskyi)
-- [Jacob Wood](https://github.com/jacoblukewood)
-- [Jan Baudisch](https://github.com/flyingP0tat0)
-- [Jiri Hubacek](https://github.com/qeef)
-- [Khosrow Moossavi](https://github.com/khos2ow)
-- [Maikel](https://github.com/mbollemeijer)
-- [MetBril](https://github.com/metbril)
-- [Myles Johnson](https://github.com/MylesJohnson)
-- [Niels Reijn](https://github.com/reijnn)
-- [Padraic Renaghan](https://github.com/prenagha)
-- [peterrus](https://github.com/peterrus)
-- [Philipp Rintz](https://github.com/p-rintz)
-- [Ralf Junghanns](https://github.com/rabbl)
-- [rdhox](https://rdhox.io)
-- [tobaloidee](https://github.com/Tobaloidee)
-- [Tomasz Wąsiński](https://github.com/wasinski)
-- [Vinícius dos Santos Oliveira](https://github.com/vinipsmaker)
-- [Vlad Ionescu](https://github.com/Vlaaaaaaad)
-- [Joseph Ting](https://github.com/josephting)
-- [Abner Campanha](https://github.com/abnerpc)
-- [Martin Kiesel](https://github.com/Kyslik)
-- [John Tobin](https://www.johntobin.ie/)
-- [Thomas Nys](https://thomasnys.com)
-- [Piotr Januszewski](https://piojanu.github.io)
-- [Artem Khvastunov](https://artspb.me)
-- [Gabriel Nepomuceno](https://blog.nepomuceno.me)
-- [Salvatore Giordano](https://salvatore-giordano.github.io)
-- [Jeffrey Carpenter](https://uvolabs.me)
-- [Paul Lettington](https://github.com/plett)
-- [Thomas Vochten](https://github.com/thomasvochten)
-- [Caspar Krieger](https://www.asparck.com)
-- [D_DAndrew](https://d-dandrew.github.io)
-- [Wataru Mizukami](https://github.com/tarumzu)
-- [Yudi Widiyanto](https://github.com/yudiwdynto)
-- [Łukasz Mróz](https://github.com/mrozlukasz)
-- [Jia "Jay" Tan](https://github.com/j7an)
-- [Ryan](https://github.com/alrayyes)
-- [Naim A.](https://github.com/naim94a)
-- [Alexander Rohde](https://github.com/a1x42)
-- [Shreyansh Khajanchi](https://shreyanshja.in)
-- [Lionel Brianto](https://lionel.brianto.dev)
-- [Luis Zarate](https://github.com/jlzaratec)
-- [Ariejan de Vroom](https://www.devroom.io)
-- [Bobby Lindsey](https://bobbywlindsey.com)
-- [José Mª Escartín](https://github.com/jme52)
-- [John Schroeder](https://blog.schroedernet.software)
-- [Tobias Lindberg](https://github.com/tobiasehlert)
-- [KK](https://github.com/bebound)
-- [Eli W. Hunter](https://github.com/elihunter173)
-- [Víctor López](https://github.com/viticlick)
-- [Anson VanDoren](https://github.com/anson-vandoren)
-- [Michael Lynch](https://github.com/mtlynch)
-- [FIGBERT](https://figbert.com/)
-- [Yash Mehrotra](https://yashmehrotra.com)
-- [Paolo Mainardi](https://paolomainardi.com)
-- [Ka-Wai Lin](https://github.com/kwlin)
-- [Piotr Orzechowski](https://orzechowski.tech)
-- [Glenn Feunteun](https://github.com/gfeun)
-- [Santiago González](https://github.com/netrules)
-- [Codruț Constantin Gușoi](https://www.codrut.pro)
-- [Clément Pannetier](https://clementpannetier.dev)
-- [FantasticMao](https://github.com/FantasticMao)
-- [Utkarsh Gupta](https://utkarsh2102.com)
-- [Latiif Alsharif](https://latiif.se)
-- [Endormi](https://endormi.io)
-- [Rajiv Ranjan Singh](https://iamrajiv.github.io/)
-- [Pakhomov Alexander](https://github.com/PakhomovAlexander)
-- [Rhys Perry](https://rhysperry.com)
-- [Arunvel Sriram](https://github.com/arunvelsriram)
-- [Lorenzo Cameroni](https://github.com/came88)
-- [Jared Sturdy](https://github.com/jsturdy)
-- [Daniel Monteiro](https://github.com/dfamonteiro)
-- [Dave Rolsky](https://github.com/autarch)
-- [Joseph Sanders](https://github.com/jls83)
-- [Rabin Adhikari](https://github.com/rabinadk1/)
-- [Hussaini Zulkifli](https://github.com/hussaini/)
-- [Ellison Leão](https://github.com/ellisonleao)
-- [Lucas de Oliveira](https://github.com/lucas-dOliveira)
-- [Jian Loong Liew](https://github.com/JianLoong)
-- [earnest ma](https://github.com/earnestma)
-- [TMineCola](https://github.com/tminecola)
-- [Arafat Hasan](https://github.com/arafat-hasan)
-- [YUJI](https://yuji.ne.jp/)
-- [JaeSang Yoo](https://github.com/JSYoo5B)
-- [tianheg](https://github.com/tianheg)
-- [Felix](https://github.com/lazyyz)
-- [Peter Duchnovsky](https://duchnovsky.com)
-- [Alex Miranda](https://ammiranda.com)
-- [Alphonse Mariya](https://github.com/alfunx)
-- [Ziwei Pan](https://github.com/PanZiwei/)
-- [Viktar Patotski](https://github.com/xp-vit)
-- [cuso4-5h2o](https://www.cuso4.me)
-- [freeformz](https://icanhazdowntime.org)
-- [Roberto Gongora](https://yourfavourite.blog)
-- [kuba86](https://kuba86.com)
-- [Vladislav Matus](https://github.com/matusvla)
-- [Kirill Feoktistov](https://feoktistoff.org)
-- [leins275](https://github.com/LanskovNV)
-- [Michael Weiss](https://mweiss.ch)
-- [Simon Pai](https://github.com/simonpai)
-- [Brenton Mallen](https://github.com/brentonmallen1)
-- [Xiaoyang Luo](https://github.com/ccviolett/)
-- [Michiel Appelman](https://appelman.se)
-- [Mark Wood](https://digitalnotions.net)
-- [Sam A.](https://samsapti.dev)
-- [John Feminella](https://jxf.me)
-- [zzsqwq](https://zzsqwq.cn)
-- [George Tsiokos](https://george.tsiokos.com)
-- [Eltjo](https://github.com/eltjo)
-- [Saurmandal](https://saur.neocities.org)
-- [Jneo8](https://github.com/jneo8)
-- [Daniel Nduati](https://github.com/DanNduati)
-- [Simon Hollingshead](https://github.com/simonhollingshead)
-- [yangyangdaji](https://github.com/yangyangdaji)
-- [xiaotianxt](https://github.com/xiaotianxt)
-- [Nour Agha](https://github.com/nourkagha)
-- [Brian Lachniet](https://github.com/blachniet)
-- [ShortArrow](https://github.com/ShortArrow)
-- [Martin Hellspong](https://github.com/marhel)
-- [Robert Tucker](https://github.com/robertwtucker)
-- [Michał Pawlik](https://michalp.net)
-- [Kilian Kluge](https://github.com/ionicsolutions)
-- [Jaroslaw Rozanski](https://jarekrozanski.eu)
-- [Easton Man](https://github.com/eastonman)
-- [Yiğit Altınay](https://altinay.xyz)
-- [Fei Kong](https://github.com/alpha0422)
-- [Ahmet Enes Bayraktar](https://github.com/aeb-dev)
-- [Todor Bogosavljević](https://github.com/tbx1b)
-- [Kemal Akkoyun](https://github.com/kakkoyun)
-- [Igetin](https://github.com/Igetin)
-- [Kirill Che.](https://github.com/g4s8)
-- [iron3oxide](https://github.com/iron3oxide)
-- [Jens Rantil](https://github.com/JensRantil)
-- [Muqeet Malik](https://github.com/mmalik23)
-- [Sammy44nts](https://github.com/sammy44nts)
-- [Shaked8634](https://github.com/shaked8634)
-- [Leo Heimann Ruiz](https://leo.heitmannruiz.org/)
-- [Antoine "Toinux" Wam](https://github.com/itzwam)
-- [Reberti Carvalho Soares](https://github.com/RebertiCS)
-- [Andreas Deininger](https://github.com/deining)
-- [Ardemium](https://github.com/ardemium)
-- [Matt Ellery](https://github.com/matt-ellery)
-- [Daniel Olshansky](https://github.com/olshansk)
-- [Gregor Podjed](https://github.com/gragorther)
-- [dantezhu](https://github.com/dantezhu)
-- [Alexander Lazarević](https://e11bits.com)
diff --git a/themes/hugo-coder/LICENSE.md b/themes/hugo-coder/LICENSE.md
deleted file mode 100644
index 29dbd75..0000000
--- a/themes/hugo-coder/LICENSE.md
+++ /dev/null
@@ -1,20 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2018 Luiz F. A. de Prá
-
-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.
diff --git a/themes/hugo-coder/Makefile b/themes/hugo-coder/Makefile
deleted file mode 100644
index 8e0c3e4..0000000
--- a/themes/hugo-coder/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-HUGO_BIN=hugo
-
-.PHONY: build demo release
-
-build:
- $(HUGO_BIN) --themesDir=../.. --source=exampleSite
-
-demo:
- $(HUGO_BIN) server -D --themesDir=../.. --source=exampleSite --bind 0.0.0.0
-
-release: build
- rm -rf ./resources && cp -r ./exampleSite/resources ./resources
diff --git a/themes/hugo-coder/README.md b/themes/hugo-coder/README.md
deleted file mode 100644
index 0dfdeec..0000000
--- a/themes/hugo-coder/README.md
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-A simple and clean blog theme for [Hugo](https://gohugo.io/).
-
-
-
-## Live Demo
-
-See [here](https://hugo-coder.netlify.app/).
-
-## Quick Start
-
-1. Add the repository into your Hugo Project repository as a submodule, `git submodule add https://github.com/luizdepra/hugo-coder.git themes/hugo-coder`.
-2. Configure your `hugo.toml`. You can either use [this minimal configuration](https://github.com/luizdepra/hugo-coder/blob/main/docs/configurations.md#complete-example) as a base, or look for a complete explanation about all configurations [here](https://github.com/luizdepra/hugo-coder/blob/main/docs/configurations.md). The [`hugo.toml`](https://github.com/luizdepra/hugo-coder/blob/master/exampleSite/hugo.toml) inside the [`exampleSite`](https://github.com/luizdepra/hugo-coder/tree/master/exampleSite) is also a good reference.
-3. Build your site with `hugo server` and see the result at `http://localhost:1313/`.
-
-## Documentation
-
-See the [`docs`](docs/home.md) folder.
-
-## License
-
-Coder is licensed under the [MIT license](https://github.com/luizdepra/hugo-coder/blob/master/LICENSE.md).
-
-## Maintenance
-
-This theme is maintained by its author [Luiz de Prá](https://github.com/luizdepra) with the help from these awesome [contributors](CONTRIBUTORS.md).
-
-## Sponsoring
-
-If you like my project or it was useful for you, consider supporting its development. Just:
-
-
-
-## Special Thanks
-
-- Gleen McComb, for his great [article](https://glennmccomb.com/articles/how-to-build-custom-hugo-pagination/) about custom pagination.
-- All contributors, for every PR and Issue reported.
diff --git a/themes/hugo-coder/archetypes/default.md b/themes/hugo-coder/archetypes/default.md
deleted file mode 100644
index c2de8e4..0000000
--- a/themes/hugo-coder/archetypes/default.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-draft = true
-date = {{ .Date }}
-title = ""
-slug = ""
-+++
diff --git a/themes/hugo-coder/archetypes/posts.md b/themes/hugo-coder/archetypes/posts.md
deleted file mode 100644
index 76242f8..0000000
--- a/themes/hugo-coder/archetypes/posts.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-draft = true
-date = {{ .Date }}
-title = ""
-description = ""
-slug = ""
-authors = []
-tags = []
-categories = []
-externalLink = ""
-series = []
-+++
diff --git a/themes/hugo-coder/assets/js/coder.js b/themes/hugo-coder/assets/js/coder.js
deleted file mode 100644
index 9b46cfc..0000000
--- a/themes/hugo-coder/assets/js/coder.js
+++ /dev/null
@@ -1,97 +0,0 @@
-const body = document.body;
-const darkModeToggle = document.getElementById('dark-mode-toggle');
-const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
-
-// Check if user preference is set, if not check value of body class for light or dark else it means that colorscheme = auto
-if (localStorage.getItem("colorscheme")) {
- setTheme(localStorage.getItem("colorscheme"));
-} else if (body.classList.contains('colorscheme-light') || body.classList.contains('colorscheme-dark')) {
- setTheme(body.classList.contains("colorscheme-dark") ? "dark" : "light");
-} else {
- setTheme(darkModeMediaQuery.matches ? "dark" : "light");
-}
-
-if (darkModeToggle) {
- darkModeToggle.addEventListener('click', () => {
- let theme = body.classList.contains("colorscheme-dark") ? "light" : "dark";
- setTheme(theme);
- rememberTheme(theme);
- });
-}
-
-darkModeMediaQuery.addListener((event) => {
- setTheme(event.matches ? "dark" : "light");
-});
-
-document.addEventListener("DOMContentLoaded", function () {
- let node = document.querySelector('.preload-transitions');
- node.classList.remove('preload-transitions');
-});
-
-function setTheme(theme) {
- body.classList.remove('colorscheme-auto');
- let inverse = theme === 'dark' ? 'light' : 'dark';
- body.classList.remove('colorscheme-' + inverse);
- body.classList.add('colorscheme-' + theme);
- document.documentElement.style['color-scheme'] = theme;
-
- function waitForElm(selector) {
- return new Promise(resolve => {
- if (document.querySelector(selector)) {
- return resolve(document.querySelector(selector));
- }
-
- const observer = new MutationObserver(mutations => {
- if (document.querySelector(selector)) {
- resolve(document.querySelector(selector));
- observer.disconnect();
- }
- });
-
- observer.observe(document.body, {
- childList: true,
- subtree: true
- });
- });
- }
-
- if (theme === 'dark') {
- const message = {
- type: 'set-theme',
- theme: 'github-dark'
- };
- waitForElm('.utterances-frame').then((iframe) => {
- iframe.contentWindow.postMessage(message, 'https://utteranc.es');
- })
-
- }
- else {
- const message = {
- type: 'set-theme',
- theme: 'github-light'
- };
- waitForElm('.utterances-frame').then((iframe) => {
- iframe.contentWindow.postMessage(message, 'https://utteranc.es');
- })
-
- }
-
- function sendMessage(message) {
- const iframe = document.querySelector('iframe.giscus-frame');
- if (!iframe) return;
- iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
- }
- sendMessage({
- setConfig: {
- theme: theme,
- },
- });
-
- // Create and send event
- const event = new Event('themeChanged');
- document.dispatchEvent(event);
-}
-
-function rememberTheme(theme) {
- localStorage.setItem('colorscheme', theme);
-}
diff --git a/themes/hugo-coder/assets/js/purify.min.js b/themes/hugo-coder/assets/js/purify.min.js
deleted file mode 100644
index 644aca0..0000000
--- a/themes/hugo-coder/assets/js/purify.min.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/*! @license DOMPurify 2.4.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.4.1/LICENSE */
-!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).DOMPurify=t()}(this,(function(){"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(e,n){return t=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},t(e,n)}function n(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function r(e,o,a){return r=n()?Reflect.construct:function(e,n,r){var o=[null];o.push.apply(o,n);var a=new(Function.bind.apply(e,o));return r&&t(a,r.prototype),a},r.apply(null,arguments)}function o(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1?n-1:0),o=1;o/gm),Y=f(/\${[\w\W]*}/gm),$=f(/^data-[\-\w.\u00B7-\uFFFF]/),K=f(/^aria-[\-\w]+$/),V=f(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),X=f(/^(?:\w+script|data):/i),Z=f(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),J=f(/^html$/i),Q=function(){return"undefined"==typeof window?null:window},ee=function(t,n){if("object"!==e(t)||"function"!=typeof t.createPolicy)return null;var r=null,o="data-tt-policy-suffix";n.currentScript&&n.currentScript.hasAttribute(o)&&(r=n.currentScript.getAttribute(o));var a="dompurify"+(r?"#"+r:"");try{return t.createPolicy(a,{createHTML:function(e){return e},createScriptURL:function(e){return e}})}catch(e){return console.warn("TrustedTypes policy "+a+" could not be created."),null}};var te=function t(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Q(),r=function(e){return t(e)};if(r.version="2.4.1",r.removed=[],!n||!n.document||9!==n.document.nodeType)return r.isSupported=!1,r;var a=n.document,i=n.document,l=n.DocumentFragment,c=n.HTMLTemplateElement,u=n.Node,s=n.Element,f=n.NodeFilter,p=n.NamedNodeMap,d=void 0===p?n.NamedNodeMap||n.MozNamedAttrMap:p,h=n.HTMLFormElement,g=n.DOMParser,y=n.trustedTypes,O=s.prototype,te=R(O,"cloneNode"),ne=R(O,"nextSibling"),re=R(O,"childNodes"),oe=R(O,"parentNode");if("function"==typeof c){var ae=i.createElement("template");ae.content&&ae.content.ownerDocument&&(i=ae.content.ownerDocument)}var ie=ee(y,a),le=ie?ie.createHTML(""):"",ce=i,ue=ce.implementation,se=ce.createNodeIterator,me=ce.createDocumentFragment,fe=ce.getElementsByTagName,pe=a.importNode,de={};try{de=L(i).documentMode?i.documentMode:{}}catch(e){}var he={};r.isSupported="function"==typeof oe&&ue&&void 0!==ue.createHTMLDocument&&9!==de;var ge,ye,be=W,ve=q,Te=Y,Ne=$,Ae=K,Ee=X,we=Z,Se=V,xe=null,_e=D({},[].concat(o(M),o(C),o(I),o(U),o(z))),ke=null,Oe=D({},[].concat(o(P),o(j),o(B),o(G))),De=Object.seal(Object.create(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),Le=null,Re=null,Me=!0,Ce=!0,Ie=!1,Fe=!1,Ue=!1,He=!1,ze=!1,Pe=!1,je=!1,Be=!1,Ge=!0,We=!1,qe="user-content-",Ye=!0,$e=!1,Ke={},Ve=null,Xe=D({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),Ze=null,Je=D({},["audio","video","img","source","image","track"]),Qe=null,et=D({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),tt="http://www.w3.org/1998/Math/MathML",nt="http://www.w3.org/2000/svg",rt="http://www.w3.org/1999/xhtml",ot=rt,at=!1,it=null,lt=D({},[tt,nt,rt],A),ct=["application/xhtml+xml","text/html"],ut="text/html",st=null,mt=i.createElement("form"),ft=function(e){return e instanceof RegExp||e instanceof Function},pt=function(t){st&&st===t||(t&&"object"===e(t)||(t={}),t=L(t),ge=ge=-1===ct.indexOf(t.PARSER_MEDIA_TYPE)?ut:t.PARSER_MEDIA_TYPE,ye="application/xhtml+xml"===ge?A:N,xe="ALLOWED_TAGS"in t?D({},t.ALLOWED_TAGS,ye):_e,ke="ALLOWED_ATTR"in t?D({},t.ALLOWED_ATTR,ye):Oe,it="ALLOWED_NAMESPACES"in t?D({},t.ALLOWED_NAMESPACES,A):lt,Qe="ADD_URI_SAFE_ATTR"in t?D(L(et),t.ADD_URI_SAFE_ATTR,ye):et,Ze="ADD_DATA_URI_TAGS"in t?D(L(Je),t.ADD_DATA_URI_TAGS,ye):Je,Ve="FORBID_CONTENTS"in t?D({},t.FORBID_CONTENTS,ye):Xe,Le="FORBID_TAGS"in t?D({},t.FORBID_TAGS,ye):{},Re="FORBID_ATTR"in t?D({},t.FORBID_ATTR,ye):{},Ke="USE_PROFILES"in t&&t.USE_PROFILES,Me=!1!==t.ALLOW_ARIA_ATTR,Ce=!1!==t.ALLOW_DATA_ATTR,Ie=t.ALLOW_UNKNOWN_PROTOCOLS||!1,Fe=t.SAFE_FOR_TEMPLATES||!1,Ue=t.WHOLE_DOCUMENT||!1,Pe=t.RETURN_DOM||!1,je=t.RETURN_DOM_FRAGMENT||!1,Be=t.RETURN_TRUSTED_TYPE||!1,ze=t.FORCE_BODY||!1,Ge=!1!==t.SANITIZE_DOM,We=t.SANITIZE_NAMED_PROPS||!1,Ye=!1!==t.KEEP_CONTENT,$e=t.IN_PLACE||!1,Se=t.ALLOWED_URI_REGEXP||Se,ot=t.NAMESPACE||rt,t.CUSTOM_ELEMENT_HANDLING&&ft(t.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(De.tagNameCheck=t.CUSTOM_ELEMENT_HANDLING.tagNameCheck),t.CUSTOM_ELEMENT_HANDLING&&ft(t.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(De.attributeNameCheck=t.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),t.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof t.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(De.allowCustomizedBuiltInElements=t.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Fe&&(Ce=!1),je&&(Pe=!0),Ke&&(xe=D({},o(z)),ke=[],!0===Ke.html&&(D(xe,M),D(ke,P)),!0===Ke.svg&&(D(xe,C),D(ke,j),D(ke,G)),!0===Ke.svgFilters&&(D(xe,I),D(ke,j),D(ke,G)),!0===Ke.mathMl&&(D(xe,U),D(ke,B),D(ke,G))),t.ADD_TAGS&&(xe===_e&&(xe=L(xe)),D(xe,t.ADD_TAGS,ye)),t.ADD_ATTR&&(ke===Oe&&(ke=L(ke)),D(ke,t.ADD_ATTR,ye)),t.ADD_URI_SAFE_ATTR&&D(Qe,t.ADD_URI_SAFE_ATTR,ye),t.FORBID_CONTENTS&&(Ve===Xe&&(Ve=L(Ve)),D(Ve,t.FORBID_CONTENTS,ye)),Ye&&(xe["#text"]=!0),Ue&&D(xe,["html","head","body"]),xe.table&&(D(xe,["tbody"]),delete Le.tbody),m&&m(t),st=t)},dt=D({},["mi","mo","mn","ms","mtext"]),ht=D({},["foreignobject","desc","title","annotation-xml"]),gt=D({},["title","style","font","a","script"]),yt=D({},C);D(yt,I),D(yt,F);var bt=D({},U);D(bt,H);var vt=function(e){var t=oe(e);t&&t.tagName||(t={namespaceURI:ot,tagName:"template"});var n=N(e.tagName),r=N(t.tagName);return!!it[e.namespaceURI]&&(e.namespaceURI===nt?t.namespaceURI===rt?"svg"===n:t.namespaceURI===tt?"svg"===n&&("annotation-xml"===r||dt[r]):Boolean(yt[n]):e.namespaceURI===tt?t.namespaceURI===rt?"math"===n:t.namespaceURI===nt?"math"===n&&ht[r]:Boolean(bt[n]):e.namespaceURI===rt?!(t.namespaceURI===nt&&!ht[r])&&(!(t.namespaceURI===tt&&!dt[r])&&(!bt[n]&&(gt[n]||!yt[n]))):!("application/xhtml+xml"!==ge||!it[e.namespaceURI]))},Tt=function(e){T(r.removed,{element:e});try{e.parentNode.removeChild(e)}catch(t){try{e.outerHTML=le}catch(t){e.remove()}}},Nt=function(e,t){try{T(r.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){T(r.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e&&!ke[e])if(Pe||je)try{Tt(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},At=function(e){var t,n;if(ze)e=" "+e;else{var r=E(e,/^[\r\n\t ]+/);n=r&&r[0]}"application/xhtml+xml"===ge&&ot===rt&&(e=''+e+"");var o=ie?ie.createHTML(e):e;if(ot===rt)try{t=(new g).parseFromString(o,ge)}catch(e){}if(!t||!t.documentElement){t=ue.createDocument(ot,"template",null);try{t.documentElement.innerHTML=at?"":o}catch(e){}}var a=t.body||t.documentElement;return e&&n&&a.insertBefore(i.createTextNode(n),a.childNodes[0]||null),ot===rt?fe.call(t,Ue?"html":"body")[0]:Ue?t.documentElement:a},Et=function(e){return se.call(e.ownerDocument||e,e,f.SHOW_ELEMENT|f.SHOW_COMMENT|f.SHOW_TEXT,null,!1)},wt=function(e){return e instanceof h&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||!(e.attributes instanceof d)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes)},St=function(t){return"object"===e(u)?t instanceof u:t&&"object"===e(t)&&"number"==typeof t.nodeType&&"string"==typeof t.nodeName},xt=function(e,t,n){he[e]&&b(he[e],(function(e){e.call(r,t,n,st)}))},_t=function(e){var t;if(xt("beforeSanitizeElements",e,null),wt(e))return Tt(e),!0;if(_(/[\u0080-\uFFFF]/,e.nodeName))return Tt(e),!0;var n=ye(e.nodeName);if(xt("uponSanitizeElement",e,{tagName:n,allowedTags:xe}),e.hasChildNodes()&&!St(e.firstElementChild)&&(!St(e.content)||!St(e.content.firstElementChild))&&_(/<[/\w]/g,e.innerHTML)&&_(/<[/\w]/g,e.textContent))return Tt(e),!0;if("select"===n&&_(/=0;--i)o.insertBefore(te(a[i],!0),ne(e))}return Tt(e),!0}return e instanceof s&&!vt(e)?(Tt(e),!0):"noscript"!==n&&"noembed"!==n||!_(/<\/no(script|embed)/i,e.innerHTML)?(Fe&&3===e.nodeType&&(t=e.textContent,t=w(t,be," "),t=w(t,ve," "),t=w(t,Te," "),e.textContent!==t&&(T(r.removed,{element:e.cloneNode()}),e.textContent=t)),xt("afterSanitizeElements",e,null),!1):(Tt(e),!0)},kt=function(e,t,n){if(Ge&&("id"===t||"name"===t)&&(n in i||n in mt))return!1;if(Ce&&!Re[t]&&_(Ne,t));else if(Me&&_(Ae,t));else if(!ke[t]||Re[t]){if(!(Ot(e)&&(De.tagNameCheck instanceof RegExp&&_(De.tagNameCheck,e)||De.tagNameCheck instanceof Function&&De.tagNameCheck(e))&&(De.attributeNameCheck instanceof RegExp&&_(De.attributeNameCheck,t)||De.attributeNameCheck instanceof Function&&De.attributeNameCheck(t))||"is"===t&&De.allowCustomizedBuiltInElements&&(De.tagNameCheck instanceof RegExp&&_(De.tagNameCheck,n)||De.tagNameCheck instanceof Function&&De.tagNameCheck(n))))return!1}else if(Qe[t]);else if(_(Se,w(n,we,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==S(n,"data:")||!Ze[e]){if(Ie&&!_(Ee,w(n,we,"")));else if(n)return!1}else;return!0},Ot=function(e){return e.indexOf("-")>0},Dt=function(t){var n,o,a,i;xt("beforeSanitizeAttributes",t,null);var l=t.attributes;if(l){var c={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ke};for(i=l.length;i--;){var u=n=l[i],s=u.name,m=u.namespaceURI;if(o="value"===s?n.value:x(n.value),a=ye(s),c.attrName=a,c.attrValue=o,c.keepAttr=!0,c.forceKeepAttr=void 0,xt("uponSanitizeAttribute",t,c),o=c.attrValue,!c.forceKeepAttr&&(Nt(s,t),c.keepAttr))if(_(/\/>/i,o))Nt(s,t);else{Fe&&(o=w(o,be," "),o=w(o,ve," "),o=w(o,Te," "));var f=ye(t.nodeName);if(kt(f,a,o)){if(!We||"id"!==a&&"name"!==a||(Nt(s,t),o=qe+o),ie&&"object"===e(y)&&"function"==typeof y.getAttributeType)if(m);else switch(y.getAttributeType(f,a)){case"TrustedHTML":o=ie.createHTML(o);break;case"TrustedScriptURL":o=ie.createScriptURL(o)}try{m?t.setAttributeNS(m,s,o):t.setAttribute(s,o),v(r.removed)}catch(e){}}}}xt("afterSanitizeAttributes",t,null)}},Lt=function e(t){var n,r=Et(t);for(xt("beforeSanitizeShadowDOM",t,null);n=r.nextNode();)xt("uponSanitizeShadowNode",n,null),_t(n)||(n.content instanceof l&&e(n.content),Dt(n));xt("afterSanitizeShadowDOM",t,null)};return r.sanitize=function(t){var o,i,c,s,m,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if((at=!t)&&(t="\x3c!--\x3e"),"string"!=typeof t&&!St(t)){if("function"!=typeof t.toString)throw k("toString is not a function");if("string"!=typeof(t=t.toString()))throw k("dirty is not a string, aborting")}if(!r.isSupported){if("object"===e(n.toStaticHTML)||"function"==typeof n.toStaticHTML){if("string"==typeof t)return n.toStaticHTML(t);if(St(t))return n.toStaticHTML(t.outerHTML)}return t}if(He||pt(f),r.removed=[],"string"==typeof t&&($e=!1),$e){if(t.nodeName){var p=ye(t.nodeName);if(!xe[p]||Le[p])throw k("root node is forbidden and cannot be sanitized in-place")}}else if(t instanceof u)1===(i=(o=At("\x3c!----\x3e")).ownerDocument.importNode(t,!0)).nodeType&&"BODY"===i.nodeName||"HTML"===i.nodeName?o=i:o.appendChild(i);else{if(!Pe&&!Fe&&!Ue&&-1===t.indexOf("<"))return ie&&Be?ie.createHTML(t):t;if(!(o=At(t)))return Pe?null:Be?le:""}o&&ze&&Tt(o.firstChild);for(var d=Et($e?t:o);c=d.nextNode();)3===c.nodeType&&c===s||_t(c)||(c.content instanceof l&&Lt(c.content),Dt(c),s=c);if(s=null,$e)return t;if(Pe){if(je)for(m=me.call(o.ownerDocument);o.firstChild;)m.appendChild(o.firstChild);else m=o;return ke.shadowroot&&(m=pe.call(a,m,!0)),m}var h=Ue?o.outerHTML:o.innerHTML;return Ue&&xe["!doctype"]&&o.ownerDocument&&o.ownerDocument.doctype&&o.ownerDocument.doctype.name&&_(J,o.ownerDocument.doctype.name)&&(h="\n"+h),Fe&&(h=w(h,be," "),h=w(h,ve," "),h=w(h,Te," ")),ie&&Be?ie.createHTML(h):h},r.setConfig=function(e){pt(e),He=!0},r.clearConfig=function(){st=null,He=!1},r.isValidAttribute=function(e,t,n){st||pt({});var r=ye(e),o=ye(t);return kt(r,o,n)},r.addHook=function(e,t){"function"==typeof t&&(he[e]=he[e]||[],T(he[e],t))},r.removeHook=function(e){if(he[e])return v(he[e])},r.removeHooks=function(e){he[e]&&(he[e]=[])},r.removeAllHooks=function(){he={}},r}();return te}));
-//# sourceMappingURL=purify.min.js.map
diff --git a/themes/hugo-coder/assets/scss/_base.scss b/themes/hugo-coder/assets/scss/_base.scss
deleted file mode 100644
index 6344d2c..0000000
--- a/themes/hugo-coder/assets/scss/_base.scss
+++ /dev/null
@@ -1,290 +0,0 @@
-*,
-*:after,
-*:before {
- box-sizing: inherit;
-}
-
-html {
- box-sizing: border-box;
- font-size: 62.5%;
-}
-
-body {
- color: $fg-color;
- background-color: $bg-color;
- font-family: $font-family;
- font-size: 1.8em;
- font-weight: 400;
- line-height: 1.8em;
-
- @media only screen and (max-width: 768px) {
- font-size: 1.6em;
- line-height: 1.6em;
- }
-}
-
-iframe[src*="disqus"] {
- color-scheme: light;
-}
-
-a {
- font-weight: 500;
- color: $link-color;
- text-decoration: none;
- transition: all 0.25s ease-in;
-
- &:focus,
- &:hover {
- text-decoration: underline;
- }
-}
-
-p {
- margin: 2rem 0 2rem 0;
- @media only screen and (max-width: 768px) {
- margin: 1.5rem 0 1.5rem 0;
- }
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- font-family: $font-family;
- font-weight: 600;
- color: $alt-fg-color;
- margin: 4rem 0 2.5rem 0;
-
- &:hover .heading-link {
- visibility: visible;
- }
-
- .heading-link {
- color: $link-color;
- font-weight: inherit;
- text-decoration: none;
- font-size: 80%;
- visibility: hidden;
- }
-
- .title-link {
- color: inherit;
- font-weight: inherit;
- text-decoration: none;
- }
-}
-
-h1 {
- font-size: 3.2rem;
- line-height: 3.6rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 3rem;
- line-height: 3.4rem;
- }
-}
-
-h2 {
- font-size: 2.8rem;
- line-height: 3.2rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 2.6rem;
- line-height: 3rem;
- }
-}
-
-h3 {
- font-size: 2.4rem;
- line-height: 2.8rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 2.2rem;
- line-height: 2.6rem;
- }
-}
-
-h4 {
- font-size: 2.2rem;
- line-height: 2.6rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 2rem;
- line-height: 2.4rem;
- }
-}
-
-h5 {
- font-size: 2rem;
- line-height: 2.4rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 1.8rem;
- line-height: 2.2rem;
- }
-}
-
-h6 {
- font-size: 1.8rem;
- line-height: 2.2rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 1.6rem;
- line-height: 2rem;
- }
-}
-
-b,
-strong {
- font-weight: 700;
-}
-
-.highlight {
- div,
- pre {
- margin: 2rem 0 2rem;
- padding: 1rem;
- border-radius: 1rem;
- overflow-x: auto;
- }
-}
-
-pre {
- display: block;
- font-family: $code-font-family;
- font-size: 1.6rem;
- font-weight: 400;
- line-height: 2.6rem;
- overflow-x: auto;
- margin: 2rem 0 2rem;
- padding: 1rem;
- border-radius: 1rem;
-
- code {
- display: inline-block;
- background-color: inherit;
- color: inherit;
- }
-}
-
-code {
- font-family: $code-font-family;
- font-size: 1.6rem;
- font-weight: 400;
- border-radius: 0.6rem;
- padding: 0.3rem 0.6rem;
- background-color: $darker-alt-bg-color;
- color: $fg-color;
- @media only screen and (max-width: 768px) {
- font-size: 1.5rem;
- }
-}
-
-blockquote {
- border-left: 2px solid $alt-bg-color;
- padding-left: 2rem;
- line-height: 2.2rem;
- font-weight: 400;
- font-style: italic;
-}
-* {
- -webkit-tap-highlight-color: transparent;
-}
-
-th,
-td {
- padding: 1.6rem;
-}
-
-table {
- border-collapse: collapse;
-}
-
-table td,
-table th {
- border: 2px solid $alt-fg-color;
-}
-
-table tr:first-child th {
- border-top: 0;
-}
-
-table tr:last-child td {
- border-bottom: 0;
-}
-
-table tr td:first-child,
-table tr th:first-child {
- border-left: 0;
-}
-
-table tr td:last-child,
-table tr th:last-child {
- border-right: 0;
-}
-
-img {
- max-width: 100%;
-}
-
-figure {
- text-align: center;
-}
-
-.footnotes {
- ol li p {
- margin: 0;
- }
-}
-
-.preload-transitions * {
- $null-transition: none !important;
-
- -webkit-transition: $null-transition;
- -moz-transition: $null-transition;
- -ms-transition: $null-transition;
- -o-transition: $null-transition;
- transition: $null-transition;
-}
-
-.wrapper {
- display: flex;
- flex-direction: column;
-
- min-height: 100vh;
- width: 100%;
-}
-
-.container {
- margin: 1rem auto;
- max-width: 90rem;
- width: 100%;
- padding-left: 2rem;
- padding-right: 2rem;
-}
-
-.fab {
- font-weight: 400;
-}
-
-.fas {
- font-weight: 700;
-}
-
-.float-right {
- float: right;
-}
-
-.float-left {
- float: left;
-}
-
-.fab {
- font-weight: 400;
-}
-
-.fas {
- font-weight: 900;
-}
diff --git a/themes/hugo-coder/assets/scss/_base_dark.scss b/themes/hugo-coder/assets/scss/_base_dark.scss
deleted file mode 100644
index 4a1490d..0000000
--- a/themes/hugo-coder/assets/scss/_base_dark.scss
+++ /dev/null
@@ -1,91 +0,0 @@
-@mixin base_dark {
- color: $fg-color-dark;
- background-color: $bg-color-dark;
-
- a {
- color: $link-color-dark;
- }
-
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- color: $alt-fg-color-dark;
-
- &:hover .heading-link {
- visibility: visible;
- }
-
- .heading-link {
- color: $link-color-dark;
- font-weight: inherit;
- text-decoration: none;
- font-size: 80%;
- visibility: hidden;
- }
-
- .title-link {
- color: inherit;
- font-weight: inherit;
- text-decoration: none;
- }
- }
-
- pre code {
- background-color: inherit;
- color: inherit;
- }
-
- code {
- background-color: $lighter-alt-bg-color-dark;
- color: $fg-color-dark;
- }
-
- blockquote {
- border-left: 2px solid $alt-bg-color-dark;
- }
-
- th,
- td {
- padding: 1.6rem;
- }
-
- table {
- border-collapse: collapse;
- }
-
- table td,
- table th {
- border: 2px solid $alt-fg-color-dark;
- }
-
- table tr:first-child th {
- border-top: 0;
- }
-
- table tr:last-child td {
- border-bottom: 0;
- }
-
- table tr td:first-child,
- table tr th:first-child {
- border-left: 0;
- }
-
- table tr td:last-child,
- table tr th:last-child {
- border-right: 0;
- }
-}
-
-body.colorscheme-dark {
- @include base_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include base_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_base_rtl.scss b/themes/hugo-coder/assets/scss/_base_rtl.scss
deleted file mode 100644
index e237fd5..0000000
--- a/themes/hugo-coder/assets/scss/_base_rtl.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-body.rtl {
- direction: rtl;
-
- pre {
- direction: ltr;
- }
-
- blockquote {
- border-left: none;
- border-right: 2px solid $alt-bg-color;
- padding-left: 0;
- padding-right: 1.6rem;
- }
-
- table tr td:first-child,
- table tr th:first-child {
- border-right: 0;
- }
-
- table tr td:last-child,
- table tr th:last-child {
- border-left: 0;
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_content.scss b/themes/hugo-coder/assets/scss/_content.scss
deleted file mode 100644
index 8e608e9..0000000
--- a/themes/hugo-coder/assets/scss/_content.scss
+++ /dev/null
@@ -1,253 +0,0 @@
-.content {
- flex: 1;
- display: flex;
- margin-top: 1.6rem;
- margin-bottom: 3.2rem;
- @media only screen and (max-width: 768px) {
- margin-top: 1rem;
- margin-bottom: 1.6rem;
- }
-
- header {
- margin-top: 6.4rem;
- margin-bottom: 3.2rem;
-
- h1 {
- font-size: 4.2rem;
- line-height: 4.6rem;
- margin: 0;
-
- @media only screen and (max-width: 768px) {
- font-size: 4rem;
- line-height: 4.4rem;
- }
- }
- }
-
- article {
- a:where(.external-link):not(:has(img)):after {
- @extend %fa-icon;
- @extend .fa-solid;
- content: fa-content($fa-var-external-link);
- padding-left: 0.5em;
- font-size: 0.75em;
- display: inline;
- }
-
- details {
- summary {
- cursor: pointer;
- }
- }
-
- footer {
- margin-top: 4rem;
-
- .see-also {
- margin: 3.2rem 0;
-
- h3 {
- margin: 3.2rem 0;
- }
- }
- }
-
- p {
- text-align: justify;
- text-justify: auto;
- -ms-hyphens: auto;
- -webkit-hyphens: auto;
- hyphens: auto;
- }
- }
-
- .post {
- .post-title {
- margin-bottom: 0.75em;
- }
-
- .post-meta {
- i {
- text-align: center;
- width: 1.6rem;
- margin-left: 0;
- margin-right: 0.5rem;
- }
-
- .date {
- .posted-on {
- margin-left: 0;
- margin-right: 1.5rem;
- }
- }
-
- .tags {
- .tag {
- display: inline-block;
- padding: 0.3rem 0.6rem;
- background-color: $alt-bg-color;
- border-radius: 0.6rem;
- line-height: 1.5em;
-
- a {
- color: $fg-color;
- }
-
- a:active {
- color: $fg-color;
- }
- }
- }
- }
- }
-
- figure {
- margin: 0;
- padding: 0;
- }
-
- figcaption p {
- text-align: center;
- font-style: italic;
- font-size: 1.6rem;
- margin: 0;
- }
-}
-
-.avatar img {
- width: 20rem;
- height: auto;
- border-radius: 50%;
-
- @media only screen and (max-width: 768px) {
- width: 17rem;
- }
-}
-
-.list {
- ul {
- margin: 3.2rem 0 3.2rem 0;
- list-style: none;
- padding: 0;
-
- li {
- font-size: 1.8rem;
-
- @media only screen and (max-width: 768px) {
- margin: 1.6rem 0 1.6rem 0;
- }
-
- .date {
- display: inline-block;
- flex: 1;
- width: 20rem;
- text-align: right;
- margin-right: 3rem;
-
- @media only screen and (max-width: 768px) {
- display: block;
- text-align: left;
- }
- }
-
- .title {
- font-size: 1.8rem;
- flex: 2;
- color: $fg-color;
- font-family: $font-family;
- font-weight: 700;
-
- &:hover,
- &:focus {
- color: $link-color;
- }
- }
- }
- }
-
- ul:not(.pagination) {
- li {
- @media only screen and (min-width: 768.1px) {
- display: flex;
- }
- }
- }
-}
-
-.centered {
- display: flex;
- align-items: center;
- justify-content: center;
-
- .about {
- text-align: center;
-
- h1 {
- margin-top: 2rem;
- margin-bottom: 0.5rem;
- }
-
- h2 {
- margin-top: 1rem;
- margin-bottom: 0.5rem;
- font-size: 2.4rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 2rem;
- }
- }
-
- ul {
- list-style: none;
- margin: 3rem 0 1rem 0;
- padding: 0;
- cursor: pointer;
-
- li {
- display: inline-block;
- position: relative;
-
- a {
- color: $fg-color;
- text-transform: uppercase;
- margin-left: 1rem;
- margin-right: 1rem;
- font-size: 1.6rem;
-
- &:hover,
- &:focus {
- color: $link-color;
- }
-
- @media only screen and (max-width: 768px) {
- font-size: 1.5rem;
- }
- }
- }
- }
- }
-
- .error {
- text-align: center;
-
- h1 {
- margin-top: 2rem;
- margin-bottom: 0.5rem;
- font-size: 4.6rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 3.2rem;
- }
- }
-
- h2 {
- margin-top: 2rem;
- margin-bottom: 3.2rem;
- font-size: 3.2rem;
-
- @media only screen and (max-width: 768px) {
- font-size: 2.8rem;
- }
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_content_dark.scss b/themes/hugo-coder/assets/scss/_content_dark.scss
deleted file mode 100644
index c4b961a..0000000
--- a/themes/hugo-coder/assets/scss/_content_dark.scss
+++ /dev/null
@@ -1,59 +0,0 @@
-@mixin content_dark {
- .content {
- .post {
- .tags {
- .tag {
- background-color: $alt-bg-color-dark;
-
- a {
- color: $fg-color-dark;
- }
- a:active {
- color: $fg-color-dark;
- }
- }
- }
- }
- .list {
- ul {
- li {
- .title {
- color: $fg-color-dark;
-
- &:hover,
- &:focus {
- color: $link-color-dark;
- }
- }
- }
- }
- }
-
- .centered {
- .about {
- ul {
- li {
- a {
- color: $fg-color-dark;
-
- &:hover,
- &:focus {
- color: $link-color-dark;
- }
- }
- }
- }
- }
- }
- }
-}
-
-body.colorscheme-dark {
- @include content_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include content_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_content_rtl.scss b/themes/hugo-coder/assets/scss/_content_rtl.scss
deleted file mode 100644
index e3868f9..0000000
--- a/themes/hugo-coder/assets/scss/_content_rtl.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-body.rtl {
- .content {
- .post {
- .post-meta {
- .posted-on {
- margin-left: 1.5rem;
- margin-right: 0;
- }
- }
-
- .tags,
- .categories {
- i {
- margin-left: 0.5rem;
- margin-right: 0;
- }
- }
- }
- }
-
- .list {
- ul {
- li {
- .date {
- text-align: left;
- margin-left: 3rem;
- margin-right: 0;
-
- @media only screen and (max-width: 768px) {
- text-align: right;
- }
- }
- }
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_float.scss b/themes/hugo-coder/assets/scss/_float.scss
deleted file mode 100644
index 97cddc5..0000000
--- a/themes/hugo-coder/assets/scss/_float.scss
+++ /dev/null
@@ -1,38 +0,0 @@
-.float-container {
- bottom: 2rem;
- right: 2rem;
- z-index: 100;
- position: fixed;
- font-size: 1.6em;
-
- a {
- position: relative;
- display: inline-block;
- width: 3rem;
- height: 3rem;
- font-size: 2rem;
- color: $alt-fg-color;
- background-color: $alt-bg-color;
- border-radius: 0.2rem;
- opacity: 0.5;
- transition: all 0.25s ease-in;
-
- &:hover,
- &:focus {
- color: $link-color;
- opacity: 1;
-
- @media only screen and (max-width: 768px) {
- color: $alt-fg-color;
- opacity: 0.5;
- }
- }
-
- i {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_float_dark.scss b/themes/hugo-coder/assets/scss/_float_dark.scss
deleted file mode 100644
index 348dafe..0000000
--- a/themes/hugo-coder/assets/scss/_float_dark.scss
+++ /dev/null
@@ -1,27 +0,0 @@
-@mixin float_dark {
- .float-container {
- a {
- color: $alt-fg-color-dark;
- background-color: $alt-bg-color-dark;
-
- &:hover,
- &:focus {
- color: $link-color-dark;
-
- @media only screen and (max-width: 768px) {
- color: $alt-fg-color-dark;
- }
- }
- }
- }
-}
-
-body.colorscheme-dark {
- @include float_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include float_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_footer.scss b/themes/hugo-coder/assets/scss/_footer.scss
deleted file mode 100644
index a223a34..0000000
--- a/themes/hugo-coder/assets/scss/_footer.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-.footer {
- width: 100%;
- text-align: center;
- font-size: 1.6rem;
- line-height: 2rem;
- margin-bottom: 1rem;
- @media only screen and (max-width: 768px) {
- font-size: 1.5rem;
- }
- a {
- color: $link-color;
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_footer_dark.scss b/themes/hugo-coder/assets/scss/_footer_dark.scss
deleted file mode 100644
index dd02be8..0000000
--- a/themes/hugo-coder/assets/scss/_footer_dark.scss
+++ /dev/null
@@ -1,17 +0,0 @@
-@mixin footer_dark {
- .footer {
- a {
- color: $link-color-dark;
- }
- }
-}
-
-body.colorscheme-dark {
- @include footer_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include footer_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_mastodon.scss b/themes/hugo-coder/assets/scss/_mastodon.scss
deleted file mode 100644
index db641cf..0000000
--- a/themes/hugo-coder/assets/scss/_mastodon.scss
+++ /dev/null
@@ -1,73 +0,0 @@
-.mastodon-wrapper {
- display: flex;
- gap: 3rem;
- flex-direction: row;
-}
-
-.comment-level {
- max-width: 3rem;
- min-width: 3rem;
-}
-
-.reply-original {
- display: none;
-}
-
-.mastodon-comment {
- background-color: var(--body-background);
- border-radius: var(--card-border-radius);
- padding: var(--card-padding);
- margin-bottom: 1rem;
- display: flex;
- gap: 1rem;
- flex-direction: column;
- flex-grow: 2;
-
- .comment {
- display: flex;
- flex-direction: row;
- gap: 1rem;
- flex-wrap: true;
- }
-
- .comment-avatar img {
- width: 6rem;
- }
-
- .content {
- flex-grow: 2;
- }
-
- .comment-author {
- display: flex;
- flex-direction: column;
-
- &-name {
- font-weight: bold;
- a {
- display: flex;
- align-items: center;
- }
- }
-
- &-date {
- margin-left: auto;
- }
- }
-
- .disabled {
- color: var(--accent-color)
- }
-}
-
-.mastodon-comment-content p:first-child {
- margin-top: 0;
-}
-
-.mastodon {
- --dlg-bg: #282c37;
- --dlg-w: 600px;
- --dlg-color: #9baec8;
- --dlg-button-p: 0.75em 2em;
- --dlg-outline-c: #00D9F5;
-}
diff --git a/themes/hugo-coder/assets/scss/_navigation.scss b/themes/hugo-coder/assets/scss/_navigation.scss
deleted file mode 100644
index 8f94a38..0000000
--- a/themes/hugo-coder/assets/scss/_navigation.scss
+++ /dev/null
@@ -1,151 +0,0 @@
-.navigation {
- height: 6rem;
- width: 100%;
-
- a,
- span {
- display: inline;
- font-size: 1.7rem;
- font-family: $font-family;
- font-weight: 600;
- color: $fg-color;
- }
-
- a {
-
- &:hover,
- &:focus {
- color: $link-color;
- }
- }
-
- .navigation-title {
- letter-spacing: 0.1rem;
- text-transform: uppercase;
- }
-
- .navigation-list {
- float: right;
- list-style: none;
- margin-bottom: 0;
- margin-top: 0;
-
- @media only screen and (max-width: 768px) {
- position: relative;
- top: 2rem;
- right: 0;
- z-index: 5;
- visibility: hidden;
- opacity: 0;
- padding: 0;
- max-height: 0;
- width: 100%;
- background-color: $bg-color;
- border-top: solid 2px $alt-bg-color;
- border-bottom: solid 2px $alt-bg-color;
- transition: opacity 0.25s, max-height 0.15s linear;
- }
-
- .navigation-item {
- float: left;
- margin: 0;
- position: relative;
-
- @media only screen and (max-width: 768px) {
- float: none !important;
- text-align: center;
-
- a,
- span {
- line-height: 5rem;
- }
- }
-
- a,
- span {
- margin-left: 1rem;
- margin-right: 1rem;
- }
- }
-
- .separator {
- @media only screen and (max-width: 768px) {
- display: none;
- }
- }
-
- .menu-separator {
- @media only screen and (max-width: 768px) {
- border-top: 2px solid $fg-color;
- margin: 0 8rem;
-
- span {
- display: none;
- }
- }
- }
- }
-
- #dark-mode-toggle {
- margin: 1.7rem 0;
- font-size: 2.4rem;
- line-height: inherit;
- bottom: 2rem;
- left: 2rem;
- z-index: 100;
- position: fixed;
- }
-
- #menu-toggle {
- display: none;
-
- @media only screen and (max-width: 768px) {
- display: initial;
- position: relative;
- visibility: hidden;
-
- &:checked+label>i {
- color: $alt-bg-color;
- }
-
- &:checked+label+ul {
- visibility: visible;
- opacity: 1;
- max-height: 100rem;
- }
-
- &:focus-visible+label {
- outline-style: auto;
- }
- }
- }
-
- .menu-button {
- display: none;
-
- @media only screen and (max-width: 768px) {
- position: relative;
- display: block;
- font-size: 2.4rem;
- font-weight: 400;
- }
-
- i {
-
- &:hover,
- &:focus {
- color: $alt-fg-color;
- }
- }
- }
-
- i {
- color: $fg-color;
- cursor: pointer;
-
- &:hover,
- &:focus {
- color: $link-color;
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_navigation_dark.scss b/themes/hugo-coder/assets/scss/_navigation_dark.scss
deleted file mode 100644
index 4cbd554..0000000
--- a/themes/hugo-coder/assets/scss/_navigation_dark.scss
+++ /dev/null
@@ -1,68 +0,0 @@
-@mixin navigation_dark {
- .navigation {
-
- a,
- span {
- color: $fg-color-dark;
- }
-
- a {
-
- &:hover,
- &:focus {
- color: $link-color-dark;
- }
- }
-
- .navigation-list {
- @media only screen and (max-width: 768px) {
- background-color: $bg-color-dark;
- border-top: solid 2px $alt-bg-color-dark;
- border-bottom: solid 2px $alt-bg-color-dark;
- }
-
- .menu-separator {
- @media only screen and (max-width: 768px) {
- border-top: 2px solid $fg-color-dark;
- }
- }
- }
-
- #menu-toggle {
- @media only screen and (max-width: 768px) {
- &:checked+label>i {
- color: $alt-bg-color-dark;
- }
- }
- }
-
- i {
- color: $fg-color-dark;
-
- &:hover,
- &:focus {
- color: $link-color-dark;
- }
- }
-
- .menu-button {
- i {
-
- &:hover,
- &:focus {
- color: $alt-fg-color-dark;
- }
- }
- }
- }
-}
-
-body.colorscheme-dark {
- @include navigation_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include navigation_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_navigation_rtl.scss b/themes/hugo-coder/assets/scss/_navigation_rtl.scss
deleted file mode 100644
index 475c932..0000000
--- a/themes/hugo-coder/assets/scss/_navigation_rtl.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-body.rtl {
- .navigation-list {
- float: left;
-
- @media only screen and (max-width: 768px) {
- left: 0;
- right: auto;
- }
-
- .navigation-item {
- float: right;
- }
- }
-
- .menu-button {
- @media only screen and (max-width: 768px) {
- float: left;
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_notices.scss b/themes/hugo-coder/assets/scss/_notices.scss
deleted file mode 100644
index 1b3a5e7..0000000
--- a/themes/hugo-coder/assets/scss/_notices.scss
+++ /dev/null
@@ -1,111 +0,0 @@
-.notice {
- border-radius: 0.2rem;
- position: relative;
- margin: 2rem 0;
- padding: 0 0.75rem;
- overflow: auto;
-
- .notice-title {
- position: relative;
- font-weight: 700;
- margin: 0 -0.75rem;
- padding: 0.2rem 3.5rem;
- border-bottom: 1px solid $bg-color;
-
- i {
- position: absolute;
- top: 50%;
- left: 1.8rem;
- transform: translate(-50%, -50%);
- }
- }
-
- .notice-content {
- display: block;
- margin: 2rem 2rem;
- }
-}
-
-.notice.note {
- background-color: $bg-color-notice-note-content;
-
- .notice-title {
- background-color: $bg-color-notice-note-title;
-
- i {
- color: $fg-color-notice-note-icon;
- }
- }
-}
-
-.notice.tip {
- background-color: $bg-color-notice-tip-content;
-
- .notice-title {
- background-color: $bg-color-notice-tip-title;
-
- i {
- color: $fg-color-notice-tip-icon;
- }
- }
-}
-
-.notice.example {
- background-color: $bg-color-notice-example-content;
-
- .notice-title {
- background-color: $bg-color-notice-example-title;
-
- i {
- color: $fg-color-notice-example-icon;
- }
- }
-}
-
-.notice.question {
- background-color: $bg-color-notice-question-content;
-
- .notice-title {
- background-color: $bg-color-notice-question-title;
-
- i {
- color: $fg-color-notice-question-icon;
- }
- }
-}
-
-.notice.info {
- background-color: $bg-color-notice-info-content;
-
- .notice-title {
- background-color: $bg-color-notice-info-title;
-
- i {
- color: $fg-color-notice-info-icon;
- }
- }
-}
-
-.notice.warning {
- background-color: $bg-color-notice-warning-content;
-
- .notice-title {
- background-color: $bg-color-notice-warning-title;
-
- i {
- color: $fg-color-notice-warning-icon;
- }
- }
-}
-
-.notice.error {
- background-color: $bg-color-notice-error-content;
-
- .notice-title {
- background-color: $bg-color-notice-error-title;
-
- i {
- color: $fg-color-notice-error-icon;
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_notices_dark.scss b/themes/hugo-coder/assets/scss/_notices_dark.scss
deleted file mode 100644
index 00d3f3a..0000000
--- a/themes/hugo-coder/assets/scss/_notices_dark.scss
+++ /dev/null
@@ -1,17 +0,0 @@
-@mixin notices_dark {
- .notice {
- .notice-title {
- border-bottom: 1px solid $bg-color-dark;
- }
- }
-}
-
-body.colorscheme-dark {
- @include notices_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include notices_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_pagination.scss b/themes/hugo-coder/assets/scss/_pagination.scss
deleted file mode 100644
index da9d144..0000000
--- a/themes/hugo-coder/assets/scss/_pagination.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-.pagination {
- display: flex;
- justify-content: center;
-
- margin-top: 6rem;
- text-align: center;
- font-family: $font-family;
-
- li {
- display: inline;
- text-align: center;
- font-weight: 700;
- margin: 0 2px;
- text-align: center;
- width: 2.2rem;
-
- a {
- font-weight: 300;
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_syntax.scss b/themes/hugo-coder/assets/scss/_syntax.scss
deleted file mode 100644
index e5121ac..0000000
--- a/themes/hugo-coder/assets/scss/_syntax.scss
+++ /dev/null
@@ -1,86 +0,0 @@
-/* Background */ .bg { background-color: #ffffff; }
-/* PreWrapper */ .chroma { background-color: #ffffff; }
-/* Other */ .chroma .x { }
-/* Error */ .chroma .err { color: #a61717; background-color: #e3d2d2 }
-/* CodeLine */ .chroma .cl { }
-/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
-/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
-/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
-/* LineHighlight */ .chroma .hl { background-color: #ffffcc }
-/* LineNumbersTable */ .chroma .lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
-/* LineNumbers */ .chroma .ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
-/* Line */ .chroma .line { display: flex; }
-/* Keyword */ .chroma .k { color: #000000; font-weight: bold }
-/* KeywordConstant */ .chroma .kc { color: #000000; font-weight: bold }
-/* KeywordDeclaration */ .chroma .kd { color: #000000; font-weight: bold }
-/* KeywordNamespace */ .chroma .kn { color: #000000; font-weight: bold }
-/* KeywordPseudo */ .chroma .kp { color: #000000; font-weight: bold }
-/* KeywordReserved */ .chroma .kr { color: #000000; font-weight: bold }
-/* KeywordType */ .chroma .kt { color: #445588; font-weight: bold }
-/* Name */ .chroma .n { }
-/* NameAttribute */ .chroma .na { color: #008080 }
-/* NameBuiltin */ .chroma .nb { color: #0086b3 }
-/* NameBuiltinPseudo */ .chroma .bp { color: #999999 }
-/* NameClass */ .chroma .nc { color: #445588; font-weight: bold }
-/* NameConstant */ .chroma .no { color: #008080 }
-/* NameDecorator */ .chroma .nd { color: #3c5d5d; font-weight: bold }
-/* NameEntity */ .chroma .ni { color: #800080 }
-/* NameException */ .chroma .ne { color: #990000; font-weight: bold }
-/* NameFunction */ .chroma .nf { color: #990000; font-weight: bold }
-/* NameFunctionMagic */ .chroma .fm { }
-/* NameLabel */ .chroma .nl { color: #990000; font-weight: bold }
-/* NameNamespace */ .chroma .nn { color: #555555 }
-/* NameOther */ .chroma .nx { }
-/* NameProperty */ .chroma .py { }
-/* NameTag */ .chroma .nt { color: #000080 }
-/* NameVariable */ .chroma .nv { color: #008080 }
-/* NameVariableClass */ .chroma .vc { color: #008080 }
-/* NameVariableGlobal */ .chroma .vg { color: #008080 }
-/* NameVariableInstance */ .chroma .vi { color: #008080 }
-/* NameVariableMagic */ .chroma .vm { }
-/* Literal */ .chroma .l { }
-/* LiteralDate */ .chroma .ld { }
-/* LiteralString */ .chroma .s { color: #dd1144 }
-/* LiteralStringAffix */ .chroma .sa { color: #dd1144 }
-/* LiteralStringBacktick */ .chroma .sb { color: #dd1144 }
-/* LiteralStringChar */ .chroma .sc { color: #dd1144 }
-/* LiteralStringDelimiter */ .chroma .dl { color: #dd1144 }
-/* LiteralStringDoc */ .chroma .sd { color: #dd1144 }
-/* LiteralStringDouble */ .chroma .s2 { color: #dd1144 }
-/* LiteralStringEscape */ .chroma .se { color: #dd1144 }
-/* LiteralStringHeredoc */ .chroma .sh { color: #dd1144 }
-/* LiteralStringInterpol */ .chroma .si { color: #dd1144 }
-/* LiteralStringOther */ .chroma .sx { color: #dd1144 }
-/* LiteralStringRegex */ .chroma .sr { color: #009926 }
-/* LiteralStringSingle */ .chroma .s1 { color: #dd1144 }
-/* LiteralStringSymbol */ .chroma .ss { color: #990073 }
-/* LiteralNumber */ .chroma .m { color: #009999 }
-/* LiteralNumberBin */ .chroma .mb { color: #009999 }
-/* LiteralNumberFloat */ .chroma .mf { color: #009999 }
-/* LiteralNumberHex */ .chroma .mh { color: #009999 }
-/* LiteralNumberInteger */ .chroma .mi { color: #009999 }
-/* LiteralNumberIntegerLong */ .chroma .il { color: #009999 }
-/* LiteralNumberOct */ .chroma .mo { color: #009999 }
-/* Operator */ .chroma .o { color: #000000; font-weight: bold }
-/* OperatorWord */ .chroma .ow { color: #000000; font-weight: bold }
-/* Punctuation */ .chroma .p { }
-/* Comment */ .chroma .c { color: #999988; font-style: italic }
-/* CommentHashbang */ .chroma .ch { color: #999988; font-style: italic }
-/* CommentMultiline */ .chroma .cm { color: #999988; font-style: italic }
-/* CommentSingle */ .chroma .c1 { color: #999988; font-style: italic }
-/* CommentSpecial */ .chroma .cs { color: #999999; font-weight: bold; font-style: italic }
-/* CommentPreproc */ .chroma .cp { color: #999999; font-weight: bold; font-style: italic }
-/* CommentPreprocFile */ .chroma .cpf { color: #999999; font-weight: bold; font-style: italic }
-/* Generic */ .chroma .g { }
-/* GenericDeleted */ .chroma .gd { color: #000000; background-color: #ffdddd }
-/* GenericEmph */ .chroma .ge { color: #000000; font-style: italic }
-/* GenericError */ .chroma .gr { color: #aa0000 }
-/* GenericHeading */ .chroma .gh { color: #999999 }
-/* GenericInserted */ .chroma .gi { color: #000000; background-color: #ddffdd }
-/* GenericOutput */ .chroma .go { color: #888888 }
-/* GenericPrompt */ .chroma .gp { color: #555555 }
-/* GenericStrong */ .chroma .gs { font-weight: bold }
-/* GenericSubheading */ .chroma .gu { color: #aaaaaa }
-/* GenericTraceback */ .chroma .gt { color: #aa0000 }
-/* GenericUnderline */ .chroma .gl { text-decoration: underline }
-/* TextWhitespace */ .chroma .w { color: #bbbbbb }
diff --git a/themes/hugo-coder/assets/scss/_syntax_dark.scss b/themes/hugo-coder/assets/scss/_syntax_dark.scss
deleted file mode 100644
index b95004a..0000000
--- a/themes/hugo-coder/assets/scss/_syntax_dark.scss
+++ /dev/null
@@ -1,98 +0,0 @@
-@mixin syntax_dark {
- /* Background */ .bg { color: #c9d1d9; background-color: #0d1117; }
- /* PreWrapper */ .chroma { color: #c9d1d9; background-color: #0d1117; }
- /* Other */ .chroma .x { }
- /* Error */ .chroma .err { color: #f85149 }
- /* CodeLine */ .chroma .cl { }
- /* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
- /* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
- /* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
- /* LineHighlight */ .chroma .hl { background-color: #ffffcc }
- /* LineNumbersTable */ .chroma .lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #64686c }
- /* LineNumbers */ .chroma .ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #6e7681 }
- /* Line */ .chroma .line { display: flex; }
- /* Keyword */ .chroma .k { color: #ff7b72 }
- /* KeywordConstant */ .chroma .kc { color: #79c0ff }
- /* KeywordDeclaration */ .chroma .kd { color: #ff7b72 }
- /* KeywordNamespace */ .chroma .kn { color: #ff7b72 }
- /* KeywordPseudo */ .chroma .kp { color: #79c0ff }
- /* KeywordReserved */ .chroma .kr { color: #ff7b72 }
- /* KeywordType */ .chroma .kt { color: #ff7b72 }
- /* Name */ .chroma .n { }
- /* NameAttribute */ .chroma .na { }
- /* NameBuiltin */ .chroma .nb { }
- /* NameBuiltinPseudo */ .chroma .bp { }
- /* NameClass */ .chroma .nc { color: #f0883e; font-weight: bold }
- /* NameConstant */ .chroma .no { color: #79c0ff; font-weight: bold }
- /* NameDecorator */ .chroma .nd { color: #d2a8ff; font-weight: bold }
- /* NameEntity */ .chroma .ni { color: #ffa657 }
- /* NameException */ .chroma .ne { color: #f0883e; font-weight: bold }
- /* NameFunction */ .chroma .nf { color: #d2a8ff; font-weight: bold }
- /* NameFunctionMagic */ .chroma .fm { }
- /* NameLabel */ .chroma .nl { color: #79c0ff; font-weight: bold }
- /* NameNamespace */ .chroma .nn { color: #ff7b72 }
- /* NameOther */ .chroma .nx { }
- /* NameProperty */ .chroma .py { color: #79c0ff }
- /* NameTag */ .chroma .nt { color: #7ee787 }
- /* NameVariable */ .chroma .nv { color: #79c0ff }
- /* NameVariableClass */ .chroma .vc { }
- /* NameVariableGlobal */ .chroma .vg { }
- /* NameVariableInstance */ .chroma .vi { }
- /* NameVariableMagic */ .chroma .vm { }
- /* Literal */ .chroma .l { color: #a5d6ff }
- /* LiteralDate */ .chroma .ld { color: #79c0ff }
- /* LiteralString */ .chroma .s { color: #a5d6ff }
- /* LiteralStringAffix */ .chroma .sa { color: #79c0ff }
- /* LiteralStringBacktick */ .chroma .sb { color: #a5d6ff }
- /* LiteralStringChar */ .chroma .sc { color: #a5d6ff }
- /* LiteralStringDelimiter */ .chroma .dl { color: #79c0ff }
- /* LiteralStringDoc */ .chroma .sd { color: #a5d6ff }
- /* LiteralStringDouble */ .chroma .s2 { color: #a5d6ff }
- /* LiteralStringEscape */ .chroma .se { color: #79c0ff }
- /* LiteralStringHeredoc */ .chroma .sh { color: #79c0ff }
- /* LiteralStringInterpol */ .chroma .si { color: #a5d6ff }
- /* LiteralStringOther */ .chroma .sx { color: #a5d6ff }
- /* LiteralStringRegex */ .chroma .sr { color: #79c0ff }
- /* LiteralStringSingle */ .chroma .s1 { color: #a5d6ff }
- /* LiteralStringSymbol */ .chroma .ss { color: #a5d6ff }
- /* LiteralNumber */ .chroma .m { color: #a5d6ff }
- /* LiteralNumberBin */ .chroma .mb { color: #a5d6ff }
- /* LiteralNumberFloat */ .chroma .mf { color: #a5d6ff }
- /* LiteralNumberHex */ .chroma .mh { color: #a5d6ff }
- /* LiteralNumberInteger */ .chroma .mi { color: #a5d6ff }
- /* LiteralNumberIntegerLong */ .chroma .il { color: #a5d6ff }
- /* LiteralNumberOct */ .chroma .mo { color: #a5d6ff }
- /* Operator */ .chroma .o { color: #ff7b72; font-weight: bold }
- /* OperatorWord */ .chroma .ow { color: #ff7b72; font-weight: bold }
- /* Punctuation */ .chroma .p { }
- /* Comment */ .chroma .c { color: #8b949e; font-style: italic }
- /* CommentHashbang */ .chroma .ch { color: #8b949e; font-style: italic }
- /* CommentMultiline */ .chroma .cm { color: #8b949e; font-style: italic }
- /* CommentSingle */ .chroma .c1 { color: #8b949e; font-style: italic }
- /* CommentSpecial */ .chroma .cs { color: #8b949e; font-weight: bold; font-style: italic }
- /* CommentPreproc */ .chroma .cp { color: #8b949e; font-weight: bold; font-style: italic }
- /* CommentPreprocFile */ .chroma .cpf { color: #8b949e; font-weight: bold; font-style: italic }
- /* Generic */ .chroma .g { }
- /* GenericDeleted */ .chroma .gd { color: #ffa198; background-color: #490202 }
- /* GenericEmph */ .chroma .ge { font-style: italic }
- /* GenericError */ .chroma .gr { color: #ffa198 }
- /* GenericHeading */ .chroma .gh { color: #79c0ff; font-weight: bold }
- /* GenericInserted */ .chroma .gi { color: #56d364; background-color: #0f5323 }
- /* GenericOutput */ .chroma .go { color: #8b949e }
- /* GenericPrompt */ .chroma .gp { color: #8b949e }
- /* GenericStrong */ .chroma .gs { font-weight: bold }
- /* GenericSubheading */ .chroma .gu { color: #79c0ff }
- /* GenericTraceback */ .chroma .gt { color: #ff7b72 }
- /* GenericUnderline */ .chroma .gl { text-decoration: underline }
- /* TextWhitespace */ .chroma .w { color: #6e7681 }
-}
-
-body.colorscheme-dark {
- @include syntax_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include syntax_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_tabs.scss b/themes/hugo-coder/assets/scss/_tabs.scss
deleted file mode 100644
index b8466c8..0000000
--- a/themes/hugo-coder/assets/scss/_tabs.scss
+++ /dev/null
@@ -1,77 +0,0 @@
-.tabs {
- display: flex;
- flex-wrap: wrap;
- margin: 2rem 0 2rem 0;
- position: relative;
-
- &.tabs-left {
- justify-content: flex-start;
-
- label.tab-label {
- margin-right: 0.5rem;
- }
-
- .tab-content {
- border-radius: 0px 4px 4px 4px;
- }
- }
-
- &.tabs-right {
- justify-content: flex-end;
-
- label.tab-label {
- margin-left: 0.5rem;
- }
-
- .tab-content {
- border-radius: 4px 0px 4px 4px;
- }
- }
-
- input.tab-input {
- display: none;
- }
-
- label.tab-label {
- background-color: $alt-bg-color;
- border-color: $darker-alt-bg-color;
- border-radius: 4px 4px 0px 0px;
-
- border-style: solid;
- border-bottom-style: hidden;
-
- border-width: 1px;
- cursor: pointer;
- display: inline-block;
- order: 1;
- padding: 0.3rem 0.6rem;
- position: relative;
- top: 1px;
- user-select: none;
- }
-
- input.tab-input:checked + label.tab-label {
- background-color: $bg-color;
- }
-
- .tab-content {
- background-color: $bg-color;
- border-color: $darker-alt-bg-color;
- border-style: solid;
- border-width: 1px;
- display: none;
- order: 2;
- padding: 1rem;
- width: 100%;
- }
-
- &.tabs-code {
- .tab-content {
- padding: 0.5rem;
-
- pre {
- margin: 0;
- }
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_tabs_dark.scss b/themes/hugo-coder/assets/scss/_tabs_dark.scss
deleted file mode 100644
index c5be40e..0000000
--- a/themes/hugo-coder/assets/scss/_tabs_dark.scss
+++ /dev/null
@@ -1,27 +0,0 @@
-@mixin tabs_dark {
- .tabs {
- label.tab-label {
- background-color: $alt-bg-color-dark;
- border-color: $lighter-alt-bg-color-dark;
- }
-
- input.tab-input:checked + label.tab-label {
- background-color: $bg-color-dark;
- }
-
- .tab-content {
- background-color: $bg-color-dark;
- border-color: $lighter-alt-bg-color-dark;
- }
- }
-}
-
-body.colorscheme-dark {
- @include tabs_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include tabs_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_taxonomies.scss b/themes/hugo-coder/assets/scss/_taxonomies.scss
deleted file mode 100644
index d405c73..0000000
--- a/themes/hugo-coder/assets/scss/_taxonomies.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-.taxonomy {
- li {
- display: inline-block;
- margin: 0.9rem;
- }
-
- .taxonomy-element {
- display: block;
- padding: 0.3rem 0.9rem;
- background-color: $alt-bg-color;
- border-radius: 0.6rem;
-
- a {
- color: $fg-color;
- }
- a:active {
- color: $fg-color;
- }
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_taxonomies_dark.scss b/themes/hugo-coder/assets/scss/_taxonomies_dark.scss
deleted file mode 100644
index 77c734d..0000000
--- a/themes/hugo-coder/assets/scss/_taxonomies_dark.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-@mixin taxonomy_dark {
- .taxonomy-element {
- background-color: $alt-bg-color-dark;
-
- a {
- color: $fg-color-dark;
- }
- a:active {
- color: $fg-color-dark;
- }
- }
-}
-
-body.colorscheme-dark {
- @include taxonomy_dark();
-}
-
-body.colorscheme-auto {
- @media (prefers-color-scheme: dark) {
- @include taxonomy_dark();
- }
-}
diff --git a/themes/hugo-coder/assets/scss/_variables.scss b/themes/hugo-coder/assets/scss/_variables.scss
deleted file mode 100644
index b08d132..0000000
--- a/themes/hugo-coder/assets/scss/_variables.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-// Fonts
-$font-family: -apple-system,
-BlinkMacSystemFont,
-"Segoe UI",
-Roboto,
-Oxygen-Sans,
-Ubuntu,
-Cantarell,
-"Helvetica Neue",
-Helvetica,
-"游ゴシック",
-"PingFang SC",
-STXihei,"华文细黑",
-"Microsoft YaHei","微软雅黑",
-SimSun,"宋体",
-Heiti,"黑体",
-sans-serif;
-$code-font-family: "SF Mono",
-Consolas,
-Liberation Mono,
-Menlo,
-monospace;
-
-// Colors
-$bg-color: #fafafa !default;
-$fg-color: #212121 !default;
-$alt-bg-color: #e0e0e0 !default;
-$alt-fg-color: #000 !default;
-$darker-alt-bg-color: #ccc !default;
-$link-color: #1565c0 !default;
-
-// Dark colors
-$bg-color-dark: #212121 !default;
-$fg-color-dark: #dadada !default;
-$alt-bg-color-dark: #424242 !default;
-$alt-fg-color-dark: #dadada !default;
-$lighter-alt-bg-color-dark: #4f4f4f !default;
-$link-color-dark: #42a5f5 !default;
-
-// Notice colors
-$fg-color-notice-note-icon: #5e35b1 !default;
-$bg-color-notice-note-title: #673ab71a !default;
-$bg-color-notice-note-content: #7e57c21a !default;
-$fg-color-notice-tip-icon: #00897b !default;
-$bg-color-notice-tip-title: #0096881a !default;
-$bg-color-notice-tip-content: #26a69a1a !default;
-$fg-color-notice-example-icon: #6d4c41 !default;
-$bg-color-notice-example-title: #7955481a !default;
-$bg-color-notice-example-content: #8d6e631a !default;
-$fg-color-notice-question-icon: #7cb342 !default;
-$bg-color-notice-question-title: #8bc34a1a !default;
-$bg-color-notice-question-content: #9ccc651a !default;
-$fg-color-notice-info-icon: #1e88e5 !default;
-$bg-color-notice-info-title: #2196f31a !default;
-$bg-color-notice-info-content: #42a5f51a !default;
-$fg-color-notice-warning-icon: #ffb300 !default;
-$bg-color-notice-warning-title: #ffc1071a !default;
-$bg-color-notice-warning-content: #ffca281a !default;
-$fg-color-notice-error-icon: #e53935 !default;
-$bg-color-notice-error-title: #f443361a !default;
-$bg-color-notice-error-content: #ef53501a !default;
-
-// Path to FontAwesome TTF/WOFF files.
-$fa-font-path: "../fonts" !default;
diff --git a/themes/hugo-coder/assets/scss/coder-dark.scss b/themes/hugo-coder/assets/scss/coder-dark.scss
deleted file mode 100644
index c05c5f5..0000000
--- a/themes/hugo-coder/assets/scss/coder-dark.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-@import "variables";
-@import "base_dark";
-@import "content_dark";
-@import "notices_dark";
-@import "navigation_dark";
-@import "tabs_dark";
-@import "taxonomies_dark";
-@import "footer_dark";
-@import "float_dark";
-@import "syntax_dark";
diff --git a/themes/hugo-coder/assets/scss/coder-rtl.scss b/themes/hugo-coder/assets/scss/coder-rtl.scss
deleted file mode 100644
index c65ad5c..0000000
--- a/themes/hugo-coder/assets/scss/coder-rtl.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-@import "_variables";
-@import "_base_rtl";
-@import "_content_rtl";
-@import "_navigation_rtl";
diff --git a/themes/hugo-coder/assets/scss/coder.scss b/themes/hugo-coder/assets/scss/coder.scss
deleted file mode 100644
index 40b4dce..0000000
--- a/themes/hugo-coder/assets/scss/coder.scss
+++ /dev/null
@@ -1,18 +0,0 @@
-@import "css/normalize";
-@import "variables";
-@import "font-awesome/fontawesome";
-@import "font-awesome/regular";
-@import "font-awesome/solid";
-@import "font-awesome/brands";
-@import "font-awesome/v4-shims";
-@import "base";
-@import "content";
-@import "notices";
-@import "navigation";
-@import "pagination";
-@import "tabs";
-@import "taxonomies";
-@import "footer";
-@import "float";
-@import "mastodon";
-@import "syntax";
\ No newline at end of file
diff --git a/themes/hugo-coder/assets/scss/css/normalize.css b/themes/hugo-coder/assets/scss/css/normalize.css
deleted file mode 100644
index 8d6f3ff..0000000
--- a/themes/hugo-coder/assets/scss/css/normalize.css
+++ /dev/null
@@ -1,350 +0,0 @@
-/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
-
-/* Document
- ========================================================================== */
-
-/**
- * 1. Correct the line height in all browsers.
- * 2. Prevent adjustments of font size after orientation changes in iOS.
- */
-
- html {
- line-height: 1.15; /* 1 */
- -webkit-text-size-adjust: 100%; /* 2 */
- }
-
- /* Sections
- ========================================================================== */
-
- /**
- * Remove the margin in all browsers.
- */
-
- body {
- margin: 0;
- }
-
- /**
- * Render the `main` element consistently in IE.
- */
-
- main {
- display: block;
- }
-
- /**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
-
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
-
- /* Grouping content
- ========================================================================== */
-
- /**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
-
- hr {
- box-sizing: content-box; /* 1 */
- height: 0; /* 1 */
- overflow: visible; /* 2 */
- }
-
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-
- pre {
- font-family: monospace, monospace; /* 1 */
- font-size: 1em; /* 2 */
- }
-
- /* Text-level semantics
- ========================================================================== */
-
- /**
- * Remove the gray background on active links in IE 10.
- */
-
- a {
- background-color: transparent;
- word-wrap: break-word;
- }
-
- /**
- * 1. Remove the bottom border in Chrome 57-
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
-
- abbr[title] {
- border-bottom: none; /* 1 */
- text-decoration: underline; /* 2 */
- text-decoration: underline dotted; /* 2 */
- }
-
- /**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
-
- b,
- strong {
- font-weight: bolder;
- }
-
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-
- code,
- kbd,
- samp {
- font-family: monospace, monospace; /* 1 */
- font-size: 1em; /* 2 */
- }
-
- /**
- * Add the correct font size in all browsers.
- */
-
- small {
- font-size: 80%;
- }
-
- /**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
-
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
-
- sub {
- bottom: -0.25em;
- }
-
- sup {
- top: -0.5em;
- }
-
- /* Embedded content
- ========================================================================== */
-
- /**
- * Remove the border on images inside links in IE 10.
- */
-
- img {
- border-style: none;
- }
-
- /* Forms
- ========================================================================== */
-
- /**
- * 1. Change the font styles in all browsers.
- * 2. Remove the margin in Firefox and Safari.
- */
-
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: inherit; /* 1 */
- font-size: 100%; /* 1 */
- line-height: 1.15; /* 1 */
- margin: 0; /* 2 */
- }
-
- /**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
-
- button,
- input { /* 1 */
- overflow: visible;
- }
-
- /**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
-
- button,
- select { /* 1 */
- text-transform: none;
- }
-
- /**
- * Correct the inability to style clickable types in iOS and Safari.
- */
-
- button,
- [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- }
-
- /**
- * Remove the inner border and padding in Firefox.
- */
-
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
-
- /**
- * Restore the focus styles unset by the previous rule.
- */
-
- button:-moz-focusring,
- [type="button"]:-moz-focusring,
- [type="reset"]:-moz-focusring,
- [type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
-
- /**
- * Correct the padding in Firefox.
- */
-
- fieldset {
- padding: 0.35em 0.75em 0.625em;
- }
-
- /**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
-
- legend {
- box-sizing: border-box; /* 1 */
- color: inherit; /* 2 */
- display: table; /* 1 */
- max-width: 100%; /* 1 */
- padding: 0; /* 3 */
- white-space: normal; /* 1 */
- }
-
- /**
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
-
- progress {
- vertical-align: baseline;
- }
-
- /**
- * Remove the default vertical scrollbar in IE 10+.
- */
-
- textarea {
- overflow: auto;
- }
-
- /**
- * 1. Add the correct box sizing in IE 10.
- * 2. Remove the padding in IE 10.
- */
-
- [type="checkbox"],
- [type="radio"] {
- box-sizing: border-box; /* 1 */
- padding: 0; /* 2 */
- }
-
- /**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
-
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
-
- /**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
-
- [type="search"] {
- -webkit-appearance: textfield; /* 1 */
- outline-offset: -2px; /* 2 */
- }
-
- /**
- * Remove the inner padding in Chrome and Safari on macOS.
- */
-
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
-
- /**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
-
- ::-webkit-file-upload-button {
- -webkit-appearance: button; /* 1 */
- font: inherit; /* 2 */
- }
-
- /* Interactive
- ========================================================================== */
-
- /*
- * Add the correct display in Edge, IE 10+, and Firefox.
- */
-
- details {
- display: block;
- }
-
- /*
- * Add the correct display in all browsers.
- */
-
- summary {
- display: list-item;
- }
-
- /* Misc
- ========================================================================== */
-
- /**
- * Add the correct display in IE 10+.
- */
-
- template {
- display: none;
- }
-
- /**
- * Add the correct display in IE 10.
- */
-
- [hidden] {
- display: none;
- }
diff --git a/themes/hugo-coder/assets/scss/font-awesome/LICENSE.txt b/themes/hugo-coder/assets/scss/font-awesome/LICENSE.txt
deleted file mode 100644
index e69c5e3..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/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) 2024 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 2024 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/themes/hugo-coder/assets/scss/font-awesome/_animated.scss b/themes/hugo-coder/assets/scss/font-awesome/_animated.scss
deleted file mode 100644
index 779125e..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_animated.scss
+++ /dev/null
@@ -1,152 +0,0 @@
-// animating icons
-// --------------------------
-
-.#{$fa-css-prefix}-beat {
- animation-name: #{$fa-css-prefix}-beat;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
-}
-
-.#{$fa-css-prefix}-bounce {
- animation-name: #{$fa-css-prefix}-bounce;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1));
-}
-
-.#{$fa-css-prefix}-fade {
- animation-name: #{$fa-css-prefix}-fade;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
-}
-
-.#{$fa-css-prefix}-beat-fade {
- animation-name: #{$fa-css-prefix}-beat-fade;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
-}
-
-.#{$fa-css-prefix}-flip {
- animation-name: #{$fa-css-prefix}-flip;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
-}
-
-.#{$fa-css-prefix}-shake {
- animation-name: #{$fa-css-prefix}-shake;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
-}
-
-.#{$fa-css-prefix}-spin {
- animation-name: #{$fa-css-prefix}-spin;
- animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 2s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
-}
-
-.#{$fa-css-prefix}-spin-reverse {
- --#{$fa-css-prefix}-animation-direction: reverse;
-}
-
-.#{$fa-css-prefix}-pulse,
-.#{$fa-css-prefix}-spin-pulse {
- animation-name: #{$fa-css-prefix}-spin;
- animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
- animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
- animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
- animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, steps(8));
-}
-
-// if agent or operating system prefers reduced motion, disable animations
-// see: https://www.smashingmagazine.com/2020/09/design-reduced-motion-sensitivities/
-// see: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
-@media (prefers-reduced-motion: reduce) {
- .#{$fa-css-prefix}-beat,
- .#{$fa-css-prefix}-bounce,
- .#{$fa-css-prefix}-fade,
- .#{$fa-css-prefix}-beat-fade,
- .#{$fa-css-prefix}-flip,
- .#{$fa-css-prefix}-pulse,
- .#{$fa-css-prefix}-shake,
- .#{$fa-css-prefix}-spin,
- .#{$fa-css-prefix}-spin-pulse {
- animation-delay: -1ms;
- animation-duration: 1ms;
- animation-iteration-count: 1;
- transition-delay: 0s;
- transition-duration: 0s;
- }
-}
-
-@keyframes #{$fa-css-prefix}-beat {
- 0%, 90% { transform: scale(1); }
- 45% { transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25)); }
-}
-
-@keyframes #{$fa-css-prefix}-bounce {
- 0% { transform: scale(1,1) translateY(0); }
- 10% { transform: scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1),var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9)) translateY(0); }
- 30% { transform: scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9),var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1)) translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em)); }
- 50% { transform: scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05),var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95)) translateY(0); }
- 57% { transform: scale(1,1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em)); }
- 64% { transform: scale(1,1) translateY(0); }
- 100% { transform: scale(1,1) translateY(0); }
-}
-
-@keyframes #{$fa-css-prefix}-fade {
- 50% { opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4); }
-}
-
-@keyframes #{$fa-css-prefix}-beat-fade {
- 0%, 100% {
- opacity: var(--#{$fa-css-prefix}-beat-fade-opacity, 0.4);
- transform: scale(1);
- }
- 50% {
- opacity: 1;
- transform: scale(var(--#{$fa-css-prefix}-beat-fade-scale, 1.125));
- }
-}
-
-@keyframes #{$fa-css-prefix}-flip {
- 50% {
- transform: rotate3d(var(--#{$fa-css-prefix}-flip-x, 0), var(--#{$fa-css-prefix}-flip-y, 1), var(--#{$fa-css-prefix}-flip-z, 0), var(--#{$fa-css-prefix}-flip-angle, -180deg));
- }
-}
-
-@keyframes #{$fa-css-prefix}-shake {
- 0% { transform: rotate(-15deg); }
- 4% { transform: rotate(15deg); }
- 8%, 24% { transform: rotate(-18deg); }
- 12%, 28% { transform: rotate(18deg); }
- 16% { transform: rotate(-22deg); }
- 20% { transform: rotate(22deg); }
- 32% { transform: rotate(-12deg); }
- 36% { transform: rotate(12deg); }
- 40%, 100% { transform: rotate(0deg); }
-}
-
-@keyframes #{$fa-css-prefix}-spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_bordered-pulled.scss b/themes/hugo-coder/assets/scss/font-awesome/_bordered-pulled.scss
deleted file mode 100644
index 06bf72d..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_bordered-pulled.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-// bordered + pulled icons
-// -------------------------
-
-.#{$fa-css-prefix}-border {
- border-color: var(--#{$fa-css-prefix}-border-color, #{$fa-border-color});
- border-radius: var(--#{$fa-css-prefix}-border-radius, #{$fa-border-radius});
- border-style: var(--#{$fa-css-prefix}-border-style, #{$fa-border-style});
- border-width: var(--#{$fa-css-prefix}-border-width, #{$fa-border-width});
- padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding});
-}
-
-.#{$fa-css-prefix}-pull-left {
- float: left;
- margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
-}
-
-.#{$fa-css-prefix}-pull-right {
- float: right;
- margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_core.scss b/themes/hugo-coder/assets/scss/font-awesome/_core.scss
deleted file mode 100644
index a850b0f..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_core.scss
+++ /dev/null
@@ -1,49 +0,0 @@
-// base icon class definition
-// -------------------------
-
-.#{$fa-css-prefix} {
- font-family: var(--#{$fa-css-prefix}-style-family, '#{$fa-style-family}');
- font-weight: var(--#{$fa-css-prefix}-style, #{$fa-style});
-}
-
-.fas,
-.far,
-.fab,
-.#{$fa-css-prefix}-solid,
-.#{$fa-css-prefix}-regular,
-.#{$fa-css-prefix}-brands,
-.#{$fa-css-prefix} {
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- display: var(--#{$fa-css-prefix}-display, #{$fa-display});
- font-style: normal;
- font-variant: normal;
- line-height: 1;
- text-rendering: auto;
-}
-
-.fas::before,
-.far::before,
-.fab::before,
-.#{$fa-css-prefix}-solid::before,
-.#{$fa-css-prefix}-regular::before,
-.#{$fa-css-prefix}-brands::before,
-.#{$fa-css-prefix}::before {
- content: var(#{$fa-icon-property});
-}
-
-.#{$fa-css-prefix}-classic,
-.fas,
-.#{$fa-css-prefix}-solid,
-.far,
-.#{$fa-css-prefix}-regular {
- font-family: 'Font Awesome 6 Free';
-}
-.#{$fa-css-prefix}-brands,
-.fab {
- font-family: 'Font Awesome 6 Brands';
-}
-
-%fa-icon {
- @include fa-icon;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_fixed-width.scss b/themes/hugo-coder/assets/scss/font-awesome/_fixed-width.scss
deleted file mode 100644
index 7234236..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_fixed-width.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-// fixed-width icons
-// -------------------------
-
-.#{$fa-css-prefix}-fw {
- text-align: center;
- width: $fa-fw-width;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_functions.scss b/themes/hugo-coder/assets/scss/font-awesome/_functions.scss
deleted file mode 100644
index a17ffe8..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_functions.scss
+++ /dev/null
@@ -1,57 +0,0 @@
-// functions
-// --------------------------
-
-// fa-content: convenience function used to set content property
-@function fa-content($fa-var) {
- @return unquote("\"#{ $fa-var }\"");
-}
-
-// fa-divide: Originally obtained from the Bootstrap https://github.com/twbs/bootstrap
-//
-// Licensed under: The MIT License (MIT)
-//
-// Copyright (c) 2011-2021 Twitter, Inc.
-// Copyright (c) 2011-2021 The Bootstrap Authors
-//
-// 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.
-
-@function fa-divide($dividend, $divisor, $precision: 10) {
- $sign: if($dividend > 0 and $divisor > 0, 1, -1);
- $dividend: abs($dividend);
- $divisor: abs($divisor);
- $quotient: 0;
- $remainder: $dividend;
- @if $dividend == 0 {
- @return 0;
- }
- @if $divisor == 0 {
- @error "Cannot divide by 0";
- }
- @if $divisor == 1 {
- @return $dividend;
- }
- @while $remainder >= $divisor {
- $quotient: $quotient + 1;
- $remainder: $remainder - $divisor;
- }
- @if $remainder > 0 and $precision > 0 {
- $remainder: fa-divide($remainder * 10, $divisor, $precision - 1) * .1;
- }
- @return ($quotient + $remainder) * $sign;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_icons.scss b/themes/hugo-coder/assets/scss/font-awesome/_icons.scss
deleted file mode 100644
index 2f13535..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_icons.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-// specific icon class definition
-// -------------------------
-
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
-readers do not read off random characters that represent icons */
-
-@each $name, $icon in $fa-icons {
- .#{$fa-css-prefix}-#{$name} {
- #{$fa-icon-property}: unquote("\"#{ $icon }\"");
- }
-}
-
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_list.scss b/themes/hugo-coder/assets/scss/font-awesome/_list.scss
deleted file mode 100644
index 120506a..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_list.scss
+++ /dev/null
@@ -1,18 +0,0 @@
-// icons in a list
-// -------------------------
-
-.#{$fa-css-prefix}-ul {
- list-style-type: none;
- margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
- padding-left: 0;
-
- > li { position: relative; }
-}
-
-.#{$fa-css-prefix}-li {
- left: calc(-1 * var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}));
- position: absolute;
- text-align: center;
- width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
- line-height: inherit;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_mixins.scss b/themes/hugo-coder/assets/scss/font-awesome/_mixins.scss
deleted file mode 100644
index 71f99ad..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_mixins.scss
+++ /dev/null
@@ -1,65 +0,0 @@
-// mixins
-// --------------------------
-
-// base rendering for an icon
-@mixin fa-icon {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- display: inline-block;
- font-style: normal;
- font-variant: normal;
- font-weight: normal;
- line-height: 1;
-}
-
-// sets relative font-sizing and alignment (in _sizing)
-@mixin fa-size ($font-size) {
- font-size: fa-divide($font-size, $fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
- line-height: fa-divide(1, $font-size) * 1em; // sets the line-height of the icon back to that of it's parent
- vertical-align: (fa-divide(6, $font-size) - fa-divide(3, 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
-}
-
-// only display content to screen readers
-// see: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
-// see: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
-@mixin 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;
-}
-
-// use in conjunction with .sr-only to only display content when it's focused
-@mixin fa-sr-only-focusable() {
- &:not(:focus) {
- @include fa-sr-only();
- }
-}
-
-// sets a specific icon family to use alongside style + icon mixins
-@mixin fa-family-classic() {
- @extend .fa-classic;
-}
-
-// convenience mixins for declaring pseudo-elements by CSS variable,
-// including all style-specific font properties
-@mixin fa-icon-solid($fa-var) {
- @extend .fa-solid;
-
- & { #{$fa-icon-property}: unquote("\"#{ $fa-var }\""); #{$fa-duotone-icon-property}: unquote("\"#{ $fa-var }#{ $fa-var }\""); }
-}
-@mixin fa-icon-regular($fa-var) {
- @extend .fa-regular;
-
- & { #{$fa-icon-property}: unquote("\"#{ $fa-var }\""); #{$fa-duotone-icon-property}: unquote("\"#{ $fa-var }#{ $fa-var }\""); }
-}
-@mixin fa-icon-brands($fa-var) {
- @extend .fa-brands;
-
- & { #{$fa-icon-property}: unquote("\"#{ $fa-var }\""); #{$fa-duotone-icon-property}: unquote("\"#{ $fa-var }#{ $fa-var }\""); }
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_rotated-flipped.scss b/themes/hugo-coder/assets/scss/font-awesome/_rotated-flipped.scss
deleted file mode 100644
index 0bd4b7c..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_rotated-flipped.scss
+++ /dev/null
@@ -1,31 +0,0 @@
-// rotating + flipping icons
-// -------------------------
-
-.#{$fa-css-prefix}-rotate-90 {
- transform: rotate(90deg);
-}
-
-.#{$fa-css-prefix}-rotate-180 {
- transform: rotate(180deg);
-}
-
-.#{$fa-css-prefix}-rotate-270 {
- transform: rotate(270deg);
-}
-
-.#{$fa-css-prefix}-flip-horizontal {
- transform: scale(-1, 1);
-}
-
-.#{$fa-css-prefix}-flip-vertical {
- transform: scale(1, -1);
-}
-
-.#{$fa-css-prefix}-flip-both,
-.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical {
- transform: scale(-1, -1);
-}
-
-.#{$fa-css-prefix}-rotate-by {
- transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, 0));
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_screen-reader.scss b/themes/hugo-coder/assets/scss/font-awesome/_screen-reader.scss
deleted file mode 100644
index 2beb887..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_screen-reader.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-// screen-reader utilities
-// -------------------------
-
-// only display content to screen readers
-.sr-only,
-.#{$fa-css-prefix}-sr-only {
- @include fa-sr-only;
-}
-
-// use in conjunction with .sr-only to only display content when it's focused
-.sr-only-focusable,
-.#{$fa-css-prefix}-sr-only-focusable {
- @include fa-sr-only-focusable;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_shims.scss b/themes/hugo-coder/assets/scss/font-awesome/_shims.scss
deleted file mode 100644
index 3fb6d41..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_shims.scss
+++ /dev/null
@@ -1,1578 +0,0 @@
-.#{$fa-css-prefix}.#{$fa-css-prefix}-glass { #{$fa-icon-property}: unquote("\"#{ $fa-var-martini-glass-empty }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-envelope }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-star }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-remove { #{$fa-icon-property}: unquote("\"#{ $fa-var-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-close { #{$fa-icon-property}: unquote("\"#{ $fa-var-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gear { #{$fa-icon-property}: unquote("\"#{ $fa-var-gear }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-trash-can }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-home { #{$fa-icon-property}: unquote("\"#{ $fa-var-house }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-clock }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-play }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrows-rotate }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-list }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent { #{$fa-icon-property}: unquote("\"#{ $fa-var-outdent }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera { #{$fa-icon-property}: unquote("\"#{ $fa-var-video }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-image }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-photo { #{$fa-icon-property}: unquote("\"#{ $fa-var-image }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-image {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-image { #{$fa-icon-property}: unquote("\"#{ $fa-var-image }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker { #{$fa-icon-property}: unquote("\"#{ $fa-var-location-dot }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-pen-to-square }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-edit { #{$fa-icon-property}: unquote("\"#{ $fa-var-pen-to-square }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-share-from-square }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-check }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-down-left-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-check }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward { #{$fa-icon-property}: unquote("\"#{ $fa-var-share }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-expand { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-right-and-down-left-from-center }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-compress { #{$fa-icon-property}: unquote("\"#{ $fa-var-down-left-and-up-right-to-center }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-warning { #{$fa-icon-property}: unquote("\"#{ $fa-var-triangle-exclamation }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-days }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h { #{$fa-icon-property}: unquote("\"#{ $fa-var-left-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-column }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-column }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-twitter }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-facebook }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gears { #{$fa-icon-property}: unquote("\"#{ $fa-var-gears }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-thumbs-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-thumbs-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-heart }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-from-bracket }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-linkedin }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack { #{$fa-icon-property}: unquote("\"#{ $fa-var-thumbtack }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-right-from-square }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-to-bracket }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-github }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-lemon }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-bookmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook { #{$fa-icon-property}: unquote("\"#{ $fa-var-facebook-f }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f { #{$fa-icon-property}: unquote("\"#{ $fa-var-facebook-f }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-github {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-feed { #{$fa-icon-property}: unquote("\"#{ $fa-var-rss }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hard-drive }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-left }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-globe { #{$fa-icon-property}: unquote("\"#{ $fa-var-earth-americas }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tasks { #{$fa-icon-property}: unquote("\"#{ $fa-var-bars-progress }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-maximize }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-group { #{$fa-icon-property}: unquote("\"#{ $fa-var-users }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-chain { #{$fa-icon-property}: unquote("\"#{ $fa-var-link }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cut { #{$fa-icon-property}: unquote("\"#{ $fa-var-scissors }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-copy }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-floppy-disk }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-save {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-save { #{$fa-icon-property}: unquote("\"#{ $fa-var-floppy-disk }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon { #{$fa-icon-property}: unquote("\"#{ $fa-var-bars }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder { #{$fa-icon-property}: unquote("\"#{ $fa-var-bars }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-magic { #{$fa-icon-property}: unquote("\"#{ $fa-var-wand-magic-sparkles }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-pinterest }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-google-plus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus { #{$fa-icon-property}: unquote("\"#{ $fa-var-google-plus-g }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-money { #{$fa-icon-property}: unquote("\"#{ $fa-var-money-bill-1 }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted { #{$fa-icon-property}: unquote("\"#{ $fa-var-sort }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-sort-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-sort-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin { #{$fa-icon-property}: unquote("\"#{ $fa-var-linkedin-in }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-rotate-left }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-legal { #{$fa-icon-property}: unquote("\"#{ $fa-var-gavel }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer { #{$fa-icon-property}: unquote("\"#{ $fa-var-gauge-high }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard { #{$fa-icon-property}: unquote("\"#{ $fa-var-gauge-high }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-comment }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-comments }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-flash { #{$fa-icon-property}: unquote("\"#{ $fa-var-bolt }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard { #{$fa-icon-property}: unquote("\"#{ $fa-var-paste }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-lightbulb }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-left }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download { #{$fa-icon-property}: unquote("\"#{ $fa-var-cloud-arrow-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload { #{$fa-icon-property}: unquote("\"#{ $fa-var-cloud-arrow-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-bell }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery { #{$fa-icon-property}: unquote("\"#{ $fa-var-utensils }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-lines }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-building }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hospital }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet { #{$fa-icon-property}: unquote("\"#{ $fa-var-tablet-screen-button }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile { #{$fa-icon-property}: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone { #{$fa-icon-property}: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply { #{$fa-icon-property}: unquote("\"#{ $fa-var-reply }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-folder }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-folder-open }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-face-smile }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-face-frown }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-face-meh }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-keyboard }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-flag }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all { #{$fa-icon-property}: unquote("\"#{ $fa-var-reply-all }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-star-half-stroke }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty { #{$fa-icon-property}: unquote("\"#{ $fa-var-star-half-stroke }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full { #{$fa-icon-property}: unquote("\"#{ $fa-var-star-half-stroke }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork { #{$fa-icon-property}: unquote("\"#{ $fa-var-code-branch }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken { #{$fa-icon-property}: unquote("\"#{ $fa-var-link-slash }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-unlink { #{$fa-icon-property}: unquote("\"#{ $fa-var-link-slash }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-unlock }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-minus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-turn-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-turn-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-pen }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-up-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-down }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-up }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-eur { #{$fa-icon-property}: unquote("\"#{ $fa-var-euro-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-euro { #{$fa-icon-property}: unquote("\"#{ $fa-var-euro-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp { #{$fa-icon-property}: unquote("\"#{ $fa-var-sterling-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-usd { #{$fa-icon-property}: unquote("\"#{ $fa-var-dollar-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar { #{$fa-icon-property}: unquote("\"#{ $fa-var-dollar-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-inr { #{$fa-icon-property}: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee { #{$fa-icon-property}: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cny { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yen { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rub { #{$fa-icon-property}: unquote("\"#{ $fa-var-ruble-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble { #{$fa-icon-property}: unquote("\"#{ $fa-var-ruble-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble { #{$fa-icon-property}: unquote("\"#{ $fa-var-ruble-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-krw { #{$fa-icon-property}: unquote("\"#{ $fa-var-won-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-won { #{$fa-icon-property}: unquote("\"#{ $fa-var-won-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin { #{$fa-icon-property}: unquote("\"#{ $fa-var-btc }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-lines }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-a-z }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-z-a }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-short-wide }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-wide-short }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-1-9 }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-9-1 }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-youtube }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-xing }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play { #{$fa-icon-property}: unquote("\"#{ $fa-var-youtube }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-bitbucket }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-tumblr }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-down-long }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-long }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-left-long }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-long }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-android {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip { #{$fa-icon-property}: unquote("\"#{ $fa-var-gratipay }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-sun }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-moon }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-right }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-left }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-left }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-left }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-dot }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-vimeo }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-try { #{$fa-icon-property}: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira { #{$fa-icon-property}: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-plus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-institution { #{$fa-icon-property}: unquote("\"#{ $fa-var-building-columns }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bank { #{$fa-icon-property}: unquote("\"#{ $fa-var-building-columns }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board { #{$fa-icon-property}: unquote("\"#{ $fa-var-graduation-cap }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-reddit }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-behance }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-steam }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile { #{$fa-icon-property}: unquote("\"#{ $fa-var-car }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cab { #{$fa-icon-property}: unquote("\"#{ $fa-var-taxi }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-pdf }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-word }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-excel }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-powerpoint }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-image }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-image }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-image }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-zipper }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-zipper }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-audio }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-audio }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-video }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-video }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-code }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-support { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-notch }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ra { #{$fa-icon-property}: unquote("\"#{ $fa-var-rebel }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance { #{$fa-icon-property}: unquote("\"#{ $fa-var-rebel }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ge { #{$fa-icon-property}: unquote("\"#{ $fa-var-empire }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-git }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-git {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-hacker-news }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-hacker-news }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat { #{$fa-icon-property}: unquote("\"#{ $fa-var-weixin }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-send { #{$fa-icon-property}: unquote("\"#{ $fa-var-paper-plane }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-paper-plane }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-paper-plane }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-header { #{$fa-icon-property}: unquote("\"#{ $fa-var-heading }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-futbol }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-futbol }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-newspaper }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-bell-slash }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-trash { #{$fa-icon-property}: unquote("\"#{ $fa-var-trash-can }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper { #{$fa-icon-property}: unquote("\"#{ $fa-var-eye-dropper }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-area }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-pie }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-line }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-lastfm }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc { #{$fa-icon-property}: unquote("\"#{ $fa-var-closed-captioning }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ils { #{$fa-icon-property}: unquote("\"#{ $fa-var-shekel-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel { #{$fa-icon-property}: unquote("\"#{ $fa-var-shekel-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel { #{$fa-icon-property}: unquote("\"#{ $fa-var-shekel-sign }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond { #{$fa-icon-property}: unquote("\"#{ $fa-var-gem }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender { #{$fa-icon-property}: unquote("\"#{ $fa-var-mars-and-venus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex { #{$fa-icon-property}: unquote("\"#{ $fa-var-mars-and-venus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-transgender }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official { #{$fa-icon-property}: unquote("\"#{ $fa-var-facebook }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel { #{$fa-icon-property}: unquote("\"#{ $fa-var-bed }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yc { #{$fa-icon-property}: unquote("\"#{ $fa-var-y-combinator }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-full }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-battery { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-full }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-three-quarters }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-half }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-quarter }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-empty }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-note-sticky }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1 { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass-start }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2 { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass-half }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3 { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass-end }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-back-fist }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-back-fist }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-scissors }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-lizard }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-spock }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-pointer }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-peace }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-odnoklassniki }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-television { #{$fa-icon-property}: unquote("\"#{ $fa-var-tv }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-plus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-minus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-check }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-map }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting { #{$fa-icon-property}: unquote("\"#{ $fa-var-comment-dots }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-comment-dots }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo { #{$fa-icon-property}: unquote("\"#{ $fa-var-vimeo-v }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-credit-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-pause }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-stop }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-accessible-icon }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-question }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone { #{$fa-icon-property}: unquote("\"#{ $fa-var-phone-volume }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting { #{$fa-icon-property}: unquote("\"#{ $fa-var-hands-asl-interpreting }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness { #{$fa-icon-property}: unquote("\"#{ $fa-var-ear-deaf }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing { #{$fa-icon-property}: unquote("\"#{ $fa-var-ear-deaf }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-signing { #{$fa-icon-property}: unquote("\"#{ $fa-var-hands }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-viadeo }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost { #{$fa-icon-property}: unquote("\"#{ $fa-var-snapchat }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-snapchat }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official { #{$fa-icon-property}: unquote("\"#{ $fa-var-google-plus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle { #{$fa-icon-property}: unquote("\"#{ $fa-var-google-plus }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-fa { #{$fa-icon-property}: unquote("\"#{ $fa-var-font-awesome }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-handshake }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-envelope-open }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-book }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-user }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-user }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license { #{$fa-icon-property}: unquote("\"#{ $fa-var-id-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-id-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-id-card }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-full }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-full }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-three-quarters }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-half }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-quarter }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-empty }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub { #{$fa-icon-property}: unquote("\"#{ $fa-var-bath }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-s15 { #{$fa-icon-property}: unquote("\"#{ $fa-var-bath }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast { #{$fa-icon-property}: unquote("\"#{ $fa-var-sellcast }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
- font-family: 'Font Awesome 6 Free';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-snowflake }\""); }
-.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
-.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
- font-family: 'Font Awesome 6 Brands';
- font-weight: 400;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_sizing.scss b/themes/hugo-coder/assets/scss/font-awesome/_sizing.scss
deleted file mode 100644
index e171e7d..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_sizing.scss
+++ /dev/null
@@ -1,16 +0,0 @@
-// sizing icons
-// -------------------------
-
-// literal magnification scale
-@for $i from 1 through 10 {
- .#{$fa-css-prefix}-#{$i}x {
- font-size: $i * 1em;
- }
-}
-
-// step-based scale (with alignment)
-@each $size, $value in $fa-sizes {
- .#{$fa-css-prefix}-#{$size} {
- @include fa-size($value);
- }
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_stacked.scss b/themes/hugo-coder/assets/scss/font-awesome/_stacked.scss
deleted file mode 100644
index d9a9d4e..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_stacked.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-// stacking icons
-// -------------------------
-
-.#{$fa-css-prefix}-stack {
- display: inline-block;
- height: 2em;
- line-height: 2em;
- position: relative;
- vertical-align: $fa-stack-vertical-align;
- width: $fa-stack-width;
-}
-
-.#{$fa-css-prefix}-stack-1x,
-.#{$fa-css-prefix}-stack-2x {
- left: 0;
- position: absolute;
- text-align: center;
- width: 100%;
- z-index: var(--#{$fa-css-prefix}-stack-z-index, #{$fa-stack-z-index});
-}
-
-.#{$fa-css-prefix}-stack-1x {
- line-height: inherit;
-}
-
-.#{$fa-css-prefix}-stack-2x {
- font-size: 2em;
-}
-
-.#{$fa-css-prefix}-inverse {
- color: var(--#{$fa-css-prefix}-inverse, #{$fa-inverse});
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/_variables.scss b/themes/hugo-coder/assets/scss/font-awesome/_variables.scss
deleted file mode 100644
index 2ba8cf7..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/_variables.scss
+++ /dev/null
@@ -1,5044 +0,0 @@
-// variables
-// --------------------------
-
-$fa-css-prefix : fa !default;
-$fa-style : 900 !default;
-$fa-style-family : "Font Awesome 6 Free" !default;
-
-$fa-icon-property : --fa;
-$fa-duotone-icon-property : --fa--fa;
-
-$fa-display : inline-block !default;
-
-$fa-fw-width : fa-divide(20em, 16) !default;
-$fa-inverse : #fff !default;
-
-$fa-border-color : #eee !default;
-$fa-border-padding : .2em .25em .15em !default;
-$fa-border-radius : .1em !default;
-$fa-border-style : solid !default;
-$fa-border-width : .08em !default;
-
-$fa-size-scale-2xs : 10 !default;
-$fa-size-scale-xs : 12 !default;
-$fa-size-scale-sm : 14 !default;
-$fa-size-scale-base : 16 !default;
-$fa-size-scale-lg : 20 !default;
-$fa-size-scale-xl : 24 !default;
-$fa-size-scale-2xl : 32 !default;
-
-$fa-sizes: (
- "2xs" : $fa-size-scale-2xs,
- "xs" : $fa-size-scale-xs,
- "sm" : $fa-size-scale-sm,
- "lg" : $fa-size-scale-lg,
- "xl" : $fa-size-scale-xl,
- "2xl" : $fa-size-scale-2xl
-) !default;
-
-$fa-li-width : 2em !default;
-$fa-li-margin : $fa-li-width * fa-divide(5, 4) !default;
-
-$fa-pull-margin : .3em !default;
-
-$fa-primary-opacity : 1 !default;
-$fa-secondary-opacity : .4 !default;
-
-$fa-stack-vertical-align : middle !default;
-$fa-stack-width : ($fa-fw-width * 2) !default;
-$fa-stack-z-index : auto !default;
-
-$fa-font-display : block !default;
-$fa-font-path : "../webfonts" !default;
-
-$fa-var-0: \30;
-$fa-var-1: \31;
-$fa-var-2: \32;
-$fa-var-3: \33;
-$fa-var-4: \34;
-$fa-var-5: \35;
-$fa-var-6: \36;
-$fa-var-7: \37;
-$fa-var-8: \38;
-$fa-var-9: \39;
-$fa-var-fill-drip: \f576;
-$fa-var-arrows-to-circle: \e4bd;
-$fa-var-circle-chevron-right: \f138;
-$fa-var-chevron-circle-right: \f138;
-$fa-var-at: \40;
-$fa-var-trash-can: \f2ed;
-$fa-var-trash-alt: \f2ed;
-$fa-var-text-height: \f034;
-$fa-var-user-xmark: \f235;
-$fa-var-user-times: \f235;
-$fa-var-stethoscope: \f0f1;
-$fa-var-message: \f27a;
-$fa-var-comment-alt: \f27a;
-$fa-var-info: \f129;
-$fa-var-down-left-and-up-right-to-center: \f422;
-$fa-var-compress-alt: \f422;
-$fa-var-explosion: \e4e9;
-$fa-var-file-lines: \f15c;
-$fa-var-file-alt: \f15c;
-$fa-var-file-text: \f15c;
-$fa-var-wave-square: \f83e;
-$fa-var-ring: \f70b;
-$fa-var-building-un: \e4d9;
-$fa-var-dice-three: \f527;
-$fa-var-calendar-days: \f073;
-$fa-var-calendar-alt: \f073;
-$fa-var-anchor-circle-check: \e4aa;
-$fa-var-building-circle-arrow-right: \e4d1;
-$fa-var-volleyball: \f45f;
-$fa-var-volleyball-ball: \f45f;
-$fa-var-arrows-up-to-line: \e4c2;
-$fa-var-sort-down: \f0dd;
-$fa-var-sort-desc: \f0dd;
-$fa-var-circle-minus: \f056;
-$fa-var-minus-circle: \f056;
-$fa-var-door-open: \f52b;
-$fa-var-right-from-bracket: \f2f5;
-$fa-var-sign-out-alt: \f2f5;
-$fa-var-atom: \f5d2;
-$fa-var-soap: \e06e;
-$fa-var-icons: \f86d;
-$fa-var-heart-music-camera-bolt: \f86d;
-$fa-var-microphone-lines-slash: \f539;
-$fa-var-microphone-alt-slash: \f539;
-$fa-var-bridge-circle-check: \e4c9;
-$fa-var-pump-medical: \e06a;
-$fa-var-fingerprint: \f577;
-$fa-var-hand-point-right: \f0a4;
-$fa-var-magnifying-glass-location: \f689;
-$fa-var-search-location: \f689;
-$fa-var-forward-step: \f051;
-$fa-var-step-forward: \f051;
-$fa-var-face-smile-beam: \f5b8;
-$fa-var-smile-beam: \f5b8;
-$fa-var-flag-checkered: \f11e;
-$fa-var-football: \f44e;
-$fa-var-football-ball: \f44e;
-$fa-var-school-circle-exclamation: \e56c;
-$fa-var-crop: \f125;
-$fa-var-angles-down: \f103;
-$fa-var-angle-double-down: \f103;
-$fa-var-users-rectangle: \e594;
-$fa-var-people-roof: \e537;
-$fa-var-people-line: \e534;
-$fa-var-beer-mug-empty: \f0fc;
-$fa-var-beer: \f0fc;
-$fa-var-diagram-predecessor: \e477;
-$fa-var-arrow-up-long: \f176;
-$fa-var-long-arrow-up: \f176;
-$fa-var-fire-flame-simple: \f46a;
-$fa-var-burn: \f46a;
-$fa-var-person: \f183;
-$fa-var-male: \f183;
-$fa-var-laptop: \f109;
-$fa-var-file-csv: \f6dd;
-$fa-var-menorah: \f676;
-$fa-var-truck-plane: \e58f;
-$fa-var-record-vinyl: \f8d9;
-$fa-var-face-grin-stars: \f587;
-$fa-var-grin-stars: \f587;
-$fa-var-bong: \f55c;
-$fa-var-spaghetti-monster-flying: \f67b;
-$fa-var-pastafarianism: \f67b;
-$fa-var-arrow-down-up-across-line: \e4af;
-$fa-var-spoon: \f2e5;
-$fa-var-utensil-spoon: \f2e5;
-$fa-var-jar-wheat: \e517;
-$fa-var-envelopes-bulk: \f674;
-$fa-var-mail-bulk: \f674;
-$fa-var-file-circle-exclamation: \e4eb;
-$fa-var-circle-h: \f47e;
-$fa-var-hospital-symbol: \f47e;
-$fa-var-pager: \f815;
-$fa-var-address-book: \f2b9;
-$fa-var-contact-book: \f2b9;
-$fa-var-strikethrough: \f0cc;
-$fa-var-k: \4b;
-$fa-var-landmark-flag: \e51c;
-$fa-var-pencil: \f303;
-$fa-var-pencil-alt: \f303;
-$fa-var-backward: \f04a;
-$fa-var-caret-right: \f0da;
-$fa-var-comments: \f086;
-$fa-var-paste: \f0ea;
-$fa-var-file-clipboard: \f0ea;
-$fa-var-code-pull-request: \e13c;
-$fa-var-clipboard-list: \f46d;
-$fa-var-truck-ramp-box: \f4de;
-$fa-var-truck-loading: \f4de;
-$fa-var-user-check: \f4fc;
-$fa-var-vial-virus: \e597;
-$fa-var-sheet-plastic: \e571;
-$fa-var-blog: \f781;
-$fa-var-user-ninja: \f504;
-$fa-var-person-arrow-up-from-line: \e539;
-$fa-var-scroll-torah: \f6a0;
-$fa-var-torah: \f6a0;
-$fa-var-broom-ball: \f458;
-$fa-var-quidditch: \f458;
-$fa-var-quidditch-broom-ball: \f458;
-$fa-var-toggle-off: \f204;
-$fa-var-box-archive: \f187;
-$fa-var-archive: \f187;
-$fa-var-person-drowning: \e545;
-$fa-var-arrow-down-9-1: \f886;
-$fa-var-sort-numeric-desc: \f886;
-$fa-var-sort-numeric-down-alt: \f886;
-$fa-var-face-grin-tongue-squint: \f58a;
-$fa-var-grin-tongue-squint: \f58a;
-$fa-var-spray-can: \f5bd;
-$fa-var-truck-monster: \f63b;
-$fa-var-w: \57;
-$fa-var-earth-africa: \f57c;
-$fa-var-globe-africa: \f57c;
-$fa-var-rainbow: \f75b;
-$fa-var-circle-notch: \f1ce;
-$fa-var-tablet-screen-button: \f3fa;
-$fa-var-tablet-alt: \f3fa;
-$fa-var-paw: \f1b0;
-$fa-var-cloud: \f0c2;
-$fa-var-trowel-bricks: \e58a;
-$fa-var-face-flushed: \f579;
-$fa-var-flushed: \f579;
-$fa-var-hospital-user: \f80d;
-$fa-var-tent-arrow-left-right: \e57f;
-$fa-var-gavel: \f0e3;
-$fa-var-legal: \f0e3;
-$fa-var-binoculars: \f1e5;
-$fa-var-microphone-slash: \f131;
-$fa-var-box-tissue: \e05b;
-$fa-var-motorcycle: \f21c;
-$fa-var-bell-concierge: \f562;
-$fa-var-concierge-bell: \f562;
-$fa-var-pen-ruler: \f5ae;
-$fa-var-pencil-ruler: \f5ae;
-$fa-var-people-arrows: \e068;
-$fa-var-people-arrows-left-right: \e068;
-$fa-var-mars-and-venus-burst: \e523;
-$fa-var-square-caret-right: \f152;
-$fa-var-caret-square-right: \f152;
-$fa-var-scissors: \f0c4;
-$fa-var-cut: \f0c4;
-$fa-var-sun-plant-wilt: \e57a;
-$fa-var-toilets-portable: \e584;
-$fa-var-hockey-puck: \f453;
-$fa-var-table: \f0ce;
-$fa-var-magnifying-glass-arrow-right: \e521;
-$fa-var-tachograph-digital: \f566;
-$fa-var-digital-tachograph: \f566;
-$fa-var-users-slash: \e073;
-$fa-var-clover: \e139;
-$fa-var-reply: \f3e5;
-$fa-var-mail-reply: \f3e5;
-$fa-var-star-and-crescent: \f699;
-$fa-var-house-fire: \e50c;
-$fa-var-square-minus: \f146;
-$fa-var-minus-square: \f146;
-$fa-var-helicopter: \f533;
-$fa-var-compass: \f14e;
-$fa-var-square-caret-down: \f150;
-$fa-var-caret-square-down: \f150;
-$fa-var-file-circle-question: \e4ef;
-$fa-var-laptop-code: \f5fc;
-$fa-var-swatchbook: \f5c3;
-$fa-var-prescription-bottle: \f485;
-$fa-var-bars: \f0c9;
-$fa-var-navicon: \f0c9;
-$fa-var-people-group: \e533;
-$fa-var-hourglass-end: \f253;
-$fa-var-hourglass-3: \f253;
-$fa-var-heart-crack: \f7a9;
-$fa-var-heart-broken: \f7a9;
-$fa-var-square-up-right: \f360;
-$fa-var-external-link-square-alt: \f360;
-$fa-var-face-kiss-beam: \f597;
-$fa-var-kiss-beam: \f597;
-$fa-var-film: \f008;
-$fa-var-ruler-horizontal: \f547;
-$fa-var-people-robbery: \e536;
-$fa-var-lightbulb: \f0eb;
-$fa-var-caret-left: \f0d9;
-$fa-var-circle-exclamation: \f06a;
-$fa-var-exclamation-circle: \f06a;
-$fa-var-school-circle-xmark: \e56d;
-$fa-var-arrow-right-from-bracket: \f08b;
-$fa-var-sign-out: \f08b;
-$fa-var-circle-chevron-down: \f13a;
-$fa-var-chevron-circle-down: \f13a;
-$fa-var-unlock-keyhole: \f13e;
-$fa-var-unlock-alt: \f13e;
-$fa-var-cloud-showers-heavy: \f740;
-$fa-var-headphones-simple: \f58f;
-$fa-var-headphones-alt: \f58f;
-$fa-var-sitemap: \f0e8;
-$fa-var-circle-dollar-to-slot: \f4b9;
-$fa-var-donate: \f4b9;
-$fa-var-memory: \f538;
-$fa-var-road-spikes: \e568;
-$fa-var-fire-burner: \e4f1;
-$fa-var-flag: \f024;
-$fa-var-hanukiah: \f6e6;
-$fa-var-feather: \f52d;
-$fa-var-volume-low: \f027;
-$fa-var-volume-down: \f027;
-$fa-var-comment-slash: \f4b3;
-$fa-var-cloud-sun-rain: \f743;
-$fa-var-compress: \f066;
-$fa-var-wheat-awn: \e2cd;
-$fa-var-wheat-alt: \e2cd;
-$fa-var-ankh: \f644;
-$fa-var-hands-holding-child: \e4fa;
-$fa-var-asterisk: \2a;
-$fa-var-square-check: \f14a;
-$fa-var-check-square: \f14a;
-$fa-var-peseta-sign: \e221;
-$fa-var-heading: \f1dc;
-$fa-var-header: \f1dc;
-$fa-var-ghost: \f6e2;
-$fa-var-list: \f03a;
-$fa-var-list-squares: \f03a;
-$fa-var-square-phone-flip: \f87b;
-$fa-var-phone-square-alt: \f87b;
-$fa-var-cart-plus: \f217;
-$fa-var-gamepad: \f11b;
-$fa-var-circle-dot: \f192;
-$fa-var-dot-circle: \f192;
-$fa-var-face-dizzy: \f567;
-$fa-var-dizzy: \f567;
-$fa-var-egg: \f7fb;
-$fa-var-house-medical-circle-xmark: \e513;
-$fa-var-campground: \f6bb;
-$fa-var-folder-plus: \f65e;
-$fa-var-futbol: \f1e3;
-$fa-var-futbol-ball: \f1e3;
-$fa-var-soccer-ball: \f1e3;
-$fa-var-paintbrush: \f1fc;
-$fa-var-paint-brush: \f1fc;
-$fa-var-lock: \f023;
-$fa-var-gas-pump: \f52f;
-$fa-var-hot-tub-person: \f593;
-$fa-var-hot-tub: \f593;
-$fa-var-map-location: \f59f;
-$fa-var-map-marked: \f59f;
-$fa-var-house-flood-water: \e50e;
-$fa-var-tree: \f1bb;
-$fa-var-bridge-lock: \e4cc;
-$fa-var-sack-dollar: \f81d;
-$fa-var-pen-to-square: \f044;
-$fa-var-edit: \f044;
-$fa-var-car-side: \f5e4;
-$fa-var-share-nodes: \f1e0;
-$fa-var-share-alt: \f1e0;
-$fa-var-heart-circle-minus: \e4ff;
-$fa-var-hourglass-half: \f252;
-$fa-var-hourglass-2: \f252;
-$fa-var-microscope: \f610;
-$fa-var-sink: \e06d;
-$fa-var-bag-shopping: \f290;
-$fa-var-shopping-bag: \f290;
-$fa-var-arrow-down-z-a: \f881;
-$fa-var-sort-alpha-desc: \f881;
-$fa-var-sort-alpha-down-alt: \f881;
-$fa-var-mitten: \f7b5;
-$fa-var-person-rays: \e54d;
-$fa-var-users: \f0c0;
-$fa-var-eye-slash: \f070;
-$fa-var-flask-vial: \e4f3;
-$fa-var-hand: \f256;
-$fa-var-hand-paper: \f256;
-$fa-var-om: \f679;
-$fa-var-worm: \e599;
-$fa-var-house-circle-xmark: \e50b;
-$fa-var-plug: \f1e6;
-$fa-var-chevron-up: \f077;
-$fa-var-hand-spock: \f259;
-$fa-var-stopwatch: \f2f2;
-$fa-var-face-kiss: \f596;
-$fa-var-kiss: \f596;
-$fa-var-bridge-circle-xmark: \e4cb;
-$fa-var-face-grin-tongue: \f589;
-$fa-var-grin-tongue: \f589;
-$fa-var-chess-bishop: \f43a;
-$fa-var-face-grin-wink: \f58c;
-$fa-var-grin-wink: \f58c;
-$fa-var-ear-deaf: \f2a4;
-$fa-var-deaf: \f2a4;
-$fa-var-deafness: \f2a4;
-$fa-var-hard-of-hearing: \f2a4;
-$fa-var-road-circle-check: \e564;
-$fa-var-dice-five: \f523;
-$fa-var-square-rss: \f143;
-$fa-var-rss-square: \f143;
-$fa-var-land-mine-on: \e51b;
-$fa-var-i-cursor: \f246;
-$fa-var-stamp: \f5bf;
-$fa-var-stairs: \e289;
-$fa-var-i: \49;
-$fa-var-hryvnia-sign: \f6f2;
-$fa-var-hryvnia: \f6f2;
-$fa-var-pills: \f484;
-$fa-var-face-grin-wide: \f581;
-$fa-var-grin-alt: \f581;
-$fa-var-tooth: \f5c9;
-$fa-var-v: \56;
-$fa-var-bangladeshi-taka-sign: \e2e6;
-$fa-var-bicycle: \f206;
-$fa-var-staff-snake: \e579;
-$fa-var-rod-asclepius: \e579;
-$fa-var-rod-snake: \e579;
-$fa-var-staff-aesculapius: \e579;
-$fa-var-head-side-cough-slash: \e062;
-$fa-var-truck-medical: \f0f9;
-$fa-var-ambulance: \f0f9;
-$fa-var-wheat-awn-circle-exclamation: \e598;
-$fa-var-snowman: \f7d0;
-$fa-var-mortar-pestle: \f5a7;
-$fa-var-road-barrier: \e562;
-$fa-var-school: \f549;
-$fa-var-igloo: \f7ae;
-$fa-var-joint: \f595;
-$fa-var-angle-right: \f105;
-$fa-var-horse: \f6f0;
-$fa-var-q: \51;
-$fa-var-g: \47;
-$fa-var-notes-medical: \f481;
-$fa-var-temperature-half: \f2c9;
-$fa-var-temperature-2: \f2c9;
-$fa-var-thermometer-2: \f2c9;
-$fa-var-thermometer-half: \f2c9;
-$fa-var-dong-sign: \e169;
-$fa-var-capsules: \f46b;
-$fa-var-poo-storm: \f75a;
-$fa-var-poo-bolt: \f75a;
-$fa-var-face-frown-open: \f57a;
-$fa-var-frown-open: \f57a;
-$fa-var-hand-point-up: \f0a6;
-$fa-var-money-bill: \f0d6;
-$fa-var-bookmark: \f02e;
-$fa-var-align-justify: \f039;
-$fa-var-umbrella-beach: \f5ca;
-$fa-var-helmet-un: \e503;
-$fa-var-bullseye: \f140;
-$fa-var-bacon: \f7e5;
-$fa-var-hand-point-down: \f0a7;
-$fa-var-arrow-up-from-bracket: \e09a;
-$fa-var-folder: \f07b;
-$fa-var-folder-blank: \f07b;
-$fa-var-file-waveform: \f478;
-$fa-var-file-medical-alt: \f478;
-$fa-var-radiation: \f7b9;
-$fa-var-chart-simple: \e473;
-$fa-var-mars-stroke: \f229;
-$fa-var-vial: \f492;
-$fa-var-gauge: \f624;
-$fa-var-dashboard: \f624;
-$fa-var-gauge-med: \f624;
-$fa-var-tachometer-alt-average: \f624;
-$fa-var-wand-magic-sparkles: \e2ca;
-$fa-var-magic-wand-sparkles: \e2ca;
-$fa-var-e: \45;
-$fa-var-pen-clip: \f305;
-$fa-var-pen-alt: \f305;
-$fa-var-bridge-circle-exclamation: \e4ca;
-$fa-var-user: \f007;
-$fa-var-school-circle-check: \e56b;
-$fa-var-dumpster: \f793;
-$fa-var-van-shuttle: \f5b6;
-$fa-var-shuttle-van: \f5b6;
-$fa-var-building-user: \e4da;
-$fa-var-square-caret-left: \f191;
-$fa-var-caret-square-left: \f191;
-$fa-var-highlighter: \f591;
-$fa-var-key: \f084;
-$fa-var-bullhorn: \f0a1;
-$fa-var-globe: \f0ac;
-$fa-var-synagogue: \f69b;
-$fa-var-person-half-dress: \e548;
-$fa-var-road-bridge: \e563;
-$fa-var-location-arrow: \f124;
-$fa-var-c: \43;
-$fa-var-tablet-button: \f10a;
-$fa-var-building-lock: \e4d6;
-$fa-var-pizza-slice: \f818;
-$fa-var-money-bill-wave: \f53a;
-$fa-var-chart-area: \f1fe;
-$fa-var-area-chart: \f1fe;
-$fa-var-house-flag: \e50d;
-$fa-var-person-circle-minus: \e540;
-$fa-var-ban: \f05e;
-$fa-var-cancel: \f05e;
-$fa-var-camera-rotate: \e0d8;
-$fa-var-spray-can-sparkles: \f5d0;
-$fa-var-air-freshener: \f5d0;
-$fa-var-star: \f005;
-$fa-var-repeat: \f363;
-$fa-var-cross: \f654;
-$fa-var-box: \f466;
-$fa-var-venus-mars: \f228;
-$fa-var-arrow-pointer: \f245;
-$fa-var-mouse-pointer: \f245;
-$fa-var-maximize: \f31e;
-$fa-var-expand-arrows-alt: \f31e;
-$fa-var-charging-station: \f5e7;
-$fa-var-shapes: \f61f;
-$fa-var-triangle-circle-square: \f61f;
-$fa-var-shuffle: \f074;
-$fa-var-random: \f074;
-$fa-var-person-running: \f70c;
-$fa-var-running: \f70c;
-$fa-var-mobile-retro: \e527;
-$fa-var-grip-lines-vertical: \f7a5;
-$fa-var-spider: \f717;
-$fa-var-hands-bound: \e4f9;
-$fa-var-file-invoice-dollar: \f571;
-$fa-var-plane-circle-exclamation: \e556;
-$fa-var-x-ray: \f497;
-$fa-var-spell-check: \f891;
-$fa-var-slash: \f715;
-$fa-var-computer-mouse: \f8cc;
-$fa-var-mouse: \f8cc;
-$fa-var-arrow-right-to-bracket: \f090;
-$fa-var-sign-in: \f090;
-$fa-var-shop-slash: \e070;
-$fa-var-store-alt-slash: \e070;
-$fa-var-server: \f233;
-$fa-var-virus-covid-slash: \e4a9;
-$fa-var-shop-lock: \e4a5;
-$fa-var-hourglass-start: \f251;
-$fa-var-hourglass-1: \f251;
-$fa-var-blender-phone: \f6b6;
-$fa-var-building-wheat: \e4db;
-$fa-var-person-breastfeeding: \e53a;
-$fa-var-right-to-bracket: \f2f6;
-$fa-var-sign-in-alt: \f2f6;
-$fa-var-venus: \f221;
-$fa-var-passport: \f5ab;
-$fa-var-thumbtack-slash: \e68f;
-$fa-var-thumb-tack-slash: \e68f;
-$fa-var-heart-pulse: \f21e;
-$fa-var-heartbeat: \f21e;
-$fa-var-people-carry-box: \f4ce;
-$fa-var-people-carry: \f4ce;
-$fa-var-temperature-high: \f769;
-$fa-var-microchip: \f2db;
-$fa-var-crown: \f521;
-$fa-var-weight-hanging: \f5cd;
-$fa-var-xmarks-lines: \e59a;
-$fa-var-file-prescription: \f572;
-$fa-var-weight-scale: \f496;
-$fa-var-weight: \f496;
-$fa-var-user-group: \f500;
-$fa-var-user-friends: \f500;
-$fa-var-arrow-up-a-z: \f15e;
-$fa-var-sort-alpha-up: \f15e;
-$fa-var-chess-knight: \f441;
-$fa-var-face-laugh-squint: \f59b;
-$fa-var-laugh-squint: \f59b;
-$fa-var-wheelchair: \f193;
-$fa-var-circle-arrow-up: \f0aa;
-$fa-var-arrow-circle-up: \f0aa;
-$fa-var-toggle-on: \f205;
-$fa-var-person-walking: \f554;
-$fa-var-walking: \f554;
-$fa-var-l: \4c;
-$fa-var-fire: \f06d;
-$fa-var-bed-pulse: \f487;
-$fa-var-procedures: \f487;
-$fa-var-shuttle-space: \f197;
-$fa-var-space-shuttle: \f197;
-$fa-var-face-laugh: \f599;
-$fa-var-laugh: \f599;
-$fa-var-folder-open: \f07c;
-$fa-var-heart-circle-plus: \e500;
-$fa-var-code-fork: \e13b;
-$fa-var-city: \f64f;
-$fa-var-microphone-lines: \f3c9;
-$fa-var-microphone-alt: \f3c9;
-$fa-var-pepper-hot: \f816;
-$fa-var-unlock: \f09c;
-$fa-var-colon-sign: \e140;
-$fa-var-headset: \f590;
-$fa-var-store-slash: \e071;
-$fa-var-road-circle-xmark: \e566;
-$fa-var-user-minus: \f503;
-$fa-var-mars-stroke-up: \f22a;
-$fa-var-mars-stroke-v: \f22a;
-$fa-var-champagne-glasses: \f79f;
-$fa-var-glass-cheers: \f79f;
-$fa-var-clipboard: \f328;
-$fa-var-house-circle-exclamation: \e50a;
-$fa-var-file-arrow-up: \f574;
-$fa-var-file-upload: \f574;
-$fa-var-wifi: \f1eb;
-$fa-var-wifi-3: \f1eb;
-$fa-var-wifi-strong: \f1eb;
-$fa-var-bath: \f2cd;
-$fa-var-bathtub: \f2cd;
-$fa-var-underline: \f0cd;
-$fa-var-user-pen: \f4ff;
-$fa-var-user-edit: \f4ff;
-$fa-var-signature: \f5b7;
-$fa-var-stroopwafel: \f551;
-$fa-var-bold: \f032;
-$fa-var-anchor-lock: \e4ad;
-$fa-var-building-ngo: \e4d7;
-$fa-var-manat-sign: \e1d5;
-$fa-var-not-equal: \f53e;
-$fa-var-border-top-left: \f853;
-$fa-var-border-style: \f853;
-$fa-var-map-location-dot: \f5a0;
-$fa-var-map-marked-alt: \f5a0;
-$fa-var-jedi: \f669;
-$fa-var-square-poll-vertical: \f681;
-$fa-var-poll: \f681;
-$fa-var-mug-hot: \f7b6;
-$fa-var-car-battery: \f5df;
-$fa-var-battery-car: \f5df;
-$fa-var-gift: \f06b;
-$fa-var-dice-two: \f528;
-$fa-var-chess-queen: \f445;
-$fa-var-glasses: \f530;
-$fa-var-chess-board: \f43c;
-$fa-var-building-circle-check: \e4d2;
-$fa-var-person-chalkboard: \e53d;
-$fa-var-mars-stroke-right: \f22b;
-$fa-var-mars-stroke-h: \f22b;
-$fa-var-hand-back-fist: \f255;
-$fa-var-hand-rock: \f255;
-$fa-var-square-caret-up: \f151;
-$fa-var-caret-square-up: \f151;
-$fa-var-cloud-showers-water: \e4e4;
-$fa-var-chart-bar: \f080;
-$fa-var-bar-chart: \f080;
-$fa-var-hands-bubbles: \e05e;
-$fa-var-hands-wash: \e05e;
-$fa-var-less-than-equal: \f537;
-$fa-var-train: \f238;
-$fa-var-eye-low-vision: \f2a8;
-$fa-var-low-vision: \f2a8;
-$fa-var-crow: \f520;
-$fa-var-sailboat: \e445;
-$fa-var-window-restore: \f2d2;
-$fa-var-square-plus: \f0fe;
-$fa-var-plus-square: \f0fe;
-$fa-var-torii-gate: \f6a1;
-$fa-var-frog: \f52e;
-$fa-var-bucket: \e4cf;
-$fa-var-image: \f03e;
-$fa-var-microphone: \f130;
-$fa-var-cow: \f6c8;
-$fa-var-caret-up: \f0d8;
-$fa-var-screwdriver: \f54a;
-$fa-var-folder-closed: \e185;
-$fa-var-house-tsunami: \e515;
-$fa-var-square-nfi: \e576;
-$fa-var-arrow-up-from-ground-water: \e4b5;
-$fa-var-martini-glass: \f57b;
-$fa-var-glass-martini-alt: \f57b;
-$fa-var-square-binary: \e69b;
-$fa-var-rotate-left: \f2ea;
-$fa-var-rotate-back: \f2ea;
-$fa-var-rotate-backward: \f2ea;
-$fa-var-undo-alt: \f2ea;
-$fa-var-table-columns: \f0db;
-$fa-var-columns: \f0db;
-$fa-var-lemon: \f094;
-$fa-var-head-side-mask: \e063;
-$fa-var-handshake: \f2b5;
-$fa-var-gem: \f3a5;
-$fa-var-dolly: \f472;
-$fa-var-dolly-box: \f472;
-$fa-var-smoking: \f48d;
-$fa-var-minimize: \f78c;
-$fa-var-compress-arrows-alt: \f78c;
-$fa-var-monument: \f5a6;
-$fa-var-snowplow: \f7d2;
-$fa-var-angles-right: \f101;
-$fa-var-angle-double-right: \f101;
-$fa-var-cannabis: \f55f;
-$fa-var-circle-play: \f144;
-$fa-var-play-circle: \f144;
-$fa-var-tablets: \f490;
-$fa-var-ethernet: \f796;
-$fa-var-euro-sign: \f153;
-$fa-var-eur: \f153;
-$fa-var-euro: \f153;
-$fa-var-chair: \f6c0;
-$fa-var-circle-check: \f058;
-$fa-var-check-circle: \f058;
-$fa-var-circle-stop: \f28d;
-$fa-var-stop-circle: \f28d;
-$fa-var-compass-drafting: \f568;
-$fa-var-drafting-compass: \f568;
-$fa-var-plate-wheat: \e55a;
-$fa-var-icicles: \f7ad;
-$fa-var-person-shelter: \e54f;
-$fa-var-neuter: \f22c;
-$fa-var-id-badge: \f2c1;
-$fa-var-marker: \f5a1;
-$fa-var-face-laugh-beam: \f59a;
-$fa-var-laugh-beam: \f59a;
-$fa-var-helicopter-symbol: \e502;
-$fa-var-universal-access: \f29a;
-$fa-var-circle-chevron-up: \f139;
-$fa-var-chevron-circle-up: \f139;
-$fa-var-lari-sign: \e1c8;
-$fa-var-volcano: \f770;
-$fa-var-person-walking-dashed-line-arrow-right: \e553;
-$fa-var-sterling-sign: \f154;
-$fa-var-gbp: \f154;
-$fa-var-pound-sign: \f154;
-$fa-var-viruses: \e076;
-$fa-var-square-person-confined: \e577;
-$fa-var-user-tie: \f508;
-$fa-var-arrow-down-long: \f175;
-$fa-var-long-arrow-down: \f175;
-$fa-var-tent-arrow-down-to-line: \e57e;
-$fa-var-certificate: \f0a3;
-$fa-var-reply-all: \f122;
-$fa-var-mail-reply-all: \f122;
-$fa-var-suitcase: \f0f2;
-$fa-var-person-skating: \f7c5;
-$fa-var-skating: \f7c5;
-$fa-var-filter-circle-dollar: \f662;
-$fa-var-funnel-dollar: \f662;
-$fa-var-camera-retro: \f083;
-$fa-var-circle-arrow-down: \f0ab;
-$fa-var-arrow-circle-down: \f0ab;
-$fa-var-file-import: \f56f;
-$fa-var-arrow-right-to-file: \f56f;
-$fa-var-square-arrow-up-right: \f14c;
-$fa-var-external-link-square: \f14c;
-$fa-var-box-open: \f49e;
-$fa-var-scroll: \f70e;
-$fa-var-spa: \f5bb;
-$fa-var-location-pin-lock: \e51f;
-$fa-var-pause: \f04c;
-$fa-var-hill-avalanche: \e507;
-$fa-var-temperature-empty: \f2cb;
-$fa-var-temperature-0: \f2cb;
-$fa-var-thermometer-0: \f2cb;
-$fa-var-thermometer-empty: \f2cb;
-$fa-var-bomb: \f1e2;
-$fa-var-registered: \f25d;
-$fa-var-address-card: \f2bb;
-$fa-var-contact-card: \f2bb;
-$fa-var-vcard: \f2bb;
-$fa-var-scale-unbalanced-flip: \f516;
-$fa-var-balance-scale-right: \f516;
-$fa-var-subscript: \f12c;
-$fa-var-diamond-turn-right: \f5eb;
-$fa-var-directions: \f5eb;
-$fa-var-burst: \e4dc;
-$fa-var-house-laptop: \e066;
-$fa-var-laptop-house: \e066;
-$fa-var-face-tired: \f5c8;
-$fa-var-tired: \f5c8;
-$fa-var-money-bills: \e1f3;
-$fa-var-smog: \f75f;
-$fa-var-crutch: \f7f7;
-$fa-var-cloud-arrow-up: \f0ee;
-$fa-var-cloud-upload: \f0ee;
-$fa-var-cloud-upload-alt: \f0ee;
-$fa-var-palette: \f53f;
-$fa-var-arrows-turn-right: \e4c0;
-$fa-var-vest: \e085;
-$fa-var-ferry: \e4ea;
-$fa-var-arrows-down-to-people: \e4b9;
-$fa-var-seedling: \f4d8;
-$fa-var-sprout: \f4d8;
-$fa-var-left-right: \f337;
-$fa-var-arrows-alt-h: \f337;
-$fa-var-boxes-packing: \e4c7;
-$fa-var-circle-arrow-left: \f0a8;
-$fa-var-arrow-circle-left: \f0a8;
-$fa-var-group-arrows-rotate: \e4f6;
-$fa-var-bowl-food: \e4c6;
-$fa-var-candy-cane: \f786;
-$fa-var-arrow-down-wide-short: \f160;
-$fa-var-sort-amount-asc: \f160;
-$fa-var-sort-amount-down: \f160;
-$fa-var-cloud-bolt: \f76c;
-$fa-var-thunderstorm: \f76c;
-$fa-var-text-slash: \f87d;
-$fa-var-remove-format: \f87d;
-$fa-var-face-smile-wink: \f4da;
-$fa-var-smile-wink: \f4da;
-$fa-var-file-word: \f1c2;
-$fa-var-file-powerpoint: \f1c4;
-$fa-var-arrows-left-right: \f07e;
-$fa-var-arrows-h: \f07e;
-$fa-var-house-lock: \e510;
-$fa-var-cloud-arrow-down: \f0ed;
-$fa-var-cloud-download: \f0ed;
-$fa-var-cloud-download-alt: \f0ed;
-$fa-var-children: \e4e1;
-$fa-var-chalkboard: \f51b;
-$fa-var-blackboard: \f51b;
-$fa-var-user-large-slash: \f4fa;
-$fa-var-user-alt-slash: \f4fa;
-$fa-var-envelope-open: \f2b6;
-$fa-var-handshake-simple-slash: \e05f;
-$fa-var-handshake-alt-slash: \e05f;
-$fa-var-mattress-pillow: \e525;
-$fa-var-guarani-sign: \e19a;
-$fa-var-arrows-rotate: \f021;
-$fa-var-refresh: \f021;
-$fa-var-sync: \f021;
-$fa-var-fire-extinguisher: \f134;
-$fa-var-cruzeiro-sign: \e152;
-$fa-var-greater-than-equal: \f532;
-$fa-var-shield-halved: \f3ed;
-$fa-var-shield-alt: \f3ed;
-$fa-var-book-atlas: \f558;
-$fa-var-atlas: \f558;
-$fa-var-virus: \e074;
-$fa-var-envelope-circle-check: \e4e8;
-$fa-var-layer-group: \f5fd;
-$fa-var-arrows-to-dot: \e4be;
-$fa-var-archway: \f557;
-$fa-var-heart-circle-check: \e4fd;
-$fa-var-house-chimney-crack: \f6f1;
-$fa-var-house-damage: \f6f1;
-$fa-var-file-zipper: \f1c6;
-$fa-var-file-archive: \f1c6;
-$fa-var-square: \f0c8;
-$fa-var-martini-glass-empty: \f000;
-$fa-var-glass-martini: \f000;
-$fa-var-couch: \f4b8;
-$fa-var-cedi-sign: \e0df;
-$fa-var-italic: \f033;
-$fa-var-table-cells-column-lock: \e678;
-$fa-var-church: \f51d;
-$fa-var-comments-dollar: \f653;
-$fa-var-democrat: \f747;
-$fa-var-z: \5a;
-$fa-var-person-skiing: \f7c9;
-$fa-var-skiing: \f7c9;
-$fa-var-road-lock: \e567;
-$fa-var-a: \41;
-$fa-var-temperature-arrow-down: \e03f;
-$fa-var-temperature-down: \e03f;
-$fa-var-feather-pointed: \f56b;
-$fa-var-feather-alt: \f56b;
-$fa-var-p: \50;
-$fa-var-snowflake: \f2dc;
-$fa-var-newspaper: \f1ea;
-$fa-var-rectangle-ad: \f641;
-$fa-var-ad: \f641;
-$fa-var-circle-arrow-right: \f0a9;
-$fa-var-arrow-circle-right: \f0a9;
-$fa-var-filter-circle-xmark: \e17b;
-$fa-var-locust: \e520;
-$fa-var-sort: \f0dc;
-$fa-var-unsorted: \f0dc;
-$fa-var-list-ol: \f0cb;
-$fa-var-list-1-2: \f0cb;
-$fa-var-list-numeric: \f0cb;
-$fa-var-person-dress-burst: \e544;
-$fa-var-money-check-dollar: \f53d;
-$fa-var-money-check-alt: \f53d;
-$fa-var-vector-square: \f5cb;
-$fa-var-bread-slice: \f7ec;
-$fa-var-language: \f1ab;
-$fa-var-face-kiss-wink-heart: \f598;
-$fa-var-kiss-wink-heart: \f598;
-$fa-var-filter: \f0b0;
-$fa-var-question: \3f;
-$fa-var-file-signature: \f573;
-$fa-var-up-down-left-right: \f0b2;
-$fa-var-arrows-alt: \f0b2;
-$fa-var-house-chimney-user: \e065;
-$fa-var-hand-holding-heart: \f4be;
-$fa-var-puzzle-piece: \f12e;
-$fa-var-money-check: \f53c;
-$fa-var-star-half-stroke: \f5c0;
-$fa-var-star-half-alt: \f5c0;
-$fa-var-code: \f121;
-$fa-var-whiskey-glass: \f7a0;
-$fa-var-glass-whiskey: \f7a0;
-$fa-var-building-circle-exclamation: \e4d3;
-$fa-var-magnifying-glass-chart: \e522;
-$fa-var-arrow-up-right-from-square: \f08e;
-$fa-var-external-link: \f08e;
-$fa-var-cubes-stacked: \e4e6;
-$fa-var-won-sign: \f159;
-$fa-var-krw: \f159;
-$fa-var-won: \f159;
-$fa-var-virus-covid: \e4a8;
-$fa-var-austral-sign: \e0a9;
-$fa-var-f: \46;
-$fa-var-leaf: \f06c;
-$fa-var-road: \f018;
-$fa-var-taxi: \f1ba;
-$fa-var-cab: \f1ba;
-$fa-var-person-circle-plus: \e541;
-$fa-var-chart-pie: \f200;
-$fa-var-pie-chart: \f200;
-$fa-var-bolt-lightning: \e0b7;
-$fa-var-sack-xmark: \e56a;
-$fa-var-file-excel: \f1c3;
-$fa-var-file-contract: \f56c;
-$fa-var-fish-fins: \e4f2;
-$fa-var-building-flag: \e4d5;
-$fa-var-face-grin-beam: \f582;
-$fa-var-grin-beam: \f582;
-$fa-var-object-ungroup: \f248;
-$fa-var-poop: \f619;
-$fa-var-location-pin: \f041;
-$fa-var-map-marker: \f041;
-$fa-var-kaaba: \f66b;
-$fa-var-toilet-paper: \f71e;
-$fa-var-helmet-safety: \f807;
-$fa-var-hard-hat: \f807;
-$fa-var-hat-hard: \f807;
-$fa-var-eject: \f052;
-$fa-var-circle-right: \f35a;
-$fa-var-arrow-alt-circle-right: \f35a;
-$fa-var-plane-circle-check: \e555;
-$fa-var-face-rolling-eyes: \f5a5;
-$fa-var-meh-rolling-eyes: \f5a5;
-$fa-var-object-group: \f247;
-$fa-var-chart-line: \f201;
-$fa-var-line-chart: \f201;
-$fa-var-mask-ventilator: \e524;
-$fa-var-arrow-right: \f061;
-$fa-var-signs-post: \f277;
-$fa-var-map-signs: \f277;
-$fa-var-cash-register: \f788;
-$fa-var-person-circle-question: \e542;
-$fa-var-h: \48;
-$fa-var-tarp: \e57b;
-$fa-var-screwdriver-wrench: \f7d9;
-$fa-var-tools: \f7d9;
-$fa-var-arrows-to-eye: \e4bf;
-$fa-var-plug-circle-bolt: \e55b;
-$fa-var-heart: \f004;
-$fa-var-mars-and-venus: \f224;
-$fa-var-house-user: \e1b0;
-$fa-var-home-user: \e1b0;
-$fa-var-dumpster-fire: \f794;
-$fa-var-house-crack: \e3b1;
-$fa-var-martini-glass-citrus: \f561;
-$fa-var-cocktail: \f561;
-$fa-var-face-surprise: \f5c2;
-$fa-var-surprise: \f5c2;
-$fa-var-bottle-water: \e4c5;
-$fa-var-circle-pause: \f28b;
-$fa-var-pause-circle: \f28b;
-$fa-var-toilet-paper-slash: \e072;
-$fa-var-apple-whole: \f5d1;
-$fa-var-apple-alt: \f5d1;
-$fa-var-kitchen-set: \e51a;
-$fa-var-r: \52;
-$fa-var-temperature-quarter: \f2ca;
-$fa-var-temperature-1: \f2ca;
-$fa-var-thermometer-1: \f2ca;
-$fa-var-thermometer-quarter: \f2ca;
-$fa-var-cube: \f1b2;
-$fa-var-bitcoin-sign: \e0b4;
-$fa-var-shield-dog: \e573;
-$fa-var-solar-panel: \f5ba;
-$fa-var-lock-open: \f3c1;
-$fa-var-elevator: \e16d;
-$fa-var-money-bill-transfer: \e528;
-$fa-var-money-bill-trend-up: \e529;
-$fa-var-house-flood-water-circle-arrow-right: \e50f;
-$fa-var-square-poll-horizontal: \f682;
-$fa-var-poll-h: \f682;
-$fa-var-circle: \f111;
-$fa-var-backward-fast: \f049;
-$fa-var-fast-backward: \f049;
-$fa-var-recycle: \f1b8;
-$fa-var-user-astronaut: \f4fb;
-$fa-var-plane-slash: \e069;
-$fa-var-trademark: \f25c;
-$fa-var-basketball: \f434;
-$fa-var-basketball-ball: \f434;
-$fa-var-satellite-dish: \f7c0;
-$fa-var-circle-up: \f35b;
-$fa-var-arrow-alt-circle-up: \f35b;
-$fa-var-mobile-screen-button: \f3cd;
-$fa-var-mobile-alt: \f3cd;
-$fa-var-volume-high: \f028;
-$fa-var-volume-up: \f028;
-$fa-var-users-rays: \e593;
-$fa-var-wallet: \f555;
-$fa-var-clipboard-check: \f46c;
-$fa-var-file-audio: \f1c7;
-$fa-var-burger: \f805;
-$fa-var-hamburger: \f805;
-$fa-var-wrench: \f0ad;
-$fa-var-bugs: \e4d0;
-$fa-var-rupee-sign: \f156;
-$fa-var-rupee: \f156;
-$fa-var-file-image: \f1c5;
-$fa-var-circle-question: \f059;
-$fa-var-question-circle: \f059;
-$fa-var-plane-departure: \f5b0;
-$fa-var-handshake-slash: \e060;
-$fa-var-book-bookmark: \e0bb;
-$fa-var-code-branch: \f126;
-$fa-var-hat-cowboy: \f8c0;
-$fa-var-bridge: \e4c8;
-$fa-var-phone-flip: \f879;
-$fa-var-phone-alt: \f879;
-$fa-var-truck-front: \e2b7;
-$fa-var-cat: \f6be;
-$fa-var-anchor-circle-exclamation: \e4ab;
-$fa-var-truck-field: \e58d;
-$fa-var-route: \f4d7;
-$fa-var-clipboard-question: \e4e3;
-$fa-var-panorama: \e209;
-$fa-var-comment-medical: \f7f5;
-$fa-var-teeth-open: \f62f;
-$fa-var-file-circle-minus: \e4ed;
-$fa-var-tags: \f02c;
-$fa-var-wine-glass: \f4e3;
-$fa-var-forward-fast: \f050;
-$fa-var-fast-forward: \f050;
-$fa-var-face-meh-blank: \f5a4;
-$fa-var-meh-blank: \f5a4;
-$fa-var-square-parking: \f540;
-$fa-var-parking: \f540;
-$fa-var-house-signal: \e012;
-$fa-var-bars-progress: \f828;
-$fa-var-tasks-alt: \f828;
-$fa-var-faucet-drip: \e006;
-$fa-var-cart-flatbed: \f474;
-$fa-var-dolly-flatbed: \f474;
-$fa-var-ban-smoking: \f54d;
-$fa-var-smoking-ban: \f54d;
-$fa-var-terminal: \f120;
-$fa-var-mobile-button: \f10b;
-$fa-var-house-medical-flag: \e514;
-$fa-var-basket-shopping: \f291;
-$fa-var-shopping-basket: \f291;
-$fa-var-tape: \f4db;
-$fa-var-bus-simple: \f55e;
-$fa-var-bus-alt: \f55e;
-$fa-var-eye: \f06e;
-$fa-var-face-sad-cry: \f5b3;
-$fa-var-sad-cry: \f5b3;
-$fa-var-audio-description: \f29e;
-$fa-var-person-military-to-person: \e54c;
-$fa-var-file-shield: \e4f0;
-$fa-var-user-slash: \f506;
-$fa-var-pen: \f304;
-$fa-var-tower-observation: \e586;
-$fa-var-file-code: \f1c9;
-$fa-var-signal: \f012;
-$fa-var-signal-5: \f012;
-$fa-var-signal-perfect: \f012;
-$fa-var-bus: \f207;
-$fa-var-heart-circle-xmark: \e501;
-$fa-var-house-chimney: \e3af;
-$fa-var-home-lg: \e3af;
-$fa-var-window-maximize: \f2d0;
-$fa-var-face-frown: \f119;
-$fa-var-frown: \f119;
-$fa-var-prescription: \f5b1;
-$fa-var-shop: \f54f;
-$fa-var-store-alt: \f54f;
-$fa-var-floppy-disk: \f0c7;
-$fa-var-save: \f0c7;
-$fa-var-vihara: \f6a7;
-$fa-var-scale-unbalanced: \f515;
-$fa-var-balance-scale-left: \f515;
-$fa-var-sort-up: \f0de;
-$fa-var-sort-asc: \f0de;
-$fa-var-comment-dots: \f4ad;
-$fa-var-commenting: \f4ad;
-$fa-var-plant-wilt: \e5aa;
-$fa-var-diamond: \f219;
-$fa-var-face-grin-squint: \f585;
-$fa-var-grin-squint: \f585;
-$fa-var-hand-holding-dollar: \f4c0;
-$fa-var-hand-holding-usd: \f4c0;
-$fa-var-chart-diagram: \e695;
-$fa-var-bacterium: \e05a;
-$fa-var-hand-pointer: \f25a;
-$fa-var-drum-steelpan: \f56a;
-$fa-var-hand-scissors: \f257;
-$fa-var-hands-praying: \f684;
-$fa-var-praying-hands: \f684;
-$fa-var-arrow-rotate-right: \f01e;
-$fa-var-arrow-right-rotate: \f01e;
-$fa-var-arrow-rotate-forward: \f01e;
-$fa-var-redo: \f01e;
-$fa-var-biohazard: \f780;
-$fa-var-location-crosshairs: \f601;
-$fa-var-location: \f601;
-$fa-var-mars-double: \f227;
-$fa-var-child-dress: \e59c;
-$fa-var-users-between-lines: \e591;
-$fa-var-lungs-virus: \e067;
-$fa-var-face-grin-tears: \f588;
-$fa-var-grin-tears: \f588;
-$fa-var-phone: \f095;
-$fa-var-calendar-xmark: \f273;
-$fa-var-calendar-times: \f273;
-$fa-var-child-reaching: \e59d;
-$fa-var-head-side-virus: \e064;
-$fa-var-user-gear: \f4fe;
-$fa-var-user-cog: \f4fe;
-$fa-var-arrow-up-1-9: \f163;
-$fa-var-sort-numeric-up: \f163;
-$fa-var-door-closed: \f52a;
-$fa-var-shield-virus: \e06c;
-$fa-var-dice-six: \f526;
-$fa-var-mosquito-net: \e52c;
-$fa-var-file-fragment: \e697;
-$fa-var-bridge-water: \e4ce;
-$fa-var-person-booth: \f756;
-$fa-var-text-width: \f035;
-$fa-var-hat-wizard: \f6e8;
-$fa-var-pen-fancy: \f5ac;
-$fa-var-person-digging: \f85e;
-$fa-var-digging: \f85e;
-$fa-var-trash: \f1f8;
-$fa-var-gauge-simple: \f629;
-$fa-var-gauge-simple-med: \f629;
-$fa-var-tachometer-average: \f629;
-$fa-var-book-medical: \f7e6;
-$fa-var-poo: \f2fe;
-$fa-var-quote-right: \f10e;
-$fa-var-quote-right-alt: \f10e;
-$fa-var-shirt: \f553;
-$fa-var-t-shirt: \f553;
-$fa-var-tshirt: \f553;
-$fa-var-cubes: \f1b3;
-$fa-var-divide: \f529;
-$fa-var-tenge-sign: \f7d7;
-$fa-var-tenge: \f7d7;
-$fa-var-headphones: \f025;
-$fa-var-hands-holding: \f4c2;
-$fa-var-hands-clapping: \e1a8;
-$fa-var-republican: \f75e;
-$fa-var-arrow-left: \f060;
-$fa-var-person-circle-xmark: \e543;
-$fa-var-ruler: \f545;
-$fa-var-align-left: \f036;
-$fa-var-dice-d6: \f6d1;
-$fa-var-restroom: \f7bd;
-$fa-var-j: \4a;
-$fa-var-users-viewfinder: \e595;
-$fa-var-file-video: \f1c8;
-$fa-var-up-right-from-square: \f35d;
-$fa-var-external-link-alt: \f35d;
-$fa-var-table-cells: \f00a;
-$fa-var-th: \f00a;
-$fa-var-file-pdf: \f1c1;
-$fa-var-book-bible: \f647;
-$fa-var-bible: \f647;
-$fa-var-o: \4f;
-$fa-var-suitcase-medical: \f0fa;
-$fa-var-medkit: \f0fa;
-$fa-var-user-secret: \f21b;
-$fa-var-otter: \f700;
-$fa-var-person-dress: \f182;
-$fa-var-female: \f182;
-$fa-var-comment-dollar: \f651;
-$fa-var-business-time: \f64a;
-$fa-var-briefcase-clock: \f64a;
-$fa-var-table-cells-large: \f009;
-$fa-var-th-large: \f009;
-$fa-var-book-tanakh: \f827;
-$fa-var-tanakh: \f827;
-$fa-var-phone-volume: \f2a0;
-$fa-var-volume-control-phone: \f2a0;
-$fa-var-hat-cowboy-side: \f8c1;
-$fa-var-clipboard-user: \f7f3;
-$fa-var-child: \f1ae;
-$fa-var-lira-sign: \f195;
-$fa-var-satellite: \f7bf;
-$fa-var-plane-lock: \e558;
-$fa-var-tag: \f02b;
-$fa-var-comment: \f075;
-$fa-var-cake-candles: \f1fd;
-$fa-var-birthday-cake: \f1fd;
-$fa-var-cake: \f1fd;
-$fa-var-envelope: \f0e0;
-$fa-var-angles-up: \f102;
-$fa-var-angle-double-up: \f102;
-$fa-var-paperclip: \f0c6;
-$fa-var-arrow-right-to-city: \e4b3;
-$fa-var-ribbon: \f4d6;
-$fa-var-lungs: \f604;
-$fa-var-arrow-up-9-1: \f887;
-$fa-var-sort-numeric-up-alt: \f887;
-$fa-var-litecoin-sign: \e1d3;
-$fa-var-border-none: \f850;
-$fa-var-circle-nodes: \e4e2;
-$fa-var-parachute-box: \f4cd;
-$fa-var-indent: \f03c;
-$fa-var-truck-field-un: \e58e;
-$fa-var-hourglass: \f254;
-$fa-var-hourglass-empty: \f254;
-$fa-var-mountain: \f6fc;
-$fa-var-user-doctor: \f0f0;
-$fa-var-user-md: \f0f0;
-$fa-var-circle-info: \f05a;
-$fa-var-info-circle: \f05a;
-$fa-var-cloud-meatball: \f73b;
-$fa-var-camera: \f030;
-$fa-var-camera-alt: \f030;
-$fa-var-square-virus: \e578;
-$fa-var-meteor: \f753;
-$fa-var-car-on: \e4dd;
-$fa-var-sleigh: \f7cc;
-$fa-var-arrow-down-1-9: \f162;
-$fa-var-sort-numeric-asc: \f162;
-$fa-var-sort-numeric-down: \f162;
-$fa-var-hand-holding-droplet: \f4c1;
-$fa-var-hand-holding-water: \f4c1;
-$fa-var-water: \f773;
-$fa-var-calendar-check: \f274;
-$fa-var-braille: \f2a1;
-$fa-var-prescription-bottle-medical: \f486;
-$fa-var-prescription-bottle-alt: \f486;
-$fa-var-landmark: \f66f;
-$fa-var-truck: \f0d1;
-$fa-var-crosshairs: \f05b;
-$fa-var-person-cane: \e53c;
-$fa-var-tent: \e57d;
-$fa-var-vest-patches: \e086;
-$fa-var-check-double: \f560;
-$fa-var-arrow-down-a-z: \f15d;
-$fa-var-sort-alpha-asc: \f15d;
-$fa-var-sort-alpha-down: \f15d;
-$fa-var-money-bill-wheat: \e52a;
-$fa-var-cookie: \f563;
-$fa-var-arrow-rotate-left: \f0e2;
-$fa-var-arrow-left-rotate: \f0e2;
-$fa-var-arrow-rotate-back: \f0e2;
-$fa-var-arrow-rotate-backward: \f0e2;
-$fa-var-undo: \f0e2;
-$fa-var-hard-drive: \f0a0;
-$fa-var-hdd: \f0a0;
-$fa-var-face-grin-squint-tears: \f586;
-$fa-var-grin-squint-tears: \f586;
-$fa-var-dumbbell: \f44b;
-$fa-var-rectangle-list: \f022;
-$fa-var-list-alt: \f022;
-$fa-var-tarp-droplet: \e57c;
-$fa-var-house-medical-circle-check: \e511;
-$fa-var-person-skiing-nordic: \f7ca;
-$fa-var-skiing-nordic: \f7ca;
-$fa-var-calendar-plus: \f271;
-$fa-var-plane-arrival: \f5af;
-$fa-var-circle-left: \f359;
-$fa-var-arrow-alt-circle-left: \f359;
-$fa-var-train-subway: \f239;
-$fa-var-subway: \f239;
-$fa-var-chart-gantt: \e0e4;
-$fa-var-indian-rupee-sign: \e1bc;
-$fa-var-indian-rupee: \e1bc;
-$fa-var-inr: \e1bc;
-$fa-var-crop-simple: \f565;
-$fa-var-crop-alt: \f565;
-$fa-var-money-bill-1: \f3d1;
-$fa-var-money-bill-alt: \f3d1;
-$fa-var-left-long: \f30a;
-$fa-var-long-arrow-alt-left: \f30a;
-$fa-var-dna: \f471;
-$fa-var-virus-slash: \e075;
-$fa-var-minus: \f068;
-$fa-var-subtract: \f068;
-$fa-var-chess: \f439;
-$fa-var-arrow-left-long: \f177;
-$fa-var-long-arrow-left: \f177;
-$fa-var-plug-circle-check: \e55c;
-$fa-var-street-view: \f21d;
-$fa-var-franc-sign: \e18f;
-$fa-var-volume-off: \f026;
-$fa-var-hands-asl-interpreting: \f2a3;
-$fa-var-american-sign-language-interpreting: \f2a3;
-$fa-var-asl-interpreting: \f2a3;
-$fa-var-hands-american-sign-language-interpreting: \f2a3;
-$fa-var-gear: \f013;
-$fa-var-cog: \f013;
-$fa-var-droplet-slash: \f5c7;
-$fa-var-tint-slash: \f5c7;
-$fa-var-mosque: \f678;
-$fa-var-mosquito: \e52b;
-$fa-var-star-of-david: \f69a;
-$fa-var-person-military-rifle: \e54b;
-$fa-var-cart-shopping: \f07a;
-$fa-var-shopping-cart: \f07a;
-$fa-var-vials: \f493;
-$fa-var-plug-circle-plus: \e55f;
-$fa-var-place-of-worship: \f67f;
-$fa-var-grip-vertical: \f58e;
-$fa-var-hexagon-nodes: \e699;
-$fa-var-arrow-turn-up: \f148;
-$fa-var-level-up: \f148;
-$fa-var-u: \55;
-$fa-var-square-root-variable: \f698;
-$fa-var-square-root-alt: \f698;
-$fa-var-clock: \f017;
-$fa-var-clock-four: \f017;
-$fa-var-backward-step: \f048;
-$fa-var-step-backward: \f048;
-$fa-var-pallet: \f482;
-$fa-var-faucet: \e005;
-$fa-var-baseball-bat-ball: \f432;
-$fa-var-s: \53;
-$fa-var-timeline: \e29c;
-$fa-var-keyboard: \f11c;
-$fa-var-caret-down: \f0d7;
-$fa-var-house-chimney-medical: \f7f2;
-$fa-var-clinic-medical: \f7f2;
-$fa-var-temperature-three-quarters: \f2c8;
-$fa-var-temperature-3: \f2c8;
-$fa-var-thermometer-3: \f2c8;
-$fa-var-thermometer-three-quarters: \f2c8;
-$fa-var-mobile-screen: \f3cf;
-$fa-var-mobile-android-alt: \f3cf;
-$fa-var-plane-up: \e22d;
-$fa-var-piggy-bank: \f4d3;
-$fa-var-battery-half: \f242;
-$fa-var-battery-3: \f242;
-$fa-var-mountain-city: \e52e;
-$fa-var-coins: \f51e;
-$fa-var-khanda: \f66d;
-$fa-var-sliders: \f1de;
-$fa-var-sliders-h: \f1de;
-$fa-var-folder-tree: \f802;
-$fa-var-network-wired: \f6ff;
-$fa-var-map-pin: \f276;
-$fa-var-hamsa: \f665;
-$fa-var-cent-sign: \e3f5;
-$fa-var-flask: \f0c3;
-$fa-var-person-pregnant: \e31e;
-$fa-var-wand-sparkles: \f72b;
-$fa-var-ellipsis-vertical: \f142;
-$fa-var-ellipsis-v: \f142;
-$fa-var-ticket: \f145;
-$fa-var-power-off: \f011;
-$fa-var-right-long: \f30b;
-$fa-var-long-arrow-alt-right: \f30b;
-$fa-var-flag-usa: \f74d;
-$fa-var-laptop-file: \e51d;
-$fa-var-tty: \f1e4;
-$fa-var-teletype: \f1e4;
-$fa-var-diagram-next: \e476;
-$fa-var-person-rifle: \e54e;
-$fa-var-house-medical-circle-exclamation: \e512;
-$fa-var-closed-captioning: \f20a;
-$fa-var-person-hiking: \f6ec;
-$fa-var-hiking: \f6ec;
-$fa-var-venus-double: \f226;
-$fa-var-images: \f302;
-$fa-var-calculator: \f1ec;
-$fa-var-people-pulling: \e535;
-$fa-var-n: \4e;
-$fa-var-cable-car: \f7da;
-$fa-var-tram: \f7da;
-$fa-var-cloud-rain: \f73d;
-$fa-var-building-circle-xmark: \e4d4;
-$fa-var-ship: \f21a;
-$fa-var-arrows-down-to-line: \e4b8;
-$fa-var-download: \f019;
-$fa-var-face-grin: \f580;
-$fa-var-grin: \f580;
-$fa-var-delete-left: \f55a;
-$fa-var-backspace: \f55a;
-$fa-var-eye-dropper: \f1fb;
-$fa-var-eye-dropper-empty: \f1fb;
-$fa-var-eyedropper: \f1fb;
-$fa-var-file-circle-check: \e5a0;
-$fa-var-forward: \f04e;
-$fa-var-mobile: \f3ce;
-$fa-var-mobile-android: \f3ce;
-$fa-var-mobile-phone: \f3ce;
-$fa-var-face-meh: \f11a;
-$fa-var-meh: \f11a;
-$fa-var-align-center: \f037;
-$fa-var-book-skull: \f6b7;
-$fa-var-book-dead: \f6b7;
-$fa-var-id-card: \f2c2;
-$fa-var-drivers-license: \f2c2;
-$fa-var-outdent: \f03b;
-$fa-var-dedent: \f03b;
-$fa-var-heart-circle-exclamation: \e4fe;
-$fa-var-house: \f015;
-$fa-var-home: \f015;
-$fa-var-home-alt: \f015;
-$fa-var-home-lg-alt: \f015;
-$fa-var-calendar-week: \f784;
-$fa-var-laptop-medical: \f812;
-$fa-var-b: \42;
-$fa-var-file-medical: \f477;
-$fa-var-dice-one: \f525;
-$fa-var-kiwi-bird: \f535;
-$fa-var-arrow-right-arrow-left: \f0ec;
-$fa-var-exchange: \f0ec;
-$fa-var-rotate-right: \f2f9;
-$fa-var-redo-alt: \f2f9;
-$fa-var-rotate-forward: \f2f9;
-$fa-var-utensils: \f2e7;
-$fa-var-cutlery: \f2e7;
-$fa-var-arrow-up-wide-short: \f161;
-$fa-var-sort-amount-up: \f161;
-$fa-var-mill-sign: \e1ed;
-$fa-var-bowl-rice: \e2eb;
-$fa-var-skull: \f54c;
-$fa-var-tower-broadcast: \f519;
-$fa-var-broadcast-tower: \f519;
-$fa-var-truck-pickup: \f63c;
-$fa-var-up-long: \f30c;
-$fa-var-long-arrow-alt-up: \f30c;
-$fa-var-stop: \f04d;
-$fa-var-code-merge: \f387;
-$fa-var-upload: \f093;
-$fa-var-hurricane: \f751;
-$fa-var-mound: \e52d;
-$fa-var-toilet-portable: \e583;
-$fa-var-compact-disc: \f51f;
-$fa-var-file-arrow-down: \f56d;
-$fa-var-file-download: \f56d;
-$fa-var-caravan: \f8ff;
-$fa-var-shield-cat: \e572;
-$fa-var-bolt: \f0e7;
-$fa-var-zap: \f0e7;
-$fa-var-glass-water: \e4f4;
-$fa-var-oil-well: \e532;
-$fa-var-vault: \e2c5;
-$fa-var-mars: \f222;
-$fa-var-toilet: \f7d8;
-$fa-var-plane-circle-xmark: \e557;
-$fa-var-yen-sign: \f157;
-$fa-var-cny: \f157;
-$fa-var-jpy: \f157;
-$fa-var-rmb: \f157;
-$fa-var-yen: \f157;
-$fa-var-ruble-sign: \f158;
-$fa-var-rouble: \f158;
-$fa-var-rub: \f158;
-$fa-var-ruble: \f158;
-$fa-var-sun: \f185;
-$fa-var-guitar: \f7a6;
-$fa-var-face-laugh-wink: \f59c;
-$fa-var-laugh-wink: \f59c;
-$fa-var-horse-head: \f7ab;
-$fa-var-bore-hole: \e4c3;
-$fa-var-industry: \f275;
-$fa-var-circle-down: \f358;
-$fa-var-arrow-alt-circle-down: \f358;
-$fa-var-arrows-turn-to-dots: \e4c1;
-$fa-var-florin-sign: \e184;
-$fa-var-arrow-down-short-wide: \f884;
-$fa-var-sort-amount-desc: \f884;
-$fa-var-sort-amount-down-alt: \f884;
-$fa-var-less-than: \3c;
-$fa-var-angle-down: \f107;
-$fa-var-car-tunnel: \e4de;
-$fa-var-head-side-cough: \e061;
-$fa-var-grip-lines: \f7a4;
-$fa-var-thumbs-down: \f165;
-$fa-var-user-lock: \f502;
-$fa-var-arrow-right-long: \f178;
-$fa-var-long-arrow-right: \f178;
-$fa-var-anchor-circle-xmark: \e4ac;
-$fa-var-ellipsis: \f141;
-$fa-var-ellipsis-h: \f141;
-$fa-var-chess-pawn: \f443;
-$fa-var-kit-medical: \f479;
-$fa-var-first-aid: \f479;
-$fa-var-person-through-window: \e5a9;
-$fa-var-toolbox: \f552;
-$fa-var-hands-holding-circle: \e4fb;
-$fa-var-bug: \f188;
-$fa-var-credit-card: \f09d;
-$fa-var-credit-card-alt: \f09d;
-$fa-var-car: \f1b9;
-$fa-var-automobile: \f1b9;
-$fa-var-hand-holding-hand: \e4f7;
-$fa-var-book-open-reader: \f5da;
-$fa-var-book-reader: \f5da;
-$fa-var-mountain-sun: \e52f;
-$fa-var-arrows-left-right-to-line: \e4ba;
-$fa-var-dice-d20: \f6cf;
-$fa-var-truck-droplet: \e58c;
-$fa-var-file-circle-xmark: \e5a1;
-$fa-var-temperature-arrow-up: \e040;
-$fa-var-temperature-up: \e040;
-$fa-var-medal: \f5a2;
-$fa-var-bed: \f236;
-$fa-var-square-h: \f0fd;
-$fa-var-h-square: \f0fd;
-$fa-var-podcast: \f2ce;
-$fa-var-temperature-full: \f2c7;
-$fa-var-temperature-4: \f2c7;
-$fa-var-thermometer-4: \f2c7;
-$fa-var-thermometer-full: \f2c7;
-$fa-var-bell: \f0f3;
-$fa-var-superscript: \f12b;
-$fa-var-plug-circle-xmark: \e560;
-$fa-var-star-of-life: \f621;
-$fa-var-phone-slash: \f3dd;
-$fa-var-paint-roller: \f5aa;
-$fa-var-handshake-angle: \f4c4;
-$fa-var-hands-helping: \f4c4;
-$fa-var-location-dot: \f3c5;
-$fa-var-map-marker-alt: \f3c5;
-$fa-var-file: \f15b;
-$fa-var-greater-than: \3e;
-$fa-var-person-swimming: \f5c4;
-$fa-var-swimmer: \f5c4;
-$fa-var-arrow-down: \f063;
-$fa-var-droplet: \f043;
-$fa-var-tint: \f043;
-$fa-var-eraser: \f12d;
-$fa-var-earth-americas: \f57d;
-$fa-var-earth: \f57d;
-$fa-var-earth-america: \f57d;
-$fa-var-globe-americas: \f57d;
-$fa-var-person-burst: \e53b;
-$fa-var-dove: \f4ba;
-$fa-var-battery-empty: \f244;
-$fa-var-battery-0: \f244;
-$fa-var-socks: \f696;
-$fa-var-inbox: \f01c;
-$fa-var-section: \e447;
-$fa-var-gauge-high: \f625;
-$fa-var-tachometer-alt: \f625;
-$fa-var-tachometer-alt-fast: \f625;
-$fa-var-envelope-open-text: \f658;
-$fa-var-hospital: \f0f8;
-$fa-var-hospital-alt: \f0f8;
-$fa-var-hospital-wide: \f0f8;
-$fa-var-wine-bottle: \f72f;
-$fa-var-chess-rook: \f447;
-$fa-var-bars-staggered: \f550;
-$fa-var-reorder: \f550;
-$fa-var-stream: \f550;
-$fa-var-dharmachakra: \f655;
-$fa-var-hotdog: \f80f;
-$fa-var-person-walking-with-cane: \f29d;
-$fa-var-blind: \f29d;
-$fa-var-drum: \f569;
-$fa-var-ice-cream: \f810;
-$fa-var-heart-circle-bolt: \e4fc;
-$fa-var-fax: \f1ac;
-$fa-var-paragraph: \f1dd;
-$fa-var-check-to-slot: \f772;
-$fa-var-vote-yea: \f772;
-$fa-var-star-half: \f089;
-$fa-var-boxes-stacked: \f468;
-$fa-var-boxes: \f468;
-$fa-var-boxes-alt: \f468;
-$fa-var-link: \f0c1;
-$fa-var-chain: \f0c1;
-$fa-var-ear-listen: \f2a2;
-$fa-var-assistive-listening-systems: \f2a2;
-$fa-var-tree-city: \e587;
-$fa-var-play: \f04b;
-$fa-var-font: \f031;
-$fa-var-table-cells-row-lock: \e67a;
-$fa-var-rupiah-sign: \e23d;
-$fa-var-magnifying-glass: \f002;
-$fa-var-search: \f002;
-$fa-var-table-tennis-paddle-ball: \f45d;
-$fa-var-ping-pong-paddle-ball: \f45d;
-$fa-var-table-tennis: \f45d;
-$fa-var-person-dots-from-line: \f470;
-$fa-var-diagnoses: \f470;
-$fa-var-trash-can-arrow-up: \f82a;
-$fa-var-trash-restore-alt: \f82a;
-$fa-var-naira-sign: \e1f6;
-$fa-var-cart-arrow-down: \f218;
-$fa-var-walkie-talkie: \f8ef;
-$fa-var-file-pen: \f31c;
-$fa-var-file-edit: \f31c;
-$fa-var-receipt: \f543;
-$fa-var-square-pen: \f14b;
-$fa-var-pen-square: \f14b;
-$fa-var-pencil-square: \f14b;
-$fa-var-suitcase-rolling: \f5c1;
-$fa-var-person-circle-exclamation: \e53f;
-$fa-var-chevron-down: \f078;
-$fa-var-battery-full: \f240;
-$fa-var-battery: \f240;
-$fa-var-battery-5: \f240;
-$fa-var-skull-crossbones: \f714;
-$fa-var-code-compare: \e13a;
-$fa-var-list-ul: \f0ca;
-$fa-var-list-dots: \f0ca;
-$fa-var-school-lock: \e56f;
-$fa-var-tower-cell: \e585;
-$fa-var-down-long: \f309;
-$fa-var-long-arrow-alt-down: \f309;
-$fa-var-ranking-star: \e561;
-$fa-var-chess-king: \f43f;
-$fa-var-person-harassing: \e549;
-$fa-var-brazilian-real-sign: \e46c;
-$fa-var-landmark-dome: \f752;
-$fa-var-landmark-alt: \f752;
-$fa-var-arrow-up: \f062;
-$fa-var-tv: \f26c;
-$fa-var-television: \f26c;
-$fa-var-tv-alt: \f26c;
-$fa-var-shrimp: \e448;
-$fa-var-list-check: \f0ae;
-$fa-var-tasks: \f0ae;
-$fa-var-jug-detergent: \e519;
-$fa-var-circle-user: \f2bd;
-$fa-var-user-circle: \f2bd;
-$fa-var-user-shield: \f505;
-$fa-var-wind: \f72e;
-$fa-var-car-burst: \f5e1;
-$fa-var-car-crash: \f5e1;
-$fa-var-y: \59;
-$fa-var-person-snowboarding: \f7ce;
-$fa-var-snowboarding: \f7ce;
-$fa-var-truck-fast: \f48b;
-$fa-var-shipping-fast: \f48b;
-$fa-var-fish: \f578;
-$fa-var-user-graduate: \f501;
-$fa-var-circle-half-stroke: \f042;
-$fa-var-adjust: \f042;
-$fa-var-clapperboard: \e131;
-$fa-var-circle-radiation: \f7ba;
-$fa-var-radiation-alt: \f7ba;
-$fa-var-baseball: \f433;
-$fa-var-baseball-ball: \f433;
-$fa-var-jet-fighter-up: \e518;
-$fa-var-diagram-project: \f542;
-$fa-var-project-diagram: \f542;
-$fa-var-copy: \f0c5;
-$fa-var-volume-xmark: \f6a9;
-$fa-var-volume-mute: \f6a9;
-$fa-var-volume-times: \f6a9;
-$fa-var-hand-sparkles: \e05d;
-$fa-var-grip: \f58d;
-$fa-var-grip-horizontal: \f58d;
-$fa-var-share-from-square: \f14d;
-$fa-var-share-square: \f14d;
-$fa-var-child-combatant: \e4e0;
-$fa-var-child-rifle: \e4e0;
-$fa-var-gun: \e19b;
-$fa-var-square-phone: \f098;
-$fa-var-phone-square: \f098;
-$fa-var-plus: \2b;
-$fa-var-add: \2b;
-$fa-var-expand: \f065;
-$fa-var-computer: \e4e5;
-$fa-var-xmark: \f00d;
-$fa-var-close: \f00d;
-$fa-var-multiply: \f00d;
-$fa-var-remove: \f00d;
-$fa-var-times: \f00d;
-$fa-var-arrows-up-down-left-right: \f047;
-$fa-var-arrows: \f047;
-$fa-var-chalkboard-user: \f51c;
-$fa-var-chalkboard-teacher: \f51c;
-$fa-var-peso-sign: \e222;
-$fa-var-building-shield: \e4d8;
-$fa-var-baby: \f77c;
-$fa-var-users-line: \e592;
-$fa-var-quote-left: \f10d;
-$fa-var-quote-left-alt: \f10d;
-$fa-var-tractor: \f722;
-$fa-var-trash-arrow-up: \f829;
-$fa-var-trash-restore: \f829;
-$fa-var-arrow-down-up-lock: \e4b0;
-$fa-var-lines-leaning: \e51e;
-$fa-var-ruler-combined: \f546;
-$fa-var-copyright: \f1f9;
-$fa-var-equals: \3d;
-$fa-var-blender: \f517;
-$fa-var-teeth: \f62e;
-$fa-var-shekel-sign: \f20b;
-$fa-var-ils: \f20b;
-$fa-var-shekel: \f20b;
-$fa-var-sheqel: \f20b;
-$fa-var-sheqel-sign: \f20b;
-$fa-var-map: \f279;
-$fa-var-rocket: \f135;
-$fa-var-photo-film: \f87c;
-$fa-var-photo-video: \f87c;
-$fa-var-folder-minus: \f65d;
-$fa-var-hexagon-nodes-bolt: \e69a;
-$fa-var-store: \f54e;
-$fa-var-arrow-trend-up: \e098;
-$fa-var-plug-circle-minus: \e55e;
-$fa-var-sign-hanging: \f4d9;
-$fa-var-sign: \f4d9;
-$fa-var-bezier-curve: \f55b;
-$fa-var-bell-slash: \f1f6;
-$fa-var-tablet: \f3fb;
-$fa-var-tablet-android: \f3fb;
-$fa-var-school-flag: \e56e;
-$fa-var-fill: \f575;
-$fa-var-angle-up: \f106;
-$fa-var-drumstick-bite: \f6d7;
-$fa-var-holly-berry: \f7aa;
-$fa-var-chevron-left: \f053;
-$fa-var-bacteria: \e059;
-$fa-var-hand-lizard: \f258;
-$fa-var-notdef: \e1fe;
-$fa-var-disease: \f7fa;
-$fa-var-briefcase-medical: \f469;
-$fa-var-genderless: \f22d;
-$fa-var-chevron-right: \f054;
-$fa-var-retweet: \f079;
-$fa-var-car-rear: \f5de;
-$fa-var-car-alt: \f5de;
-$fa-var-pump-soap: \e06b;
-$fa-var-video-slash: \f4e2;
-$fa-var-battery-quarter: \f243;
-$fa-var-battery-2: \f243;
-$fa-var-radio: \f8d7;
-$fa-var-baby-carriage: \f77d;
-$fa-var-carriage-baby: \f77d;
-$fa-var-traffic-light: \f637;
-$fa-var-thermometer: \f491;
-$fa-var-vr-cardboard: \f729;
-$fa-var-hand-middle-finger: \f806;
-$fa-var-percent: \25;
-$fa-var-percentage: \25;
-$fa-var-truck-moving: \f4df;
-$fa-var-glass-water-droplet: \e4f5;
-$fa-var-display: \e163;
-$fa-var-face-smile: \f118;
-$fa-var-smile: \f118;
-$fa-var-thumbtack: \f08d;
-$fa-var-thumb-tack: \f08d;
-$fa-var-trophy: \f091;
-$fa-var-person-praying: \f683;
-$fa-var-pray: \f683;
-$fa-var-hammer: \f6e3;
-$fa-var-hand-peace: \f25b;
-$fa-var-rotate: \f2f1;
-$fa-var-sync-alt: \f2f1;
-$fa-var-spinner: \f110;
-$fa-var-robot: \f544;
-$fa-var-peace: \f67c;
-$fa-var-gears: \f085;
-$fa-var-cogs: \f085;
-$fa-var-warehouse: \f494;
-$fa-var-arrow-up-right-dots: \e4b7;
-$fa-var-splotch: \f5bc;
-$fa-var-face-grin-hearts: \f584;
-$fa-var-grin-hearts: \f584;
-$fa-var-dice-four: \f524;
-$fa-var-sim-card: \f7c4;
-$fa-var-transgender: \f225;
-$fa-var-transgender-alt: \f225;
-$fa-var-mercury: \f223;
-$fa-var-arrow-turn-down: \f149;
-$fa-var-level-down: \f149;
-$fa-var-person-falling-burst: \e547;
-$fa-var-award: \f559;
-$fa-var-ticket-simple: \f3ff;
-$fa-var-ticket-alt: \f3ff;
-$fa-var-building: \f1ad;
-$fa-var-angles-left: \f100;
-$fa-var-angle-double-left: \f100;
-$fa-var-qrcode: \f029;
-$fa-var-clock-rotate-left: \f1da;
-$fa-var-history: \f1da;
-$fa-var-face-grin-beam-sweat: \f583;
-$fa-var-grin-beam-sweat: \f583;
-$fa-var-file-export: \f56e;
-$fa-var-arrow-right-from-file: \f56e;
-$fa-var-shield: \f132;
-$fa-var-shield-blank: \f132;
-$fa-var-arrow-up-short-wide: \f885;
-$fa-var-sort-amount-up-alt: \f885;
-$fa-var-comment-nodes: \e696;
-$fa-var-house-medical: \e3b2;
-$fa-var-golf-ball-tee: \f450;
-$fa-var-golf-ball: \f450;
-$fa-var-circle-chevron-left: \f137;
-$fa-var-chevron-circle-left: \f137;
-$fa-var-house-chimney-window: \e00d;
-$fa-var-pen-nib: \f5ad;
-$fa-var-tent-arrow-turn-left: \e580;
-$fa-var-tents: \e582;
-$fa-var-wand-magic: \f0d0;
-$fa-var-magic: \f0d0;
-$fa-var-dog: \f6d3;
-$fa-var-carrot: \f787;
-$fa-var-moon: \f186;
-$fa-var-wine-glass-empty: \f5ce;
-$fa-var-wine-glass-alt: \f5ce;
-$fa-var-cheese: \f7ef;
-$fa-var-yin-yang: \f6ad;
-$fa-var-music: \f001;
-$fa-var-code-commit: \f386;
-$fa-var-temperature-low: \f76b;
-$fa-var-person-biking: \f84a;
-$fa-var-biking: \f84a;
-$fa-var-broom: \f51a;
-$fa-var-shield-heart: \e574;
-$fa-var-gopuram: \f664;
-$fa-var-earth-oceania: \e47b;
-$fa-var-globe-oceania: \e47b;
-$fa-var-square-xmark: \f2d3;
-$fa-var-times-square: \f2d3;
-$fa-var-xmark-square: \f2d3;
-$fa-var-hashtag: \23;
-$fa-var-up-right-and-down-left-from-center: \f424;
-$fa-var-expand-alt: \f424;
-$fa-var-oil-can: \f613;
-$fa-var-t: \54;
-$fa-var-hippo: \f6ed;
-$fa-var-chart-column: \e0e3;
-$fa-var-infinity: \f534;
-$fa-var-vial-circle-check: \e596;
-$fa-var-person-arrow-down-to-line: \e538;
-$fa-var-voicemail: \f897;
-$fa-var-fan: \f863;
-$fa-var-person-walking-luggage: \e554;
-$fa-var-up-down: \f338;
-$fa-var-arrows-alt-v: \f338;
-$fa-var-cloud-moon-rain: \f73c;
-$fa-var-calendar: \f133;
-$fa-var-trailer: \e041;
-$fa-var-bahai: \f666;
-$fa-var-haykal: \f666;
-$fa-var-sd-card: \f7c2;
-$fa-var-dragon: \f6d5;
-$fa-var-shoe-prints: \f54b;
-$fa-var-circle-plus: \f055;
-$fa-var-plus-circle: \f055;
-$fa-var-face-grin-tongue-wink: \f58b;
-$fa-var-grin-tongue-wink: \f58b;
-$fa-var-hand-holding: \f4bd;
-$fa-var-plug-circle-exclamation: \e55d;
-$fa-var-link-slash: \f127;
-$fa-var-chain-broken: \f127;
-$fa-var-chain-slash: \f127;
-$fa-var-unlink: \f127;
-$fa-var-clone: \f24d;
-$fa-var-person-walking-arrow-loop-left: \e551;
-$fa-var-arrow-up-z-a: \f882;
-$fa-var-sort-alpha-up-alt: \f882;
-$fa-var-fire-flame-curved: \f7e4;
-$fa-var-fire-alt: \f7e4;
-$fa-var-tornado: \f76f;
-$fa-var-file-circle-plus: \e494;
-$fa-var-book-quran: \f687;
-$fa-var-quran: \f687;
-$fa-var-anchor: \f13d;
-$fa-var-border-all: \f84c;
-$fa-var-face-angry: \f556;
-$fa-var-angry: \f556;
-$fa-var-cookie-bite: \f564;
-$fa-var-arrow-trend-down: \e097;
-$fa-var-rss: \f09e;
-$fa-var-feed: \f09e;
-$fa-var-draw-polygon: \f5ee;
-$fa-var-scale-balanced: \f24e;
-$fa-var-balance-scale: \f24e;
-$fa-var-gauge-simple-high: \f62a;
-$fa-var-tachometer: \f62a;
-$fa-var-tachometer-fast: \f62a;
-$fa-var-shower: \f2cc;
-$fa-var-desktop: \f390;
-$fa-var-desktop-alt: \f390;
-$fa-var-m: \4d;
-$fa-var-table-list: \f00b;
-$fa-var-th-list: \f00b;
-$fa-var-comment-sms: \f7cd;
-$fa-var-sms: \f7cd;
-$fa-var-book: \f02d;
-$fa-var-user-plus: \f234;
-$fa-var-check: \f00c;
-$fa-var-battery-three-quarters: \f241;
-$fa-var-battery-4: \f241;
-$fa-var-house-circle-check: \e509;
-$fa-var-angle-left: \f104;
-$fa-var-diagram-successor: \e47a;
-$fa-var-truck-arrow-right: \e58b;
-$fa-var-arrows-split-up-and-left: \e4bc;
-$fa-var-hand-fist: \f6de;
-$fa-var-fist-raised: \f6de;
-$fa-var-cloud-moon: \f6c3;
-$fa-var-briefcase: \f0b1;
-$fa-var-person-falling: \e546;
-$fa-var-image-portrait: \f3e0;
-$fa-var-portrait: \f3e0;
-$fa-var-user-tag: \f507;
-$fa-var-rug: \e569;
-$fa-var-earth-europe: \f7a2;
-$fa-var-globe-europe: \f7a2;
-$fa-var-cart-flatbed-suitcase: \f59d;
-$fa-var-luggage-cart: \f59d;
-$fa-var-rectangle-xmark: \f410;
-$fa-var-rectangle-times: \f410;
-$fa-var-times-rectangle: \f410;
-$fa-var-window-close: \f410;
-$fa-var-baht-sign: \e0ac;
-$fa-var-book-open: \f518;
-$fa-var-book-journal-whills: \f66a;
-$fa-var-journal-whills: \f66a;
-$fa-var-handcuffs: \e4f8;
-$fa-var-triangle-exclamation: \f071;
-$fa-var-exclamation-triangle: \f071;
-$fa-var-warning: \f071;
-$fa-var-database: \f1c0;
-$fa-var-share: \f064;
-$fa-var-mail-forward: \f064;
-$fa-var-bottle-droplet: \e4c4;
-$fa-var-mask-face: \e1d7;
-$fa-var-hill-rockslide: \e508;
-$fa-var-right-left: \f362;
-$fa-var-exchange-alt: \f362;
-$fa-var-paper-plane: \f1d8;
-$fa-var-road-circle-exclamation: \e565;
-$fa-var-dungeon: \f6d9;
-$fa-var-align-right: \f038;
-$fa-var-money-bill-1-wave: \f53b;
-$fa-var-money-bill-wave-alt: \f53b;
-$fa-var-life-ring: \f1cd;
-$fa-var-hands: \f2a7;
-$fa-var-sign-language: \f2a7;
-$fa-var-signing: \f2a7;
-$fa-var-calendar-day: \f783;
-$fa-var-water-ladder: \f5c5;
-$fa-var-ladder-water: \f5c5;
-$fa-var-swimming-pool: \f5c5;
-$fa-var-arrows-up-down: \f07d;
-$fa-var-arrows-v: \f07d;
-$fa-var-face-grimace: \f57f;
-$fa-var-grimace: \f57f;
-$fa-var-wheelchair-move: \e2ce;
-$fa-var-wheelchair-alt: \e2ce;
-$fa-var-turn-down: \f3be;
-$fa-var-level-down-alt: \f3be;
-$fa-var-person-walking-arrow-right: \e552;
-$fa-var-square-envelope: \f199;
-$fa-var-envelope-square: \f199;
-$fa-var-dice: \f522;
-$fa-var-bowling-ball: \f436;
-$fa-var-brain: \f5dc;
-$fa-var-bandage: \f462;
-$fa-var-band-aid: \f462;
-$fa-var-calendar-minus: \f272;
-$fa-var-circle-xmark: \f057;
-$fa-var-times-circle: \f057;
-$fa-var-xmark-circle: \f057;
-$fa-var-gifts: \f79c;
-$fa-var-hotel: \f594;
-$fa-var-earth-asia: \f57e;
-$fa-var-globe-asia: \f57e;
-$fa-var-id-card-clip: \f47f;
-$fa-var-id-card-alt: \f47f;
-$fa-var-magnifying-glass-plus: \f00e;
-$fa-var-search-plus: \f00e;
-$fa-var-thumbs-up: \f164;
-$fa-var-user-clock: \f4fd;
-$fa-var-hand-dots: \f461;
-$fa-var-allergies: \f461;
-$fa-var-file-invoice: \f570;
-$fa-var-window-minimize: \f2d1;
-$fa-var-mug-saucer: \f0f4;
-$fa-var-coffee: \f0f4;
-$fa-var-brush: \f55d;
-$fa-var-file-half-dashed: \e698;
-$fa-var-mask: \f6fa;
-$fa-var-magnifying-glass-minus: \f010;
-$fa-var-search-minus: \f010;
-$fa-var-ruler-vertical: \f548;
-$fa-var-user-large: \f406;
-$fa-var-user-alt: \f406;
-$fa-var-train-tram: \e5b4;
-$fa-var-user-nurse: \f82f;
-$fa-var-syringe: \f48e;
-$fa-var-cloud-sun: \f6c4;
-$fa-var-stopwatch-20: \e06f;
-$fa-var-square-full: \f45c;
-$fa-var-magnet: \f076;
-$fa-var-jar: \e516;
-$fa-var-note-sticky: \f249;
-$fa-var-sticky-note: \f249;
-$fa-var-bug-slash: \e490;
-$fa-var-arrow-up-from-water-pump: \e4b6;
-$fa-var-bone: \f5d7;
-$fa-var-table-cells-row-unlock: \e691;
-$fa-var-user-injured: \f728;
-$fa-var-face-sad-tear: \f5b4;
-$fa-var-sad-tear: \f5b4;
-$fa-var-plane: \f072;
-$fa-var-tent-arrows-down: \e581;
-$fa-var-exclamation: \21;
-$fa-var-arrows-spin: \e4bb;
-$fa-var-print: \f02f;
-$fa-var-turkish-lira-sign: \e2bb;
-$fa-var-try: \e2bb;
-$fa-var-turkish-lira: \e2bb;
-$fa-var-dollar-sign: \24;
-$fa-var-dollar: \24;
-$fa-var-usd: \24;
-$fa-var-x: \58;
-$fa-var-magnifying-glass-dollar: \f688;
-$fa-var-search-dollar: \f688;
-$fa-var-users-gear: \f509;
-$fa-var-users-cog: \f509;
-$fa-var-person-military-pointing: \e54a;
-$fa-var-building-columns: \f19c;
-$fa-var-bank: \f19c;
-$fa-var-institution: \f19c;
-$fa-var-museum: \f19c;
-$fa-var-university: \f19c;
-$fa-var-umbrella: \f0e9;
-$fa-var-trowel: \e589;
-$fa-var-d: \44;
-$fa-var-stapler: \e5af;
-$fa-var-masks-theater: \f630;
-$fa-var-theater-masks: \f630;
-$fa-var-kip-sign: \e1c4;
-$fa-var-hand-point-left: \f0a5;
-$fa-var-handshake-simple: \f4c6;
-$fa-var-handshake-alt: \f4c6;
-$fa-var-jet-fighter: \f0fb;
-$fa-var-fighter-jet: \f0fb;
-$fa-var-square-share-nodes: \f1e1;
-$fa-var-share-alt-square: \f1e1;
-$fa-var-barcode: \f02a;
-$fa-var-plus-minus: \e43c;
-$fa-var-video: \f03d;
-$fa-var-video-camera: \f03d;
-$fa-var-graduation-cap: \f19d;
-$fa-var-mortar-board: \f19d;
-$fa-var-hand-holding-medical: \e05c;
-$fa-var-person-circle-check: \e53e;
-$fa-var-turn-up: \f3bf;
-$fa-var-level-up-alt: \f3bf;
-
-$fa-var-monero: \f3d0;
-$fa-var-hooli: \f427;
-$fa-var-yelp: \f1e9;
-$fa-var-cc-visa: \f1f0;
-$fa-var-lastfm: \f202;
-$fa-var-shopware: \f5b5;
-$fa-var-creative-commons-nc: \f4e8;
-$fa-var-aws: \f375;
-$fa-var-redhat: \f7bc;
-$fa-var-yoast: \f2b1;
-$fa-var-cloudflare: \e07d;
-$fa-var-ups: \f7e0;
-$fa-var-pixiv: \e640;
-$fa-var-wpexplorer: \f2de;
-$fa-var-dyalog: \f399;
-$fa-var-bity: \f37a;
-$fa-var-stackpath: \f842;
-$fa-var-buysellads: \f20d;
-$fa-var-first-order: \f2b0;
-$fa-var-modx: \f285;
-$fa-var-guilded: \e07e;
-$fa-var-vnv: \f40b;
-$fa-var-square-js: \f3b9;
-$fa-var-js-square: \f3b9;
-$fa-var-microsoft: \f3ca;
-$fa-var-qq: \f1d6;
-$fa-var-orcid: \f8d2;
-$fa-var-java: \f4e4;
-$fa-var-invision: \f7b0;
-$fa-var-creative-commons-pd-alt: \f4ed;
-$fa-var-centercode: \f380;
-$fa-var-glide-g: \f2a6;
-$fa-var-drupal: \f1a9;
-$fa-var-jxl: \e67b;
-$fa-var-dart-lang: \e693;
-$fa-var-hire-a-helper: \f3b0;
-$fa-var-creative-commons-by: \f4e7;
-$fa-var-unity: \e049;
-$fa-var-whmcs: \f40d;
-$fa-var-rocketchat: \f3e8;
-$fa-var-vk: \f189;
-$fa-var-untappd: \f405;
-$fa-var-mailchimp: \f59e;
-$fa-var-css3-alt: \f38b;
-$fa-var-square-reddit: \f1a2;
-$fa-var-reddit-square: \f1a2;
-$fa-var-vimeo-v: \f27d;
-$fa-var-contao: \f26d;
-$fa-var-square-font-awesome: \e5ad;
-$fa-var-deskpro: \f38f;
-$fa-var-brave: \e63c;
-$fa-var-sistrix: \f3ee;
-$fa-var-square-instagram: \e055;
-$fa-var-instagram-square: \e055;
-$fa-var-battle-net: \f835;
-$fa-var-the-red-yeti: \f69d;
-$fa-var-square-hacker-news: \f3af;
-$fa-var-hacker-news-square: \f3af;
-$fa-var-edge: \f282;
-$fa-var-threads: \e618;
-$fa-var-napster: \f3d2;
-$fa-var-square-snapchat: \f2ad;
-$fa-var-snapchat-square: \f2ad;
-$fa-var-google-plus-g: \f0d5;
-$fa-var-artstation: \f77a;
-$fa-var-markdown: \f60f;
-$fa-var-sourcetree: \f7d3;
-$fa-var-google-plus: \f2b3;
-$fa-var-diaspora: \f791;
-$fa-var-foursquare: \f180;
-$fa-var-stack-overflow: \f16c;
-$fa-var-github-alt: \f113;
-$fa-var-phoenix-squadron: \f511;
-$fa-var-pagelines: \f18c;
-$fa-var-algolia: \f36c;
-$fa-var-red-river: \f3e3;
-$fa-var-creative-commons-sa: \f4ef;
-$fa-var-safari: \f267;
-$fa-var-google: \f1a0;
-$fa-var-square-font-awesome-stroke: \f35c;
-$fa-var-font-awesome-alt: \f35c;
-$fa-var-atlassian: \f77b;
-$fa-var-linkedin-in: \f0e1;
-$fa-var-digital-ocean: \f391;
-$fa-var-nimblr: \f5a8;
-$fa-var-chromecast: \f838;
-$fa-var-evernote: \f839;
-$fa-var-hacker-news: \f1d4;
-$fa-var-creative-commons-sampling: \f4f0;
-$fa-var-adversal: \f36a;
-$fa-var-creative-commons: \f25e;
-$fa-var-watchman-monitoring: \e087;
-$fa-var-fonticons: \f280;
-$fa-var-weixin: \f1d7;
-$fa-var-shirtsinbulk: \f214;
-$fa-var-codepen: \f1cb;
-$fa-var-git-alt: \f841;
-$fa-var-lyft: \f3c3;
-$fa-var-rev: \f5b2;
-$fa-var-windows: \f17a;
-$fa-var-wizards-of-the-coast: \f730;
-$fa-var-square-viadeo: \f2aa;
-$fa-var-viadeo-square: \f2aa;
-$fa-var-meetup: \f2e0;
-$fa-var-centos: \f789;
-$fa-var-adn: \f170;
-$fa-var-cloudsmith: \f384;
-$fa-var-opensuse: \e62b;
-$fa-var-pied-piper-alt: \f1a8;
-$fa-var-square-dribbble: \f397;
-$fa-var-dribbble-square: \f397;
-$fa-var-codiepie: \f284;
-$fa-var-node: \f419;
-$fa-var-mix: \f3cb;
-$fa-var-steam: \f1b6;
-$fa-var-cc-apple-pay: \f416;
-$fa-var-scribd: \f28a;
-$fa-var-debian: \e60b;
-$fa-var-openid: \f19b;
-$fa-var-instalod: \e081;
-$fa-var-files-pinwheel: \e69f;
-$fa-var-expeditedssl: \f23e;
-$fa-var-sellcast: \f2da;
-$fa-var-square-twitter: \f081;
-$fa-var-twitter-square: \f081;
-$fa-var-r-project: \f4f7;
-$fa-var-delicious: \f1a5;
-$fa-var-freebsd: \f3a4;
-$fa-var-vuejs: \f41f;
-$fa-var-accusoft: \f369;
-$fa-var-ioxhost: \f208;
-$fa-var-fonticons-fi: \f3a2;
-$fa-var-app-store: \f36f;
-$fa-var-cc-mastercard: \f1f1;
-$fa-var-itunes-note: \f3b5;
-$fa-var-golang: \e40f;
-$fa-var-kickstarter: \f3bb;
-$fa-var-square-kickstarter: \f3bb;
-$fa-var-grav: \f2d6;
-$fa-var-weibo: \f18a;
-$fa-var-uncharted: \e084;
-$fa-var-firstdraft: \f3a1;
-$fa-var-square-youtube: \f431;
-$fa-var-youtube-square: \f431;
-$fa-var-wikipedia-w: \f266;
-$fa-var-wpressr: \f3e4;
-$fa-var-rendact: \f3e4;
-$fa-var-angellist: \f209;
-$fa-var-galactic-republic: \f50c;
-$fa-var-nfc-directional: \e530;
-$fa-var-skype: \f17e;
-$fa-var-joget: \f3b7;
-$fa-var-fedora: \f798;
-$fa-var-stripe-s: \f42a;
-$fa-var-meta: \e49b;
-$fa-var-laravel: \f3bd;
-$fa-var-hotjar: \f3b1;
-$fa-var-bluetooth-b: \f294;
-$fa-var-square-letterboxd: \e62e;
-$fa-var-sticker-mule: \f3f7;
-$fa-var-creative-commons-zero: \f4f3;
-$fa-var-hips: \f452;
-$fa-var-css: \e6a2;
-$fa-var-behance: \f1b4;
-$fa-var-reddit: \f1a1;
-$fa-var-discord: \f392;
-$fa-var-chrome: \f268;
-$fa-var-app-store-ios: \f370;
-$fa-var-cc-discover: \f1f2;
-$fa-var-wpbeginner: \f297;
-$fa-var-confluence: \f78d;
-$fa-var-shoelace: \e60c;
-$fa-var-mdb: \f8ca;
-$fa-var-dochub: \f394;
-$fa-var-accessible-icon: \f368;
-$fa-var-ebay: \f4f4;
-$fa-var-amazon: \f270;
-$fa-var-unsplash: \e07c;
-$fa-var-yarn: \f7e3;
-$fa-var-square-steam: \f1b7;
-$fa-var-steam-square: \f1b7;
-$fa-var-500px: \f26e;
-$fa-var-square-vimeo: \f194;
-$fa-var-vimeo-square: \f194;
-$fa-var-asymmetrik: \f372;
-$fa-var-font-awesome: \f2b4;
-$fa-var-font-awesome-flag: \f2b4;
-$fa-var-font-awesome-logo-full: \f2b4;
-$fa-var-gratipay: \f184;
-$fa-var-apple: \f179;
-$fa-var-hive: \e07f;
-$fa-var-gitkraken: \f3a6;
-$fa-var-keybase: \f4f5;
-$fa-var-apple-pay: \f415;
-$fa-var-padlet: \e4a0;
-$fa-var-amazon-pay: \f42c;
-$fa-var-square-github: \f092;
-$fa-var-github-square: \f092;
-$fa-var-stumbleupon: \f1a4;
-$fa-var-fedex: \f797;
-$fa-var-phoenix-framework: \f3dc;
-$fa-var-shopify: \e057;
-$fa-var-neos: \f612;
-$fa-var-square-threads: \e619;
-$fa-var-hackerrank: \f5f7;
-$fa-var-researchgate: \f4f8;
-$fa-var-swift: \f8e1;
-$fa-var-angular: \f420;
-$fa-var-speakap: \f3f3;
-$fa-var-angrycreative: \f36e;
-$fa-var-y-combinator: \f23b;
-$fa-var-empire: \f1d1;
-$fa-var-envira: \f299;
-$fa-var-google-scholar: \e63b;
-$fa-var-square-gitlab: \e5ae;
-$fa-var-gitlab-square: \e5ae;
-$fa-var-studiovinari: \f3f8;
-$fa-var-pied-piper: \f2ae;
-$fa-var-wordpress: \f19a;
-$fa-var-product-hunt: \f288;
-$fa-var-firefox: \f269;
-$fa-var-linode: \f2b8;
-$fa-var-goodreads: \f3a8;
-$fa-var-square-odnoklassniki: \f264;
-$fa-var-odnoklassniki-square: \f264;
-$fa-var-jsfiddle: \f1cc;
-$fa-var-sith: \f512;
-$fa-var-themeisle: \f2b2;
-$fa-var-page4: \f3d7;
-$fa-var-hashnode: \e499;
-$fa-var-react: \f41b;
-$fa-var-cc-paypal: \f1f4;
-$fa-var-squarespace: \f5be;
-$fa-var-cc-stripe: \f1f5;
-$fa-var-creative-commons-share: \f4f2;
-$fa-var-bitcoin: \f379;
-$fa-var-keycdn: \f3ba;
-$fa-var-opera: \f26a;
-$fa-var-itch-io: \f83a;
-$fa-var-umbraco: \f8e8;
-$fa-var-galactic-senate: \f50d;
-$fa-var-ubuntu: \f7df;
-$fa-var-draft2digital: \f396;
-$fa-var-stripe: \f429;
-$fa-var-houzz: \f27c;
-$fa-var-gg: \f260;
-$fa-var-dhl: \f790;
-$fa-var-square-pinterest: \f0d3;
-$fa-var-pinterest-square: \f0d3;
-$fa-var-xing: \f168;
-$fa-var-blackberry: \f37b;
-$fa-var-creative-commons-pd: \f4ec;
-$fa-var-playstation: \f3df;
-$fa-var-quinscape: \f459;
-$fa-var-less: \f41d;
-$fa-var-blogger-b: \f37d;
-$fa-var-opencart: \f23d;
-$fa-var-vine: \f1ca;
-$fa-var-signal-messenger: \e663;
-$fa-var-paypal: \f1ed;
-$fa-var-gitlab: \f296;
-$fa-var-typo3: \f42b;
-$fa-var-reddit-alien: \f281;
-$fa-var-yahoo: \f19e;
-$fa-var-dailymotion: \e052;
-$fa-var-affiliatetheme: \f36b;
-$fa-var-pied-piper-pp: \f1a7;
-$fa-var-bootstrap: \f836;
-$fa-var-odnoklassniki: \f263;
-$fa-var-nfc-symbol: \e531;
-$fa-var-mintbit: \e62f;
-$fa-var-ethereum: \f42e;
-$fa-var-speaker-deck: \f83c;
-$fa-var-creative-commons-nc-eu: \f4e9;
-$fa-var-patreon: \f3d9;
-$fa-var-avianex: \f374;
-$fa-var-ello: \f5f1;
-$fa-var-gofore: \f3a7;
-$fa-var-bimobject: \f378;
-$fa-var-brave-reverse: \e63d;
-$fa-var-facebook-f: \f39e;
-$fa-var-square-google-plus: \f0d4;
-$fa-var-google-plus-square: \f0d4;
-$fa-var-web-awesome: \e682;
-$fa-var-mandalorian: \f50f;
-$fa-var-first-order-alt: \f50a;
-$fa-var-osi: \f41a;
-$fa-var-google-wallet: \f1ee;
-$fa-var-d-and-d-beyond: \f6ca;
-$fa-var-periscope: \f3da;
-$fa-var-fulcrum: \f50b;
-$fa-var-cloudscale: \f383;
-$fa-var-forumbee: \f211;
-$fa-var-mizuni: \f3cc;
-$fa-var-schlix: \f3ea;
-$fa-var-square-xing: \f169;
-$fa-var-xing-square: \f169;
-$fa-var-bandcamp: \f2d5;
-$fa-var-wpforms: \f298;
-$fa-var-cloudversify: \f385;
-$fa-var-usps: \f7e1;
-$fa-var-megaport: \f5a3;
-$fa-var-magento: \f3c4;
-$fa-var-spotify: \f1bc;
-$fa-var-optin-monster: \f23c;
-$fa-var-fly: \f417;
-$fa-var-square-bluesky: \e6a3;
-$fa-var-aviato: \f421;
-$fa-var-itunes: \f3b4;
-$fa-var-cuttlefish: \f38c;
-$fa-var-blogger: \f37c;
-$fa-var-flickr: \f16e;
-$fa-var-viber: \f409;
-$fa-var-soundcloud: \f1be;
-$fa-var-digg: \f1a6;
-$fa-var-tencent-weibo: \f1d5;
-$fa-var-letterboxd: \e62d;
-$fa-var-symfony: \f83d;
-$fa-var-maxcdn: \f136;
-$fa-var-etsy: \f2d7;
-$fa-var-facebook-messenger: \f39f;
-$fa-var-audible: \f373;
-$fa-var-think-peaks: \f731;
-$fa-var-bilibili: \e3d9;
-$fa-var-erlang: \f39d;
-$fa-var-x-twitter: \e61b;
-$fa-var-cotton-bureau: \f89e;
-$fa-var-dashcube: \f210;
-$fa-var-42-group: \e080;
-$fa-var-innosoft: \e080;
-$fa-var-stack-exchange: \f18d;
-$fa-var-elementor: \f430;
-$fa-var-square-pied-piper: \e01e;
-$fa-var-pied-piper-square: \e01e;
-$fa-var-creative-commons-nd: \f4eb;
-$fa-var-palfed: \f3d8;
-$fa-var-superpowers: \f2dd;
-$fa-var-resolving: \f3e7;
-$fa-var-xbox: \f412;
-$fa-var-square-web-awesome-stroke: \e684;
-$fa-var-searchengin: \f3eb;
-$fa-var-tiktok: \e07b;
-$fa-var-square-facebook: \f082;
-$fa-var-facebook-square: \f082;
-$fa-var-renren: \f18b;
-$fa-var-linux: \f17c;
-$fa-var-glide: \f2a5;
-$fa-var-linkedin: \f08c;
-$fa-var-hubspot: \f3b2;
-$fa-var-deploydog: \f38e;
-$fa-var-twitch: \f1e8;
-$fa-var-flutter: \e694;
-$fa-var-ravelry: \f2d9;
-$fa-var-mixer: \e056;
-$fa-var-square-lastfm: \f203;
-$fa-var-lastfm-square: \f203;
-$fa-var-vimeo: \f40a;
-$fa-var-mendeley: \f7b3;
-$fa-var-uniregistry: \f404;
-$fa-var-figma: \f799;
-$fa-var-creative-commons-remix: \f4ee;
-$fa-var-cc-amazon-pay: \f42d;
-$fa-var-dropbox: \f16b;
-$fa-var-instagram: \f16d;
-$fa-var-cmplid: \e360;
-$fa-var-upwork: \e641;
-$fa-var-facebook: \f09a;
-$fa-var-gripfire: \f3ac;
-$fa-var-jedi-order: \f50e;
-$fa-var-uikit: \f403;
-$fa-var-fort-awesome-alt: \f3a3;
-$fa-var-phabricator: \f3db;
-$fa-var-ussunnah: \f407;
-$fa-var-earlybirds: \f39a;
-$fa-var-trade-federation: \f513;
-$fa-var-autoprefixer: \f41c;
-$fa-var-whatsapp: \f232;
-$fa-var-square-upwork: \e67c;
-$fa-var-slideshare: \f1e7;
-$fa-var-google-play: \f3ab;
-$fa-var-viadeo: \f2a9;
-$fa-var-line: \f3c0;
-$fa-var-google-drive: \f3aa;
-$fa-var-servicestack: \f3ec;
-$fa-var-simplybuilt: \f215;
-$fa-var-bitbucket: \f171;
-$fa-var-imdb: \f2d8;
-$fa-var-deezer: \e077;
-$fa-var-raspberry-pi: \f7bb;
-$fa-var-jira: \f7b1;
-$fa-var-docker: \f395;
-$fa-var-screenpal: \e570;
-$fa-var-bluetooth: \f293;
-$fa-var-gitter: \f426;
-$fa-var-d-and-d: \f38d;
-$fa-var-microblog: \e01a;
-$fa-var-cc-diners-club: \f24c;
-$fa-var-gg-circle: \f261;
-$fa-var-pied-piper-hat: \f4e5;
-$fa-var-kickstarter-k: \f3bc;
-$fa-var-yandex: \f413;
-$fa-var-readme: \f4d5;
-$fa-var-html5: \f13b;
-$fa-var-sellsy: \f213;
-$fa-var-square-web-awesome: \e683;
-$fa-var-sass: \f41e;
-$fa-var-wirsindhandwerk: \e2d0;
-$fa-var-wsh: \e2d0;
-$fa-var-buromobelexperte: \f37f;
-$fa-var-salesforce: \f83b;
-$fa-var-octopus-deploy: \e082;
-$fa-var-medapps: \f3c6;
-$fa-var-ns8: \f3d5;
-$fa-var-pinterest-p: \f231;
-$fa-var-apper: \f371;
-$fa-var-fort-awesome: \f286;
-$fa-var-waze: \f83f;
-$fa-var-bluesky: \e671;
-$fa-var-cc-jcb: \f24b;
-$fa-var-snapchat: \f2ab;
-$fa-var-snapchat-ghost: \f2ab;
-$fa-var-fantasy-flight-games: \f6dc;
-$fa-var-rust: \e07a;
-$fa-var-wix: \f5cf;
-$fa-var-square-behance: \f1b5;
-$fa-var-behance-square: \f1b5;
-$fa-var-supple: \f3f9;
-$fa-var-webflow: \e65c;
-$fa-var-rebel: \f1d0;
-$fa-var-css3: \f13c;
-$fa-var-staylinked: \f3f5;
-$fa-var-kaggle: \f5fa;
-$fa-var-space-awesome: \e5ac;
-$fa-var-deviantart: \f1bd;
-$fa-var-cpanel: \f388;
-$fa-var-goodreads-g: \f3a9;
-$fa-var-square-git: \f1d2;
-$fa-var-git-square: \f1d2;
-$fa-var-square-tumblr: \f174;
-$fa-var-tumblr-square: \f174;
-$fa-var-trello: \f181;
-$fa-var-creative-commons-nc-jp: \f4ea;
-$fa-var-get-pocket: \f265;
-$fa-var-perbyte: \e083;
-$fa-var-grunt: \f3ad;
-$fa-var-weebly: \f5cc;
-$fa-var-connectdevelop: \f20e;
-$fa-var-leanpub: \f212;
-$fa-var-black-tie: \f27e;
-$fa-var-themeco: \f5c6;
-$fa-var-python: \f3e2;
-$fa-var-android: \f17b;
-$fa-var-bots: \e340;
-$fa-var-free-code-camp: \f2c5;
-$fa-var-hornbill: \f592;
-$fa-var-js: \f3b8;
-$fa-var-ideal: \e013;
-$fa-var-git: \f1d3;
-$fa-var-dev: \f6cc;
-$fa-var-sketch: \f7c6;
-$fa-var-yandex-international: \f414;
-$fa-var-cc-amex: \f1f3;
-$fa-var-uber: \f402;
-$fa-var-github: \f09b;
-$fa-var-php: \f457;
-$fa-var-alipay: \f642;
-$fa-var-youtube: \f167;
-$fa-var-skyatlas: \f216;
-$fa-var-firefox-browser: \e007;
-$fa-var-replyd: \f3e6;
-$fa-var-suse: \f7d6;
-$fa-var-jenkins: \f3b6;
-$fa-var-twitter: \f099;
-$fa-var-rockrms: \f3e9;
-$fa-var-pinterest: \f0d2;
-$fa-var-buffer: \f837;
-$fa-var-npm: \f3d4;
-$fa-var-yammer: \f840;
-$fa-var-btc: \f15a;
-$fa-var-dribbble: \f17d;
-$fa-var-stumbleupon-circle: \f1a3;
-$fa-var-internet-explorer: \f26b;
-$fa-var-stubber: \e5c7;
-$fa-var-telegram: \f2c6;
-$fa-var-telegram-plane: \f2c6;
-$fa-var-old-republic: \f510;
-$fa-var-odysee: \e5c6;
-$fa-var-square-whatsapp: \f40c;
-$fa-var-whatsapp-square: \f40c;
-$fa-var-node-js: \f3d3;
-$fa-var-edge-legacy: \e078;
-$fa-var-slack: \f198;
-$fa-var-slack-hash: \f198;
-$fa-var-medrt: \f3c8;
-$fa-var-usb: \f287;
-$fa-var-tumblr: \f173;
-$fa-var-vaadin: \f408;
-$fa-var-quora: \f2c4;
-$fa-var-square-x-twitter: \e61a;
-$fa-var-reacteurope: \f75d;
-$fa-var-medium: \f23a;
-$fa-var-medium-m: \f23a;
-$fa-var-amilia: \f36d;
-$fa-var-mixcloud: \f289;
-$fa-var-flipboard: \f44d;
-$fa-var-viacoin: \f237;
-$fa-var-critical-role: \f6c9;
-$fa-var-sitrox: \e44a;
-$fa-var-discourse: \f393;
-$fa-var-joomla: \f1aa;
-$fa-var-mastodon: \f4f6;
-$fa-var-airbnb: \f834;
-$fa-var-wolf-pack-battalion: \f514;
-$fa-var-buy-n-large: \f8a6;
-$fa-var-gulp: \f3ae;
-$fa-var-creative-commons-sampling-plus: \f4f1;
-$fa-var-strava: \f428;
-$fa-var-ember: \f423;
-$fa-var-canadian-maple-leaf: \f785;
-$fa-var-teamspeak: \f4f9;
-$fa-var-pushed: \f3e1;
-$fa-var-wordpress-simple: \f411;
-$fa-var-nutritionix: \f3d6;
-$fa-var-wodu: \e088;
-$fa-var-google-pay: \e079;
-$fa-var-intercom: \f7af;
-$fa-var-zhihu: \f63f;
-$fa-var-korvue: \f42f;
-$fa-var-pix: \e43a;
-$fa-var-steam-symbol: \f3f6;
-
-$fa-icons: (
- "0": $fa-var-0,
- "1": $fa-var-1,
- "2": $fa-var-2,
- "3": $fa-var-3,
- "4": $fa-var-4,
- "5": $fa-var-5,
- "6": $fa-var-6,
- "7": $fa-var-7,
- "8": $fa-var-8,
- "9": $fa-var-9,
- "fill-drip": $fa-var-fill-drip,
- "arrows-to-circle": $fa-var-arrows-to-circle,
- "circle-chevron-right": $fa-var-circle-chevron-right,
- "chevron-circle-right": $fa-var-chevron-circle-right,
- "at": $fa-var-at,
- "trash-can": $fa-var-trash-can,
- "trash-alt": $fa-var-trash-alt,
- "text-height": $fa-var-text-height,
- "user-xmark": $fa-var-user-xmark,
- "user-times": $fa-var-user-times,
- "stethoscope": $fa-var-stethoscope,
- "message": $fa-var-message,
- "comment-alt": $fa-var-comment-alt,
- "info": $fa-var-info,
- "down-left-and-up-right-to-center": $fa-var-down-left-and-up-right-to-center,
- "compress-alt": $fa-var-compress-alt,
- "explosion": $fa-var-explosion,
- "file-lines": $fa-var-file-lines,
- "file-alt": $fa-var-file-alt,
- "file-text": $fa-var-file-text,
- "wave-square": $fa-var-wave-square,
- "ring": $fa-var-ring,
- "building-un": $fa-var-building-un,
- "dice-three": $fa-var-dice-three,
- "calendar-days": $fa-var-calendar-days,
- "calendar-alt": $fa-var-calendar-alt,
- "anchor-circle-check": $fa-var-anchor-circle-check,
- "building-circle-arrow-right": $fa-var-building-circle-arrow-right,
- "volleyball": $fa-var-volleyball,
- "volleyball-ball": $fa-var-volleyball-ball,
- "arrows-up-to-line": $fa-var-arrows-up-to-line,
- "sort-down": $fa-var-sort-down,
- "sort-desc": $fa-var-sort-desc,
- "circle-minus": $fa-var-circle-minus,
- "minus-circle": $fa-var-minus-circle,
- "door-open": $fa-var-door-open,
- "right-from-bracket": $fa-var-right-from-bracket,
- "sign-out-alt": $fa-var-sign-out-alt,
- "atom": $fa-var-atom,
- "soap": $fa-var-soap,
- "icons": $fa-var-icons,
- "heart-music-camera-bolt": $fa-var-heart-music-camera-bolt,
- "microphone-lines-slash": $fa-var-microphone-lines-slash,
- "microphone-alt-slash": $fa-var-microphone-alt-slash,
- "bridge-circle-check": $fa-var-bridge-circle-check,
- "pump-medical": $fa-var-pump-medical,
- "fingerprint": $fa-var-fingerprint,
- "hand-point-right": $fa-var-hand-point-right,
- "magnifying-glass-location": $fa-var-magnifying-glass-location,
- "search-location": $fa-var-search-location,
- "forward-step": $fa-var-forward-step,
- "step-forward": $fa-var-step-forward,
- "face-smile-beam": $fa-var-face-smile-beam,
- "smile-beam": $fa-var-smile-beam,
- "flag-checkered": $fa-var-flag-checkered,
- "football": $fa-var-football,
- "football-ball": $fa-var-football-ball,
- "school-circle-exclamation": $fa-var-school-circle-exclamation,
- "crop": $fa-var-crop,
- "angles-down": $fa-var-angles-down,
- "angle-double-down": $fa-var-angle-double-down,
- "users-rectangle": $fa-var-users-rectangle,
- "people-roof": $fa-var-people-roof,
- "people-line": $fa-var-people-line,
- "beer-mug-empty": $fa-var-beer-mug-empty,
- "beer": $fa-var-beer,
- "diagram-predecessor": $fa-var-diagram-predecessor,
- "arrow-up-long": $fa-var-arrow-up-long,
- "long-arrow-up": $fa-var-long-arrow-up,
- "fire-flame-simple": $fa-var-fire-flame-simple,
- "burn": $fa-var-burn,
- "person": $fa-var-person,
- "male": $fa-var-male,
- "laptop": $fa-var-laptop,
- "file-csv": $fa-var-file-csv,
- "menorah": $fa-var-menorah,
- "truck-plane": $fa-var-truck-plane,
- "record-vinyl": $fa-var-record-vinyl,
- "face-grin-stars": $fa-var-face-grin-stars,
- "grin-stars": $fa-var-grin-stars,
- "bong": $fa-var-bong,
- "spaghetti-monster-flying": $fa-var-spaghetti-monster-flying,
- "pastafarianism": $fa-var-pastafarianism,
- "arrow-down-up-across-line": $fa-var-arrow-down-up-across-line,
- "spoon": $fa-var-spoon,
- "utensil-spoon": $fa-var-utensil-spoon,
- "jar-wheat": $fa-var-jar-wheat,
- "envelopes-bulk": $fa-var-envelopes-bulk,
- "mail-bulk": $fa-var-mail-bulk,
- "file-circle-exclamation": $fa-var-file-circle-exclamation,
- "circle-h": $fa-var-circle-h,
- "hospital-symbol": $fa-var-hospital-symbol,
- "pager": $fa-var-pager,
- "address-book": $fa-var-address-book,
- "contact-book": $fa-var-contact-book,
- "strikethrough": $fa-var-strikethrough,
- "k": $fa-var-k,
- "landmark-flag": $fa-var-landmark-flag,
- "pencil": $fa-var-pencil,
- "pencil-alt": $fa-var-pencil-alt,
- "backward": $fa-var-backward,
- "caret-right": $fa-var-caret-right,
- "comments": $fa-var-comments,
- "paste": $fa-var-paste,
- "file-clipboard": $fa-var-file-clipboard,
- "code-pull-request": $fa-var-code-pull-request,
- "clipboard-list": $fa-var-clipboard-list,
- "truck-ramp-box": $fa-var-truck-ramp-box,
- "truck-loading": $fa-var-truck-loading,
- "user-check": $fa-var-user-check,
- "vial-virus": $fa-var-vial-virus,
- "sheet-plastic": $fa-var-sheet-plastic,
- "blog": $fa-var-blog,
- "user-ninja": $fa-var-user-ninja,
- "person-arrow-up-from-line": $fa-var-person-arrow-up-from-line,
- "scroll-torah": $fa-var-scroll-torah,
- "torah": $fa-var-torah,
- "broom-ball": $fa-var-broom-ball,
- "quidditch": $fa-var-quidditch,
- "quidditch-broom-ball": $fa-var-quidditch-broom-ball,
- "toggle-off": $fa-var-toggle-off,
- "box-archive": $fa-var-box-archive,
- "archive": $fa-var-archive,
- "person-drowning": $fa-var-person-drowning,
- "arrow-down-9-1": $fa-var-arrow-down-9-1,
- "sort-numeric-desc": $fa-var-sort-numeric-desc,
- "sort-numeric-down-alt": $fa-var-sort-numeric-down-alt,
- "face-grin-tongue-squint": $fa-var-face-grin-tongue-squint,
- "grin-tongue-squint": $fa-var-grin-tongue-squint,
- "spray-can": $fa-var-spray-can,
- "truck-monster": $fa-var-truck-monster,
- "w": $fa-var-w,
- "earth-africa": $fa-var-earth-africa,
- "globe-africa": $fa-var-globe-africa,
- "rainbow": $fa-var-rainbow,
- "circle-notch": $fa-var-circle-notch,
- "tablet-screen-button": $fa-var-tablet-screen-button,
- "tablet-alt": $fa-var-tablet-alt,
- "paw": $fa-var-paw,
- "cloud": $fa-var-cloud,
- "trowel-bricks": $fa-var-trowel-bricks,
- "face-flushed": $fa-var-face-flushed,
- "flushed": $fa-var-flushed,
- "hospital-user": $fa-var-hospital-user,
- "tent-arrow-left-right": $fa-var-tent-arrow-left-right,
- "gavel": $fa-var-gavel,
- "legal": $fa-var-legal,
- "binoculars": $fa-var-binoculars,
- "microphone-slash": $fa-var-microphone-slash,
- "box-tissue": $fa-var-box-tissue,
- "motorcycle": $fa-var-motorcycle,
- "bell-concierge": $fa-var-bell-concierge,
- "concierge-bell": $fa-var-concierge-bell,
- "pen-ruler": $fa-var-pen-ruler,
- "pencil-ruler": $fa-var-pencil-ruler,
- "people-arrows": $fa-var-people-arrows,
- "people-arrows-left-right": $fa-var-people-arrows-left-right,
- "mars-and-venus-burst": $fa-var-mars-and-venus-burst,
- "square-caret-right": $fa-var-square-caret-right,
- "caret-square-right": $fa-var-caret-square-right,
- "scissors": $fa-var-scissors,
- "cut": $fa-var-cut,
- "sun-plant-wilt": $fa-var-sun-plant-wilt,
- "toilets-portable": $fa-var-toilets-portable,
- "hockey-puck": $fa-var-hockey-puck,
- "table": $fa-var-table,
- "magnifying-glass-arrow-right": $fa-var-magnifying-glass-arrow-right,
- "tachograph-digital": $fa-var-tachograph-digital,
- "digital-tachograph": $fa-var-digital-tachograph,
- "users-slash": $fa-var-users-slash,
- "clover": $fa-var-clover,
- "reply": $fa-var-reply,
- "mail-reply": $fa-var-mail-reply,
- "star-and-crescent": $fa-var-star-and-crescent,
- "house-fire": $fa-var-house-fire,
- "square-minus": $fa-var-square-minus,
- "minus-square": $fa-var-minus-square,
- "helicopter": $fa-var-helicopter,
- "compass": $fa-var-compass,
- "square-caret-down": $fa-var-square-caret-down,
- "caret-square-down": $fa-var-caret-square-down,
- "file-circle-question": $fa-var-file-circle-question,
- "laptop-code": $fa-var-laptop-code,
- "swatchbook": $fa-var-swatchbook,
- "prescription-bottle": $fa-var-prescription-bottle,
- "bars": $fa-var-bars,
- "navicon": $fa-var-navicon,
- "people-group": $fa-var-people-group,
- "hourglass-end": $fa-var-hourglass-end,
- "hourglass-3": $fa-var-hourglass-3,
- "heart-crack": $fa-var-heart-crack,
- "heart-broken": $fa-var-heart-broken,
- "square-up-right": $fa-var-square-up-right,
- "external-link-square-alt": $fa-var-external-link-square-alt,
- "face-kiss-beam": $fa-var-face-kiss-beam,
- "kiss-beam": $fa-var-kiss-beam,
- "film": $fa-var-film,
- "ruler-horizontal": $fa-var-ruler-horizontal,
- "people-robbery": $fa-var-people-robbery,
- "lightbulb": $fa-var-lightbulb,
- "caret-left": $fa-var-caret-left,
- "circle-exclamation": $fa-var-circle-exclamation,
- "exclamation-circle": $fa-var-exclamation-circle,
- "school-circle-xmark": $fa-var-school-circle-xmark,
- "arrow-right-from-bracket": $fa-var-arrow-right-from-bracket,
- "sign-out": $fa-var-sign-out,
- "circle-chevron-down": $fa-var-circle-chevron-down,
- "chevron-circle-down": $fa-var-chevron-circle-down,
- "unlock-keyhole": $fa-var-unlock-keyhole,
- "unlock-alt": $fa-var-unlock-alt,
- "cloud-showers-heavy": $fa-var-cloud-showers-heavy,
- "headphones-simple": $fa-var-headphones-simple,
- "headphones-alt": $fa-var-headphones-alt,
- "sitemap": $fa-var-sitemap,
- "circle-dollar-to-slot": $fa-var-circle-dollar-to-slot,
- "donate": $fa-var-donate,
- "memory": $fa-var-memory,
- "road-spikes": $fa-var-road-spikes,
- "fire-burner": $fa-var-fire-burner,
- "flag": $fa-var-flag,
- "hanukiah": $fa-var-hanukiah,
- "feather": $fa-var-feather,
- "volume-low": $fa-var-volume-low,
- "volume-down": $fa-var-volume-down,
- "comment-slash": $fa-var-comment-slash,
- "cloud-sun-rain": $fa-var-cloud-sun-rain,
- "compress": $fa-var-compress,
- "wheat-awn": $fa-var-wheat-awn,
- "wheat-alt": $fa-var-wheat-alt,
- "ankh": $fa-var-ankh,
- "hands-holding-child": $fa-var-hands-holding-child,
- "asterisk": $fa-var-asterisk,
- "square-check": $fa-var-square-check,
- "check-square": $fa-var-check-square,
- "peseta-sign": $fa-var-peseta-sign,
- "heading": $fa-var-heading,
- "header": $fa-var-header,
- "ghost": $fa-var-ghost,
- "list": $fa-var-list,
- "list-squares": $fa-var-list-squares,
- "square-phone-flip": $fa-var-square-phone-flip,
- "phone-square-alt": $fa-var-phone-square-alt,
- "cart-plus": $fa-var-cart-plus,
- "gamepad": $fa-var-gamepad,
- "circle-dot": $fa-var-circle-dot,
- "dot-circle": $fa-var-dot-circle,
- "face-dizzy": $fa-var-face-dizzy,
- "dizzy": $fa-var-dizzy,
- "egg": $fa-var-egg,
- "house-medical-circle-xmark": $fa-var-house-medical-circle-xmark,
- "campground": $fa-var-campground,
- "folder-plus": $fa-var-folder-plus,
- "futbol": $fa-var-futbol,
- "futbol-ball": $fa-var-futbol-ball,
- "soccer-ball": $fa-var-soccer-ball,
- "paintbrush": $fa-var-paintbrush,
- "paint-brush": $fa-var-paint-brush,
- "lock": $fa-var-lock,
- "gas-pump": $fa-var-gas-pump,
- "hot-tub-person": $fa-var-hot-tub-person,
- "hot-tub": $fa-var-hot-tub,
- "map-location": $fa-var-map-location,
- "map-marked": $fa-var-map-marked,
- "house-flood-water": $fa-var-house-flood-water,
- "tree": $fa-var-tree,
- "bridge-lock": $fa-var-bridge-lock,
- "sack-dollar": $fa-var-sack-dollar,
- "pen-to-square": $fa-var-pen-to-square,
- "edit": $fa-var-edit,
- "car-side": $fa-var-car-side,
- "share-nodes": $fa-var-share-nodes,
- "share-alt": $fa-var-share-alt,
- "heart-circle-minus": $fa-var-heart-circle-minus,
- "hourglass-half": $fa-var-hourglass-half,
- "hourglass-2": $fa-var-hourglass-2,
- "microscope": $fa-var-microscope,
- "sink": $fa-var-sink,
- "bag-shopping": $fa-var-bag-shopping,
- "shopping-bag": $fa-var-shopping-bag,
- "arrow-down-z-a": $fa-var-arrow-down-z-a,
- "sort-alpha-desc": $fa-var-sort-alpha-desc,
- "sort-alpha-down-alt": $fa-var-sort-alpha-down-alt,
- "mitten": $fa-var-mitten,
- "person-rays": $fa-var-person-rays,
- "users": $fa-var-users,
- "eye-slash": $fa-var-eye-slash,
- "flask-vial": $fa-var-flask-vial,
- "hand": $fa-var-hand,
- "hand-paper": $fa-var-hand-paper,
- "om": $fa-var-om,
- "worm": $fa-var-worm,
- "house-circle-xmark": $fa-var-house-circle-xmark,
- "plug": $fa-var-plug,
- "chevron-up": $fa-var-chevron-up,
- "hand-spock": $fa-var-hand-spock,
- "stopwatch": $fa-var-stopwatch,
- "face-kiss": $fa-var-face-kiss,
- "kiss": $fa-var-kiss,
- "bridge-circle-xmark": $fa-var-bridge-circle-xmark,
- "face-grin-tongue": $fa-var-face-grin-tongue,
- "grin-tongue": $fa-var-grin-tongue,
- "chess-bishop": $fa-var-chess-bishop,
- "face-grin-wink": $fa-var-face-grin-wink,
- "grin-wink": $fa-var-grin-wink,
- "ear-deaf": $fa-var-ear-deaf,
- "deaf": $fa-var-deaf,
- "deafness": $fa-var-deafness,
- "hard-of-hearing": $fa-var-hard-of-hearing,
- "road-circle-check": $fa-var-road-circle-check,
- "dice-five": $fa-var-dice-five,
- "square-rss": $fa-var-square-rss,
- "rss-square": $fa-var-rss-square,
- "land-mine-on": $fa-var-land-mine-on,
- "i-cursor": $fa-var-i-cursor,
- "stamp": $fa-var-stamp,
- "stairs": $fa-var-stairs,
- "i": $fa-var-i,
- "hryvnia-sign": $fa-var-hryvnia-sign,
- "hryvnia": $fa-var-hryvnia,
- "pills": $fa-var-pills,
- "face-grin-wide": $fa-var-face-grin-wide,
- "grin-alt": $fa-var-grin-alt,
- "tooth": $fa-var-tooth,
- "v": $fa-var-v,
- "bangladeshi-taka-sign": $fa-var-bangladeshi-taka-sign,
- "bicycle": $fa-var-bicycle,
- "staff-snake": $fa-var-staff-snake,
- "rod-asclepius": $fa-var-rod-asclepius,
- "rod-snake": $fa-var-rod-snake,
- "staff-aesculapius": $fa-var-staff-aesculapius,
- "head-side-cough-slash": $fa-var-head-side-cough-slash,
- "truck-medical": $fa-var-truck-medical,
- "ambulance": $fa-var-ambulance,
- "wheat-awn-circle-exclamation": $fa-var-wheat-awn-circle-exclamation,
- "snowman": $fa-var-snowman,
- "mortar-pestle": $fa-var-mortar-pestle,
- "road-barrier": $fa-var-road-barrier,
- "school": $fa-var-school,
- "igloo": $fa-var-igloo,
- "joint": $fa-var-joint,
- "angle-right": $fa-var-angle-right,
- "horse": $fa-var-horse,
- "q": $fa-var-q,
- "g": $fa-var-g,
- "notes-medical": $fa-var-notes-medical,
- "temperature-half": $fa-var-temperature-half,
- "temperature-2": $fa-var-temperature-2,
- "thermometer-2": $fa-var-thermometer-2,
- "thermometer-half": $fa-var-thermometer-half,
- "dong-sign": $fa-var-dong-sign,
- "capsules": $fa-var-capsules,
- "poo-storm": $fa-var-poo-storm,
- "poo-bolt": $fa-var-poo-bolt,
- "face-frown-open": $fa-var-face-frown-open,
- "frown-open": $fa-var-frown-open,
- "hand-point-up": $fa-var-hand-point-up,
- "money-bill": $fa-var-money-bill,
- "bookmark": $fa-var-bookmark,
- "align-justify": $fa-var-align-justify,
- "umbrella-beach": $fa-var-umbrella-beach,
- "helmet-un": $fa-var-helmet-un,
- "bullseye": $fa-var-bullseye,
- "bacon": $fa-var-bacon,
- "hand-point-down": $fa-var-hand-point-down,
- "arrow-up-from-bracket": $fa-var-arrow-up-from-bracket,
- "folder": $fa-var-folder,
- "folder-blank": $fa-var-folder-blank,
- "file-waveform": $fa-var-file-waveform,
- "file-medical-alt": $fa-var-file-medical-alt,
- "radiation": $fa-var-radiation,
- "chart-simple": $fa-var-chart-simple,
- "mars-stroke": $fa-var-mars-stroke,
- "vial": $fa-var-vial,
- "gauge": $fa-var-gauge,
- "dashboard": $fa-var-dashboard,
- "gauge-med": $fa-var-gauge-med,
- "tachometer-alt-average": $fa-var-tachometer-alt-average,
- "wand-magic-sparkles": $fa-var-wand-magic-sparkles,
- "magic-wand-sparkles": $fa-var-magic-wand-sparkles,
- "e": $fa-var-e,
- "pen-clip": $fa-var-pen-clip,
- "pen-alt": $fa-var-pen-alt,
- "bridge-circle-exclamation": $fa-var-bridge-circle-exclamation,
- "user": $fa-var-user,
- "school-circle-check": $fa-var-school-circle-check,
- "dumpster": $fa-var-dumpster,
- "van-shuttle": $fa-var-van-shuttle,
- "shuttle-van": $fa-var-shuttle-van,
- "building-user": $fa-var-building-user,
- "square-caret-left": $fa-var-square-caret-left,
- "caret-square-left": $fa-var-caret-square-left,
- "highlighter": $fa-var-highlighter,
- "key": $fa-var-key,
- "bullhorn": $fa-var-bullhorn,
- "globe": $fa-var-globe,
- "synagogue": $fa-var-synagogue,
- "person-half-dress": $fa-var-person-half-dress,
- "road-bridge": $fa-var-road-bridge,
- "location-arrow": $fa-var-location-arrow,
- "c": $fa-var-c,
- "tablet-button": $fa-var-tablet-button,
- "building-lock": $fa-var-building-lock,
- "pizza-slice": $fa-var-pizza-slice,
- "money-bill-wave": $fa-var-money-bill-wave,
- "chart-area": $fa-var-chart-area,
- "area-chart": $fa-var-area-chart,
- "house-flag": $fa-var-house-flag,
- "person-circle-minus": $fa-var-person-circle-minus,
- "ban": $fa-var-ban,
- "cancel": $fa-var-cancel,
- "camera-rotate": $fa-var-camera-rotate,
- "spray-can-sparkles": $fa-var-spray-can-sparkles,
- "air-freshener": $fa-var-air-freshener,
- "star": $fa-var-star,
- "repeat": $fa-var-repeat,
- "cross": $fa-var-cross,
- "box": $fa-var-box,
- "venus-mars": $fa-var-venus-mars,
- "arrow-pointer": $fa-var-arrow-pointer,
- "mouse-pointer": $fa-var-mouse-pointer,
- "maximize": $fa-var-maximize,
- "expand-arrows-alt": $fa-var-expand-arrows-alt,
- "charging-station": $fa-var-charging-station,
- "shapes": $fa-var-shapes,
- "triangle-circle-square": $fa-var-triangle-circle-square,
- "shuffle": $fa-var-shuffle,
- "random": $fa-var-random,
- "person-running": $fa-var-person-running,
- "running": $fa-var-running,
- "mobile-retro": $fa-var-mobile-retro,
- "grip-lines-vertical": $fa-var-grip-lines-vertical,
- "spider": $fa-var-spider,
- "hands-bound": $fa-var-hands-bound,
- "file-invoice-dollar": $fa-var-file-invoice-dollar,
- "plane-circle-exclamation": $fa-var-plane-circle-exclamation,
- "x-ray": $fa-var-x-ray,
- "spell-check": $fa-var-spell-check,
- "slash": $fa-var-slash,
- "computer-mouse": $fa-var-computer-mouse,
- "mouse": $fa-var-mouse,
- "arrow-right-to-bracket": $fa-var-arrow-right-to-bracket,
- "sign-in": $fa-var-sign-in,
- "shop-slash": $fa-var-shop-slash,
- "store-alt-slash": $fa-var-store-alt-slash,
- "server": $fa-var-server,
- "virus-covid-slash": $fa-var-virus-covid-slash,
- "shop-lock": $fa-var-shop-lock,
- "hourglass-start": $fa-var-hourglass-start,
- "hourglass-1": $fa-var-hourglass-1,
- "blender-phone": $fa-var-blender-phone,
- "building-wheat": $fa-var-building-wheat,
- "person-breastfeeding": $fa-var-person-breastfeeding,
- "right-to-bracket": $fa-var-right-to-bracket,
- "sign-in-alt": $fa-var-sign-in-alt,
- "venus": $fa-var-venus,
- "passport": $fa-var-passport,
- "thumbtack-slash": $fa-var-thumbtack-slash,
- "thumb-tack-slash": $fa-var-thumb-tack-slash,
- "heart-pulse": $fa-var-heart-pulse,
- "heartbeat": $fa-var-heartbeat,
- "people-carry-box": $fa-var-people-carry-box,
- "people-carry": $fa-var-people-carry,
- "temperature-high": $fa-var-temperature-high,
- "microchip": $fa-var-microchip,
- "crown": $fa-var-crown,
- "weight-hanging": $fa-var-weight-hanging,
- "xmarks-lines": $fa-var-xmarks-lines,
- "file-prescription": $fa-var-file-prescription,
- "weight-scale": $fa-var-weight-scale,
- "weight": $fa-var-weight,
- "user-group": $fa-var-user-group,
- "user-friends": $fa-var-user-friends,
- "arrow-up-a-z": $fa-var-arrow-up-a-z,
- "sort-alpha-up": $fa-var-sort-alpha-up,
- "chess-knight": $fa-var-chess-knight,
- "face-laugh-squint": $fa-var-face-laugh-squint,
- "laugh-squint": $fa-var-laugh-squint,
- "wheelchair": $fa-var-wheelchair,
- "circle-arrow-up": $fa-var-circle-arrow-up,
- "arrow-circle-up": $fa-var-arrow-circle-up,
- "toggle-on": $fa-var-toggle-on,
- "person-walking": $fa-var-person-walking,
- "walking": $fa-var-walking,
- "l": $fa-var-l,
- "fire": $fa-var-fire,
- "bed-pulse": $fa-var-bed-pulse,
- "procedures": $fa-var-procedures,
- "shuttle-space": $fa-var-shuttle-space,
- "space-shuttle": $fa-var-space-shuttle,
- "face-laugh": $fa-var-face-laugh,
- "laugh": $fa-var-laugh,
- "folder-open": $fa-var-folder-open,
- "heart-circle-plus": $fa-var-heart-circle-plus,
- "code-fork": $fa-var-code-fork,
- "city": $fa-var-city,
- "microphone-lines": $fa-var-microphone-lines,
- "microphone-alt": $fa-var-microphone-alt,
- "pepper-hot": $fa-var-pepper-hot,
- "unlock": $fa-var-unlock,
- "colon-sign": $fa-var-colon-sign,
- "headset": $fa-var-headset,
- "store-slash": $fa-var-store-slash,
- "road-circle-xmark": $fa-var-road-circle-xmark,
- "user-minus": $fa-var-user-minus,
- "mars-stroke-up": $fa-var-mars-stroke-up,
- "mars-stroke-v": $fa-var-mars-stroke-v,
- "champagne-glasses": $fa-var-champagne-glasses,
- "glass-cheers": $fa-var-glass-cheers,
- "clipboard": $fa-var-clipboard,
- "house-circle-exclamation": $fa-var-house-circle-exclamation,
- "file-arrow-up": $fa-var-file-arrow-up,
- "file-upload": $fa-var-file-upload,
- "wifi": $fa-var-wifi,
- "wifi-3": $fa-var-wifi-3,
- "wifi-strong": $fa-var-wifi-strong,
- "bath": $fa-var-bath,
- "bathtub": $fa-var-bathtub,
- "underline": $fa-var-underline,
- "user-pen": $fa-var-user-pen,
- "user-edit": $fa-var-user-edit,
- "signature": $fa-var-signature,
- "stroopwafel": $fa-var-stroopwafel,
- "bold": $fa-var-bold,
- "anchor-lock": $fa-var-anchor-lock,
- "building-ngo": $fa-var-building-ngo,
- "manat-sign": $fa-var-manat-sign,
- "not-equal": $fa-var-not-equal,
- "border-top-left": $fa-var-border-top-left,
- "border-style": $fa-var-border-style,
- "map-location-dot": $fa-var-map-location-dot,
- "map-marked-alt": $fa-var-map-marked-alt,
- "jedi": $fa-var-jedi,
- "square-poll-vertical": $fa-var-square-poll-vertical,
- "poll": $fa-var-poll,
- "mug-hot": $fa-var-mug-hot,
- "car-battery": $fa-var-car-battery,
- "battery-car": $fa-var-battery-car,
- "gift": $fa-var-gift,
- "dice-two": $fa-var-dice-two,
- "chess-queen": $fa-var-chess-queen,
- "glasses": $fa-var-glasses,
- "chess-board": $fa-var-chess-board,
- "building-circle-check": $fa-var-building-circle-check,
- "person-chalkboard": $fa-var-person-chalkboard,
- "mars-stroke-right": $fa-var-mars-stroke-right,
- "mars-stroke-h": $fa-var-mars-stroke-h,
- "hand-back-fist": $fa-var-hand-back-fist,
- "hand-rock": $fa-var-hand-rock,
- "square-caret-up": $fa-var-square-caret-up,
- "caret-square-up": $fa-var-caret-square-up,
- "cloud-showers-water": $fa-var-cloud-showers-water,
- "chart-bar": $fa-var-chart-bar,
- "bar-chart": $fa-var-bar-chart,
- "hands-bubbles": $fa-var-hands-bubbles,
- "hands-wash": $fa-var-hands-wash,
- "less-than-equal": $fa-var-less-than-equal,
- "train": $fa-var-train,
- "eye-low-vision": $fa-var-eye-low-vision,
- "low-vision": $fa-var-low-vision,
- "crow": $fa-var-crow,
- "sailboat": $fa-var-sailboat,
- "window-restore": $fa-var-window-restore,
- "square-plus": $fa-var-square-plus,
- "plus-square": $fa-var-plus-square,
- "torii-gate": $fa-var-torii-gate,
- "frog": $fa-var-frog,
- "bucket": $fa-var-bucket,
- "image": $fa-var-image,
- "microphone": $fa-var-microphone,
- "cow": $fa-var-cow,
- "caret-up": $fa-var-caret-up,
- "screwdriver": $fa-var-screwdriver,
- "folder-closed": $fa-var-folder-closed,
- "house-tsunami": $fa-var-house-tsunami,
- "square-nfi": $fa-var-square-nfi,
- "arrow-up-from-ground-water": $fa-var-arrow-up-from-ground-water,
- "martini-glass": $fa-var-martini-glass,
- "glass-martini-alt": $fa-var-glass-martini-alt,
- "square-binary": $fa-var-square-binary,
- "rotate-left": $fa-var-rotate-left,
- "rotate-back": $fa-var-rotate-back,
- "rotate-backward": $fa-var-rotate-backward,
- "undo-alt": $fa-var-undo-alt,
- "table-columns": $fa-var-table-columns,
- "columns": $fa-var-columns,
- "lemon": $fa-var-lemon,
- "head-side-mask": $fa-var-head-side-mask,
- "handshake": $fa-var-handshake,
- "gem": $fa-var-gem,
- "dolly": $fa-var-dolly,
- "dolly-box": $fa-var-dolly-box,
- "smoking": $fa-var-smoking,
- "minimize": $fa-var-minimize,
- "compress-arrows-alt": $fa-var-compress-arrows-alt,
- "monument": $fa-var-monument,
- "snowplow": $fa-var-snowplow,
- "angles-right": $fa-var-angles-right,
- "angle-double-right": $fa-var-angle-double-right,
- "cannabis": $fa-var-cannabis,
- "circle-play": $fa-var-circle-play,
- "play-circle": $fa-var-play-circle,
- "tablets": $fa-var-tablets,
- "ethernet": $fa-var-ethernet,
- "euro-sign": $fa-var-euro-sign,
- "eur": $fa-var-eur,
- "euro": $fa-var-euro,
- "chair": $fa-var-chair,
- "circle-check": $fa-var-circle-check,
- "check-circle": $fa-var-check-circle,
- "circle-stop": $fa-var-circle-stop,
- "stop-circle": $fa-var-stop-circle,
- "compass-drafting": $fa-var-compass-drafting,
- "drafting-compass": $fa-var-drafting-compass,
- "plate-wheat": $fa-var-plate-wheat,
- "icicles": $fa-var-icicles,
- "person-shelter": $fa-var-person-shelter,
- "neuter": $fa-var-neuter,
- "id-badge": $fa-var-id-badge,
- "marker": $fa-var-marker,
- "face-laugh-beam": $fa-var-face-laugh-beam,
- "laugh-beam": $fa-var-laugh-beam,
- "helicopter-symbol": $fa-var-helicopter-symbol,
- "universal-access": $fa-var-universal-access,
- "circle-chevron-up": $fa-var-circle-chevron-up,
- "chevron-circle-up": $fa-var-chevron-circle-up,
- "lari-sign": $fa-var-lari-sign,
- "volcano": $fa-var-volcano,
- "person-walking-dashed-line-arrow-right": $fa-var-person-walking-dashed-line-arrow-right,
- "sterling-sign": $fa-var-sterling-sign,
- "gbp": $fa-var-gbp,
- "pound-sign": $fa-var-pound-sign,
- "viruses": $fa-var-viruses,
- "square-person-confined": $fa-var-square-person-confined,
- "user-tie": $fa-var-user-tie,
- "arrow-down-long": $fa-var-arrow-down-long,
- "long-arrow-down": $fa-var-long-arrow-down,
- "tent-arrow-down-to-line": $fa-var-tent-arrow-down-to-line,
- "certificate": $fa-var-certificate,
- "reply-all": $fa-var-reply-all,
- "mail-reply-all": $fa-var-mail-reply-all,
- "suitcase": $fa-var-suitcase,
- "person-skating": $fa-var-person-skating,
- "skating": $fa-var-skating,
- "filter-circle-dollar": $fa-var-filter-circle-dollar,
- "funnel-dollar": $fa-var-funnel-dollar,
- "camera-retro": $fa-var-camera-retro,
- "circle-arrow-down": $fa-var-circle-arrow-down,
- "arrow-circle-down": $fa-var-arrow-circle-down,
- "file-import": $fa-var-file-import,
- "arrow-right-to-file": $fa-var-arrow-right-to-file,
- "square-arrow-up-right": $fa-var-square-arrow-up-right,
- "external-link-square": $fa-var-external-link-square,
- "box-open": $fa-var-box-open,
- "scroll": $fa-var-scroll,
- "spa": $fa-var-spa,
- "location-pin-lock": $fa-var-location-pin-lock,
- "pause": $fa-var-pause,
- "hill-avalanche": $fa-var-hill-avalanche,
- "temperature-empty": $fa-var-temperature-empty,
- "temperature-0": $fa-var-temperature-0,
- "thermometer-0": $fa-var-thermometer-0,
- "thermometer-empty": $fa-var-thermometer-empty,
- "bomb": $fa-var-bomb,
- "registered": $fa-var-registered,
- "address-card": $fa-var-address-card,
- "contact-card": $fa-var-contact-card,
- "vcard": $fa-var-vcard,
- "scale-unbalanced-flip": $fa-var-scale-unbalanced-flip,
- "balance-scale-right": $fa-var-balance-scale-right,
- "subscript": $fa-var-subscript,
- "diamond-turn-right": $fa-var-diamond-turn-right,
- "directions": $fa-var-directions,
- "burst": $fa-var-burst,
- "house-laptop": $fa-var-house-laptop,
- "laptop-house": $fa-var-laptop-house,
- "face-tired": $fa-var-face-tired,
- "tired": $fa-var-tired,
- "money-bills": $fa-var-money-bills,
- "smog": $fa-var-smog,
- "crutch": $fa-var-crutch,
- "cloud-arrow-up": $fa-var-cloud-arrow-up,
- "cloud-upload": $fa-var-cloud-upload,
- "cloud-upload-alt": $fa-var-cloud-upload-alt,
- "palette": $fa-var-palette,
- "arrows-turn-right": $fa-var-arrows-turn-right,
- "vest": $fa-var-vest,
- "ferry": $fa-var-ferry,
- "arrows-down-to-people": $fa-var-arrows-down-to-people,
- "seedling": $fa-var-seedling,
- "sprout": $fa-var-sprout,
- "left-right": $fa-var-left-right,
- "arrows-alt-h": $fa-var-arrows-alt-h,
- "boxes-packing": $fa-var-boxes-packing,
- "circle-arrow-left": $fa-var-circle-arrow-left,
- "arrow-circle-left": $fa-var-arrow-circle-left,
- "group-arrows-rotate": $fa-var-group-arrows-rotate,
- "bowl-food": $fa-var-bowl-food,
- "candy-cane": $fa-var-candy-cane,
- "arrow-down-wide-short": $fa-var-arrow-down-wide-short,
- "sort-amount-asc": $fa-var-sort-amount-asc,
- "sort-amount-down": $fa-var-sort-amount-down,
- "cloud-bolt": $fa-var-cloud-bolt,
- "thunderstorm": $fa-var-thunderstorm,
- "text-slash": $fa-var-text-slash,
- "remove-format": $fa-var-remove-format,
- "face-smile-wink": $fa-var-face-smile-wink,
- "smile-wink": $fa-var-smile-wink,
- "file-word": $fa-var-file-word,
- "file-powerpoint": $fa-var-file-powerpoint,
- "arrows-left-right": $fa-var-arrows-left-right,
- "arrows-h": $fa-var-arrows-h,
- "house-lock": $fa-var-house-lock,
- "cloud-arrow-down": $fa-var-cloud-arrow-down,
- "cloud-download": $fa-var-cloud-download,
- "cloud-download-alt": $fa-var-cloud-download-alt,
- "children": $fa-var-children,
- "chalkboard": $fa-var-chalkboard,
- "blackboard": $fa-var-blackboard,
- "user-large-slash": $fa-var-user-large-slash,
- "user-alt-slash": $fa-var-user-alt-slash,
- "envelope-open": $fa-var-envelope-open,
- "handshake-simple-slash": $fa-var-handshake-simple-slash,
- "handshake-alt-slash": $fa-var-handshake-alt-slash,
- "mattress-pillow": $fa-var-mattress-pillow,
- "guarani-sign": $fa-var-guarani-sign,
- "arrows-rotate": $fa-var-arrows-rotate,
- "refresh": $fa-var-refresh,
- "sync": $fa-var-sync,
- "fire-extinguisher": $fa-var-fire-extinguisher,
- "cruzeiro-sign": $fa-var-cruzeiro-sign,
- "greater-than-equal": $fa-var-greater-than-equal,
- "shield-halved": $fa-var-shield-halved,
- "shield-alt": $fa-var-shield-alt,
- "book-atlas": $fa-var-book-atlas,
- "atlas": $fa-var-atlas,
- "virus": $fa-var-virus,
- "envelope-circle-check": $fa-var-envelope-circle-check,
- "layer-group": $fa-var-layer-group,
- "arrows-to-dot": $fa-var-arrows-to-dot,
- "archway": $fa-var-archway,
- "heart-circle-check": $fa-var-heart-circle-check,
- "house-chimney-crack": $fa-var-house-chimney-crack,
- "house-damage": $fa-var-house-damage,
- "file-zipper": $fa-var-file-zipper,
- "file-archive": $fa-var-file-archive,
- "square": $fa-var-square,
- "martini-glass-empty": $fa-var-martini-glass-empty,
- "glass-martini": $fa-var-glass-martini,
- "couch": $fa-var-couch,
- "cedi-sign": $fa-var-cedi-sign,
- "italic": $fa-var-italic,
- "table-cells-column-lock": $fa-var-table-cells-column-lock,
- "church": $fa-var-church,
- "comments-dollar": $fa-var-comments-dollar,
- "democrat": $fa-var-democrat,
- "z": $fa-var-z,
- "person-skiing": $fa-var-person-skiing,
- "skiing": $fa-var-skiing,
- "road-lock": $fa-var-road-lock,
- "a": $fa-var-a,
- "temperature-arrow-down": $fa-var-temperature-arrow-down,
- "temperature-down": $fa-var-temperature-down,
- "feather-pointed": $fa-var-feather-pointed,
- "feather-alt": $fa-var-feather-alt,
- "p": $fa-var-p,
- "snowflake": $fa-var-snowflake,
- "newspaper": $fa-var-newspaper,
- "rectangle-ad": $fa-var-rectangle-ad,
- "ad": $fa-var-ad,
- "circle-arrow-right": $fa-var-circle-arrow-right,
- "arrow-circle-right": $fa-var-arrow-circle-right,
- "filter-circle-xmark": $fa-var-filter-circle-xmark,
- "locust": $fa-var-locust,
- "sort": $fa-var-sort,
- "unsorted": $fa-var-unsorted,
- "list-ol": $fa-var-list-ol,
- "list-1-2": $fa-var-list-1-2,
- "list-numeric": $fa-var-list-numeric,
- "person-dress-burst": $fa-var-person-dress-burst,
- "money-check-dollar": $fa-var-money-check-dollar,
- "money-check-alt": $fa-var-money-check-alt,
- "vector-square": $fa-var-vector-square,
- "bread-slice": $fa-var-bread-slice,
- "language": $fa-var-language,
- "face-kiss-wink-heart": $fa-var-face-kiss-wink-heart,
- "kiss-wink-heart": $fa-var-kiss-wink-heart,
- "filter": $fa-var-filter,
- "question": $fa-var-question,
- "file-signature": $fa-var-file-signature,
- "up-down-left-right": $fa-var-up-down-left-right,
- "arrows-alt": $fa-var-arrows-alt,
- "house-chimney-user": $fa-var-house-chimney-user,
- "hand-holding-heart": $fa-var-hand-holding-heart,
- "puzzle-piece": $fa-var-puzzle-piece,
- "money-check": $fa-var-money-check,
- "star-half-stroke": $fa-var-star-half-stroke,
- "star-half-alt": $fa-var-star-half-alt,
- "code": $fa-var-code,
- "whiskey-glass": $fa-var-whiskey-glass,
- "glass-whiskey": $fa-var-glass-whiskey,
- "building-circle-exclamation": $fa-var-building-circle-exclamation,
- "magnifying-glass-chart": $fa-var-magnifying-glass-chart,
- "arrow-up-right-from-square": $fa-var-arrow-up-right-from-square,
- "external-link": $fa-var-external-link,
- "cubes-stacked": $fa-var-cubes-stacked,
- "won-sign": $fa-var-won-sign,
- "krw": $fa-var-krw,
- "won": $fa-var-won,
- "virus-covid": $fa-var-virus-covid,
- "austral-sign": $fa-var-austral-sign,
- "f": $fa-var-f,
- "leaf": $fa-var-leaf,
- "road": $fa-var-road,
- "taxi": $fa-var-taxi,
- "cab": $fa-var-cab,
- "person-circle-plus": $fa-var-person-circle-plus,
- "chart-pie": $fa-var-chart-pie,
- "pie-chart": $fa-var-pie-chart,
- "bolt-lightning": $fa-var-bolt-lightning,
- "sack-xmark": $fa-var-sack-xmark,
- "file-excel": $fa-var-file-excel,
- "file-contract": $fa-var-file-contract,
- "fish-fins": $fa-var-fish-fins,
- "building-flag": $fa-var-building-flag,
- "face-grin-beam": $fa-var-face-grin-beam,
- "grin-beam": $fa-var-grin-beam,
- "object-ungroup": $fa-var-object-ungroup,
- "poop": $fa-var-poop,
- "location-pin": $fa-var-location-pin,
- "map-marker": $fa-var-map-marker,
- "kaaba": $fa-var-kaaba,
- "toilet-paper": $fa-var-toilet-paper,
- "helmet-safety": $fa-var-helmet-safety,
- "hard-hat": $fa-var-hard-hat,
- "hat-hard": $fa-var-hat-hard,
- "eject": $fa-var-eject,
- "circle-right": $fa-var-circle-right,
- "arrow-alt-circle-right": $fa-var-arrow-alt-circle-right,
- "plane-circle-check": $fa-var-plane-circle-check,
- "face-rolling-eyes": $fa-var-face-rolling-eyes,
- "meh-rolling-eyes": $fa-var-meh-rolling-eyes,
- "object-group": $fa-var-object-group,
- "chart-line": $fa-var-chart-line,
- "line-chart": $fa-var-line-chart,
- "mask-ventilator": $fa-var-mask-ventilator,
- "arrow-right": $fa-var-arrow-right,
- "signs-post": $fa-var-signs-post,
- "map-signs": $fa-var-map-signs,
- "cash-register": $fa-var-cash-register,
- "person-circle-question": $fa-var-person-circle-question,
- "h": $fa-var-h,
- "tarp": $fa-var-tarp,
- "screwdriver-wrench": $fa-var-screwdriver-wrench,
- "tools": $fa-var-tools,
- "arrows-to-eye": $fa-var-arrows-to-eye,
- "plug-circle-bolt": $fa-var-plug-circle-bolt,
- "heart": $fa-var-heart,
- "mars-and-venus": $fa-var-mars-and-venus,
- "house-user": $fa-var-house-user,
- "home-user": $fa-var-home-user,
- "dumpster-fire": $fa-var-dumpster-fire,
- "house-crack": $fa-var-house-crack,
- "martini-glass-citrus": $fa-var-martini-glass-citrus,
- "cocktail": $fa-var-cocktail,
- "face-surprise": $fa-var-face-surprise,
- "surprise": $fa-var-surprise,
- "bottle-water": $fa-var-bottle-water,
- "circle-pause": $fa-var-circle-pause,
- "pause-circle": $fa-var-pause-circle,
- "toilet-paper-slash": $fa-var-toilet-paper-slash,
- "apple-whole": $fa-var-apple-whole,
- "apple-alt": $fa-var-apple-alt,
- "kitchen-set": $fa-var-kitchen-set,
- "r": $fa-var-r,
- "temperature-quarter": $fa-var-temperature-quarter,
- "temperature-1": $fa-var-temperature-1,
- "thermometer-1": $fa-var-thermometer-1,
- "thermometer-quarter": $fa-var-thermometer-quarter,
- "cube": $fa-var-cube,
- "bitcoin-sign": $fa-var-bitcoin-sign,
- "shield-dog": $fa-var-shield-dog,
- "solar-panel": $fa-var-solar-panel,
- "lock-open": $fa-var-lock-open,
- "elevator": $fa-var-elevator,
- "money-bill-transfer": $fa-var-money-bill-transfer,
- "money-bill-trend-up": $fa-var-money-bill-trend-up,
- "house-flood-water-circle-arrow-right": $fa-var-house-flood-water-circle-arrow-right,
- "square-poll-horizontal": $fa-var-square-poll-horizontal,
- "poll-h": $fa-var-poll-h,
- "circle": $fa-var-circle,
- "backward-fast": $fa-var-backward-fast,
- "fast-backward": $fa-var-fast-backward,
- "recycle": $fa-var-recycle,
- "user-astronaut": $fa-var-user-astronaut,
- "plane-slash": $fa-var-plane-slash,
- "trademark": $fa-var-trademark,
- "basketball": $fa-var-basketball,
- "basketball-ball": $fa-var-basketball-ball,
- "satellite-dish": $fa-var-satellite-dish,
- "circle-up": $fa-var-circle-up,
- "arrow-alt-circle-up": $fa-var-arrow-alt-circle-up,
- "mobile-screen-button": $fa-var-mobile-screen-button,
- "mobile-alt": $fa-var-mobile-alt,
- "volume-high": $fa-var-volume-high,
- "volume-up": $fa-var-volume-up,
- "users-rays": $fa-var-users-rays,
- "wallet": $fa-var-wallet,
- "clipboard-check": $fa-var-clipboard-check,
- "file-audio": $fa-var-file-audio,
- "burger": $fa-var-burger,
- "hamburger": $fa-var-hamburger,
- "wrench": $fa-var-wrench,
- "bugs": $fa-var-bugs,
- "rupee-sign": $fa-var-rupee-sign,
- "rupee": $fa-var-rupee,
- "file-image": $fa-var-file-image,
- "circle-question": $fa-var-circle-question,
- "question-circle": $fa-var-question-circle,
- "plane-departure": $fa-var-plane-departure,
- "handshake-slash": $fa-var-handshake-slash,
- "book-bookmark": $fa-var-book-bookmark,
- "code-branch": $fa-var-code-branch,
- "hat-cowboy": $fa-var-hat-cowboy,
- "bridge": $fa-var-bridge,
- "phone-flip": $fa-var-phone-flip,
- "phone-alt": $fa-var-phone-alt,
- "truck-front": $fa-var-truck-front,
- "cat": $fa-var-cat,
- "anchor-circle-exclamation": $fa-var-anchor-circle-exclamation,
- "truck-field": $fa-var-truck-field,
- "route": $fa-var-route,
- "clipboard-question": $fa-var-clipboard-question,
- "panorama": $fa-var-panorama,
- "comment-medical": $fa-var-comment-medical,
- "teeth-open": $fa-var-teeth-open,
- "file-circle-minus": $fa-var-file-circle-minus,
- "tags": $fa-var-tags,
- "wine-glass": $fa-var-wine-glass,
- "forward-fast": $fa-var-forward-fast,
- "fast-forward": $fa-var-fast-forward,
- "face-meh-blank": $fa-var-face-meh-blank,
- "meh-blank": $fa-var-meh-blank,
- "square-parking": $fa-var-square-parking,
- "parking": $fa-var-parking,
- "house-signal": $fa-var-house-signal,
- "bars-progress": $fa-var-bars-progress,
- "tasks-alt": $fa-var-tasks-alt,
- "faucet-drip": $fa-var-faucet-drip,
- "cart-flatbed": $fa-var-cart-flatbed,
- "dolly-flatbed": $fa-var-dolly-flatbed,
- "ban-smoking": $fa-var-ban-smoking,
- "smoking-ban": $fa-var-smoking-ban,
- "terminal": $fa-var-terminal,
- "mobile-button": $fa-var-mobile-button,
- "house-medical-flag": $fa-var-house-medical-flag,
- "basket-shopping": $fa-var-basket-shopping,
- "shopping-basket": $fa-var-shopping-basket,
- "tape": $fa-var-tape,
- "bus-simple": $fa-var-bus-simple,
- "bus-alt": $fa-var-bus-alt,
- "eye": $fa-var-eye,
- "face-sad-cry": $fa-var-face-sad-cry,
- "sad-cry": $fa-var-sad-cry,
- "audio-description": $fa-var-audio-description,
- "person-military-to-person": $fa-var-person-military-to-person,
- "file-shield": $fa-var-file-shield,
- "user-slash": $fa-var-user-slash,
- "pen": $fa-var-pen,
- "tower-observation": $fa-var-tower-observation,
- "file-code": $fa-var-file-code,
- "signal": $fa-var-signal,
- "signal-5": $fa-var-signal-5,
- "signal-perfect": $fa-var-signal-perfect,
- "bus": $fa-var-bus,
- "heart-circle-xmark": $fa-var-heart-circle-xmark,
- "house-chimney": $fa-var-house-chimney,
- "home-lg": $fa-var-home-lg,
- "window-maximize": $fa-var-window-maximize,
- "face-frown": $fa-var-face-frown,
- "frown": $fa-var-frown,
- "prescription": $fa-var-prescription,
- "shop": $fa-var-shop,
- "store-alt": $fa-var-store-alt,
- "floppy-disk": $fa-var-floppy-disk,
- "save": $fa-var-save,
- "vihara": $fa-var-vihara,
- "scale-unbalanced": $fa-var-scale-unbalanced,
- "balance-scale-left": $fa-var-balance-scale-left,
- "sort-up": $fa-var-sort-up,
- "sort-asc": $fa-var-sort-asc,
- "comment-dots": $fa-var-comment-dots,
- "commenting": $fa-var-commenting,
- "plant-wilt": $fa-var-plant-wilt,
- "diamond": $fa-var-diamond,
- "face-grin-squint": $fa-var-face-grin-squint,
- "grin-squint": $fa-var-grin-squint,
- "hand-holding-dollar": $fa-var-hand-holding-dollar,
- "hand-holding-usd": $fa-var-hand-holding-usd,
- "chart-diagram": $fa-var-chart-diagram,
- "bacterium": $fa-var-bacterium,
- "hand-pointer": $fa-var-hand-pointer,
- "drum-steelpan": $fa-var-drum-steelpan,
- "hand-scissors": $fa-var-hand-scissors,
- "hands-praying": $fa-var-hands-praying,
- "praying-hands": $fa-var-praying-hands,
- "arrow-rotate-right": $fa-var-arrow-rotate-right,
- "arrow-right-rotate": $fa-var-arrow-right-rotate,
- "arrow-rotate-forward": $fa-var-arrow-rotate-forward,
- "redo": $fa-var-redo,
- "biohazard": $fa-var-biohazard,
- "location-crosshairs": $fa-var-location-crosshairs,
- "location": $fa-var-location,
- "mars-double": $fa-var-mars-double,
- "child-dress": $fa-var-child-dress,
- "users-between-lines": $fa-var-users-between-lines,
- "lungs-virus": $fa-var-lungs-virus,
- "face-grin-tears": $fa-var-face-grin-tears,
- "grin-tears": $fa-var-grin-tears,
- "phone": $fa-var-phone,
- "calendar-xmark": $fa-var-calendar-xmark,
- "calendar-times": $fa-var-calendar-times,
- "child-reaching": $fa-var-child-reaching,
- "head-side-virus": $fa-var-head-side-virus,
- "user-gear": $fa-var-user-gear,
- "user-cog": $fa-var-user-cog,
- "arrow-up-1-9": $fa-var-arrow-up-1-9,
- "sort-numeric-up": $fa-var-sort-numeric-up,
- "door-closed": $fa-var-door-closed,
- "shield-virus": $fa-var-shield-virus,
- "dice-six": $fa-var-dice-six,
- "mosquito-net": $fa-var-mosquito-net,
- "file-fragment": $fa-var-file-fragment,
- "bridge-water": $fa-var-bridge-water,
- "person-booth": $fa-var-person-booth,
- "text-width": $fa-var-text-width,
- "hat-wizard": $fa-var-hat-wizard,
- "pen-fancy": $fa-var-pen-fancy,
- "person-digging": $fa-var-person-digging,
- "digging": $fa-var-digging,
- "trash": $fa-var-trash,
- "gauge-simple": $fa-var-gauge-simple,
- "gauge-simple-med": $fa-var-gauge-simple-med,
- "tachometer-average": $fa-var-tachometer-average,
- "book-medical": $fa-var-book-medical,
- "poo": $fa-var-poo,
- "quote-right": $fa-var-quote-right,
- "quote-right-alt": $fa-var-quote-right-alt,
- "shirt": $fa-var-shirt,
- "t-shirt": $fa-var-t-shirt,
- "tshirt": $fa-var-tshirt,
- "cubes": $fa-var-cubes,
- "divide": $fa-var-divide,
- "tenge-sign": $fa-var-tenge-sign,
- "tenge": $fa-var-tenge,
- "headphones": $fa-var-headphones,
- "hands-holding": $fa-var-hands-holding,
- "hands-clapping": $fa-var-hands-clapping,
- "republican": $fa-var-republican,
- "arrow-left": $fa-var-arrow-left,
- "person-circle-xmark": $fa-var-person-circle-xmark,
- "ruler": $fa-var-ruler,
- "align-left": $fa-var-align-left,
- "dice-d6": $fa-var-dice-d6,
- "restroom": $fa-var-restroom,
- "j": $fa-var-j,
- "users-viewfinder": $fa-var-users-viewfinder,
- "file-video": $fa-var-file-video,
- "up-right-from-square": $fa-var-up-right-from-square,
- "external-link-alt": $fa-var-external-link-alt,
- "table-cells": $fa-var-table-cells,
- "th": $fa-var-th,
- "file-pdf": $fa-var-file-pdf,
- "book-bible": $fa-var-book-bible,
- "bible": $fa-var-bible,
- "o": $fa-var-o,
- "suitcase-medical": $fa-var-suitcase-medical,
- "medkit": $fa-var-medkit,
- "user-secret": $fa-var-user-secret,
- "otter": $fa-var-otter,
- "person-dress": $fa-var-person-dress,
- "female": $fa-var-female,
- "comment-dollar": $fa-var-comment-dollar,
- "business-time": $fa-var-business-time,
- "briefcase-clock": $fa-var-briefcase-clock,
- "table-cells-large": $fa-var-table-cells-large,
- "th-large": $fa-var-th-large,
- "book-tanakh": $fa-var-book-tanakh,
- "tanakh": $fa-var-tanakh,
- "phone-volume": $fa-var-phone-volume,
- "volume-control-phone": $fa-var-volume-control-phone,
- "hat-cowboy-side": $fa-var-hat-cowboy-side,
- "clipboard-user": $fa-var-clipboard-user,
- "child": $fa-var-child,
- "lira-sign": $fa-var-lira-sign,
- "satellite": $fa-var-satellite,
- "plane-lock": $fa-var-plane-lock,
- "tag": $fa-var-tag,
- "comment": $fa-var-comment,
- "cake-candles": $fa-var-cake-candles,
- "birthday-cake": $fa-var-birthday-cake,
- "cake": $fa-var-cake,
- "envelope": $fa-var-envelope,
- "angles-up": $fa-var-angles-up,
- "angle-double-up": $fa-var-angle-double-up,
- "paperclip": $fa-var-paperclip,
- "arrow-right-to-city": $fa-var-arrow-right-to-city,
- "ribbon": $fa-var-ribbon,
- "lungs": $fa-var-lungs,
- "arrow-up-9-1": $fa-var-arrow-up-9-1,
- "sort-numeric-up-alt": $fa-var-sort-numeric-up-alt,
- "litecoin-sign": $fa-var-litecoin-sign,
- "border-none": $fa-var-border-none,
- "circle-nodes": $fa-var-circle-nodes,
- "parachute-box": $fa-var-parachute-box,
- "indent": $fa-var-indent,
- "truck-field-un": $fa-var-truck-field-un,
- "hourglass": $fa-var-hourglass,
- "hourglass-empty": $fa-var-hourglass-empty,
- "mountain": $fa-var-mountain,
- "user-doctor": $fa-var-user-doctor,
- "user-md": $fa-var-user-md,
- "circle-info": $fa-var-circle-info,
- "info-circle": $fa-var-info-circle,
- "cloud-meatball": $fa-var-cloud-meatball,
- "camera": $fa-var-camera,
- "camera-alt": $fa-var-camera-alt,
- "square-virus": $fa-var-square-virus,
- "meteor": $fa-var-meteor,
- "car-on": $fa-var-car-on,
- "sleigh": $fa-var-sleigh,
- "arrow-down-1-9": $fa-var-arrow-down-1-9,
- "sort-numeric-asc": $fa-var-sort-numeric-asc,
- "sort-numeric-down": $fa-var-sort-numeric-down,
- "hand-holding-droplet": $fa-var-hand-holding-droplet,
- "hand-holding-water": $fa-var-hand-holding-water,
- "water": $fa-var-water,
- "calendar-check": $fa-var-calendar-check,
- "braille": $fa-var-braille,
- "prescription-bottle-medical": $fa-var-prescription-bottle-medical,
- "prescription-bottle-alt": $fa-var-prescription-bottle-alt,
- "landmark": $fa-var-landmark,
- "truck": $fa-var-truck,
- "crosshairs": $fa-var-crosshairs,
- "person-cane": $fa-var-person-cane,
- "tent": $fa-var-tent,
- "vest-patches": $fa-var-vest-patches,
- "check-double": $fa-var-check-double,
- "arrow-down-a-z": $fa-var-arrow-down-a-z,
- "sort-alpha-asc": $fa-var-sort-alpha-asc,
- "sort-alpha-down": $fa-var-sort-alpha-down,
- "money-bill-wheat": $fa-var-money-bill-wheat,
- "cookie": $fa-var-cookie,
- "arrow-rotate-left": $fa-var-arrow-rotate-left,
- "arrow-left-rotate": $fa-var-arrow-left-rotate,
- "arrow-rotate-back": $fa-var-arrow-rotate-back,
- "arrow-rotate-backward": $fa-var-arrow-rotate-backward,
- "undo": $fa-var-undo,
- "hard-drive": $fa-var-hard-drive,
- "hdd": $fa-var-hdd,
- "face-grin-squint-tears": $fa-var-face-grin-squint-tears,
- "grin-squint-tears": $fa-var-grin-squint-tears,
- "dumbbell": $fa-var-dumbbell,
- "rectangle-list": $fa-var-rectangle-list,
- "list-alt": $fa-var-list-alt,
- "tarp-droplet": $fa-var-tarp-droplet,
- "house-medical-circle-check": $fa-var-house-medical-circle-check,
- "person-skiing-nordic": $fa-var-person-skiing-nordic,
- "skiing-nordic": $fa-var-skiing-nordic,
- "calendar-plus": $fa-var-calendar-plus,
- "plane-arrival": $fa-var-plane-arrival,
- "circle-left": $fa-var-circle-left,
- "arrow-alt-circle-left": $fa-var-arrow-alt-circle-left,
- "train-subway": $fa-var-train-subway,
- "subway": $fa-var-subway,
- "chart-gantt": $fa-var-chart-gantt,
- "indian-rupee-sign": $fa-var-indian-rupee-sign,
- "indian-rupee": $fa-var-indian-rupee,
- "inr": $fa-var-inr,
- "crop-simple": $fa-var-crop-simple,
- "crop-alt": $fa-var-crop-alt,
- "money-bill-1": $fa-var-money-bill-1,
- "money-bill-alt": $fa-var-money-bill-alt,
- "left-long": $fa-var-left-long,
- "long-arrow-alt-left": $fa-var-long-arrow-alt-left,
- "dna": $fa-var-dna,
- "virus-slash": $fa-var-virus-slash,
- "minus": $fa-var-minus,
- "subtract": $fa-var-subtract,
- "chess": $fa-var-chess,
- "arrow-left-long": $fa-var-arrow-left-long,
- "long-arrow-left": $fa-var-long-arrow-left,
- "plug-circle-check": $fa-var-plug-circle-check,
- "street-view": $fa-var-street-view,
- "franc-sign": $fa-var-franc-sign,
- "volume-off": $fa-var-volume-off,
- "hands-asl-interpreting": $fa-var-hands-asl-interpreting,
- "american-sign-language-interpreting": $fa-var-american-sign-language-interpreting,
- "asl-interpreting": $fa-var-asl-interpreting,
- "hands-american-sign-language-interpreting": $fa-var-hands-american-sign-language-interpreting,
- "gear": $fa-var-gear,
- "cog": $fa-var-cog,
- "droplet-slash": $fa-var-droplet-slash,
- "tint-slash": $fa-var-tint-slash,
- "mosque": $fa-var-mosque,
- "mosquito": $fa-var-mosquito,
- "star-of-david": $fa-var-star-of-david,
- "person-military-rifle": $fa-var-person-military-rifle,
- "cart-shopping": $fa-var-cart-shopping,
- "shopping-cart": $fa-var-shopping-cart,
- "vials": $fa-var-vials,
- "plug-circle-plus": $fa-var-plug-circle-plus,
- "place-of-worship": $fa-var-place-of-worship,
- "grip-vertical": $fa-var-grip-vertical,
- "hexagon-nodes": $fa-var-hexagon-nodes,
- "arrow-turn-up": $fa-var-arrow-turn-up,
- "level-up": $fa-var-level-up,
- "u": $fa-var-u,
- "square-root-variable": $fa-var-square-root-variable,
- "square-root-alt": $fa-var-square-root-alt,
- "clock": $fa-var-clock,
- "clock-four": $fa-var-clock-four,
- "backward-step": $fa-var-backward-step,
- "step-backward": $fa-var-step-backward,
- "pallet": $fa-var-pallet,
- "faucet": $fa-var-faucet,
- "baseball-bat-ball": $fa-var-baseball-bat-ball,
- "s": $fa-var-s,
- "timeline": $fa-var-timeline,
- "keyboard": $fa-var-keyboard,
- "caret-down": $fa-var-caret-down,
- "house-chimney-medical": $fa-var-house-chimney-medical,
- "clinic-medical": $fa-var-clinic-medical,
- "temperature-three-quarters": $fa-var-temperature-three-quarters,
- "temperature-3": $fa-var-temperature-3,
- "thermometer-3": $fa-var-thermometer-3,
- "thermometer-three-quarters": $fa-var-thermometer-three-quarters,
- "mobile-screen": $fa-var-mobile-screen,
- "mobile-android-alt": $fa-var-mobile-android-alt,
- "plane-up": $fa-var-plane-up,
- "piggy-bank": $fa-var-piggy-bank,
- "battery-half": $fa-var-battery-half,
- "battery-3": $fa-var-battery-3,
- "mountain-city": $fa-var-mountain-city,
- "coins": $fa-var-coins,
- "khanda": $fa-var-khanda,
- "sliders": $fa-var-sliders,
- "sliders-h": $fa-var-sliders-h,
- "folder-tree": $fa-var-folder-tree,
- "network-wired": $fa-var-network-wired,
- "map-pin": $fa-var-map-pin,
- "hamsa": $fa-var-hamsa,
- "cent-sign": $fa-var-cent-sign,
- "flask": $fa-var-flask,
- "person-pregnant": $fa-var-person-pregnant,
- "wand-sparkles": $fa-var-wand-sparkles,
- "ellipsis-vertical": $fa-var-ellipsis-vertical,
- "ellipsis-v": $fa-var-ellipsis-v,
- "ticket": $fa-var-ticket,
- "power-off": $fa-var-power-off,
- "right-long": $fa-var-right-long,
- "long-arrow-alt-right": $fa-var-long-arrow-alt-right,
- "flag-usa": $fa-var-flag-usa,
- "laptop-file": $fa-var-laptop-file,
- "tty": $fa-var-tty,
- "teletype": $fa-var-teletype,
- "diagram-next": $fa-var-diagram-next,
- "person-rifle": $fa-var-person-rifle,
- "house-medical-circle-exclamation": $fa-var-house-medical-circle-exclamation,
- "closed-captioning": $fa-var-closed-captioning,
- "person-hiking": $fa-var-person-hiking,
- "hiking": $fa-var-hiking,
- "venus-double": $fa-var-venus-double,
- "images": $fa-var-images,
- "calculator": $fa-var-calculator,
- "people-pulling": $fa-var-people-pulling,
- "n": $fa-var-n,
- "cable-car": $fa-var-cable-car,
- "tram": $fa-var-tram,
- "cloud-rain": $fa-var-cloud-rain,
- "building-circle-xmark": $fa-var-building-circle-xmark,
- "ship": $fa-var-ship,
- "arrows-down-to-line": $fa-var-arrows-down-to-line,
- "download": $fa-var-download,
- "face-grin": $fa-var-face-grin,
- "grin": $fa-var-grin,
- "delete-left": $fa-var-delete-left,
- "backspace": $fa-var-backspace,
- "eye-dropper": $fa-var-eye-dropper,
- "eye-dropper-empty": $fa-var-eye-dropper-empty,
- "eyedropper": $fa-var-eyedropper,
- "file-circle-check": $fa-var-file-circle-check,
- "forward": $fa-var-forward,
- "mobile": $fa-var-mobile,
- "mobile-android": $fa-var-mobile-android,
- "mobile-phone": $fa-var-mobile-phone,
- "face-meh": $fa-var-face-meh,
- "meh": $fa-var-meh,
- "align-center": $fa-var-align-center,
- "book-skull": $fa-var-book-skull,
- "book-dead": $fa-var-book-dead,
- "id-card": $fa-var-id-card,
- "drivers-license": $fa-var-drivers-license,
- "outdent": $fa-var-outdent,
- "dedent": $fa-var-dedent,
- "heart-circle-exclamation": $fa-var-heart-circle-exclamation,
- "house": $fa-var-house,
- "home": $fa-var-home,
- "home-alt": $fa-var-home-alt,
- "home-lg-alt": $fa-var-home-lg-alt,
- "calendar-week": $fa-var-calendar-week,
- "laptop-medical": $fa-var-laptop-medical,
- "b": $fa-var-b,
- "file-medical": $fa-var-file-medical,
- "dice-one": $fa-var-dice-one,
- "kiwi-bird": $fa-var-kiwi-bird,
- "arrow-right-arrow-left": $fa-var-arrow-right-arrow-left,
- "exchange": $fa-var-exchange,
- "rotate-right": $fa-var-rotate-right,
- "redo-alt": $fa-var-redo-alt,
- "rotate-forward": $fa-var-rotate-forward,
- "utensils": $fa-var-utensils,
- "cutlery": $fa-var-cutlery,
- "arrow-up-wide-short": $fa-var-arrow-up-wide-short,
- "sort-amount-up": $fa-var-sort-amount-up,
- "mill-sign": $fa-var-mill-sign,
- "bowl-rice": $fa-var-bowl-rice,
- "skull": $fa-var-skull,
- "tower-broadcast": $fa-var-tower-broadcast,
- "broadcast-tower": $fa-var-broadcast-tower,
- "truck-pickup": $fa-var-truck-pickup,
- "up-long": $fa-var-up-long,
- "long-arrow-alt-up": $fa-var-long-arrow-alt-up,
- "stop": $fa-var-stop,
- "code-merge": $fa-var-code-merge,
- "upload": $fa-var-upload,
- "hurricane": $fa-var-hurricane,
- "mound": $fa-var-mound,
- "toilet-portable": $fa-var-toilet-portable,
- "compact-disc": $fa-var-compact-disc,
- "file-arrow-down": $fa-var-file-arrow-down,
- "file-download": $fa-var-file-download,
- "caravan": $fa-var-caravan,
- "shield-cat": $fa-var-shield-cat,
- "bolt": $fa-var-bolt,
- "zap": $fa-var-zap,
- "glass-water": $fa-var-glass-water,
- "oil-well": $fa-var-oil-well,
- "vault": $fa-var-vault,
- "mars": $fa-var-mars,
- "toilet": $fa-var-toilet,
- "plane-circle-xmark": $fa-var-plane-circle-xmark,
- "yen-sign": $fa-var-yen-sign,
- "cny": $fa-var-cny,
- "jpy": $fa-var-jpy,
- "rmb": $fa-var-rmb,
- "yen": $fa-var-yen,
- "ruble-sign": $fa-var-ruble-sign,
- "rouble": $fa-var-rouble,
- "rub": $fa-var-rub,
- "ruble": $fa-var-ruble,
- "sun": $fa-var-sun,
- "guitar": $fa-var-guitar,
- "face-laugh-wink": $fa-var-face-laugh-wink,
- "laugh-wink": $fa-var-laugh-wink,
- "horse-head": $fa-var-horse-head,
- "bore-hole": $fa-var-bore-hole,
- "industry": $fa-var-industry,
- "circle-down": $fa-var-circle-down,
- "arrow-alt-circle-down": $fa-var-arrow-alt-circle-down,
- "arrows-turn-to-dots": $fa-var-arrows-turn-to-dots,
- "florin-sign": $fa-var-florin-sign,
- "arrow-down-short-wide": $fa-var-arrow-down-short-wide,
- "sort-amount-desc": $fa-var-sort-amount-desc,
- "sort-amount-down-alt": $fa-var-sort-amount-down-alt,
- "less-than": $fa-var-less-than,
- "angle-down": $fa-var-angle-down,
- "car-tunnel": $fa-var-car-tunnel,
- "head-side-cough": $fa-var-head-side-cough,
- "grip-lines": $fa-var-grip-lines,
- "thumbs-down": $fa-var-thumbs-down,
- "user-lock": $fa-var-user-lock,
- "arrow-right-long": $fa-var-arrow-right-long,
- "long-arrow-right": $fa-var-long-arrow-right,
- "anchor-circle-xmark": $fa-var-anchor-circle-xmark,
- "ellipsis": $fa-var-ellipsis,
- "ellipsis-h": $fa-var-ellipsis-h,
- "chess-pawn": $fa-var-chess-pawn,
- "kit-medical": $fa-var-kit-medical,
- "first-aid": $fa-var-first-aid,
- "person-through-window": $fa-var-person-through-window,
- "toolbox": $fa-var-toolbox,
- "hands-holding-circle": $fa-var-hands-holding-circle,
- "bug": $fa-var-bug,
- "credit-card": $fa-var-credit-card,
- "credit-card-alt": $fa-var-credit-card-alt,
- "car": $fa-var-car,
- "automobile": $fa-var-automobile,
- "hand-holding-hand": $fa-var-hand-holding-hand,
- "book-open-reader": $fa-var-book-open-reader,
- "book-reader": $fa-var-book-reader,
- "mountain-sun": $fa-var-mountain-sun,
- "arrows-left-right-to-line": $fa-var-arrows-left-right-to-line,
- "dice-d20": $fa-var-dice-d20,
- "truck-droplet": $fa-var-truck-droplet,
- "file-circle-xmark": $fa-var-file-circle-xmark,
- "temperature-arrow-up": $fa-var-temperature-arrow-up,
- "temperature-up": $fa-var-temperature-up,
- "medal": $fa-var-medal,
- "bed": $fa-var-bed,
- "square-h": $fa-var-square-h,
- "h-square": $fa-var-h-square,
- "podcast": $fa-var-podcast,
- "temperature-full": $fa-var-temperature-full,
- "temperature-4": $fa-var-temperature-4,
- "thermometer-4": $fa-var-thermometer-4,
- "thermometer-full": $fa-var-thermometer-full,
- "bell": $fa-var-bell,
- "superscript": $fa-var-superscript,
- "plug-circle-xmark": $fa-var-plug-circle-xmark,
- "star-of-life": $fa-var-star-of-life,
- "phone-slash": $fa-var-phone-slash,
- "paint-roller": $fa-var-paint-roller,
- "handshake-angle": $fa-var-handshake-angle,
- "hands-helping": $fa-var-hands-helping,
- "location-dot": $fa-var-location-dot,
- "map-marker-alt": $fa-var-map-marker-alt,
- "file": $fa-var-file,
- "greater-than": $fa-var-greater-than,
- "person-swimming": $fa-var-person-swimming,
- "swimmer": $fa-var-swimmer,
- "arrow-down": $fa-var-arrow-down,
- "droplet": $fa-var-droplet,
- "tint": $fa-var-tint,
- "eraser": $fa-var-eraser,
- "earth-americas": $fa-var-earth-americas,
- "earth": $fa-var-earth,
- "earth-america": $fa-var-earth-america,
- "globe-americas": $fa-var-globe-americas,
- "person-burst": $fa-var-person-burst,
- "dove": $fa-var-dove,
- "battery-empty": $fa-var-battery-empty,
- "battery-0": $fa-var-battery-0,
- "socks": $fa-var-socks,
- "inbox": $fa-var-inbox,
- "section": $fa-var-section,
- "gauge-high": $fa-var-gauge-high,
- "tachometer-alt": $fa-var-tachometer-alt,
- "tachometer-alt-fast": $fa-var-tachometer-alt-fast,
- "envelope-open-text": $fa-var-envelope-open-text,
- "hospital": $fa-var-hospital,
- "hospital-alt": $fa-var-hospital-alt,
- "hospital-wide": $fa-var-hospital-wide,
- "wine-bottle": $fa-var-wine-bottle,
- "chess-rook": $fa-var-chess-rook,
- "bars-staggered": $fa-var-bars-staggered,
- "reorder": $fa-var-reorder,
- "stream": $fa-var-stream,
- "dharmachakra": $fa-var-dharmachakra,
- "hotdog": $fa-var-hotdog,
- "person-walking-with-cane": $fa-var-person-walking-with-cane,
- "blind": $fa-var-blind,
- "drum": $fa-var-drum,
- "ice-cream": $fa-var-ice-cream,
- "heart-circle-bolt": $fa-var-heart-circle-bolt,
- "fax": $fa-var-fax,
- "paragraph": $fa-var-paragraph,
- "check-to-slot": $fa-var-check-to-slot,
- "vote-yea": $fa-var-vote-yea,
- "star-half": $fa-var-star-half,
- "boxes-stacked": $fa-var-boxes-stacked,
- "boxes": $fa-var-boxes,
- "boxes-alt": $fa-var-boxes-alt,
- "link": $fa-var-link,
- "chain": $fa-var-chain,
- "ear-listen": $fa-var-ear-listen,
- "assistive-listening-systems": $fa-var-assistive-listening-systems,
- "tree-city": $fa-var-tree-city,
- "play": $fa-var-play,
- "font": $fa-var-font,
- "table-cells-row-lock": $fa-var-table-cells-row-lock,
- "rupiah-sign": $fa-var-rupiah-sign,
- "magnifying-glass": $fa-var-magnifying-glass,
- "search": $fa-var-search,
- "table-tennis-paddle-ball": $fa-var-table-tennis-paddle-ball,
- "ping-pong-paddle-ball": $fa-var-ping-pong-paddle-ball,
- "table-tennis": $fa-var-table-tennis,
- "person-dots-from-line": $fa-var-person-dots-from-line,
- "diagnoses": $fa-var-diagnoses,
- "trash-can-arrow-up": $fa-var-trash-can-arrow-up,
- "trash-restore-alt": $fa-var-trash-restore-alt,
- "naira-sign": $fa-var-naira-sign,
- "cart-arrow-down": $fa-var-cart-arrow-down,
- "walkie-talkie": $fa-var-walkie-talkie,
- "file-pen": $fa-var-file-pen,
- "file-edit": $fa-var-file-edit,
- "receipt": $fa-var-receipt,
- "square-pen": $fa-var-square-pen,
- "pen-square": $fa-var-pen-square,
- "pencil-square": $fa-var-pencil-square,
- "suitcase-rolling": $fa-var-suitcase-rolling,
- "person-circle-exclamation": $fa-var-person-circle-exclamation,
- "chevron-down": $fa-var-chevron-down,
- "battery-full": $fa-var-battery-full,
- "battery": $fa-var-battery,
- "battery-5": $fa-var-battery-5,
- "skull-crossbones": $fa-var-skull-crossbones,
- "code-compare": $fa-var-code-compare,
- "list-ul": $fa-var-list-ul,
- "list-dots": $fa-var-list-dots,
- "school-lock": $fa-var-school-lock,
- "tower-cell": $fa-var-tower-cell,
- "down-long": $fa-var-down-long,
- "long-arrow-alt-down": $fa-var-long-arrow-alt-down,
- "ranking-star": $fa-var-ranking-star,
- "chess-king": $fa-var-chess-king,
- "person-harassing": $fa-var-person-harassing,
- "brazilian-real-sign": $fa-var-brazilian-real-sign,
- "landmark-dome": $fa-var-landmark-dome,
- "landmark-alt": $fa-var-landmark-alt,
- "arrow-up": $fa-var-arrow-up,
- "tv": $fa-var-tv,
- "television": $fa-var-television,
- "tv-alt": $fa-var-tv-alt,
- "shrimp": $fa-var-shrimp,
- "list-check": $fa-var-list-check,
- "tasks": $fa-var-tasks,
- "jug-detergent": $fa-var-jug-detergent,
- "circle-user": $fa-var-circle-user,
- "user-circle": $fa-var-user-circle,
- "user-shield": $fa-var-user-shield,
- "wind": $fa-var-wind,
- "car-burst": $fa-var-car-burst,
- "car-crash": $fa-var-car-crash,
- "y": $fa-var-y,
- "person-snowboarding": $fa-var-person-snowboarding,
- "snowboarding": $fa-var-snowboarding,
- "truck-fast": $fa-var-truck-fast,
- "shipping-fast": $fa-var-shipping-fast,
- "fish": $fa-var-fish,
- "user-graduate": $fa-var-user-graduate,
- "circle-half-stroke": $fa-var-circle-half-stroke,
- "adjust": $fa-var-adjust,
- "clapperboard": $fa-var-clapperboard,
- "circle-radiation": $fa-var-circle-radiation,
- "radiation-alt": $fa-var-radiation-alt,
- "baseball": $fa-var-baseball,
- "baseball-ball": $fa-var-baseball-ball,
- "jet-fighter-up": $fa-var-jet-fighter-up,
- "diagram-project": $fa-var-diagram-project,
- "project-diagram": $fa-var-project-diagram,
- "copy": $fa-var-copy,
- "volume-xmark": $fa-var-volume-xmark,
- "volume-mute": $fa-var-volume-mute,
- "volume-times": $fa-var-volume-times,
- "hand-sparkles": $fa-var-hand-sparkles,
- "grip": $fa-var-grip,
- "grip-horizontal": $fa-var-grip-horizontal,
- "share-from-square": $fa-var-share-from-square,
- "share-square": $fa-var-share-square,
- "child-combatant": $fa-var-child-combatant,
- "child-rifle": $fa-var-child-rifle,
- "gun": $fa-var-gun,
- "square-phone": $fa-var-square-phone,
- "phone-square": $fa-var-phone-square,
- "plus": $fa-var-plus,
- "add": $fa-var-add,
- "expand": $fa-var-expand,
- "computer": $fa-var-computer,
- "xmark": $fa-var-xmark,
- "close": $fa-var-close,
- "multiply": $fa-var-multiply,
- "remove": $fa-var-remove,
- "times": $fa-var-times,
- "arrows-up-down-left-right": $fa-var-arrows-up-down-left-right,
- "arrows": $fa-var-arrows,
- "chalkboard-user": $fa-var-chalkboard-user,
- "chalkboard-teacher": $fa-var-chalkboard-teacher,
- "peso-sign": $fa-var-peso-sign,
- "building-shield": $fa-var-building-shield,
- "baby": $fa-var-baby,
- "users-line": $fa-var-users-line,
- "quote-left": $fa-var-quote-left,
- "quote-left-alt": $fa-var-quote-left-alt,
- "tractor": $fa-var-tractor,
- "trash-arrow-up": $fa-var-trash-arrow-up,
- "trash-restore": $fa-var-trash-restore,
- "arrow-down-up-lock": $fa-var-arrow-down-up-lock,
- "lines-leaning": $fa-var-lines-leaning,
- "ruler-combined": $fa-var-ruler-combined,
- "copyright": $fa-var-copyright,
- "equals": $fa-var-equals,
- "blender": $fa-var-blender,
- "teeth": $fa-var-teeth,
- "shekel-sign": $fa-var-shekel-sign,
- "ils": $fa-var-ils,
- "shekel": $fa-var-shekel,
- "sheqel": $fa-var-sheqel,
- "sheqel-sign": $fa-var-sheqel-sign,
- "map": $fa-var-map,
- "rocket": $fa-var-rocket,
- "photo-film": $fa-var-photo-film,
- "photo-video": $fa-var-photo-video,
- "folder-minus": $fa-var-folder-minus,
- "hexagon-nodes-bolt": $fa-var-hexagon-nodes-bolt,
- "store": $fa-var-store,
- "arrow-trend-up": $fa-var-arrow-trend-up,
- "plug-circle-minus": $fa-var-plug-circle-minus,
- "sign-hanging": $fa-var-sign-hanging,
- "sign": $fa-var-sign,
- "bezier-curve": $fa-var-bezier-curve,
- "bell-slash": $fa-var-bell-slash,
- "tablet": $fa-var-tablet,
- "tablet-android": $fa-var-tablet-android,
- "school-flag": $fa-var-school-flag,
- "fill": $fa-var-fill,
- "angle-up": $fa-var-angle-up,
- "drumstick-bite": $fa-var-drumstick-bite,
- "holly-berry": $fa-var-holly-berry,
- "chevron-left": $fa-var-chevron-left,
- "bacteria": $fa-var-bacteria,
- "hand-lizard": $fa-var-hand-lizard,
- "notdef": $fa-var-notdef,
- "disease": $fa-var-disease,
- "briefcase-medical": $fa-var-briefcase-medical,
- "genderless": $fa-var-genderless,
- "chevron-right": $fa-var-chevron-right,
- "retweet": $fa-var-retweet,
- "car-rear": $fa-var-car-rear,
- "car-alt": $fa-var-car-alt,
- "pump-soap": $fa-var-pump-soap,
- "video-slash": $fa-var-video-slash,
- "battery-quarter": $fa-var-battery-quarter,
- "battery-2": $fa-var-battery-2,
- "radio": $fa-var-radio,
- "baby-carriage": $fa-var-baby-carriage,
- "carriage-baby": $fa-var-carriage-baby,
- "traffic-light": $fa-var-traffic-light,
- "thermometer": $fa-var-thermometer,
- "vr-cardboard": $fa-var-vr-cardboard,
- "hand-middle-finger": $fa-var-hand-middle-finger,
- "percent": $fa-var-percent,
- "percentage": $fa-var-percentage,
- "truck-moving": $fa-var-truck-moving,
- "glass-water-droplet": $fa-var-glass-water-droplet,
- "display": $fa-var-display,
- "face-smile": $fa-var-face-smile,
- "smile": $fa-var-smile,
- "thumbtack": $fa-var-thumbtack,
- "thumb-tack": $fa-var-thumb-tack,
- "trophy": $fa-var-trophy,
- "person-praying": $fa-var-person-praying,
- "pray": $fa-var-pray,
- "hammer": $fa-var-hammer,
- "hand-peace": $fa-var-hand-peace,
- "rotate": $fa-var-rotate,
- "sync-alt": $fa-var-sync-alt,
- "spinner": $fa-var-spinner,
- "robot": $fa-var-robot,
- "peace": $fa-var-peace,
- "gears": $fa-var-gears,
- "cogs": $fa-var-cogs,
- "warehouse": $fa-var-warehouse,
- "arrow-up-right-dots": $fa-var-arrow-up-right-dots,
- "splotch": $fa-var-splotch,
- "face-grin-hearts": $fa-var-face-grin-hearts,
- "grin-hearts": $fa-var-grin-hearts,
- "dice-four": $fa-var-dice-four,
- "sim-card": $fa-var-sim-card,
- "transgender": $fa-var-transgender,
- "transgender-alt": $fa-var-transgender-alt,
- "mercury": $fa-var-mercury,
- "arrow-turn-down": $fa-var-arrow-turn-down,
- "level-down": $fa-var-level-down,
- "person-falling-burst": $fa-var-person-falling-burst,
- "award": $fa-var-award,
- "ticket-simple": $fa-var-ticket-simple,
- "ticket-alt": $fa-var-ticket-alt,
- "building": $fa-var-building,
- "angles-left": $fa-var-angles-left,
- "angle-double-left": $fa-var-angle-double-left,
- "qrcode": $fa-var-qrcode,
- "clock-rotate-left": $fa-var-clock-rotate-left,
- "history": $fa-var-history,
- "face-grin-beam-sweat": $fa-var-face-grin-beam-sweat,
- "grin-beam-sweat": $fa-var-grin-beam-sweat,
- "file-export": $fa-var-file-export,
- "arrow-right-from-file": $fa-var-arrow-right-from-file,
- "shield": $fa-var-shield,
- "shield-blank": $fa-var-shield-blank,
- "arrow-up-short-wide": $fa-var-arrow-up-short-wide,
- "sort-amount-up-alt": $fa-var-sort-amount-up-alt,
- "comment-nodes": $fa-var-comment-nodes,
- "house-medical": $fa-var-house-medical,
- "golf-ball-tee": $fa-var-golf-ball-tee,
- "golf-ball": $fa-var-golf-ball,
- "circle-chevron-left": $fa-var-circle-chevron-left,
- "chevron-circle-left": $fa-var-chevron-circle-left,
- "house-chimney-window": $fa-var-house-chimney-window,
- "pen-nib": $fa-var-pen-nib,
- "tent-arrow-turn-left": $fa-var-tent-arrow-turn-left,
- "tents": $fa-var-tents,
- "wand-magic": $fa-var-wand-magic,
- "magic": $fa-var-magic,
- "dog": $fa-var-dog,
- "carrot": $fa-var-carrot,
- "moon": $fa-var-moon,
- "wine-glass-empty": $fa-var-wine-glass-empty,
- "wine-glass-alt": $fa-var-wine-glass-alt,
- "cheese": $fa-var-cheese,
- "yin-yang": $fa-var-yin-yang,
- "music": $fa-var-music,
- "code-commit": $fa-var-code-commit,
- "temperature-low": $fa-var-temperature-low,
- "person-biking": $fa-var-person-biking,
- "biking": $fa-var-biking,
- "broom": $fa-var-broom,
- "shield-heart": $fa-var-shield-heart,
- "gopuram": $fa-var-gopuram,
- "earth-oceania": $fa-var-earth-oceania,
- "globe-oceania": $fa-var-globe-oceania,
- "square-xmark": $fa-var-square-xmark,
- "times-square": $fa-var-times-square,
- "xmark-square": $fa-var-xmark-square,
- "hashtag": $fa-var-hashtag,
- "up-right-and-down-left-from-center": $fa-var-up-right-and-down-left-from-center,
- "expand-alt": $fa-var-expand-alt,
- "oil-can": $fa-var-oil-can,
- "t": $fa-var-t,
- "hippo": $fa-var-hippo,
- "chart-column": $fa-var-chart-column,
- "infinity": $fa-var-infinity,
- "vial-circle-check": $fa-var-vial-circle-check,
- "person-arrow-down-to-line": $fa-var-person-arrow-down-to-line,
- "voicemail": $fa-var-voicemail,
- "fan": $fa-var-fan,
- "person-walking-luggage": $fa-var-person-walking-luggage,
- "up-down": $fa-var-up-down,
- "arrows-alt-v": $fa-var-arrows-alt-v,
- "cloud-moon-rain": $fa-var-cloud-moon-rain,
- "calendar": $fa-var-calendar,
- "trailer": $fa-var-trailer,
- "bahai": $fa-var-bahai,
- "haykal": $fa-var-haykal,
- "sd-card": $fa-var-sd-card,
- "dragon": $fa-var-dragon,
- "shoe-prints": $fa-var-shoe-prints,
- "circle-plus": $fa-var-circle-plus,
- "plus-circle": $fa-var-plus-circle,
- "face-grin-tongue-wink": $fa-var-face-grin-tongue-wink,
- "grin-tongue-wink": $fa-var-grin-tongue-wink,
- "hand-holding": $fa-var-hand-holding,
- "plug-circle-exclamation": $fa-var-plug-circle-exclamation,
- "link-slash": $fa-var-link-slash,
- "chain-broken": $fa-var-chain-broken,
- "chain-slash": $fa-var-chain-slash,
- "unlink": $fa-var-unlink,
- "clone": $fa-var-clone,
- "person-walking-arrow-loop-left": $fa-var-person-walking-arrow-loop-left,
- "arrow-up-z-a": $fa-var-arrow-up-z-a,
- "sort-alpha-up-alt": $fa-var-sort-alpha-up-alt,
- "fire-flame-curved": $fa-var-fire-flame-curved,
- "fire-alt": $fa-var-fire-alt,
- "tornado": $fa-var-tornado,
- "file-circle-plus": $fa-var-file-circle-plus,
- "book-quran": $fa-var-book-quran,
- "quran": $fa-var-quran,
- "anchor": $fa-var-anchor,
- "border-all": $fa-var-border-all,
- "face-angry": $fa-var-face-angry,
- "angry": $fa-var-angry,
- "cookie-bite": $fa-var-cookie-bite,
- "arrow-trend-down": $fa-var-arrow-trend-down,
- "rss": $fa-var-rss,
- "feed": $fa-var-feed,
- "draw-polygon": $fa-var-draw-polygon,
- "scale-balanced": $fa-var-scale-balanced,
- "balance-scale": $fa-var-balance-scale,
- "gauge-simple-high": $fa-var-gauge-simple-high,
- "tachometer": $fa-var-tachometer,
- "tachometer-fast": $fa-var-tachometer-fast,
- "shower": $fa-var-shower,
- "desktop": $fa-var-desktop,
- "desktop-alt": $fa-var-desktop-alt,
- "m": $fa-var-m,
- "table-list": $fa-var-table-list,
- "th-list": $fa-var-th-list,
- "comment-sms": $fa-var-comment-sms,
- "sms": $fa-var-sms,
- "book": $fa-var-book,
- "user-plus": $fa-var-user-plus,
- "check": $fa-var-check,
- "battery-three-quarters": $fa-var-battery-three-quarters,
- "battery-4": $fa-var-battery-4,
- "house-circle-check": $fa-var-house-circle-check,
- "angle-left": $fa-var-angle-left,
- "diagram-successor": $fa-var-diagram-successor,
- "truck-arrow-right": $fa-var-truck-arrow-right,
- "arrows-split-up-and-left": $fa-var-arrows-split-up-and-left,
- "hand-fist": $fa-var-hand-fist,
- "fist-raised": $fa-var-fist-raised,
- "cloud-moon": $fa-var-cloud-moon,
- "briefcase": $fa-var-briefcase,
- "person-falling": $fa-var-person-falling,
- "image-portrait": $fa-var-image-portrait,
- "portrait": $fa-var-portrait,
- "user-tag": $fa-var-user-tag,
- "rug": $fa-var-rug,
- "earth-europe": $fa-var-earth-europe,
- "globe-europe": $fa-var-globe-europe,
- "cart-flatbed-suitcase": $fa-var-cart-flatbed-suitcase,
- "luggage-cart": $fa-var-luggage-cart,
- "rectangle-xmark": $fa-var-rectangle-xmark,
- "rectangle-times": $fa-var-rectangle-times,
- "times-rectangle": $fa-var-times-rectangle,
- "window-close": $fa-var-window-close,
- "baht-sign": $fa-var-baht-sign,
- "book-open": $fa-var-book-open,
- "book-journal-whills": $fa-var-book-journal-whills,
- "journal-whills": $fa-var-journal-whills,
- "handcuffs": $fa-var-handcuffs,
- "triangle-exclamation": $fa-var-triangle-exclamation,
- "exclamation-triangle": $fa-var-exclamation-triangle,
- "warning": $fa-var-warning,
- "database": $fa-var-database,
- "share": $fa-var-share,
- "mail-forward": $fa-var-mail-forward,
- "bottle-droplet": $fa-var-bottle-droplet,
- "mask-face": $fa-var-mask-face,
- "hill-rockslide": $fa-var-hill-rockslide,
- "right-left": $fa-var-right-left,
- "exchange-alt": $fa-var-exchange-alt,
- "paper-plane": $fa-var-paper-plane,
- "road-circle-exclamation": $fa-var-road-circle-exclamation,
- "dungeon": $fa-var-dungeon,
- "align-right": $fa-var-align-right,
- "money-bill-1-wave": $fa-var-money-bill-1-wave,
- "money-bill-wave-alt": $fa-var-money-bill-wave-alt,
- "life-ring": $fa-var-life-ring,
- "hands": $fa-var-hands,
- "sign-language": $fa-var-sign-language,
- "signing": $fa-var-signing,
- "calendar-day": $fa-var-calendar-day,
- "water-ladder": $fa-var-water-ladder,
- "ladder-water": $fa-var-ladder-water,
- "swimming-pool": $fa-var-swimming-pool,
- "arrows-up-down": $fa-var-arrows-up-down,
- "arrows-v": $fa-var-arrows-v,
- "face-grimace": $fa-var-face-grimace,
- "grimace": $fa-var-grimace,
- "wheelchair-move": $fa-var-wheelchair-move,
- "wheelchair-alt": $fa-var-wheelchair-alt,
- "turn-down": $fa-var-turn-down,
- "level-down-alt": $fa-var-level-down-alt,
- "person-walking-arrow-right": $fa-var-person-walking-arrow-right,
- "square-envelope": $fa-var-square-envelope,
- "envelope-square": $fa-var-envelope-square,
- "dice": $fa-var-dice,
- "bowling-ball": $fa-var-bowling-ball,
- "brain": $fa-var-brain,
- "bandage": $fa-var-bandage,
- "band-aid": $fa-var-band-aid,
- "calendar-minus": $fa-var-calendar-minus,
- "circle-xmark": $fa-var-circle-xmark,
- "times-circle": $fa-var-times-circle,
- "xmark-circle": $fa-var-xmark-circle,
- "gifts": $fa-var-gifts,
- "hotel": $fa-var-hotel,
- "earth-asia": $fa-var-earth-asia,
- "globe-asia": $fa-var-globe-asia,
- "id-card-clip": $fa-var-id-card-clip,
- "id-card-alt": $fa-var-id-card-alt,
- "magnifying-glass-plus": $fa-var-magnifying-glass-plus,
- "search-plus": $fa-var-search-plus,
- "thumbs-up": $fa-var-thumbs-up,
- "user-clock": $fa-var-user-clock,
- "hand-dots": $fa-var-hand-dots,
- "allergies": $fa-var-allergies,
- "file-invoice": $fa-var-file-invoice,
- "window-minimize": $fa-var-window-minimize,
- "mug-saucer": $fa-var-mug-saucer,
- "coffee": $fa-var-coffee,
- "brush": $fa-var-brush,
- "file-half-dashed": $fa-var-file-half-dashed,
- "mask": $fa-var-mask,
- "magnifying-glass-minus": $fa-var-magnifying-glass-minus,
- "search-minus": $fa-var-search-minus,
- "ruler-vertical": $fa-var-ruler-vertical,
- "user-large": $fa-var-user-large,
- "user-alt": $fa-var-user-alt,
- "train-tram": $fa-var-train-tram,
- "user-nurse": $fa-var-user-nurse,
- "syringe": $fa-var-syringe,
- "cloud-sun": $fa-var-cloud-sun,
- "stopwatch-20": $fa-var-stopwatch-20,
- "square-full": $fa-var-square-full,
- "magnet": $fa-var-magnet,
- "jar": $fa-var-jar,
- "note-sticky": $fa-var-note-sticky,
- "sticky-note": $fa-var-sticky-note,
- "bug-slash": $fa-var-bug-slash,
- "arrow-up-from-water-pump": $fa-var-arrow-up-from-water-pump,
- "bone": $fa-var-bone,
- "table-cells-row-unlock": $fa-var-table-cells-row-unlock,
- "user-injured": $fa-var-user-injured,
- "face-sad-tear": $fa-var-face-sad-tear,
- "sad-tear": $fa-var-sad-tear,
- "plane": $fa-var-plane,
- "tent-arrows-down": $fa-var-tent-arrows-down,
- "exclamation": $fa-var-exclamation,
- "arrows-spin": $fa-var-arrows-spin,
- "print": $fa-var-print,
- "turkish-lira-sign": $fa-var-turkish-lira-sign,
- "try": $fa-var-try,
- "turkish-lira": $fa-var-turkish-lira,
- "dollar-sign": $fa-var-dollar-sign,
- "dollar": $fa-var-dollar,
- "usd": $fa-var-usd,
- "x": $fa-var-x,
- "magnifying-glass-dollar": $fa-var-magnifying-glass-dollar,
- "search-dollar": $fa-var-search-dollar,
- "users-gear": $fa-var-users-gear,
- "users-cog": $fa-var-users-cog,
- "person-military-pointing": $fa-var-person-military-pointing,
- "building-columns": $fa-var-building-columns,
- "bank": $fa-var-bank,
- "institution": $fa-var-institution,
- "museum": $fa-var-museum,
- "university": $fa-var-university,
- "umbrella": $fa-var-umbrella,
- "trowel": $fa-var-trowel,
- "d": $fa-var-d,
- "stapler": $fa-var-stapler,
- "masks-theater": $fa-var-masks-theater,
- "theater-masks": $fa-var-theater-masks,
- "kip-sign": $fa-var-kip-sign,
- "hand-point-left": $fa-var-hand-point-left,
- "handshake-simple": $fa-var-handshake-simple,
- "handshake-alt": $fa-var-handshake-alt,
- "jet-fighter": $fa-var-jet-fighter,
- "fighter-jet": $fa-var-fighter-jet,
- "square-share-nodes": $fa-var-square-share-nodes,
- "share-alt-square": $fa-var-share-alt-square,
- "barcode": $fa-var-barcode,
- "plus-minus": $fa-var-plus-minus,
- "video": $fa-var-video,
- "video-camera": $fa-var-video-camera,
- "graduation-cap": $fa-var-graduation-cap,
- "mortar-board": $fa-var-mortar-board,
- "hand-holding-medical": $fa-var-hand-holding-medical,
- "person-circle-check": $fa-var-person-circle-check,
- "turn-up": $fa-var-turn-up,
- "level-up-alt": $fa-var-level-up-alt,
-);
-
-$fa-brand-icons: (
- "monero": $fa-var-monero,
- "hooli": $fa-var-hooli,
- "yelp": $fa-var-yelp,
- "cc-visa": $fa-var-cc-visa,
- "lastfm": $fa-var-lastfm,
- "shopware": $fa-var-shopware,
- "creative-commons-nc": $fa-var-creative-commons-nc,
- "aws": $fa-var-aws,
- "redhat": $fa-var-redhat,
- "yoast": $fa-var-yoast,
- "cloudflare": $fa-var-cloudflare,
- "ups": $fa-var-ups,
- "pixiv": $fa-var-pixiv,
- "wpexplorer": $fa-var-wpexplorer,
- "dyalog": $fa-var-dyalog,
- "bity": $fa-var-bity,
- "stackpath": $fa-var-stackpath,
- "buysellads": $fa-var-buysellads,
- "first-order": $fa-var-first-order,
- "modx": $fa-var-modx,
- "guilded": $fa-var-guilded,
- "vnv": $fa-var-vnv,
- "square-js": $fa-var-square-js,
- "js-square": $fa-var-js-square,
- "microsoft": $fa-var-microsoft,
- "qq": $fa-var-qq,
- "orcid": $fa-var-orcid,
- "java": $fa-var-java,
- "invision": $fa-var-invision,
- "creative-commons-pd-alt": $fa-var-creative-commons-pd-alt,
- "centercode": $fa-var-centercode,
- "glide-g": $fa-var-glide-g,
- "drupal": $fa-var-drupal,
- "jxl": $fa-var-jxl,
- "dart-lang": $fa-var-dart-lang,
- "hire-a-helper": $fa-var-hire-a-helper,
- "creative-commons-by": $fa-var-creative-commons-by,
- "unity": $fa-var-unity,
- "whmcs": $fa-var-whmcs,
- "rocketchat": $fa-var-rocketchat,
- "vk": $fa-var-vk,
- "untappd": $fa-var-untappd,
- "mailchimp": $fa-var-mailchimp,
- "css3-alt": $fa-var-css3-alt,
- "square-reddit": $fa-var-square-reddit,
- "reddit-square": $fa-var-reddit-square,
- "vimeo-v": $fa-var-vimeo-v,
- "contao": $fa-var-contao,
- "square-font-awesome": $fa-var-square-font-awesome,
- "deskpro": $fa-var-deskpro,
- "brave": $fa-var-brave,
- "sistrix": $fa-var-sistrix,
- "square-instagram": $fa-var-square-instagram,
- "instagram-square": $fa-var-instagram-square,
- "battle-net": $fa-var-battle-net,
- "the-red-yeti": $fa-var-the-red-yeti,
- "square-hacker-news": $fa-var-square-hacker-news,
- "hacker-news-square": $fa-var-hacker-news-square,
- "edge": $fa-var-edge,
- "threads": $fa-var-threads,
- "napster": $fa-var-napster,
- "square-snapchat": $fa-var-square-snapchat,
- "snapchat-square": $fa-var-snapchat-square,
- "google-plus-g": $fa-var-google-plus-g,
- "artstation": $fa-var-artstation,
- "markdown": $fa-var-markdown,
- "sourcetree": $fa-var-sourcetree,
- "google-plus": $fa-var-google-plus,
- "diaspora": $fa-var-diaspora,
- "foursquare": $fa-var-foursquare,
- "stack-overflow": $fa-var-stack-overflow,
- "github-alt": $fa-var-github-alt,
- "phoenix-squadron": $fa-var-phoenix-squadron,
- "pagelines": $fa-var-pagelines,
- "algolia": $fa-var-algolia,
- "red-river": $fa-var-red-river,
- "creative-commons-sa": $fa-var-creative-commons-sa,
- "safari": $fa-var-safari,
- "google": $fa-var-google,
- "square-font-awesome-stroke": $fa-var-square-font-awesome-stroke,
- "font-awesome-alt": $fa-var-font-awesome-alt,
- "atlassian": $fa-var-atlassian,
- "linkedin-in": $fa-var-linkedin-in,
- "digital-ocean": $fa-var-digital-ocean,
- "nimblr": $fa-var-nimblr,
- "chromecast": $fa-var-chromecast,
- "evernote": $fa-var-evernote,
- "hacker-news": $fa-var-hacker-news,
- "creative-commons-sampling": $fa-var-creative-commons-sampling,
- "adversal": $fa-var-adversal,
- "creative-commons": $fa-var-creative-commons,
- "watchman-monitoring": $fa-var-watchman-monitoring,
- "fonticons": $fa-var-fonticons,
- "weixin": $fa-var-weixin,
- "shirtsinbulk": $fa-var-shirtsinbulk,
- "codepen": $fa-var-codepen,
- "git-alt": $fa-var-git-alt,
- "lyft": $fa-var-lyft,
- "rev": $fa-var-rev,
- "windows": $fa-var-windows,
- "wizards-of-the-coast": $fa-var-wizards-of-the-coast,
- "square-viadeo": $fa-var-square-viadeo,
- "viadeo-square": $fa-var-viadeo-square,
- "meetup": $fa-var-meetup,
- "centos": $fa-var-centos,
- "adn": $fa-var-adn,
- "cloudsmith": $fa-var-cloudsmith,
- "opensuse": $fa-var-opensuse,
- "pied-piper-alt": $fa-var-pied-piper-alt,
- "square-dribbble": $fa-var-square-dribbble,
- "dribbble-square": $fa-var-dribbble-square,
- "codiepie": $fa-var-codiepie,
- "node": $fa-var-node,
- "mix": $fa-var-mix,
- "steam": $fa-var-steam,
- "cc-apple-pay": $fa-var-cc-apple-pay,
- "scribd": $fa-var-scribd,
- "debian": $fa-var-debian,
- "openid": $fa-var-openid,
- "instalod": $fa-var-instalod,
- "files-pinwheel": $fa-var-files-pinwheel,
- "expeditedssl": $fa-var-expeditedssl,
- "sellcast": $fa-var-sellcast,
- "square-twitter": $fa-var-square-twitter,
- "twitter-square": $fa-var-twitter-square,
- "r-project": $fa-var-r-project,
- "delicious": $fa-var-delicious,
- "freebsd": $fa-var-freebsd,
- "vuejs": $fa-var-vuejs,
- "accusoft": $fa-var-accusoft,
- "ioxhost": $fa-var-ioxhost,
- "fonticons-fi": $fa-var-fonticons-fi,
- "app-store": $fa-var-app-store,
- "cc-mastercard": $fa-var-cc-mastercard,
- "itunes-note": $fa-var-itunes-note,
- "golang": $fa-var-golang,
- "kickstarter": $fa-var-kickstarter,
- "square-kickstarter": $fa-var-square-kickstarter,
- "grav": $fa-var-grav,
- "weibo": $fa-var-weibo,
- "uncharted": $fa-var-uncharted,
- "firstdraft": $fa-var-firstdraft,
- "square-youtube": $fa-var-square-youtube,
- "youtube-square": $fa-var-youtube-square,
- "wikipedia-w": $fa-var-wikipedia-w,
- "wpressr": $fa-var-wpressr,
- "rendact": $fa-var-rendact,
- "angellist": $fa-var-angellist,
- "galactic-republic": $fa-var-galactic-republic,
- "nfc-directional": $fa-var-nfc-directional,
- "skype": $fa-var-skype,
- "joget": $fa-var-joget,
- "fedora": $fa-var-fedora,
- "stripe-s": $fa-var-stripe-s,
- "meta": $fa-var-meta,
- "laravel": $fa-var-laravel,
- "hotjar": $fa-var-hotjar,
- "bluetooth-b": $fa-var-bluetooth-b,
- "square-letterboxd": $fa-var-square-letterboxd,
- "sticker-mule": $fa-var-sticker-mule,
- "creative-commons-zero": $fa-var-creative-commons-zero,
- "hips": $fa-var-hips,
- "css": $fa-var-css,
- "behance": $fa-var-behance,
- "reddit": $fa-var-reddit,
- "discord": $fa-var-discord,
- "chrome": $fa-var-chrome,
- "app-store-ios": $fa-var-app-store-ios,
- "cc-discover": $fa-var-cc-discover,
- "wpbeginner": $fa-var-wpbeginner,
- "confluence": $fa-var-confluence,
- "shoelace": $fa-var-shoelace,
- "mdb": $fa-var-mdb,
- "dochub": $fa-var-dochub,
- "accessible-icon": $fa-var-accessible-icon,
- "ebay": $fa-var-ebay,
- "amazon": $fa-var-amazon,
- "unsplash": $fa-var-unsplash,
- "yarn": $fa-var-yarn,
- "square-steam": $fa-var-square-steam,
- "steam-square": $fa-var-steam-square,
- "500px": $fa-var-500px,
- "square-vimeo": $fa-var-square-vimeo,
- "vimeo-square": $fa-var-vimeo-square,
- "asymmetrik": $fa-var-asymmetrik,
- "font-awesome": $fa-var-font-awesome,
- "font-awesome-flag": $fa-var-font-awesome-flag,
- "font-awesome-logo-full": $fa-var-font-awesome-logo-full,
- "gratipay": $fa-var-gratipay,
- "apple": $fa-var-apple,
- "hive": $fa-var-hive,
- "gitkraken": $fa-var-gitkraken,
- "keybase": $fa-var-keybase,
- "apple-pay": $fa-var-apple-pay,
- "padlet": $fa-var-padlet,
- "amazon-pay": $fa-var-amazon-pay,
- "square-github": $fa-var-square-github,
- "github-square": $fa-var-github-square,
- "stumbleupon": $fa-var-stumbleupon,
- "fedex": $fa-var-fedex,
- "phoenix-framework": $fa-var-phoenix-framework,
- "shopify": $fa-var-shopify,
- "neos": $fa-var-neos,
- "square-threads": $fa-var-square-threads,
- "hackerrank": $fa-var-hackerrank,
- "researchgate": $fa-var-researchgate,
- "swift": $fa-var-swift,
- "angular": $fa-var-angular,
- "speakap": $fa-var-speakap,
- "angrycreative": $fa-var-angrycreative,
- "y-combinator": $fa-var-y-combinator,
- "empire": $fa-var-empire,
- "envira": $fa-var-envira,
- "google-scholar": $fa-var-google-scholar,
- "square-gitlab": $fa-var-square-gitlab,
- "gitlab-square": $fa-var-gitlab-square,
- "studiovinari": $fa-var-studiovinari,
- "pied-piper": $fa-var-pied-piper,
- "wordpress": $fa-var-wordpress,
- "product-hunt": $fa-var-product-hunt,
- "firefox": $fa-var-firefox,
- "linode": $fa-var-linode,
- "goodreads": $fa-var-goodreads,
- "square-odnoklassniki": $fa-var-square-odnoklassniki,
- "odnoklassniki-square": $fa-var-odnoklassniki-square,
- "jsfiddle": $fa-var-jsfiddle,
- "sith": $fa-var-sith,
- "themeisle": $fa-var-themeisle,
- "page4": $fa-var-page4,
- "hashnode": $fa-var-hashnode,
- "react": $fa-var-react,
- "cc-paypal": $fa-var-cc-paypal,
- "squarespace": $fa-var-squarespace,
- "cc-stripe": $fa-var-cc-stripe,
- "creative-commons-share": $fa-var-creative-commons-share,
- "bitcoin": $fa-var-bitcoin,
- "keycdn": $fa-var-keycdn,
- "opera": $fa-var-opera,
- "itch-io": $fa-var-itch-io,
- "umbraco": $fa-var-umbraco,
- "galactic-senate": $fa-var-galactic-senate,
- "ubuntu": $fa-var-ubuntu,
- "draft2digital": $fa-var-draft2digital,
- "stripe": $fa-var-stripe,
- "houzz": $fa-var-houzz,
- "gg": $fa-var-gg,
- "dhl": $fa-var-dhl,
- "square-pinterest": $fa-var-square-pinterest,
- "pinterest-square": $fa-var-pinterest-square,
- "xing": $fa-var-xing,
- "blackberry": $fa-var-blackberry,
- "creative-commons-pd": $fa-var-creative-commons-pd,
- "playstation": $fa-var-playstation,
- "quinscape": $fa-var-quinscape,
- "less": $fa-var-less,
- "blogger-b": $fa-var-blogger-b,
- "opencart": $fa-var-opencart,
- "vine": $fa-var-vine,
- "signal-messenger": $fa-var-signal-messenger,
- "paypal": $fa-var-paypal,
- "gitlab": $fa-var-gitlab,
- "typo3": $fa-var-typo3,
- "reddit-alien": $fa-var-reddit-alien,
- "yahoo": $fa-var-yahoo,
- "dailymotion": $fa-var-dailymotion,
- "affiliatetheme": $fa-var-affiliatetheme,
- "pied-piper-pp": $fa-var-pied-piper-pp,
- "bootstrap": $fa-var-bootstrap,
- "odnoklassniki": $fa-var-odnoklassniki,
- "nfc-symbol": $fa-var-nfc-symbol,
- "mintbit": $fa-var-mintbit,
- "ethereum": $fa-var-ethereum,
- "speaker-deck": $fa-var-speaker-deck,
- "creative-commons-nc-eu": $fa-var-creative-commons-nc-eu,
- "patreon": $fa-var-patreon,
- "avianex": $fa-var-avianex,
- "ello": $fa-var-ello,
- "gofore": $fa-var-gofore,
- "bimobject": $fa-var-bimobject,
- "brave-reverse": $fa-var-brave-reverse,
- "facebook-f": $fa-var-facebook-f,
- "square-google-plus": $fa-var-square-google-plus,
- "google-plus-square": $fa-var-google-plus-square,
- "web-awesome": $fa-var-web-awesome,
- "mandalorian": $fa-var-mandalorian,
- "first-order-alt": $fa-var-first-order-alt,
- "osi": $fa-var-osi,
- "google-wallet": $fa-var-google-wallet,
- "d-and-d-beyond": $fa-var-d-and-d-beyond,
- "periscope": $fa-var-periscope,
- "fulcrum": $fa-var-fulcrum,
- "cloudscale": $fa-var-cloudscale,
- "forumbee": $fa-var-forumbee,
- "mizuni": $fa-var-mizuni,
- "schlix": $fa-var-schlix,
- "square-xing": $fa-var-square-xing,
- "xing-square": $fa-var-xing-square,
- "bandcamp": $fa-var-bandcamp,
- "wpforms": $fa-var-wpforms,
- "cloudversify": $fa-var-cloudversify,
- "usps": $fa-var-usps,
- "megaport": $fa-var-megaport,
- "magento": $fa-var-magento,
- "spotify": $fa-var-spotify,
- "optin-monster": $fa-var-optin-monster,
- "fly": $fa-var-fly,
- "square-bluesky": $fa-var-square-bluesky,
- "aviato": $fa-var-aviato,
- "itunes": $fa-var-itunes,
- "cuttlefish": $fa-var-cuttlefish,
- "blogger": $fa-var-blogger,
- "flickr": $fa-var-flickr,
- "viber": $fa-var-viber,
- "soundcloud": $fa-var-soundcloud,
- "digg": $fa-var-digg,
- "tencent-weibo": $fa-var-tencent-weibo,
- "letterboxd": $fa-var-letterboxd,
- "symfony": $fa-var-symfony,
- "maxcdn": $fa-var-maxcdn,
- "etsy": $fa-var-etsy,
- "facebook-messenger": $fa-var-facebook-messenger,
- "audible": $fa-var-audible,
- "think-peaks": $fa-var-think-peaks,
- "bilibili": $fa-var-bilibili,
- "erlang": $fa-var-erlang,
- "x-twitter": $fa-var-x-twitter,
- "cotton-bureau": $fa-var-cotton-bureau,
- "dashcube": $fa-var-dashcube,
- "42-group": $fa-var-42-group,
- "innosoft": $fa-var-innosoft,
- "stack-exchange": $fa-var-stack-exchange,
- "elementor": $fa-var-elementor,
- "square-pied-piper": $fa-var-square-pied-piper,
- "pied-piper-square": $fa-var-pied-piper-square,
- "creative-commons-nd": $fa-var-creative-commons-nd,
- "palfed": $fa-var-palfed,
- "superpowers": $fa-var-superpowers,
- "resolving": $fa-var-resolving,
- "xbox": $fa-var-xbox,
- "square-web-awesome-stroke": $fa-var-square-web-awesome-stroke,
- "searchengin": $fa-var-searchengin,
- "tiktok": $fa-var-tiktok,
- "square-facebook": $fa-var-square-facebook,
- "facebook-square": $fa-var-facebook-square,
- "renren": $fa-var-renren,
- "linux": $fa-var-linux,
- "glide": $fa-var-glide,
- "linkedin": $fa-var-linkedin,
- "hubspot": $fa-var-hubspot,
- "deploydog": $fa-var-deploydog,
- "twitch": $fa-var-twitch,
- "flutter": $fa-var-flutter,
- "ravelry": $fa-var-ravelry,
- "mixer": $fa-var-mixer,
- "square-lastfm": $fa-var-square-lastfm,
- "lastfm-square": $fa-var-lastfm-square,
- "vimeo": $fa-var-vimeo,
- "mendeley": $fa-var-mendeley,
- "uniregistry": $fa-var-uniregistry,
- "figma": $fa-var-figma,
- "creative-commons-remix": $fa-var-creative-commons-remix,
- "cc-amazon-pay": $fa-var-cc-amazon-pay,
- "dropbox": $fa-var-dropbox,
- "instagram": $fa-var-instagram,
- "cmplid": $fa-var-cmplid,
- "upwork": $fa-var-upwork,
- "facebook": $fa-var-facebook,
- "gripfire": $fa-var-gripfire,
- "jedi-order": $fa-var-jedi-order,
- "uikit": $fa-var-uikit,
- "fort-awesome-alt": $fa-var-fort-awesome-alt,
- "phabricator": $fa-var-phabricator,
- "ussunnah": $fa-var-ussunnah,
- "earlybirds": $fa-var-earlybirds,
- "trade-federation": $fa-var-trade-federation,
- "autoprefixer": $fa-var-autoprefixer,
- "whatsapp": $fa-var-whatsapp,
- "square-upwork": $fa-var-square-upwork,
- "slideshare": $fa-var-slideshare,
- "google-play": $fa-var-google-play,
- "viadeo": $fa-var-viadeo,
- "line": $fa-var-line,
- "google-drive": $fa-var-google-drive,
- "servicestack": $fa-var-servicestack,
- "simplybuilt": $fa-var-simplybuilt,
- "bitbucket": $fa-var-bitbucket,
- "imdb": $fa-var-imdb,
- "deezer": $fa-var-deezer,
- "raspberry-pi": $fa-var-raspberry-pi,
- "jira": $fa-var-jira,
- "docker": $fa-var-docker,
- "screenpal": $fa-var-screenpal,
- "bluetooth": $fa-var-bluetooth,
- "gitter": $fa-var-gitter,
- "d-and-d": $fa-var-d-and-d,
- "microblog": $fa-var-microblog,
- "cc-diners-club": $fa-var-cc-diners-club,
- "gg-circle": $fa-var-gg-circle,
- "pied-piper-hat": $fa-var-pied-piper-hat,
- "kickstarter-k": $fa-var-kickstarter-k,
- "yandex": $fa-var-yandex,
- "readme": $fa-var-readme,
- "html5": $fa-var-html5,
- "sellsy": $fa-var-sellsy,
- "square-web-awesome": $fa-var-square-web-awesome,
- "sass": $fa-var-sass,
- "wirsindhandwerk": $fa-var-wirsindhandwerk,
- "wsh": $fa-var-wsh,
- "buromobelexperte": $fa-var-buromobelexperte,
- "salesforce": $fa-var-salesforce,
- "octopus-deploy": $fa-var-octopus-deploy,
- "medapps": $fa-var-medapps,
- "ns8": $fa-var-ns8,
- "pinterest-p": $fa-var-pinterest-p,
- "apper": $fa-var-apper,
- "fort-awesome": $fa-var-fort-awesome,
- "waze": $fa-var-waze,
- "bluesky": $fa-var-bluesky,
- "cc-jcb": $fa-var-cc-jcb,
- "snapchat": $fa-var-snapchat,
- "snapchat-ghost": $fa-var-snapchat-ghost,
- "fantasy-flight-games": $fa-var-fantasy-flight-games,
- "rust": $fa-var-rust,
- "wix": $fa-var-wix,
- "square-behance": $fa-var-square-behance,
- "behance-square": $fa-var-behance-square,
- "supple": $fa-var-supple,
- "webflow": $fa-var-webflow,
- "rebel": $fa-var-rebel,
- "css3": $fa-var-css3,
- "staylinked": $fa-var-staylinked,
- "kaggle": $fa-var-kaggle,
- "space-awesome": $fa-var-space-awesome,
- "deviantart": $fa-var-deviantart,
- "cpanel": $fa-var-cpanel,
- "goodreads-g": $fa-var-goodreads-g,
- "square-git": $fa-var-square-git,
- "git-square": $fa-var-git-square,
- "square-tumblr": $fa-var-square-tumblr,
- "tumblr-square": $fa-var-tumblr-square,
- "trello": $fa-var-trello,
- "creative-commons-nc-jp": $fa-var-creative-commons-nc-jp,
- "get-pocket": $fa-var-get-pocket,
- "perbyte": $fa-var-perbyte,
- "grunt": $fa-var-grunt,
- "weebly": $fa-var-weebly,
- "connectdevelop": $fa-var-connectdevelop,
- "leanpub": $fa-var-leanpub,
- "black-tie": $fa-var-black-tie,
- "themeco": $fa-var-themeco,
- "python": $fa-var-python,
- "android": $fa-var-android,
- "bots": $fa-var-bots,
- "free-code-camp": $fa-var-free-code-camp,
- "hornbill": $fa-var-hornbill,
- "js": $fa-var-js,
- "ideal": $fa-var-ideal,
- "git": $fa-var-git,
- "dev": $fa-var-dev,
- "sketch": $fa-var-sketch,
- "yandex-international": $fa-var-yandex-international,
- "cc-amex": $fa-var-cc-amex,
- "uber": $fa-var-uber,
- "github": $fa-var-github,
- "php": $fa-var-php,
- "alipay": $fa-var-alipay,
- "youtube": $fa-var-youtube,
- "skyatlas": $fa-var-skyatlas,
- "firefox-browser": $fa-var-firefox-browser,
- "replyd": $fa-var-replyd,
- "suse": $fa-var-suse,
- "jenkins": $fa-var-jenkins,
- "twitter": $fa-var-twitter,
- "rockrms": $fa-var-rockrms,
- "pinterest": $fa-var-pinterest,
- "buffer": $fa-var-buffer,
- "npm": $fa-var-npm,
- "yammer": $fa-var-yammer,
- "btc": $fa-var-btc,
- "dribbble": $fa-var-dribbble,
- "stumbleupon-circle": $fa-var-stumbleupon-circle,
- "internet-explorer": $fa-var-internet-explorer,
- "stubber": $fa-var-stubber,
- "telegram": $fa-var-telegram,
- "telegram-plane": $fa-var-telegram-plane,
- "old-republic": $fa-var-old-republic,
- "odysee": $fa-var-odysee,
- "square-whatsapp": $fa-var-square-whatsapp,
- "whatsapp-square": $fa-var-whatsapp-square,
- "node-js": $fa-var-node-js,
- "edge-legacy": $fa-var-edge-legacy,
- "slack": $fa-var-slack,
- "slack-hash": $fa-var-slack-hash,
- "medrt": $fa-var-medrt,
- "usb": $fa-var-usb,
- "tumblr": $fa-var-tumblr,
- "vaadin": $fa-var-vaadin,
- "quora": $fa-var-quora,
- "square-x-twitter": $fa-var-square-x-twitter,
- "reacteurope": $fa-var-reacteurope,
- "medium": $fa-var-medium,
- "medium-m": $fa-var-medium-m,
- "amilia": $fa-var-amilia,
- "mixcloud": $fa-var-mixcloud,
- "flipboard": $fa-var-flipboard,
- "viacoin": $fa-var-viacoin,
- "critical-role": $fa-var-critical-role,
- "sitrox": $fa-var-sitrox,
- "discourse": $fa-var-discourse,
- "joomla": $fa-var-joomla,
- "mastodon": $fa-var-mastodon,
- "airbnb": $fa-var-airbnb,
- "wolf-pack-battalion": $fa-var-wolf-pack-battalion,
- "buy-n-large": $fa-var-buy-n-large,
- "gulp": $fa-var-gulp,
- "creative-commons-sampling-plus": $fa-var-creative-commons-sampling-plus,
- "strava": $fa-var-strava,
- "ember": $fa-var-ember,
- "canadian-maple-leaf": $fa-var-canadian-maple-leaf,
- "teamspeak": $fa-var-teamspeak,
- "pushed": $fa-var-pushed,
- "wordpress-simple": $fa-var-wordpress-simple,
- "nutritionix": $fa-var-nutritionix,
- "wodu": $fa-var-wodu,
- "google-pay": $fa-var-google-pay,
- "intercom": $fa-var-intercom,
- "zhihu": $fa-var-zhihu,
- "korvue": $fa-var-korvue,
- "pix": $fa-var-pix,
- "steam-symbol": $fa-var-steam-symbol,
-);
diff --git a/themes/hugo-coder/assets/scss/font-awesome/brands.scss b/themes/hugo-coder/assets/scss/font-awesome/brands.scss
deleted file mode 100644
index f05b3fc..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/brands.scss
+++ /dev/null
@@ -1,30 +0,0 @@
-/*!
- * Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.
- */
-@import 'functions';
-@import 'variables';
-
-:root, :host {
- --#{$fa-css-prefix}-style-family-brands: 'Font Awesome 6 Brands';
- --#{$fa-css-prefix}-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: $fa-font-display;
- src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
- url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
-}
-
-.fab,
-.#{$fa-css-prefix}-brands {
- font-weight: 400;
-}
-
-@each $name, $icon in $fa-brand-icons {
- .#{$fa-css-prefix}-#{$name} { #{$fa-icon-property}: unquote("\"#{ $icon }\""); }
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/fontawesome.scss b/themes/hugo-coder/assets/scss/font-awesome/fontawesome.scss
deleted file mode 100644
index 2a5b40a..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/fontawesome.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-/*!
- * Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.
- */
-// Font Awesome core compile (Web Fonts-based)
-// -------------------------
-
-@import 'functions';
-@import 'variables';
-@import 'mixins';
-@import 'core';
-@import 'sizing';
-@import 'fixed-width';
-@import 'list';
-@import 'bordered-pulled';
-@import 'animated';
-@import 'rotated-flipped';
-@import 'stacked';
-@import 'icons';
-@import 'screen-reader';
diff --git a/themes/hugo-coder/assets/scss/font-awesome/regular.scss b/themes/hugo-coder/assets/scss/font-awesome/regular.scss
deleted file mode 100644
index 4a15596..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/regular.scss
+++ /dev/null
@@ -1,27 +0,0 @@
-/*!
- * Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.
- */
-@import 'functions';
-@import 'variables';
-
-:root, :host {
- --#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
- --#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family }';
-}
-
-
-@font-face {
- font-family: 'Font Awesome 6 Free';
- font-style: normal;
- font-weight: 400;
- font-display: $fa-font-display;
- src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
- url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
-}
-
-.far,
-.#{$fa-css-prefix}-regular {
- font-weight: 400;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/solid.scss b/themes/hugo-coder/assets/scss/font-awesome/solid.scss
deleted file mode 100644
index f673892..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/solid.scss
+++ /dev/null
@@ -1,27 +0,0 @@
-/*!
- * Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.
- */
-@import 'functions';
-@import 'variables';
-
-:root, :host {
- --#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
- --#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family }';
-}
-
-
-@font-face {
- font-family: 'Font Awesome 6 Free';
- font-style: normal;
- font-weight: 900;
- font-display: $fa-font-display;
- src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
- url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
-}
-
-.fas,
-.#{$fa-css-prefix}-solid {
- font-weight: 900;
-}
diff --git a/themes/hugo-coder/assets/scss/font-awesome/v4-shims.scss b/themes/hugo-coder/assets/scss/font-awesome/v4-shims.scss
deleted file mode 100644
index 448e25a..0000000
--- a/themes/hugo-coder/assets/scss/font-awesome/v4-shims.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-/*!
- * Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.
- */
-// V4 shims compile (Web Fonts-based)
-// -------------------------
-
-@import 'functions';
-@import 'variables';
-@import 'shims';
diff --git a/themes/hugo-coder/docs/analytics.md b/themes/hugo-coder/docs/analytics.md
deleted file mode 100644
index 21f2fa7..0000000
--- a/themes/hugo-coder/docs/analytics.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# Enable Web Analytics
-
-## Supported Providers
-
-_in alphabetic order_
-
-- [Application Insights](https://azure.com/) - [documentation](/docs/analytics/applicationinsights.md)
-- [Baidu Analytics](https://tongji.baidu.com/) - [documentation](/docs/analytics/baidu.md)
-- [Clicky](https://clicky.com/) - [documentation](/docs/analytics/clicky.md)
-- [Cloudflare](https://www.cloudflare.com/analytics/) - [documentation](/docs/analytics/cloudflare.md)
-- [Counter.dev](https://counter.dev/) - [documentation](/docs/analytics/counterdev.md)
-- [Google Analytics](https://developers.google.com/analytics) - [documentation](/docs/analytics/googleanalytics.md)
-- [Google Tag Manager](https://developers.google.com/tag-manager) - [documentation](/docs/analytics/googletagmanager.md)
-- [Fathom Analytics](https://usefathom.com/) - [documentation](/docs/analytics/fathom.md)
-- [Goat Counter](https://www.goatcounter.com/) - [documentation](/docs/analytics/goatcounter.md)
-- [Matomo](https://matomo.org/) - [documentation](/docs/analytics/matomo.md)
-- [Micro Analytics](https://microanalytics.io/) - [documentation](/docs/analytics/microanalytics.md)
-- [One Dollars Stats](https://onedollarstats.com/analytics) - [documentation](/docs/analytics/onedollarstats.md)
-- [Pirsch](https://pirsch.io/) - [documentation](/docs/analytics/pirsch.md)
-- [Plausible Analytics](https://plausible.io/) - [documentation](/docs/analytics/plausible.md)
-- [Umami](https://umami.is/) - [documentation](/docs/analytics/umami.md)
-- [Vercel Analytics](https://vercel.com/analytics) - [documentation](/docs/analytics/vercel.md)
-- [Wide Angle Analytics](https://wideangle.co/) - [documentation](/docs/analytics/wideangle.md)
\ No newline at end of file
diff --git a/themes/hugo-coder/docs/analytics/applicationinsights.md b/themes/hugo-coder/docs/analytics/applicationinsights.md
deleted file mode 100644
index 859feaa..0000000
--- a/themes/hugo-coder/docs/analytics/applicationinsights.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Application Insights
-
-```toml
-[params.applicationInsights]
- connectionString = "connectionstring" # https://docs.microsoft.com/en-us/azure/azure-monitor/app/sdk-connection-string
-```
diff --git a/themes/hugo-coder/docs/analytics/baidu.md b/themes/hugo-coder/docs/analytics/baidu.md
deleted file mode 100644
index e71a3be..0000000
--- a/themes/hugo-coder/docs/analytics/baidu.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Baidu
-
-To use Baidu analytics in this theme, navigate to the setting page of your
-site at . You will get a piece of JS code provided
-as follows:
-
-```js
-
-```
-
-Then you can use it by filling your site toke `your_token_at_here` in the
-config file:
-
-```toml
-[params.baidu]
- token = "your_token_at_here"
-```
diff --git a/themes/hugo-coder/docs/analytics/clicky.md b/themes/hugo-coder/docs/analytics/clicky.md
deleted file mode 100644
index 3f945d1..0000000
--- a/themes/hugo-coder/docs/analytics/clicky.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Clicky
-
-```toml
-[params.clicky]
- id = "site-id"
-```
\ No newline at end of file
diff --git a/themes/hugo-coder/docs/analytics/cloudflare.md b/themes/hugo-coder/docs/analytics/cloudflare.md
deleted file mode 100644
index 84f1171..0000000
--- a/themes/hugo-coder/docs/analytics/cloudflare.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Cloudflare
-
-```toml
-[params.cloudflare]
- token = "token"
-```
diff --git a/themes/hugo-coder/docs/analytics/counterdev.md b/themes/hugo-coder/docs/analytics/counterdev.md
deleted file mode 100644
index 5fbb057..0000000
--- a/themes/hugo-coder/docs/analytics/counterdev.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Counter.dev
-
-```toml
-[params.counterdev]
- id = "data-id"
-```
\ No newline at end of file
diff --git a/themes/hugo-coder/docs/analytics/fathom.md b/themes/hugo-coder/docs/analytics/fathom.md
deleted file mode 100644
index 881919a..0000000
--- a/themes/hugo-coder/docs/analytics/fathom.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Fathom Analytics
-
-```toml
-[params.fathomAnalytics]
- siteID = "ABCDE"
- serverURL = "cdn.usefathom.com" # (optional) Replace if you use a custom domain
-```
\ No newline at end of file
diff --git a/themes/hugo-coder/docs/analytics/goatcounter.md b/themes/hugo-coder/docs/analytics/goatcounter.md
deleted file mode 100644
index b217b5a..0000000
--- a/themes/hugo-coder/docs/analytics/goatcounter.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Goat Counter
-
-```toml
-[params.goatCounter]
- code = "code" # You will access your account at https://[code].goatcounter.com
-```
diff --git a/themes/hugo-coder/docs/analytics/googleanalytics.md b/themes/hugo-coder/docs/analytics/googleanalytics.md
deleted file mode 100644
index ae6c838..0000000
--- a/themes/hugo-coder/docs/analytics/googleanalytics.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Google Analytics
-
-Follow [these steps](https://gohugo.io/templates/internal/#configure-google-analytics).
\ No newline at end of file
diff --git a/themes/hugo-coder/docs/analytics/googletagmanager.md b/themes/hugo-coder/docs/analytics/googletagmanager.md
deleted file mode 100644
index 94664e1..0000000
--- a/themes/hugo-coder/docs/analytics/googletagmanager.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Google Tag Manager
-
-```toml
-[params.googleTagManager]
- id = "gid"
-```
diff --git a/themes/hugo-coder/docs/analytics/matomo.md b/themes/hugo-coder/docs/analytics/matomo.md
deleted file mode 100644
index f751330..0000000
--- a/themes/hugo-coder/docs/analytics/matomo.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Matomo
-
-```toml
-[params.matomo]
- siteID = "ABCDE"
- serverURL = "analytics.example.com"
-```
diff --git a/themes/hugo-coder/docs/analytics/microanalytics.md b/themes/hugo-coder/docs/analytics/microanalytics.md
deleted file mode 100644
index d1be070..0000000
--- a/themes/hugo-coder/docs/analytics/microanalytics.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# microanalytics.io
-
-```toml
-[params.microAnalytics]
- id = "ABCDE"
- dnt = "false" # respect DNT tracker, "true" by default
-```
diff --git a/themes/hugo-coder/docs/analytics/onedollarstats.md b/themes/hugo-coder/docs/analytics/onedollarstats.md
deleted file mode 100644
index 7da020c..0000000
--- a/themes/hugo-coder/docs/analytics/onedollarstats.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# One Dollars Stats
-
-```toml
-[params.onedollarstats]
- id = "data-site-id"
-```
-
-You will also need to update your content security policy:
-
-```toml
-[params.csp]
- ...
- scriptsrc = [
- ...
- "https://assets.onedollarstats.com",
- ]
- ...
- connectsrc = [
- ...
- "https://assets.onedollarstats.com",
- ...
- ]
-```
diff --git a/themes/hugo-coder/docs/analytics/pirsch.md b/themes/hugo-coder/docs/analytics/pirsch.md
deleted file mode 100644
index 8cfceab..0000000
--- a/themes/hugo-coder/docs/analytics/pirsch.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Pirsch
-
-```toml
-[params.pirsch]
- code = "ABCDE"
-```
\ No newline at end of file
diff --git a/themes/hugo-coder/docs/analytics/plausible.md b/themes/hugo-coder/docs/analytics/plausible.md
deleted file mode 100644
index 1f969a8..0000000
--- a/themes/hugo-coder/docs/analytics/plausible.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Plausible Analytics
-
-```toml
-[params.plausibleAnalytics]
- domain = "example.com"
- serverURL = "plausible.io" # (optional) Replace if you use a custom domain
-```
diff --git a/themes/hugo-coder/docs/analytics/umami.md b/themes/hugo-coder/docs/analytics/umami.md
deleted file mode 100644
index 0ed0323..0000000
--- a/themes/hugo-coder/docs/analytics/umami.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Umami
-
-```toml
-[params.umami]
- siteID = "ABCDE"
- scriptURL = "analytics.REGION.umami.is/SCRIPTNAME.js"
- # refer to the "tracking code" tab in your umami website dashboard
- # to obtain the script url
-```
diff --git a/themes/hugo-coder/docs/analytics/vercel.md b/themes/hugo-coder/docs/analytics/vercel.md
deleted file mode 100644
index 0c6669f..0000000
--- a/themes/hugo-coder/docs/analytics/vercel.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# Vercel Analytics
-
-```toml
-[params]
- vercelAnalytics = true
-```
diff --git a/themes/hugo-coder/docs/analytics/wideangle.md b/themes/hugo-coder/docs/analytics/wideangle.md
deleted file mode 100644
index 97e9487..0000000
--- a/themes/hugo-coder/docs/analytics/wideangle.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Wide Angle Analytics
-
-Wide Angle Analytics is strictly **GDPR** compliant, privacy-first web analytics. Head to [wideangle.co](https://wideangle.co/) and create you free trial account now.
-
-## Configuration
-
-Built in template supports following configuration options:
-
-param | description | required | default
-------|-------------|----------|--------
-siteID| A site ID from [Wide Angle site](https://wideangle.co/documentation/web-analytics-for-your-website)| :white_check_mark: | n/a
-serverURL | [Domain](https://wideangle.co/documentation/track-with-custom-domain) with which the WAA is configured with | :x: | stats.wideangle.co
-fingerprint | Enable advanced session fingerprint; requires user consent | :x: | false
-supressDNT | Ignore Do-Not-Track setting in the browser | :x: | false
-
-
-## Example
-
-```toml
-[params.wideAngleAnalytics]
- siteID = "1D4EG3B9ACA03F4243"
- serverURL = "fyi.wideangle.co"
- fingerprint = "false"
- supressDNT = "false"
-```
diff --git a/themes/hugo-coder/docs/comment-system.md b/themes/hugo-coder/docs/comment-system.md
deleted file mode 100644
index 00d7bdd..0000000
--- a/themes/hugo-coder/docs/comment-system.md
+++ /dev/null
@@ -1 +0,0 @@
-WIP
diff --git a/themes/hugo-coder/docs/configurations.md b/themes/hugo-coder/docs/configurations.md
deleted file mode 100644
index b6c7000..0000000
--- a/themes/hugo-coder/docs/configurations.md
+++ /dev/null
@@ -1,369 +0,0 @@
-# Configurations
-
-- [Configurations](#configurations)
- - [About Hugo Configurations](#about-hugo-configurations)
- - [Commenting Systems](#commenting-systems)
- - [Disqus](#disqus)
- - [Commento](#commento)
- - [Utterances](#utterances)
- - [Giscus](#giscus)
- - [Telegram](#telegram)
- - [Cusdis](#cusdis)
- - [Mastodon](#mastodon)
- - [Syntax Highlight](#syntax-highlight)
- - [Theme Parameters](#theme-parameters)
- - [Social Icons Configuration](#social-icons-configuration)
- - [Menu Items Configurations](#menu-items-configurations)
- - [CSP](#csp)
- - [Complete Example](#complete-example)
- - [Front Matter](#front-matter)
- - [Posts](#posts)
-
-## About Hugo Configurations
-
-This theme supports:
-
-* [Analytics](/docs/analytics.md)
-
-* Commenting Systems
- * [Disqus](https://disqus.com/)
- * [Commento](https://commento.io/)
- * [Utterances](https://utteranc.es/)
- * [Giscus](https://giscus.app/)
- * [Cusdis](https://cusdis.com/)
- * [Telegram](https://comments.app/)
-
-### Commenting Systems
-
-Comments are displayed within post pages, but can be disabled with `disableComments` front-matter.
-
-#### Disqus
-
-Follow [these steps](https://gohugo.io/content-management/comments/#configure-disqus).
-
-#### Commento
-
-```toml
-[params]
- commentoURL = "https://cdn.commento.io" # Replace if you use a custom domain
-```
-
-#### Utterances
-
-```toml
-[params.utterances]
- repo = "" # https://utteranc.es/#heading-repository
- issueTerm = "" # https://utteranc.es/#heading-mapping
- label = "" # https://utteranc.es/#heading-issue-label
- theme = "" # https://utteranc.es/#heading-theme
-```
-
-#### Giscus
-
-```toml
-[params.giscus] # https://giscus.app
- repo = ""
- repoID = ""
- category = ""
- categoryID = ""
- mapping = ""
- term = ""
- strict = ""
- reactionsEnabled = ""
- emitMetadata = ""
- inputPosition = ""
- theme = ""
- lang = ""
- loading = ""
-```
-
-#### Telegram
-
-```toml
-[params.telegram] # https://comments.app/
- siteID = ""
- limit = ""
- height = ""
- color = ""
- dislikes = ""
- outlined = ""
- colorful = ""
- dark = ""
-```
-
-#### Cusdis
-
-```toml
-[params.cusdis] # https://cusdis.com
- data_app_id = ""
-```
-
-#### Mastodon
-
-```toml
-[params.mastodon]
- host = "" # Address of your Mastodon instance
- username = "" # Your username
- statusID = "" # ID os the status (post) that comments should be related
- purifyCDN = "" # CDN address of pointing to a Purify package
-
-```
-
-## Syntax Highlight
-
-The theme uses the Goldmark syntax highlight system. GitHub light and dark are set as the default styles. To choose a different style, make sure `noClasses` is not set to false (default is true) and add to your `hugo.toml`:
-
-```
-[markup.highlight]
-style = "monokai"
-```
-
-All `style` are available [here](https://xyproto.github.io/splash/docs/all.html).
-
-Alternatively, it is possible to use custom styles with generated CSS files. See [here](https://gohugo.io/content-management/syntax-highlighting/#generate-syntax-highlighter-css).
-
-## Theme Parameters
-
-These are all the parameters used by `hugo-coder` theme.
-
-| Name | Type | Required | Description | Default | Example |
-| ----------------------- | ------ | -------- | ------------------------------------------------------------------------ | --------------------------------- | ------------------------------------------------- |
-| author | string | Yes | Author name. | | `"John Doe"` |
-| info | string | Yes | An headline, job title or similar. | | `"Full Stack Developer"` |
-| description | string | Yes | Description of the site. | | `"John Doe's personal website"` |
-| keywords | string | Yes | Site keywords. | | `"blog,developer,personal"` |
-| avatarURL | string | No | Photo of the author. | | `"images/avatar.jpg"` |
-| gravatar | string | No | Gravatar photo of the author | | `"john.doe@example.com"` |
-| fediverseCreator | string | No | The author's fediverse handle. | | `"@johndoe@example.com"` |
-| faviconSVG | string | No | Custom path to a SCG favicon. | `"/img/favicon.svg"` | `"/img/favicon.svg"` |
-| favicon_32 | string | No | Custom path to a 32x32 favicon. | `"/img/favicon-32x32.png"` | `"/img/favicon-32x32.png"` |
-| favicon_16 | string | No | Custom path to a 16x16 favicon. | `"/img/favicon-16x16.png"` | `"/img/favicon-16x16.png"` |
-| touchIcon | string | No | Custom path to an apple-touch-icon | `"/images/apple-touch-icon.png"` | `"/images/apple-touch-icon.png"` |
-| mask_icon | string | No | Custom path to a mask-icon | `"/images/safari-pinned-tab.svg"` | `"/images/safari-pinned-tab.svg"` |
-| mask_icon_color | string | No | Custom color for mask-icon color | `"#5bbad5"` | `"#5bbad5"` |
-| since | string | No | Date shown in the footer before now year | | `"2020"` |
-| maxSeeAlsoItems | number | No | Series see also post count | `5` | `10` |
-| commit | string | No | Show the last git commit in the footer | | `"https://github.com/luizdepra/hugo-coder/tree/"` |
-| rtl | bool | No | Enable the Right To Left mode. | `false` | `true` or `false` |
-| math | bool | No | Enable MathJax Module and add JS into your site. | `false` | `true` or `false` |
-| katex | bool | No | Enable KaTeX for all content types. | `false` | `true` or `false` |
-| colorScheme | string | No | Specify light/dark colorscheme | `"auto"` | `"auto"` or `"light"` or `"dark"` |
-| hideColorSchemeToggle | bool | No | If true, hides the color scheme toggle | `false` | `true` or `false` |
-| customCSS | list | No | Add extra CSS files to the website. | [] | `["css/extra-style.css"]` |
-| customSCSS | list | No | Add extra SCSS files to the website. | [] | `["scss/extra-style.scss"]` |
-| customJS | list | No | Add extra JS files to the website. | [] | `["js/extra-script.js"]` |
-| customRemoteJS | list | No | Add extra remote JS files to the website. | [] | `["https://www.example.com/file.js"]` |
-| enableTwemoji | bool | No | Adds support for Twemoji | `false` | `true` or `false` |
-| disableDefaultJsScripts | bool | No | If true, disables default js scripts (coder.js) | `false` | `true` or `false` |
-| HeadTitle | string | No | When configured, it overrides the `` tag with the provided string | "" | `"My custom title"` |
-
-
-### Social Icons Configuration
-
-Social Icons are optional. To use them you will need to set at least all the following required parameters for each icon.
-
-| Configuration | Type | Required | Description | Example |
-| -------------- | ------ | -------- | ---------------------------------------- | ------------------------------- |
-| name | string | Yes | Icon name. | `"Github"` |
-| icon | string | Yes | FontAwesome icon classes. | `"fa-brands fa-github"` |
-| weight | int | Yes | Icon order. | `1` |
-| url | string | Yes | URL to redirect. | `"https://github.com/johndoe/"` |
-| rel | string | No | Define the relationship | `"me"` |
-
-An example:
-
-```toml
-[[params.social]]
- name = "Github"
- icon = "fa-brands fa-github fa-2x"
- weight = 1
- url = "https://github.com/johndoe/"
-[[params.social]]
- name = "Gitlab"
- icon = "fa-brands fa-gitlab fa-2x"
- weight = 2
- url = "https://gitlab.com/johndoe/"
-[[params.social]]
- name = "Twitter"
- icon = "fa-brands fa-x-twitter fa-2x"
- weight = 3
- url = "https://twitter.com/johndoe/"
-```
-
-### Menu Items Configurations
-
-Menu Items are optional. To use them you will need to set all the following required parameters for each icon.
-
-| Configuration | Type | Required | Description | Example |
-| -------------- | ------ | -------- | ---------------------------------------- | ------------------------------- |
-| name | string | Yes | Menu Item name. | `"Posts"` |
-| weight | int | Yes | Menu Item order. | `1` |
-| url | string | Yes | URL to redirect. | `"/posts/"` |
-| class | string | No | Menu Item extra class attribute. | `"menu-item"` |
-| target | string | No | URL target attribute. | `"_blank"` |
-| rel | string | No | URL rel attribute. | `"alternate"` |
-| type | string | No | URL type attribute. | `"application/rss+xml"` |
-
-An example:
-
-```toml
-[[menu.main]]
- name = "Blog"
- weight = 1
- url = "posts/"
-[[menu.main]]
- name = "About"
- weight = 2
- url = "about/"
-```
-
-### CSP
-
-CSP stands for [Content Security Policy](https://developers.google.com/web/fundamentals/security/csp). These configurations are optional. To use them you will need to set all the following required parameters. See [here](https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources) for reference.
-
-| Configuration | Type | Required | Description | Example |
-| -------------- | ----------- | -------- | ----------- | ------------------------------- |
-| childsrc | string list | Yes | | `["'self'"]` |
-| fontsrc | string list | Yes | | `["'self'"]` |
-| formaction | string list | Yes | | `["'self'"]` |
-| framesrc | string list | Yes | | `["'self'"]` |
-| imgsrc | string list | Yes | | `["'self'"]` |
-| objectsrc | string list | Yes | | `["'self'"]` |
-| stylesrc | string list | Yes | | `["'self'"]` |
-| scriptsrc | string list | Yes | | `["'self'"]` |
-| connectsrc | string list | Yes | | `["'self'"]` |
-
-An example:
-
-```toml
-[params.csp]
- childsrc = ["'self'"]
- fontsrc = [
- "'self'",
- "https://fonts.gstatic.com",
- "https://cdn.jsdelivr.net/"
- ]
- formaction = ["'self'"]
- framesrc = ["'self'"]
- imgsrc = ["'self'"]
- objectsrc = ["'none'"]
- stylesrc = [
- "'self'",
- "'unsafe-inline'",
- "https://fonts.googleapis.com/",
- "https://cdn.jsdelivr.net/"
- ]
- scriptsrc = [
- "'self'",
- "'unsafe-inline'",
- "https://www.google-analytics.com"
- ]
- # connect-src directive – defines valid targets for XMLHttpRequest (AJAX), WebSockets or EventSource
- connectsrc = ["'self'"]
-```
-
-## Complete Example
-
-This is a complete configuration example with some recommended values.
-
-```toml
-baseurl = "http://www.example.com"
-title = "johndoe"
-theme = "hugo-coder"
-languagecode = "en"
-defaultcontentlanguage = "en"
-
-
-[pagination]
-pagerSize = 20
-
-[services]
-[services.disqus]
-shortname = "yourdiscussshortname"
-
-[markup.highlight]
-style = "github-dark"
-
-[params]
- author = "John Doe"
- info = "Full Stack DevOps and Magician"
- description = "John Doe's personal website"
- keywords = "blog,developer,personal"
- avatarurl = "images/avatar.jpg"
- #gravatar = "john.doe@example.com"
-
- faviconSVG = "/img/favicon.svg"
- favicon_32 = "/img/favicon-32x32.png"
- favicon_16 = "/img/favicon-16x16.png"
-
- since = 2019
-
- enableTwemoji = true
-
- colorScheme = "auto"
- hidecolorschemetoggle = false
-
- # customCSS = ["css/custom.css"]
- # customSCSS = ["scss/custom.scss"]
- # customJS = ["js/custom.js"]
-
-[taxonomies]
- category = "categories"
- series = "series"
- tag = "tags"
- author = "authors"
-
-# Social links
-[[params.social]]
- name = "Github"
- icon = "fa-brands fa-github fa-2x"
- weight = 1
- url = "https://github.com/johndoe/"
-[[params.social]]
- name = "Gitlab"
- icon = "fa-brands fa-gitlab fa-2x"
- weight = 2
- url = "https://gitlab.com/johndoe/"
-[[params.social]]
- name = "Twitter"
- icon = "fa-brands fa-x-twitter fa-2x"
- weight = 3
- url = "https://twitter.com/johndoe/"
-
-# Menu links
-[[menu.main]]
- name = "Blog"
- weight = 1
- url = "posts/"
-[[menu.main]]
- name = "About"
- weight = 2
- url = "about/"
-```
-
-## Front Matter
-
-Hugo documentation: https://gohugo.io/content-management/front-matter
-
-This theme includes one content type:
-
-* [Posts](#posts), useful to display blog posts
-
-### Posts
-
-These are the front matter variables used by `hugo-coder` theme.
-
-| Name | Type | Required | Description | Default | Example |
-| ---------------- | ------ | -------- | -------------------------------------------------- | ------- | ------------------------------------------------------------------------------- |
-| tags | list | No | Add tag(s) to this post. | | `["Hugo", "Go"]` |
-| categories | list | No | Add categorie(s) to this post. | | `["Hugo", "Go"]` |
-| series | list | No | Add series to this post (used by OpenGraph). | | `["Theme Demo"]` |
-| author | list | No | Add author to this post. | | `["John Doe"]` |
-| externalLink | string | No | Link to an external post. | | `"https://github.com/luizdepra/hugo-coder/wiki"` |
-| featuredImage | string | No | Link/path to add an image below post metadata. | | `"https://github.com/luizdepra/hugo-coder/blob/master/images/screenshot.png"` |
-| math | bool | No | If true, MathJax is enabled only for this post. | `false` | `true` or `false` |
-| katex | bool | No | If true, KaTeX is enabled only for this post. | `false` | `true` or `false` |
-| disableComments | bool | No | If true, comments are disabled. | `false` | `true` or `false` |
-| canonicalUrl | string | No | Link to override in | `false` | `"https://my-company.com/blog/my-blog-post-that-I-repost-without-hurtiong-seo"` |
-
-> "tags", "categories", "series" and "authors" are taxonomies defined in the `hugo.toml` file.
diff --git a/themes/hugo-coder/docs/contributing.md b/themes/hugo-coder/docs/contributing.md
deleted file mode 100644
index 00d7bdd..0000000
--- a/themes/hugo-coder/docs/contributing.md
+++ /dev/null
@@ -1 +0,0 @@
-WIP
diff --git a/themes/hugo-coder/docs/faq.md b/themes/hugo-coder/docs/faq.md
deleted file mode 100644
index 00d7bdd..0000000
--- a/themes/hugo-coder/docs/faq.md
+++ /dev/null
@@ -1 +0,0 @@
-WIP
diff --git a/themes/hugo-coder/docs/home.md b/themes/hugo-coder/docs/home.md
deleted file mode 100644
index 9267ad0..0000000
--- a/themes/hugo-coder/docs/home.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Welcome to the hugo-coder docs!
-
-## Basic Usage
-
-* [Quick Start](quick-start.md)
-* [Configurations](configurations.md)
-* [FAQ](faq.md)
-
-## Extra Guides
-
-* [Multilingual Mode](multilingual-mode.md)
-* [Comment System](comment-system.md)
-* [Analytics](analytics.md)
-
-## Maintainers & Developers
-
-* [Contributing](contributing.md)
-
-
diff --git a/themes/hugo-coder/docs/multilingual-mode.md b/themes/hugo-coder/docs/multilingual-mode.md
deleted file mode 100644
index 8750f11..0000000
--- a/themes/hugo-coder/docs/multilingual-mode.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# Multilingual-Mode
-
-* [Available Languages](#available-languages)
-* [Configure Languages](#configure-languages)
-* [Translation File Example](#translation-file-example)
-
-## Available Languages
-
-This theme supports the following languages:
-
-- Arabic
-- Bengali
-- Czech
-- German
-- English
-- Spanish
-- Finnish
-- French
-- Hebrew
-- Hindi
-- Hungarian
-- Italian
-- Japanese
-- Malay
-- Dutch
-- Polish
-- Brazilian Portuguese
-- Romanian
-- Russian
-- Swedish
-- Slovak
-- Turkish
-- Simplified Chinese
-- Taiwan Chinese
-- Urdu
-
-## Configure languages
-
-Go to [this Hugo documentation page](https://gohugo.io/content-management/multilingual/#configure-languages) to configure one or multiple languages for your website.
-
-## Translation File Example
-
-```toml
-[category]
-other = "category"
-
-[tag]
-other = "tag"
-
-[series]
-other = "series"
-
-[author]
-other = "author"
-
-[reading_time]
-one = "One-minute read"
-other = "{{ .Count }}-minute read"
-
-[page_not_found]
-other = "Page Not Found"
-
-[page_does_not_exist]
-other = "Sorry, this page does not exist."
-
-[head_back]
-other = "You can head back to homepage ."
-
-[powered_by]
-other = "Powered by"
-
-[see_also]
-other = "See also in"
-```
diff --git a/themes/hugo-coder/docs/quick-start.md b/themes/hugo-coder/docs/quick-start.md
deleted file mode 100644
index 9c9b98d..0000000
--- a/themes/hugo-coder/docs/quick-start.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# Quick Start
-
-To start using `hugo-coder`:
-
-1. Add the repository into your Hugo Project repository as a submodule, `git submodule add https://github.com/luizdepra/hugo-coder.git themes/coder`.
-2. Configure your `hugo.toml`. You can use [this minimal configuration](https://github.com/luizdepra/hugo-coder/blob/main/docs/configurations.md#complete-example) as a base. The [`hugo.toml`](https://github.com/luizdepra/hugo-coder/blob/master/exampleSite/hugo.toml) inside the [exampleSite](https://github.com/luizdepra/hugo-coder/tree/master/exampleSite) from the `exampleSite` is also a good reference.
-3. Build your site with `hugo serve` and see the result at `http://localhost:1313/`.
-
-If you just want to test this theme, go to [this page](https://themes.gohugo.io/themes/hugo-coder/).
-
-You can also clone or download it, then run these commands:
-
-```
-git clone https://github.com/luizdepra/hugo-coder.git
-
-cd hugo-coder
-
-make demo
-```
-
-You'll see the result at [http://localhost:1313/](http://localhost:1313/).
-
-> These last two methods don't use the same content directory, the first one leads to 404 pages for some pages. More info [here](https://github.com/gohugoio/hugoThemes#adding-a-theme-to-the-list).
diff --git a/themes/hugo-coder/exampleSite/content/about.md b/themes/hugo-coder/exampleSite/content/about.md
deleted file mode 100644
index b31bf1d..0000000
--- a/themes/hugo-coder/exampleSite/content/about.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-title = "About"
-description = "Hugo, the world's fastest framework for building websites"
-date = "2019-02-28"
-aliases = ["about-us", "about-hugo", "contact"]
-author = "Hugo Authors"
-+++
-
-Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
-
-Hugo makes use of a variety of open source projects including:
-
-* https://github.com/yuin/goldmark
-* https://github.com/alecthomas/chroma
-* https://github.com/muesli/smartcrop
-* https://github.com/spf13/cobra
-* https://github.com/spf13/viper
-
-Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
-
-Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
-
-Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
-
-Learn more and contribute on [GitHub](https://github.com/gohugoio).
diff --git a/themes/hugo-coder/exampleSite/content/about.pt-br.md b/themes/hugo-coder/exampleSite/content/about.pt-br.md
deleted file mode 100644
index fd76ad1..0000000
--- a/themes/hugo-coder/exampleSite/content/about.pt-br.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-title = "About"
-description = "Hugo, the world's fastest framework for building websites"
-date = "2019-02-28"
-aliases = ["about-us", "about-hugo", "contact"]
-author = "Hugo Authors"
-+++
-
-Escrito em Go, Hugo é um gerador de sites estáticos de código aberto disponível sobre a licença [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) O Hugo suporta TOML, YAML e JSON como arquivos de dados, Markdown e HTML como arquivos de conteúdo, e usa shortcodes para adicionar conteúdos ricos. Outras funcionalidades notaveis são taxonomias, modo multilingual, processamento de imagens, formatos de saída customizaveis, minificação de HTML/CSS/JS e suporte a fluxos SASS/SCSS.
-
-O Hugo faz o uso de vários projetos de código aberto incluíndo:
-
-* https://github.com/yuin/goldmark
-* https://github.com/alecthomas/chroma
-* https://github.com/muesli/smartcrop
-* https://github.com/spf13/cobra
-* https://github.com/spf13/viper
-
-O Hugo é ideal para blogs, sites corporativos, protfólio criativos, revistas online, aplicações de página única ou até sites com milhares de páginas.
-
-O Hugo é para pessoas que querem cuidar do seu próprio site sem se preocupar com a configuração ambientes complicados, dependências e bancos de dados.
-
-Sites contru;idos com Hugo são extremamente rápidos, seguros e podem ser implantados em qualquer lugar, incluíndo AWS, GitHub Pages, Heroku, Netlify e outros provedores de hospedagem.
-
-Saiba mais e contribua em [GitHub](https://github.com/gohugoio).
diff --git a/themes/hugo-coder/exampleSite/content/authors/hugo-authors/_index.md b/themes/hugo-coder/exampleSite/content/authors/hugo-authors/_index.md
deleted file mode 100644
index 80d4ea8..0000000
--- a/themes/hugo-coder/exampleSite/content/authors/hugo-authors/_index.md
+++ /dev/null
@@ -1,5 +0,0 @@
-+++
-draft = false
-date = 2023-01-05T01:15:29+01:00
-title = "Authors of Hugo"
-+++
diff --git a/themes/hugo-coder/exampleSite/content/authors/hugo-authors/_index.pt-br.md b/themes/hugo-coder/exampleSite/content/authors/hugo-authors/_index.pt-br.md
deleted file mode 100644
index 1c42b81..0000000
--- a/themes/hugo-coder/exampleSite/content/authors/hugo-authors/_index.pt-br.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-draft = false
-date = 2023-01-05T01:15:52+01:00
-title = "Autores de Hugo"
-url = "autores/autores-de-hugo"
-+++
diff --git a/themes/hugo-coder/exampleSite/content/categories/syntax/_index.pt-br.md b/themes/hugo-coder/exampleSite/content/categories/syntax/_index.pt-br.md
deleted file mode 100644
index 840c978..0000000
--- a/themes/hugo-coder/exampleSite/content/categories/syntax/_index.pt-br.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-draft = false
-date = 2023-01-04T23:21:06+01:00
-title = "sintaxe"
-url = "categoria/sintaxe"
-+++
diff --git a/themes/hugo-coder/exampleSite/content/contact.md b/themes/hugo-coder/exampleSite/content/contact.md
deleted file mode 100644
index 4bd8438..0000000
--- a/themes/hugo-coder/exampleSite/content/contact.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "Contact"
-slug = "contact"
-+++
-
-Follow me, @johndoe.
\ No newline at end of file
diff --git a/themes/hugo-coder/exampleSite/content/contact.pt-br.md b/themes/hugo-coder/exampleSite/content/contact.pt-br.md
deleted file mode 100644
index 241861c..0000000
--- a/themes/hugo-coder/exampleSite/content/contact.pt-br.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "Contato"
-slug = "contact"
-+++
-
-Me siga em @joaoninguem.
\ No newline at end of file
diff --git a/themes/hugo-coder/exampleSite/content/posts/emoji-support.md b/themes/hugo-coder/exampleSite/content/posts/emoji-support.md
deleted file mode 100644
index 0044247..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/emoji-support.md
+++ /dev/null
@@ -1,57 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "Emoji Support"
-date = "2023-07-07"
-description = "Guide to emoji usage in Hugo"
-tags = [
- "hugo",
- "markdown",
- "emoji",
-]
-categories = [
- "syntax",
- "theme demo",
-]
-series = ["Theme Demo"]
-+++
-
-Emoji can be enabled in a Hugo project in a number of ways.
-
-
-
-The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
-
-To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
-
-🙈 :see_no_evil: 🙉 :hear_no_evil: 🙊 :speak_no_evil:
-
-
-The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
-
----
-
-**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
-
-{{< highlight html >}}
-.emoji {
-font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
-}
-{{< /highlight >}}
-
-{{< css.inline >}}
-
-
-
-{{< /css.inline >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/emoji-support.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/emoji-support.pt-br.md
deleted file mode 100644
index 78b835a..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/emoji-support.pt-br.md
+++ /dev/null
@@ -1,57 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "Suporte a Emojis"
-date = "2023-07-07"
-description = "Um guia de utilização de emojis com Hugo"
-tags = [
- "hugo",
- "markdown",
- "emoji",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-+++
-
-Emojis podem ser ativados em um projeto Hugo de diversar formas.
-
-
-
-A função [`emojify`](https://gohugo.io/functions/emojify/) pode ser chamada diretamente nos templates ou com [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
-
-Para ativar os emojis globalmente, aplique `enableEmoji` com o valor `true` na [configuração](https://gohugo.io/getting-started/configuration/) do seu site e então você poderá adicionar códigos de emoji diretamente nos arquivos de conteúdo. Por exemplo:
-
-🙈 :see_no_evil: 🙉 :hear_no_evil: 🙊 :speak_no_evil:
-
-
-O [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) é uma referência útil para identificar códigos de emojis.
-
----
-
-**Nota:** Os passos anteriores ativam os caractéres e sequências de emoji do Padrão Unicode no Hugo, porém a renderização desses glifos depende do navegador e plataforma utilizada. Para escolher o estilo dos emojis você pode tanto usar um font de emoji de terceiros ou uma lista de fontes. Por exemplo:
-
-{{< highlight html >}}
-.emoji {
-font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
-}
-{{< /highlight >}}
-
-{{< css.inline >}}
-
-
-
-{{< /css.inline >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/external-post.md b/themes/hugo-coder/exampleSite/content/posts/external-post.md
deleted file mode 100644
index 92d6ed8..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/external-post.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-authors = ["Lone Coder"]
-date = "2023-07-06"
-title = "External Page: Hugo Coder Wiki"
-slug = "hugo-coder-wiki"
-tags = [
- "hugo"
-]
-externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
-+++
diff --git a/themes/hugo-coder/exampleSite/content/posts/external-post.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/external-post.pt-br.md
deleted file mode 100644
index ac4e875..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/external-post.pt-br.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-date = "2023-07-06"
-title = "Página Externa: Wiki Hugo Coder"
-slug = "hugo-coder-wiki"
-tags = [
- "hugo"
-]
-externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
-+++
diff --git a/themes/hugo-coder/exampleSite/content/posts/html-and-css-only-tabs.md b/themes/hugo-coder/exampleSite/content/posts/html-and-css-only-tabs.md
deleted file mode 100644
index 82673bb..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/html-and-css-only-tabs.md
+++ /dev/null
@@ -1,134 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "HTML and CSS only tabs"
-date = "2023-07-09"
-description = "Sample article showcasing shortcodes for HTML/CSS only tabs"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
- "shortcodes",
-]
-categories = [
- "theme demo",
- "syntax",
-]
-series = ["Theme Demo"]
-aliases = ["migrate-from-jekyl"]
-+++
-
-## Shortcodes
-
-The following content:
-
-```markdown
-{{* tabgroup */>}}
-{{* tab name="Hello" */>}}
-Hello World!
-{{* /tab */>}}
-
-{{* tab name="Goodbye" */>}}
-Goodbye Everybody!
-{{* /tab */>}}
-{{* /tabgroup */>}}
-```
-
-Will generate:
-
-{{< tabgroup >}}
-{{< tab name="Hello" >}}
-Hello World!
-{{< /tab >}}
-
-{{< tab name="Goodbye" >}}
-Goodbye Everybody!
-{{< /tab >}}
-{{< /tabgroup >}}
-
-## Right alignment
-
-You can also align the tabs to the right:
-
-```markdown
-{{* tabgroup align="right" */>}}
-{{* tab name="Hello" */>}}
-Hello World!
-{{* /tab */>}}
-
-{{* tab name="Goodbye" */>}}
-Goodbye Everybody!
-{{* /tab */>}}
-{{* /tabgroup */>}}
-```
-
-Giving you this look:
-
-{{< tabgroup align="right" >}}
-{{< tab name="Hello" >}}
-Hello World!
-{{< /tab >}}
-
-{{< tab name="Goodbye" >}}
-Goodbye Everybody!
-{{< /tab >}}
-{{< /tabgroup >}}
-
-## Markdown content
-
-Any valid markdown can be used inside the tab:
-
-````markdown
-{{* tabgroup align="right" style="code" */>}}
-{{* tab name="Ruby" */>}}
-
-```ruby
-puts 'Hello'
-```
-
-{{* /tab */>}}
-{{* tab name="Python" */>}}
-
-```python
-print('Hello')
-```
-
-{{* /tab */>}}
-{{* tab name="JavaScript" */>}}
-
-```js
-console.log("Hello");
-```
-
-{{* /tab */>}}
-{{* /tabgroup */>}}
-````
-
-And you get this lovely content:
-
-{{< tabgroup align="right" style="code" >}}
-{{< tab name="Ruby" >}}
-
-```ruby
-puts 'Hello'
-```
-
-{{< /tab >}}
-{{< tab name="Python" >}}
-
-```python
-print('Hello')
-```
-
-{{< /tab >}}
-{{< tab name="JavaScript" >}}
-
-```js
-console.log("Hello");
-```
-
-{{< /tab >}}
-{{< /tabgroup >}}
-
-In this case `style="code"` makes it look a little nicer for scenarios where
-your content is purely a code block.
diff --git a/themes/hugo-coder/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md
deleted file mode 100644
index 5f772c0..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md
+++ /dev/null
@@ -1,133 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "HTML and CSS only tabs"
-date = "2023-07-09"
-description = "Sample article showcasing shortcodes for HTML/CSS only tabs"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
- "shortcodes",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-aliases = ["migrate-from-jekyl"]
-+++
-
-## Shortcodes
-
-O seguinte conteúdo:
-
-```markdown
-{{* tabgroup */>}}
-{{* tab name="Hello" */>}}
-Hello World!
-{{* /tab */>}}
-
-{{* tab name="Goodbye" */>}}
-Goodbye Everybody!
-{{* /tab */>}}
-{{* /tabgroup */>}}
-```
-
-Irá gerar:
-
-{{< tabgroup >}}
-{{< tab name="Hello" >}}
-Hello World!
-{{< /tab >}}
-
-{{< tab name="Goodbye" >}}
-Goodbye Everybody!
-{{< /tab >}}
-{{< /tabgroup >}}
-
-## Alinhamento à direita
-
-Você também pode alinhas as tabs à direita:
-
-```markdown
-{{* tabgroup align="right" */>}}
-{{* tab name="Hello" */>}}
-Hello World!
-{{* /tab */>}}
-
-{{* tab name="Goodbye" */>}}
-Goodbye Everybody!
-{{* /tab */>}}
-{{* /tabgroup */>}}
-```
-
-Obtendo o seguinte resultado:
-
-{{< tabgroup align="right" >}}
-{{< tab name="Hello" >}}
-Hello World!
-{{< /tab >}}
-
-{{< tab name="Goodbye" >}}
-Goodbye Everybody!
-{{< /tab >}}
-{{< /tabgroup >}}
-
-## Conteúdo Markdown
-
-Qualquer conteúdo Markdown válido pode ser usado dentro das tabs:
-
-````markdown
-{{* tabgroup align="right" style="code" */>}}
-{{* tab name="Ruby" */>}}
-
-```ruby
-puts 'Hello'
-```
-
-{{* /tab */>}}
-{{* tab name="Python" */>}}
-
-```python
-print('Hello')
-```
-
-{{* /tab */>}}
-{{* tab name="JavaScript" */>}}
-
-```js
-console.log("Hello");
-```
-
-{{* /tab */>}}
-{{* /tabgroup */>}}
-````
-
-Assim você obterá o seguinte resultado:
-
-{{< tabgroup align="right" style="code" >}}
-{{< tab name="Ruby" >}}
-
-```ruby
-puts 'Hello'
-```
-
-{{< /tab >}}
-{{< tab name="Python" >}}
-
-```python
-print('Hello')
-```
-
-{{< /tab >}}
-{{< tab name="JavaScript" >}}
-
-```js
-console.log("Hello");
-```
-
-{{< /tab >}}
-{{< /tabgroup >}}
-
-Nesse exemplo, `style="code"` faz com que o resultado seja mais agradável quando conteúdo é puramente blocos de código.
diff --git a/themes/hugo-coder/exampleSite/content/posts/markdown-syntax.md b/themes/hugo-coder/exampleSite/content/posts/markdown-syntax.md
deleted file mode 100644
index 5d8385e..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/markdown-syntax.md
+++ /dev/null
@@ -1,168 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "Markdown Syntax Guide"
-date = "2023-07-13"
-description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
-]
-categories = [
- "theme demo",
- "syntax",
-]
-series = ["Theme Demo"]
-aliases = ["migrate-from-jekyl"]
-+++
-
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-
-
-
-## Headings
-
-The following HTML ``—`` elements represent six levels of section headings. `` is the highest section level while `` is the lowest.
-
-# H1
-
-## H2
-
-### H3
-
-#### H4
-
-##### H5
-
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Links
-
-This is a [internal link](/posts/emoji-support) to another page. [This one](https://www.gohugo.io) points to a external page nad will be open in a new tag.
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use _Markdown syntax_ within a blockquote.
-
-#### Blockquote with attribution
-
-> Don't communicate by sharing memory, share memory by communicating.
-> — Rob Pike[^1]
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box.
-
-| Name | Age |
-| ----- | --- |
-| Bob | 27 |
-| Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Italics | Bold | Code |
-| --------- | -------- | ------ |
-| _italics_ | **bold** | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-```html
-
-
-
-
- Example HTML5 Document
-
-
- Test
-
-
-```
-
-#### Code block indented with four spaces
-
-
-
-
-
- Example HTML5 Document
-
-
- Test
-
-
-
-#### Code block with Hugo's internal highlight shortcode
-
-{{< highlight html >}}
-
-
-
-
-
- Example HTML5 Document
-
-
- Test
-
-
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-- List item
-- Another item
-- And another item
-
-#### Nested list
-
-- Fruit
- - Apple
- - Orange
- - Banana
-- Dairy
- - Milk
- - Cheese
-
-#### Foot Notes
-
-Check it[^2] at the end[^3] of this text[^4].
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-GIF is a bitmap image format.
-
-H2 O
-
-Xn + Yn = Zn
-
-Press CTRL +ALT +Delete to end the session.
-
-Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-[^2]: A footnote.
-[^3]: Another one.
-[^4]: Cool, right?
diff --git a/themes/hugo-coder/exampleSite/content/posts/markdown-syntax.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/markdown-syntax.pt-br.md
deleted file mode 100644
index b385524..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/markdown-syntax.pt-br.md
+++ /dev/null
@@ -1,164 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "Guia de Sintaxe Markdown"
-date = "2023-07-13"
-description = "Artigo de exemplo mostrando a sintaxe básica Markdown e a formatação de elementos HTML."
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-aliases = ["migrate-from-jekyl"]
-+++
-
-Esse artigo é um exemplo básico para mostrar a sintaxe Markdown que é usada nos arquivos de conteúdo do Hugo. Ele também mostrar como cada elemento básico HTML é estilizado com CSS com os temas do Hugo.
-
-
-
-## Cabeçalhos
-
-Os seguintes elementos HTML ``—`` representam 6 níveis de cabeçalhos de seção. `` é para seções de nível mais alto enquanto `` é para o nível mais baixo.
-
-# H1
-
-## H2
-
-### H3
-
-#### H4
-
-##### H5
-
-###### H6
-
-## Parágrafo
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## Citações
-
-O elemento de citações representa um conteúdo citado de outra origem, opcionalmente com atribuição que deve estar contida em um elemento `footer` ou `cite`, e também opcionalmente com informações in-line como anotações e abreviações.
-
-#### Citações sem atribuição
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use _Markdown syntax_ within a blockquote.
-
-#### Citações com atribuição
-
-> Não comunique compartilhando memória, compartilhe memória comunicando.
-> — Rob Pike[^1]
-
-## Tabelas
-
-Tabelas não fazem parte do cerne da especificação do Markdown, mas o Hugo oferece suporte a elas.
-
-| Nome | Idade |
-| ----- | ----- |
-| Bob | 27 |
-| Alice | 23 |
-
-#### Tabelas com Markdown inline
-
-| Italics | Bold | Code |
-| --------- | -------- | ------ |
-| _italics_ | **bold** | `code` |
-
-## Blocos de código
-
-#### Blocos de código com crase
-
-```html
-
-
-
-
- Exemplo de Documento HTML5
-
-
- Teste
-
-
-```
-
-#### Blocos de código com quatro espaços
-
-
-
-
-
- Exemplo de Documento HTML5
-
-
- Teste
-
-
-
-#### Blocos de código com highlight shortcode interno do Hugo
-
-{{< highlight html >}}
-
-
-
-
-
- Exemplo de Documento HTML5
-
-
- Teste
-
-
-{{< /highlight >}}
-
-## Tipos de Listas
-
-#### Listas Ordenada
-
-1. Primeiro item
-2. Segundo item
-3. Terceiro item
-
-#### Listas não Ordenada
-
-- Um item
-- Outro item
-- Algum outro item
-
-#### Listas aninhadas
-
-- Frutas
- - Maçã
- - Laranja
- - Banana
-- Laticínios
- - Leite
- - Queijo
-
-#### Notas de Rodapé
-
-Verifique[^2] no final[^3] desse texto[^4].
-
-## Outros Elementos — abbr, sub, sup, kbd, mark
-
-GIF é um formato de imagem bitmap.
-
-H2 O
-
-Xn + Yn = Zn
-
-Aperte CTRL +ALT +Delete para fechar.
-
-A maioria das salamandras são noturnas e caçam insetos, vermes, e outras criaturas pequenas.
-
-[^1]: A citação acima foi extraída da [apresentação](https://www.youtube.com/watch?v=PAAkCSZUG1c) do Rob Pike durante a Gopherfest, de 18 de Novembro de 2015.
-[^2]: Uma nota de rodapé.
-[^3]: Outra aqui.
-[^4]: Legal, né?
diff --git a/themes/hugo-coder/exampleSite/content/posts/math-typesetting.md b/themes/hugo-coder/exampleSite/content/posts/math-typesetting.md
deleted file mode 100644
index e4dca41..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/math-typesetting.md
+++ /dev/null
@@ -1,64 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "Math Typesetting"
-date = "2023-07-10"
-description = "A brief guide to setup KaTeX"
-math = true
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
-]
-categories = [
- "theme demo",
- "syntax",
-]
-series = ["Theme Demo"]
-+++
-
-Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
-
-
-
-In this example we will be using [KaTeX](https://katex.org/)
-
-- Create a partial under `/layouts/partials/math.html`
-- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
-- Include the partial in your templates like so:
-
-```bash
-{{ if or .Params.math .Site.Params.math }}
-{{ partial "math.html" . }}
-{{ end }}
-```
-
-- To enable KaTeX globally set the parameter `math` to `true` in a project's configuration
-- To enable KaTeX on a per page basis include the parameter `math: true` in content files
-
-**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
-
-{{< math.inline >}}
-{{ if or .Page.Params.math .Site.Params.math }}
-
-
-
-
-
-{{ end }}
-{{ math.inline >}}
-
-### Examples
-
-{{< math.inline >}}
-
-
-Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
-
-{{ math.inline >}}
-
-Block math:
-
-$$
- \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
-$$
diff --git a/themes/hugo-coder/exampleSite/content/posts/math-typesetting.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/math-typesetting.pt-br.md
deleted file mode 100644
index 63cf7fd..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/math-typesetting.pt-br.md
+++ /dev/null
@@ -1,64 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "Configuração de Equações Matemáticas"
-date = "2023-07-10"
-description = "Um guia rápido sobre utilizar KaTeX"
-math ="true"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-+++
-
-Em um projeto Hugo as Notações Matemáticas podem ser usadas com a ajuda de bibliotecas JavaScript de terceiros.
-
-
-
-Nesse exemplo usaremos o [KaTeX](https://katex.org/).
-
-- Crie um partial template em `/layouts/partials/math.html`
-- Dentro, utilize o [Auto-render Extension](https://katex.org/docs/autorender.html) ou sirva os scripts localmente.
-- Inclua o partial nos seus templates da seguinte forma:
-
-```bash
-{{ if or .Params.math .Site.Params.math }}
-{{ partial "math.html" . }}
-{{ end }}
-```
-
-- Para ativar o KaTeX globalmente defina o parâmetro `math` como `true` na confgiuração do projeto
-- Para ativar o KaTeX em páginas específicas inclua o parâmetro `math: true` nos arquivos de conteúdo
-
-**Nota:** Use a referência online [Supported TeX Functions](https://katex.org/docs/supported.html) como base para criar notações matemáticas.
-
-{{< math.inline >}}
-{{ if or .Page.Params.math .Site.Params.math }}
-
-
-
-
-
-{{ end }}
-{{ math.inline >}}
-
-### Examples
-
-{{< math.inline >}}
-
-
-Notação inline: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
-
-{{ math.inline >}}
-
-Notação em bloco:
-
-$$
- \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
-$$
diff --git a/themes/hugo-coder/exampleSite/content/posts/mermaid-support.md b/themes/hugo-coder/exampleSite/content/posts/mermaid-support.md
deleted file mode 100644
index 1918bfd..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/mermaid-support.md
+++ /dev/null
@@ -1,43 +0,0 @@
-+++
-authors = ["Lone Coder"]
-date = "2023-07-08"
-title = "Mermaid JS support"
-description = "The post demonstrates Mermaid JS support"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
-]
-categories = [
- "theme demo",
- "syntax",
-]
-series = ["Theme Demo"]
-+++
-
-If you want to use [Mermaid-JS](https://mermaid-js.github.io/mermaid/#/) on your website.
-Provide `mermaid` as [Shortcode](https://gohugo.io/content-management/shortcodes/#readout) in your markdown file.
-
-{{}}
-flowchart LR
-
- A --> B
-
- B --> C
-
- C --> D
-
- D --> B
-
-{{ }}
-
-{{}}
-sequenceDiagram
-participant Alice
-participant Bob
-Alice->>Bob: Hi Bob
-Bob->>Alice: Hi Alice
-{{ }}
-
-Find more example on [Mermaid-JS](https://mermaid-js.github.io/mermaid/#/) website.
diff --git a/themes/hugo-coder/exampleSite/content/posts/mermaid-support.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/mermaid-support.pt-br.md
deleted file mode 100644
index b42755b..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/mermaid-support.pt-br.md
+++ /dev/null
@@ -1,43 +0,0 @@
-+++
-authors = ["Lone Coder"]
-date = "2023-07-08"
-title = "Mermaid JS support"
-description = "The post demonstrates Mermaid JS support"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-+++
-
-Se quiser usar o [Mermaid-JS](https://mermaid-js.github.io/mermaid/#/) em sua página.
-Use o [shortcode](https://gohugo.io/content-management/shortcodes/#readout) `mermaid` em seus conteúdos Markdown.
-
-{{}}
-flowchart LR
-
- A --> B
-
- B --> C
-
- C --> D
-
- D --> B
-
-{{ }}
-
-{{}}
-sequenceDiagram
-participant Alice
-participant Bob
-Alice->>Bob: Hi Bob
-Bob->>Alice: Hi Alice
-{{ }}
-
-Entro mais exemplos na página do [Mermaid-JS](https://mermaid-js.github.io/mermaid/#/).
diff --git a/themes/hugo-coder/exampleSite/content/posts/more-rich-content.md b/themes/hugo-coder/exampleSite/content/posts/more-rich-content.md
deleted file mode 100644
index 5eb656c..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/more-rich-content.md
+++ /dev/null
@@ -1,52 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "More Rich Content"
-date = "2023-07-11"
-description = "A brief description about Hugo Coder's Custom Shortcodes"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
- "shortcodes",
-]
-categories = [
- "theme demo",
- "syntax",
-]
-series = ["Theme Demo"]
-+++
-
-Hugo Coder provides some Custom Shortcodes.
-
-##
-
-## Shortcodes Avisos
-
-{{< notice note >}}
-One note here.
-{{< /notice >}}
-
-{{< notice tip >}}
-I'm giving a tip about something.
-{{< /notice >}}
-
-{{< notice example >}}
-This is an example.
-{{< /notice >}}
-
-{{< notice question >}}
-Is this a question?
-{{< /notice >}}
-
-{{< notice info >}}
-Notice that this box contain information.
-{{< /notice >}}
-
-{{< notice warning >}}
-This is the last warning!
-{{< /notice >}}
-
-{{< notice error >}}
-There is an error in your code.
-{{< /notice >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/more-rich-content.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/more-rich-content.pt-br.md
deleted file mode 100644
index 6e00fe4..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/more-rich-content.pt-br.md
+++ /dev/null
@@ -1,52 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "Mais Conteúdo Rico"
-date = "2023-07-11"
-description = "Uma breve descrição sobre Shortcodes customizados do Hugo Coder"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
- "shortcodes",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-+++
-
-O Hugo Coder proporciona alguns Shortcodes Customizados.
-
-##
-
-## Shortcodes Avisos
-
-{{< notice note >}}
-Uma nota aqui.
-{{< /notice >}}
-
-{{< notice tip >}}
-Estou lhe dando uma dica.
-{{< /notice >}}
-
-{{< notice example >}}
-Isso é um exemplo.
-{{< /notice >}}
-
-{{< notice question >}}
-Isso é um pergunta?
-{{< /notice >}}
-
-{{< notice info >}}
-Note que essa caixa contém informações.
-{{< /notice >}}
-
-{{< notice warning >}}
-Este é o último aviso!
-{{< /notice >}}
-
-{{< notice error >}}
-Há um erro no seu código.
-{{< /notice >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/placeholder-text.md b/themes/hugo-coder/exampleSite/content/posts/placeholder-text.md
deleted file mode 100644
index 16fb65a..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/placeholder-text.md
+++ /dev/null
@@ -1,47 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "Placeholder Text"
-date = "2023-07-05"
-description = "Lorem Ipsum Dolor Si Amet"
-tags = [
- "markdown",
- "text",
-]
-+++
-
-Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
-
-1. Exierant elisi ambit vivere dedere
-2. Duce pollice
-3. Eris modo
-4. Spargitque ferrea quos palude
-
-Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
-
-1. Comas hunc haec pietate fetum procerum dixit
-2. Post torum vates letum Tiresia
-3. Flumen querellas
-4. Arcanaque montibus omnes
-5. Quidem et
-
-# Vagus elidunt
-
-
-
-[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
-
-## Mane refeci capiebant unda mulcebat
-
-Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
-
-Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
-
-Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, _oculos nomen_ non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
-
-{{< css.inline >}}
-
-
-
-{{< /css.inline >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/placeholder-text.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/placeholder-text.pt-br.md
deleted file mode 100644
index b3ccf25..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/placeholder-text.pt-br.md
+++ /dev/null
@@ -1,47 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "Texto de Exemplo"
-date = "2023-07-05"
-description = "Lorem Ipsum Dolor Si Amet"
-tags = [
- "markdown",
- "text",
-]
-+++
-
-Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
-
-1. Exierant elisi ambit vivere dedere
-2. Duce pollice
-3. Eris modo
-4. Spargitque ferrea quos palude
-
-Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
-
-1. Comas hunc haec pietate fetum procerum dixit
-2. Post torum vates letum Tiresia
-3. Flumen querellas
-4. Arcanaque montibus omnes
-5. Quidem et
-
-# Vagus elidunt
-
-
-
-[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
-
-## Mane refeci capiebant unda mulcebat
-
-Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
-
-Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
-
-Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, _oculos nomen_ non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
-
-{{< css.inline >}}
-
-
-
-{{< /css.inline >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/rich-content.md b/themes/hugo-coder/exampleSite/content/posts/rich-content.md
deleted file mode 100644
index bf6d695..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/rich-content.md
+++ /dev/null
@@ -1,42 +0,0 @@
-+++
-authors = ["Lone Coder"]
-title = "Rich Content"
-date = "2023-07-12"
-description = "A brief description of Hugo Shortcodes"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
- "shortcodes",
-]
-categories = [
- "theme demo",
- "syntax",
-]
-series = ["Theme Demo"]
-+++
-
-Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
-
-##
-
-## YouTube Privacy Enhanced Shortcode
-
-{{< youtube ZJthWmvUzzc >}}
-
-
-
----
-
-## Twitter Shortcode
-
-{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}}
-
-
-
----
-
-## Vimeo Simple Shortcode
-
-{{< vimeo_simple 48912912 >}}
diff --git a/themes/hugo-coder/exampleSite/content/posts/rich-content.pt-br.md b/themes/hugo-coder/exampleSite/content/posts/rich-content.pt-br.md
deleted file mode 100644
index 61b875d..0000000
--- a/themes/hugo-coder/exampleSite/content/posts/rich-content.pt-br.md
+++ /dev/null
@@ -1,42 +0,0 @@
-+++
-authors = ["Programador Solitário"]
-title = "Conteúdo Rico"
-date = "2023-07-12"
-description = "Uma breve descrição sobre Shortcodes do Hugo"
-tags = [
- "hugo",
- "markdown",
- "css",
- "html",
- "shortcodes",
-]
-categories = [
- "sintaxe",
- "demonstração do tema",
-]
-series = ["Demonstração do Tema"]
-+++
-
-O Hugo vem com vários [Shortcodes Internos](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) para conteúdo rico, assim como uma [Configuração de Privacidade](https://gohugo.io/about/hugo-and-gdpr/) e uma gama de Shortcodes simples que permitem embutir versões estáticas e sem JS de várias de redes sociais.
-
-##
-
-## Shortcode do YouTube com privacidade melhorada
-
-{{< youtube ZJthWmvUzzc >}}
-
-
-
----
-
-## Shortcode do Twitter
-
-{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}}
-
-
-
----
-
-## Shortcode simples do Vimeo
-
-{{< vimeo_simple 48912912 >}}
diff --git a/themes/hugo-coder/exampleSite/content/projects.md b/themes/hugo-coder/exampleSite/content/projects.md
deleted file mode 100644
index 6a7fd85..0000000
--- a/themes/hugo-coder/exampleSite/content/projects.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "Projects"
-slug = "projects"
-+++
-
-Nothing to see here... Move along!
\ No newline at end of file
diff --git a/themes/hugo-coder/exampleSite/content/projects.pt-br.md b/themes/hugo-coder/exampleSite/content/projects.pt-br.md
deleted file mode 100644
index 6494066..0000000
--- a/themes/hugo-coder/exampleSite/content/projects.pt-br.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "Projetos"
-slug = "projects"
-+++
-
-Nada para ver aqui.. Circulando!
diff --git a/themes/hugo-coder/exampleSite/content/tags/shortcodes/_index.pt-br.md b/themes/hugo-coder/exampleSite/content/tags/shortcodes/_index.pt-br.md
deleted file mode 100644
index 8ceb230..0000000
--- a/themes/hugo-coder/exampleSite/content/tags/shortcodes/_index.pt-br.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: "Códigos curtos"
-date: 2023-01-04T11:51:36+01:00
-draft: false
----
diff --git a/themes/hugo-coder/exampleSite/hugo.toml b/themes/hugo-coder/exampleSite/hugo.toml
deleted file mode 100644
index a8e6385..0000000
--- a/themes/hugo-coder/exampleSite/hugo.toml
+++ /dev/null
@@ -1,237 +0,0 @@
-baseURL = "http://www.example.com"
-title = "johndoe"
-theme = "hugo-coder"
-languageCode = "en"
-defaultContentLanguage = "en"
-enableEmoji = true
-
-[pagination]
-pagerSize = 6
-
-[services]
-[services.disqus]
-# Enable Disqus comments
-# shortname = "yourdiscussshortname"
-
-[markup]
-[markup.highlight]
-noClasses = false
-
-[markup.goldmark]
-[markup.goldmark.renderer]
-unsafe = true
-
-[params]
-author = "John Doe"
-# license = 'CC BY-SA-4.0 '
-description = "John Doe's personal website"
-keywords = "blog,developer,personal"
-info = ["Full Stack DevOps", "Magician"]
-avatarURL = "images/avatar.jpg"
-#gravatar = "john.doe@example.com"
-dateFormat = "January 2, 2006"
-since = 2019
-# Git Commit in Footer, uncomment the line below to enable it
-commit = "https://github.com/luizdepra/hugo-coder/tree/"
-# Right To Left, shift content direction for languages such as Arabic
-rtl = false
-# Specify light/dark colorscheme
-# Supported values:
-# "auto" (use preference set by browser)
-# "dark" (dark background, light foreground)
-# "light" (light background, dark foreground) (default)
-colorScheme = "auto"
-# Hide the toggle button, along with the associated vertical divider
-hideColorSchemeToggle = false
-# Series see also post count
-maxSeeAlsoItems = 5
-# Custom CSS
-customCSS = []
-# Custom SCSS, file path is relative to Hugo's asset folder (default: {your project root}/assets)
-customSCSS = []
-
-# Custom JS
-customJS = []
-
-# Custom remote JS files
-customRemoteJS = []
-
-# If you want to use fathom(https://usefathom.com) for analytics, add this section
-# [params.fathomAnalytics]
-# siteID = "ABCDE"
-# serverURL = "analytics.example.com" # Default value is cdn.usefathom.com, overwrite this if you are self-hosting
-
-# If you want to use plausible(https://plausible.io) for analytics, add this section
-# [params.plausibleAnalytics]
-# domain = "example.com"
-# serverURL = "analytics.example.com" # Default value is plausible.io, overwrite this if you are self-hosting or using a custom domain
-# outboundLinksTracking = true
-# fileDownloadsTracking = true
-
-# If you want to use goatcounter(https://goatcounter.com) for analytics, add this section
-# [params.goatCounter]
-# code = "code"
-
-# If you want to use Cloudflare Web Analytics(https://cloudflare.com) for analytics, add this section
-# [params.cloudflare]
-# token = "token"
-
-# If you want to use Counter.dev(https://counter.dev) for analytics, add this section
-# [params.counterdev]
-# id = "data-id"
-
-# If you want to use Matomo(https://matomo.org) for analytics, add this section
-# [params.matomo]
-# siteID = "ABCDE" # Default value is "1", overwrite this if you are cloud-hosting
-# serverURL = "analytics.example.com" # For cloud-hosting, use provided URL, e.g. example.matomo.cloud
-
-# If you want to use Google Tag Manager(https://analytics.google.com/) for analytics, add this section
-# [params.googleTagManager]
-# id = "gid"
-
-# If you want to use Yandex Metrika(https://metrika.yandex.ru) for analytics, add this section
-# [params.yandexMetrika]
-# id = "gid"
-
-# If you want to use Application Insights(https://azure.com/) for analytics, add this section
-# [params.applicationInsights]
-# connectionString = "connectionString"
-
-# If you want to use microanalytics.io for analytics, add this section
-# [params.microAnalytics]
-# id = "ABCDE"
-# dnt = "false" # respect DNT tracker, "true" by default
-
-# If you want to use Pirsch(https://pirsch.io) for analytics, add this section
-# [params.pirsch]
-# code = "ABCDE"
-
-# If you want to use Umami(https://umami.is) for analytics, add this section
-# [params.umami]
-# siteID = "ABCDE"
-# scriptURL = "analytics.REGION.umami.is/SCRIPTNAME.js"
-
-# If you want to use One Dollars Stats(https://onedollarstats.com/analytics) for analytics, add this section
-# [params.onedollarstats]
-# id = "data-site-id"
-
-# If you want to implement a Content-Security-Policy, add this section
-# [params.csp]
-# childsrc = ["'self'"]
-# fontsrc = ["'self'", "https://fonts.gstatic.com", "https://cdn.jsdelivr.net/"]
-# formaction = ["'self'"]
-# framesrc = ["'self'", "https://www.youtube.com"]
-# imgsrc = ["'self'"]
-# objectsrc = ["'none'"]
-# stylesrc = [
-# "'self'",
-# "'unsafe-inline'",
-# "https://fonts.googleapis.com/",
-# "https://cdn.jsdelivr.net/",
-# ]
-# scriptsrc = [
-# "'self'",
-# "'unsafe-inline'",
-# "https://www.google-analytics.com",
-# "https://cdn.jsdelivr.net/",
-# ]
-# prefetchsrc = ["'self'"]
-# # connect-src directive – defines valid targets for to XMLHttpRequest (AJAX), WebSockets or EventSource
-# connectsrc = ["'self'", "https://www.google-analytics.com"]
-
-[taxonomies]
-category = "categories"
-series = "series"
-tag = "tags"
-author = "authors"
-
-[[params.social]]
-name = "Github"
-icon = "fa-brands fa-github fa-2x"
-weight = 1
-url = "https://github.com/johndoe/"
-
-[[params.social]]
-name = "Gitlab"
-icon = "fa-brands fa-gitlab fa-2x"
-weight = 2
-url = "https://gitlab.com/johndoe/"
-
-[[params.social]]
-name = "Twitter"
-icon = "fa-brands fa-x-twitter fa-2x"
-weight = 3
-url = "https://twitter.com/johndoe/"
-
-[[params.social]]
-name = "LinkedIn"
-icon = "fa-brands fa-linkedin fa-2x"
-weight = 4
-url = "https://www.linkedin.com/in/johndoe/"
-
-[[params.social]]
-name = "Medium"
-icon = "fa-brands fa-medium fa-2x"
-weight = 5
-url = "https://medium.com/@johndoe"
-
-[[params.social]]
-name = "RSS"
-icon = "fa-solid fa-rss fa-2x"
-weight = 6
-url = "https://myhugosite.com/index.xml"
-rel = "alternate"
-type = "application/rss+xml"
-
-[languages.en]
-languageName = ":uk:"
-
-[[languages.en.menu.main]]
-name = "About"
-weight = 1
-url = "about/"
-
-[[languages.en.menu.main]]
-name = "Blog"
-weight = 2
-url = "posts/"
-
-[[languages.en.menu.main]]
-name = "Projects"
-weight = 3
-url = "projects/"
-
-[[languages.en.menu.main]]
-name = "Contact me"
-weight = 5
-url = "contact/"
-
-[languages.pt-br]
-languageName = ":brazil:"
-title = "João Ninguém"
-
-[languages.pt-br.params]
-author = "João Ninguém"
-info = "Full Stack DevOps e Mágico"
-description = "Sítio pessoal de João Ninguém"
-keywords = "blog,desenvolvedor,pessoal"
-
-[[languages.pt-br.menu.main]]
-name = "Sobre"
-weight = 1
-url = "about/"
-
-[[languages.pt-br.menu.main]]
-name = "Blog"
-weight = 2
-url = "posts/"
-
-[[languages.pt-br.menu.main]]
-name = "Projetos"
-weight = 3
-url = "projects/"
-
-[[languages.pt-br.menu.main]]
-name = "Contato"
-weight = 5
-url = "contact/"
diff --git a/themes/hugo-coder/exampleSite/layouts/.gitkeep b/themes/hugo-coder/exampleSite/layouts/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/themes/hugo-coder/exampleSite/static/images/N90.jpg b/themes/hugo-coder/exampleSite/static/images/N90.jpg
deleted file mode 100644
index 7d303b2..0000000
Binary files a/themes/hugo-coder/exampleSite/static/images/N90.jpg and /dev/null differ
diff --git a/themes/hugo-coder/exampleSite/static/images/apple-touch-icon.png b/themes/hugo-coder/exampleSite/static/images/apple-touch-icon.png
deleted file mode 100644
index 12da374..0000000
Binary files a/themes/hugo-coder/exampleSite/static/images/apple-touch-icon.png and /dev/null differ
diff --git a/themes/hugo-coder/exampleSite/static/images/avatar.jpg b/themes/hugo-coder/exampleSite/static/images/avatar.jpg
deleted file mode 100644
index 0431831..0000000
Binary files a/themes/hugo-coder/exampleSite/static/images/avatar.jpg and /dev/null differ
diff --git a/themes/hugo-coder/exampleSite/static/images/favicon-16x16.png b/themes/hugo-coder/exampleSite/static/images/favicon-16x16.png
deleted file mode 100644
index c0ce306..0000000
Binary files a/themes/hugo-coder/exampleSite/static/images/favicon-16x16.png and /dev/null differ
diff --git a/themes/hugo-coder/exampleSite/static/images/favicon-32x32.png b/themes/hugo-coder/exampleSite/static/images/favicon-32x32.png
deleted file mode 100644
index f2f0316..0000000
Binary files a/themes/hugo-coder/exampleSite/static/images/favicon-32x32.png and /dev/null differ
diff --git a/themes/hugo-coder/exampleSite/static/images/favicon.svg b/themes/hugo-coder/exampleSite/static/images/favicon.svg
deleted file mode 100644
index 432b43c..0000000
--- a/themes/hugo-coder/exampleSite/static/images/favicon.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/themes/hugo-coder/go.mod b/themes/hugo-coder/go.mod
deleted file mode 100644
index 9b2ac45..0000000
--- a/themes/hugo-coder/go.mod
+++ /dev/null
@@ -1,3 +0,0 @@
-module github.com/luizdepra/hugo-coder
-
-go 1.16
diff --git a/themes/hugo-coder/hugo.toml b/themes/hugo-coder/hugo.toml
deleted file mode 100644
index 0c39f53..0000000
--- a/themes/hugo-coder/hugo.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-baseURL = "https://example.com/"
-
-[module]
-[module.hugoVersion]
-min = "0.124.0"
diff --git a/themes/hugo-coder/i18n/ar.toml b/themes/hugo-coder/i18n/ar.toml
deleted file mode 100644
index 9de2101..0000000
--- a/themes/hugo-coder/i18n/ar.toml
+++ /dev/null
@@ -1,63 +0,0 @@
-[categories]
-one = "فئة"
-other = "categories"
-
-[tags]
-one = "وَسم"
-other = "tags"
-
-[series]
-one = "سلسلة"
-other = "series"
-
-[authors]
-one = "الكاتب"
-other = "authors"
-
-[posts]
-other = "المنشورات"
-
-[reading_time]
-other = "تستغرق {{ .Count }} د"
-
-[page_not_found]
-other = "الصفحة غير موجودة"
-
-[page_does_not_exist]
-other = "هذه الصفحة غير موجودة"
-
-[head_back]
-other = "بإمكانك العودة إلى homepage ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "بواسطة"
-
-[see_also]
-other = "انظر أيضاً"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/bn.toml b/themes/hugo-coder/i18n/bn.toml
deleted file mode 100644
index d5b2dd8..0000000
--- a/themes/hugo-coder/i18n/bn.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "বিভাগ"
-other = "বিভাগসমূহ"
-
-[tags]
-one = "ট্যাগ"
-other = "ট্যাগসমূহ"
-
-[series]
-one = "সিরিজ"
-other = "সিরিজ"
-
-[authors]
-one = "লেখক"
-other = "লেখকসমূহ"
-
-[posts]
-other = "সব পোস্ট"
-
-[reading_time]
-one = "পড়তে এক মিনিট লাগবে"
-other = "পড়তে {{ .Count }} মিনিট লাগবে"
-
-[page_not_found]
-other = "পাতাটি পাওয়া যায় নি"
-
-[page_does_not_exist]
-other = "দুঃখিত, কাঙ্ক্ষিত পাতাটির অস্তিত্ব নেই"
-
-[head_back]
-other = "আপনি নীড়পাতায় ফিরে যেতে পারেন"
-
-[licensed_under]
-other = "লাইসেন্স:"
-
-[powered_by]
-other = "চালনা:"
-
-[see_also]
-other = "আরও দেখুন"
-
-[note]
-other = "নোট"
-
-[tip]
-other = "টিপ"
-
-[example]
-other = "উদাহরণ"
-
-[question]
-other = "প্রশ্ন"
-
-[info]
-other = "তথ্য"
-
-[warning]
-other = "নির্দেশ"
-
-[error]
-other = "ত্রুটি"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/ca.toml b/themes/hugo-coder/i18n/ca.toml
deleted file mode 100644
index bf1d1e1..0000000
--- a/themes/hugo-coder/i18n/ca.toml
+++ /dev/null
@@ -1,65 +0,0 @@
-[categories]
-one = "categoria"
-other = "categories"
-
-[tags]
-one = "etiqueta"
-other = "etiquetes"
-
-[series]
-one = "sèrie"
-other = "sèrie"
-
-[authors]
-one= "autor"
-other = "autors"
-
-[posts]
-other = "entrades"
-
-[reading_time]
-one = "Lectura d'un minut"
-other = "Lectura de {{ .Count }} minuts"
-
-[page_not_found]
-other = "Pàgina no trobada"
-
-[page_does_not_exist]
-other = "Ho sentim, aquesta pàgina no existeix."
-
-[head_back]
-other = "Podeu tornar a la pàgina d'inici ."
-
-[licensed_under]
-other = "Sota llicència de"
-
-[powered_by]
-other = "Fet anar per"
-
-[see_also]
-other = "Veure també a"
-
-[note]
-other = "nota"
-
-[tip]
-other = "propina"
-
-[example]
-other = "exemple"
-
-[question]
-other = "pregunta"
-
-[info]
-other = "informació"
-
-[warning]
-other = "avís"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Enllaç a l'encapçalament"
-
diff --git a/themes/hugo-coder/i18n/cs.toml b/themes/hugo-coder/i18n/cs.toml
deleted file mode 100644
index 9304786..0000000
--- a/themes/hugo-coder/i18n/cs.toml
+++ /dev/null
@@ -1,63 +0,0 @@
-[categories]
-one = "kategorie"
-other = "categories"
-
-[tags]
-one = "tag"
-other = "tags"
-
-[series]
-one = "série"
-other = "series"
-
-[authors]
-one = "author"
-other = "authors"
-
-[posts]
-other = "posts"
-
-[reading_time]
-other = "Délka čtení: {{ .Count }}"
-
-[page_not_found]
-other = "Stránka nenalezena"
-
-[page_does_not_exist]
-other = "Omlouváme se, stránka nebyla nalezena."
-
-[head_back]
-other = "Můžete se vrátit na homepage ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Stránka používá"
-
-[see_also]
-other = "Podívejte se také na"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/de.toml b/themes/hugo-coder/i18n/de.toml
deleted file mode 100644
index adbc635..0000000
--- a/themes/hugo-coder/i18n/de.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "Kategorie"
-other = "Kategorien"
-
-[tags]
-one = "Tag"
-other = "Tags"
-
-[series]
-one = "Serie"
-other = "Serien"
-
-[authors]
-one = "Autor"
-other = "Autoren"
-
-[posts]
-other = "Beiträge"
-
-[reading_time]
-one = "Eine Minute Lesezeit"
-other = "{{ .Count }} Minuten Lesezeit"
-
-[page_not_found]
-other = "Seite nicht gefunden"
-
-[page_does_not_exist]
-other = "Tut mir leid, die Seite existiert leider nicht."
-
-[head_back]
-other = "Du kannst hier zurück zur Startseite ."
-
-[licensed_under]
-other = "Lizenziert unter"
-
-[powered_by]
-other = "Gestaltet mit"
-
-[see_also]
-other = "Siehe auch in"
-
-[note]
-other = "Bemerkung"
-
-[tip]
-other = "Tipp"
-
-[example]
-other = "Beispiel"
-
-[question]
-other = "Frage"
-
-[info]
-other = "Info"
-
-[warning]
-other = "Warnung"
-
-[error]
-other = "Fehler"
-
-[link_to_heading]
-other = "Link zu Überschrift"
diff --git a/themes/hugo-coder/i18n/en.toml b/themes/hugo-coder/i18n/en.toml
deleted file mode 100644
index 633a206..0000000
--- a/themes/hugo-coder/i18n/en.toml
+++ /dev/null
@@ -1,67 +0,0 @@
-[categories]
-one = "category"
-other = "categories"
-
-[tags]
-one = "tag"
-other = "tags"
-
-[series]
-one = "series"
-other = "series"
-
-[authors]
-one = "author"
-other = "authors"
-
-[posts]
-other = "posts"
-
-[reading_time]
-one = "One-minute read"
-other = "{{ .Count }}-minute read"
-
-[page_not_found]
-other = "Page Not Found"
-
-[page_does_not_exist]
-other = "Sorry, this page does not exist."
-
-[head_back]
-other = "You can head back to the homepage ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Powered by"
-
-[see_also]
-other = "See also in"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
-
-[entry_toc]
-other = "Table of Contents"
diff --git a/themes/hugo-coder/i18n/es.toml b/themes/hugo-coder/i18n/es.toml
deleted file mode 100644
index 8300621..0000000
--- a/themes/hugo-coder/i18n/es.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "categoría"
-other = "categorías"
-
-[tags]
-one = "etiqueta"
-other = "etiquetas"
-
-[series]
-one = "serie"
-other = "series"
-
-[authors]
-one = "autor"
-other = "autores"
-
-[posts]
-other = "publicaciones"
-
-[reading_time]
-one = "Un minuto de lectura"
-other = "{{ .Count }} minutos de lectura."
-
-[page_not_found]
-other = "Página no encontrada."
-
-[page_does_not_exist]
-other = "Disculpa, la página no existe."
-
-[head_back]
-other = "Puedes regresar a la página inicial ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Desarrollado por"
-
-[see_also]
-other = "También ver en"
-
-[note]
-other = "nota"
-
-[tip]
-other = "consejo"
-
-[example]
-other = "ejemplo"
-
-[question]
-other = "pregunta"
-
-[info]
-other = "información"
-
-[warning]
-other = "advertencia"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/fi.toml b/themes/hugo-coder/i18n/fi.toml
deleted file mode 100644
index 2485616..0000000
--- a/themes/hugo-coder/i18n/fi.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "kategoria"
-other = "categories"
-
-[tags]
-one = "merkki"
-other = "tags"
-
-[series]
-one = "sarja"
-other = "series"
-
-[authors]
-one = "Kirjoittaja"
-other = "authors"
-
-[posts]
-other = "Artikkelit"
-
-[reading_time]
-one = "Yksi lukuminuutti"
-other = "{{ .Count }} lukuminuuttia"
-
-[page_not_found]
-other = "Sivua ei löydetty"
-
-[page_does_not_exist]
-other = "Valitettavasti tätä sivua ei ole olemassa."
-
-[head_back]
-other = "Voit palata takaisin kotisivulle ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Tarjoaa"
-
-[see_also]
-other = "Katso myös"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/fr.toml b/themes/hugo-coder/i18n/fr.toml
deleted file mode 100644
index f51fd40..0000000
--- a/themes/hugo-coder/i18n/fr.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "catégorie"
-other = "catégories"
-
-[tags]
-one = "tag"
-other = "tags"
-
-[series]
-one = "série"
-other = "séries"
-
-[authors]
-one = "auteur"
-other = "auteurs"
-
-[posts]
-other = "articles"
-
-[reading_time]
-one = "Une minute de lecture"
-other = "{{ .Count }} minutes de lecture"
-
-[page_not_found]
-other = "Page Non Trouvée"
-
-[page_does_not_exist]
-other = "Désolé, cette page n'existe pas."
-
-[head_back]
-other = "Vous pouvez revenir à l'accueil ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Propulsé par"
-
-[see_also]
-other = "Voir aussi dans"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/he.toml b/themes/hugo-coder/i18n/he.toml
deleted file mode 100644
index 141b757..0000000
--- a/themes/hugo-coder/i18n/he.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "קטגוריה"
-other = "categories"
-
-[tags]
-one = "תגית"
-other = "tags"
-
-[series]
-one = "סדרה"
-other = "series"
-
-[authors]
-one = "סופר"
-other = "authors"
-
-[posts]
-other = "פוסטים"
-
-[reading_time]
-one = "דקה אחת לקרוא"
-other = "דקות לקרוא {{ .Count }}"
-
-[page_not_found]
-other = "דף האינטרנט שביקשת לא נמצא"
-
-[page_does_not_exist]
-other = "מצטערים, דף אינטרנט זה אינו קיים"
-
-[head_back]
-other = " אתה יכול לחזורלדף הבית ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "מופעל על ידי"
-
-[see_also]
-other = "רואה עוד ב"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/hi.toml b/themes/hugo-coder/i18n/hi.toml
deleted file mode 100644
index 2614982..0000000
--- a/themes/hugo-coder/i18n/hi.toml
+++ /dev/null
@@ -1,65 +0,0 @@
-[categories]
-one = "श्रेणी"
-other = "श्रेणियाँ"
-
-[tags]
-one = "टैग"
-other = "टैग्स"
-
-[series]
-one = "श्रृंखला"
-other = "श्रृंखलाएँ"
-
-[authors]
-one = "लेखक"
-other = "लेखक"
-
-[posts]
-other = "सामग्री"
-
-[reading_time]
-one = "पढ़ने में एक मिनट लगेगा"
-other = "पढ़ने में {{ .Count }} मिनट लगेंगे"
-
-[page_not_found]
-other = "पृष्ठ नहीं मिला"
-
-[page_does_not_exist]
-other = "क्षमा करें, यह पृष्ठ मौजूद नहीं है।"
-
-[head_back]
-other = "आप मुखपृष्ठ पर वापस आ सकते हैं।"
-
-[licensed_under]
-other = "लाइसेंस:"
-
-[powered_by]
-other = "संचालन:"
-
-[see_also]
-other = "यह भी देखें"
-
-[note]
-other = "नोट"
-
-[tip]
-other = "टिप्पणी"
-
-[example]
-other = "उदाहरण"
-
-[question]
-other = "प्रश्न"
-
-[info]
-other = "जानकारी"
-
-[warning]
-other = "चेतावनी"
-
-[error]
-other = "त्रुटि"
-
-
-[link_to_heading]
-other = "हैडिंग की कड़ी"
diff --git a/themes/hugo-coder/i18n/hu.toml b/themes/hugo-coder/i18n/hu.toml
deleted file mode 100644
index fb47d01..0000000
--- a/themes/hugo-coder/i18n/hu.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "Kategória"
-other = "categories"
-
-[tags]
-one = "Címke"
-other = "tags"
-
-[series]
-one = "Sorozat"
-other = "series"
-
-[authors]
-one = "Szerző"
-other = "authors"
-
-[posts]
-other = "Írások"
-
-[reading_time]
-one = "Egyperces"
-other = "{{ .Count }} percnyi olvasnivaló"
-
-[page_not_found]
-other = "Az oldal nem található"
-
-[page_does_not_exist]
-other = "Sajnálom, a kért oldal nem létezik."
-
-[head_back]
-other = "Itt visszaléphet a Főoldalra ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Motor:"
-
-[see_also]
-other = "Lásd még"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/id.toml b/themes/hugo-coder/i18n/id.toml
deleted file mode 100644
index f556d0e..0000000
--- a/themes/hugo-coder/i18n/id.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "kategori"
-other = "categories"
-
-[tags]
-one = "label"
-other = "tags"
-
-[series]
-one = "seri"
-other = "series"
-
-[authors]
-one = "penulis"
-other = "authors"
-
-[posts]
-other = "artikel"
-
-[reading_time]
-one = "bacaan satu menit"
-other = "bacaan {{ .Count }} menit"
-
-[page_not_found]
-other = "Halaman tidak ditemukan"
-
-[page_does_not_exist]
-other = "Maaf, halaman ini tidak ada."
-
-[head_back]
-other = "Anda dapat kembali ke beranda ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Dipersembahkan oleh"
-
-[see_also]
-other = "artikel terkait"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/it.toml b/themes/hugo-coder/i18n/it.toml
deleted file mode 100644
index 9c8a6da..0000000
--- a/themes/hugo-coder/i18n/it.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "categoria"
-other = "categorie"
-
-[tags]
-one = "tag"
-other = "tags"
-
-[series]
-one = "serie"
-other = "serie"
-
-[authors]
-one = "autore"
-other = "autori"
-
-[posts]
-other = "post"
-
-[reading_time]
-one = "Lettura di un minuto"
-other = "{{ .Count }} minuti di lettura"
-
-[page_not_found]
-other = "Pagina non trovata"
-
-[page_does_not_exist]
-other = "Siamo spiacenti, questa pagina non esiste."
-
-[head_back]
-other = "Torna alla homepage ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Generato da"
-
-[see_also]
-other = "Vedi anche in"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/ja.toml b/themes/hugo-coder/i18n/ja.toml
deleted file mode 100644
index 4a7e303..0000000
--- a/themes/hugo-coder/i18n/ja.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "カテゴリー"
-other = "カテゴリー"
-
-[tags]
-one = "タグ"
-other = "タグ"
-
-[series]
-one = "シリーズ"
-other = "シリーズ"
-
-[authors]
-one = "著者"
-other = "著者"
-
-[posts]
-other = "記事"
-
-[reading_time]
-one = "1分で読めます"
-other = "{{ .Count }}分で読めます"
-
-[page_not_found]
-other = "ページが見つかりません"
-
-[page_does_not_exist]
-other = "申し訳ございません。アクセスしようとしたページが見つかりませんでした。"
-
-[head_back]
-other = "トップページ からお探しいただきますようお願い申し上げます。"
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Powered by"
-
-[see_also]
-other = "関連記事:"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "見出しへのリンク"
diff --git a/themes/hugo-coder/i18n/ko.toml b/themes/hugo-coder/i18n/ko.toml
deleted file mode 100644
index a34c8f6..0000000
--- a/themes/hugo-coder/i18n/ko.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "카테고리"
-other = "categories"
-
-[tags]
-one = "태그"
-other = "tags"
-
-[series]
-one = "시리즈"
-other = "series"
-
-[authors]
-one = "저자"
-other = "authors"
-
-[posts]
-other = "포스트"
-
-[reading_time]
-one = "읽는데 1분"
-other = "읽는데 {{ .Count }}분"
-
-[page_not_found]
-other = "페이지를 찾을 수 없습니다."
-
-[page_does_not_exist]
-other = "해당 페이지가 존재하지 않습니다."
-
-[head_back]
-other = "홈페이지 로 돌아가기"
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Powered by"
-
-[see_also]
-other = "관련 글:"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/ms.toml b/themes/hugo-coder/i18n/ms.toml
deleted file mode 100644
index 25b037e..0000000
--- a/themes/hugo-coder/i18n/ms.toml
+++ /dev/null
@@ -1,67 +0,0 @@
-[categories]
-one = "kategori"
-other = "kategori"
-
-[tags]
-one = "teg"
-other = "teg"
-
-[series]
-one = "siri"
-other = "siri"
-
-[author]
-other = "penulis"
-
-[authors]
-one = "penulis"
-other = "penulis"
-
-[posts]
-other = "artikel"
-
-[reading_time]
-one = "Bacaan 1 minit"
-other = "Bacaan {{ .Count }} minit"
-
-[page_not_found]
-other = "Halaman Tidak Dijumpai"
-
-[page_does_not_exist]
-other = "Maaf, halaman ini tidak wujud."
-
-[head_back]
-other = "Kembali ke halaman utama ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Dikuasakan oleh"
-
-[see_also]
-other = "Lihat juga"
-
-[note]
-other = "nota"
-
-[tip]
-other = "tip"
-
-[example]
-other = "contoh"
-
-[question]
-other = "soalan"
-
-[info]
-other = "maklumat"
-
-[warning]
-other = "amaran"
-
-[error]
-other = "ralat"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/nl.toml b/themes/hugo-coder/i18n/nl.toml
deleted file mode 100644
index 801e525..0000000
--- a/themes/hugo-coder/i18n/nl.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "categorie"
-other = "categorieën"
-
-[tags]
-one = "label"
-other = "labels"
-
-[series]
-one = "serie"
-other = "series"
-
-[authors]
-one = "auteur"
-other = "auteurs"
-
-[posts]
-other = "berichten"
-
-[reading_time]
-one = "Eén minuut leestijd"
-other = "{{ .Count }} minuten leestijd"
-
-[page_not_found]
-other = "Pagina niet gevonden"
-
-[page_does_not_exist]
-other = "Sorry, deze pagina bestaat niet."
-
-[head_back]
-other = "U kunt terugkeren naar de thuispagina ."
-
-[licensed_under]
-other = "Valt onder"
-
-[powered_by]
-other = "Aangedreven door"
-
-[see_also]
-other = "Zie ook in"
-
-[note]
-other = "notitie"
-
-[tip]
-other = "tip"
-
-[example]
-other = "voorbeeld"
-
-[question]
-other = "vraag"
-
-[info]
-other = "info"
-
-[warning]
-other = "waarschuwing"
-
-[error]
-other = "fout"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/np.toml b/themes/hugo-coder/i18n/np.toml
deleted file mode 100644
index 4e1e1c0..0000000
--- a/themes/hugo-coder/i18n/np.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "वर्ग"
-other = "categories"
-
-[tags]
-one = "ट्याग"
-other = "tags"
-
-[series]
-one = "श्रृंखला"
-other = "series"
-
-[authors]
-one = "लेखक"
-other = "authors"
-
-[posts]
-other = "सामग्री"
-
-[reading_time]
-one = "एक मिनेट पढाई"
-other = "{{ .Count }} मिनेट पढाई"
-
-[page_not_found]
-other = "पृष्ठ भेटिएन।"
-
-[page_does_not_exist]
-other = "माफ गर्नुहोस, यो पृष्ठ उपलब्ध छैन।"
-
-[head_back]
-other = "मुख्यपृष्ठमा फर्किन सक्नुहुन्छ।मुख्यपृष्ठ ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "द्वारा संचालित"
-
-[see_also]
-other = "यो पनि हेर्नुहोस।"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/oc.toml b/themes/hugo-coder/i18n/oc.toml
deleted file mode 100644
index 1de3d4c..0000000
--- a/themes/hugo-coder/i18n/oc.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "categoria"
-other = "categorias"
-
-[tags]
-one = "etiqueta"
-other = "etiquetas"
-
-[series]
-one = "serias"
-other = "serias"
-
-[authors]
-one = "autor"
-other = "autors"
-
-[posts]
-other = "publicacions"
-
-[reading_time]
-one = "Una minuta de lector"
-other = "{{ .Count }} minutas de lectura"
-
-[page_not_found]
-other = "Pagina pas trobada"
-
-[page_does_not_exist]
-other = "O planhèm, aquesta pagina existís pas."
-
-[head_back]
-other = "Podètz tornar a l'acuèlh ."
-
-[licensed_under]
-other = "Licéncia jos"
-
-[powered_by]
-other = "Propulsat per"
-
-[see_also]
-other = "Vejatz tanben"
-
-[note]
-other = "nòta"
-
-[tip]
-other = "astúcia"
-
-[example]
-other = "exemple"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "avertiment"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Ligam a l'entèsta"
diff --git a/themes/hugo-coder/i18n/pl.toml b/themes/hugo-coder/i18n/pl.toml
deleted file mode 100644
index 801bec4..0000000
--- a/themes/hugo-coder/i18n/pl.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "kategoria"
-other = "kategorie"
-
-[tags]
-one = "tag"
-other = "tagi"
-
-[series]
-one = "seria"
-other = "seria"
-
-[authors]
-one = "autor(ka)"
-other = "autorzy"
-
-[posts]
-other = "posty"
-
-[reading_time]
-one = "1 min czytania"
-other = "{{ .Count }} min czytania"
-
-[page_not_found]
-other = "Nie znaleziono strony"
-
-[page_does_not_exist]
-other = "Wybacz, ta strona nie istnieje."
-
-[head_back]
-other = "Możesz wrócić na stronę domową ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Napędzane przez"
-
-[see_also]
-other = "Zobacz również"
-
-[note]
-other = "notka"
-
-[tip]
-other = "wskazówka"
-
-[example]
-other = "przykład"
-
-[question]
-other = "pytanie"
-
-[info]
-other = "informacja"
-
-[warning]
-other = "ostrzeżenie"
-
-[error]
-other = "błąd"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/pt-br.toml b/themes/hugo-coder/i18n/pt-br.toml
deleted file mode 100644
index 422771c..0000000
--- a/themes/hugo-coder/i18n/pt-br.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "categoria"
-other = "categorias"
-
-[tags]
-one = "etiqueta"
-other = "etiquetas"
-
-[series]
-one = "séries"
-other = "séries"
-
-[authors]
-one = "autor"
-other = "autores"
-
-[posts]
-other = "artigos"
-
-[reading_time]
-one = "Um minuto de leitura"
-other = "{{ .Count }} minutos de leitura"
-
-[page_not_found]
-other = "Página Não Encontrada"
-
-[page_does_not_exist]
-other = "Desculpe, essa página não existe."
-
-[head_back]
-other = "Você pode voltar para a página inicial ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Promovido por"
-
-[see_also]
-other = "Veja também em"
-
-[note]
-other = "nota"
-
-[tip]
-other = "dica"
-
-[example]
-other = "exemplo"
-
-[question]
-other = "pergunta"
-
-[info]
-other = "info"
-
-[warning]
-other = "aviso"
-
-[error]
-other = "erro"
-
-[link_to_heading]
-other = "Link para o cabeçalho"
diff --git a/themes/hugo-coder/i18n/ro.toml b/themes/hugo-coder/i18n/ro.toml
deleted file mode 100644
index d3bb854..0000000
--- a/themes/hugo-coder/i18n/ro.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "categorie"
-other = "categorii"
-
-[tags]
-one = "etichetă"
-other = "etichete"
-
-[series]
-one = "serie"
-other = "serie"
-
-[authors]
-one = "autor"
-other = "autori"
-
-[posts]
-other = "articole"
-
-[reading_time]
-one = "Un minut de lectură"
-other = "{{ .Count }} {{ if lt .Count 20 }}minute{{ else }}de minute{{ end }} de lectură"
-
-[page_not_found]
-other = "Pagină Pierdută"
-
-[page_does_not_exist]
-other = "Ne pare rău, această pagină nu există."
-
-[head_back]
-other = "Poți să te întorci la pagina principală ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Susținut de"
-
-[see_also]
-other = "Altele din seria"
-
-[note]
-other = "notă"
-
-[tip]
-other = "sfat"
-
-[example]
-other = "exemplu"
-
-[question]
-other = "întrebare"
-
-[info]
-other = "informație"
-
-[warning]
-other = "avertisment"
-
-[error]
-other = "eroare"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/ru.toml b/themes/hugo-coder/i18n/ru.toml
deleted file mode 100644
index c360fb0..0000000
--- a/themes/hugo-coder/i18n/ru.toml
+++ /dev/null
@@ -1,65 +0,0 @@
-[categories]
-one = "категория"
-other = "категории"
-
-[tags]
-one = "тэг"
-other = "тэги"
-
-[series]
-one = "серия"
-other = "серии"
-
-[authors]
-one = "автор"
-other = "авторы"
-
-[posts]
-other = "статьи"
-
-[reading_time]
-one = "Читать одну минуту"
-few = "Читать около {{ .Count }} минут"
-many = "Читать около {{ .Count }} минут"
-
-[page_not_found]
-other = "Страница не найдена"
-
-[page_does_not_exist]
-other = "Извините, но этой страницы не существует."
-
-[head_back]
-other = "Можете вернуться обратно на домашнюю страницу ."
-
-[licensed_under]
-other = "Лицензирован по"
-
-[powered_by]
-other = "Работает на"
-
-[see_also]
-other = "Также смотрите"
-
-[note]
-other = "заметка"
-
-[tip]
-other = "совет"
-
-[example]
-other = "пример"
-
-[question]
-other = "вопрос"
-
-[info]
-other = "информация"
-
-[warning]
-other = "предупреждение"
-
-[error]
-other = "ошибка"
-
-[link_to_heading]
-other = "Ссылка на заголовок"
diff --git a/themes/hugo-coder/i18n/se.toml b/themes/hugo-coder/i18n/se.toml
deleted file mode 100644
index 566992a..0000000
--- a/themes/hugo-coder/i18n/se.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "Kategori"
-other = "Katgorier"
-
-[tags]
-one = "Tagg"
-other = "Taggar"
-
-[series]
-one = "Serie"
-other = "Serie"
-
-[authors]
-one = "Författare"
-other = "Författare"
-
-[posts]
-other = "Inlägg"
-
-[reading_time]
-one = "Ein minut lästid"
-other = "{{ .Count }} minuter lästid"
-
-[page_not_found]
-other = "Sida hittades inte"
-
-[page_does_not_exist]
-other = "Ursäkta, men denna sida existerar inte."
-
-[head_back]
-other = "Här kan du komma tillbaka till startsidan ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Byggd med"
-
-[see_also]
-other = "Se även i"
-
-[note]
-other = "Notera"
-
-[tip]
-other = "Tips"
-
-[example]
-other = "Exempel"
-
-[question]
-other = "Fråga"
-
-[info]
-other = "Info"
-
-[warning]
-other = "Varning"
-
-[error]
-other = "Fel"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/sk.toml b/themes/hugo-coder/i18n/sk.toml
deleted file mode 100644
index 3c8b255..0000000
--- a/themes/hugo-coder/i18n/sk.toml
+++ /dev/null
@@ -1,66 +0,0 @@
-[categories]
-one = "kategória"
-other = "categories"
-
-[tags]
-one = "téma"
-other = "tags"
-
-[series]
-one = "diel"
-other = "series"
-
-[authors]
-one = "autor"
-other = "authors"
-
-[posts]
-other = "články"
-
-[reading_time]
-one = "Prečítate si za minútu"
-few = "Prečítate si do {{ .Count }} minút"
-many = "Prečítate si do {{ .Count }} minút"
-other = "Prečítate si do {{ .Count }} minút"
-
-[page_not_found]
-other = "Stránka nebola nájdená"
-
-[page_does_not_exist]
-other = "Prepáčte, ale táto stránka neexistuje."
-
-[head_back]
-other = "Späť na domácu stránku ."
-
-[licensed_under]
-other = "Licensed under"
-
-[see_also]
-other = "Pozrite tiež"
-
-[powered_by]
-other = "Táto stránka bola vytvorená cez"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/sq.toml b/themes/hugo-coder/i18n/sq.toml
deleted file mode 100644
index f0ed7d2..0000000
--- a/themes/hugo-coder/i18n/sq.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "kategori"
-other = "kategoritë"
-
-[tags]
-one = "shenjim"
-other = "shenjuesat"
-
-[series]
-one = "seritë"
-other = "seritë"
-
-[authors]
-one = "autori"
-other = "autorë"
-
-[posts]
-other = "postime"
-
-[reading_time]
-one = "një-minutë lexim"
-other = "{{ .Count }}-minute read"
-
-[page_not_found]
-other = "Nuk u gjet faqja"
-
-[page_does_not_exist]
-other = "Na vjen keq, faqja nuk u gjet"
-
-[head_back]
-other = "Mund të ktheheni prapë tek homepage ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "Mundësuar nga "
-
-[see_also]
-other = "Shiko gjithashtu"
-
-[note]
-other = "shënim"
-
-[tip]
-other = "ndihmë"
-
-[example]
-other = "shembull"
-
-[question]
-other = "pyetje"
-
-[info]
-other = "informacion"
-
-[warning]
-other = "kujdes"
-
-[error]
-other = "gabim"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/sr-latn.toml b/themes/hugo-coder/i18n/sr-latn.toml
deleted file mode 100644
index 9956d9b..0000000
--- a/themes/hugo-coder/i18n/sr-latn.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "kategorija"
-other = "kategorije"
-
-[tags]
-one = "tag"
-other = "tagovi"
-
-[series]
-one = "serija"
-other = "serije"
-
-[authors]
-one = "autor"
-other = "autori"
-
-[posts]
-other = "objave"
-
-[reading_time]
-one = "Jedan minut čitanja"
-other = "{{ .Count }} minuta čitanja"
-
-[page_not_found]
-other = "Stranica nije pronađena"
-
-[page_does_not_exist]
-other = "Izvinite, ova stranica ne postoji."
-
-[head_back]
-other = "Možete se vratiti na početnu stranicu ."
-
-[licensed_under]
-other = "Licensirano pod"
-
-[powered_by]
-other = "Pokreće"
-
-[see_also]
-other = "takođe proveriti"
-
-[note]
-other = "napomena"
-
-[tip]
-other = "savet"
-
-[example]
-other = "primer"
-
-[question]
-other = "pitanje"
-
-[info]
-other = "informacija"
-
-[warning]
-other = "upozorenje"
-
-[error]
-other = "greška"
-
-[link_to_heading]
-other = "Link do zaglavlja"
diff --git a/themes/hugo-coder/i18n/sr.toml b/themes/hugo-coder/i18n/sr.toml
deleted file mode 100644
index 3c23395..0000000
--- a/themes/hugo-coder/i18n/sr.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "категорија"
-other = "категорије"
-
-[tags]
-one = "таг"
-other = "тагови"
-
-[series]
-one = "серија"
-other = "серије"
-
-[authors]
-one = "аутор"
-other = "аутори"
-
-[posts]
-other = "објаве"
-
-[reading_time]
-one = "Један минут читања"
-other = "{{ .Count }} минута читања"
-
-[page_not_found]
-other = "Страница није пронађена"
-
-[page_does_not_exist]
-other = "Извините, ова страница не постоји."
-
-[head_back]
-other = "Можете се вратити на почетну страницу ."
-
-[licensed_under]
-other = "Лиценсирано под"
-
-[powered_by]
-other = "Покреће"
-
-[see_also]
-other = "такође проверити"
-
-[note]
-other = "напомена"
-
-[tip]
-other = "савет"
-
-[example]
-other = "пример"
-
-[question]
-other = "питање"
-
-[info]
-other = "информација"
-
-[warning]
-other = "упозорење"
-
-[error]
-other = "грешка"
-
-[link_to_heading]
-other = "Линк до заглавља"
diff --git a/themes/hugo-coder/i18n/tr.toml b/themes/hugo-coder/i18n/tr.toml
deleted file mode 100644
index 84787ad..0000000
--- a/themes/hugo-coder/i18n/tr.toml
+++ /dev/null
@@ -1,65 +0,0 @@
-[categories]
-one = "kategori"
-other = "kategoriler"
-
-[tags]
-one = "etiket"
-other = "etiketler"
-
-[series]
-one = "dizi"
-other = "diziler"
-
-[authors]
-one = "yazar"
-other = "yazarlar"
-
-[posts]
-one = "Gönderi"
-other = "Gönderiler"
-
-[reading_time]
-one = "Bir dakikalık okuma"
-other = "{{ .Count }} dakikalık okuma"
-
-[page_not_found]
-other = "Sayfa Bulunamadı"
-
-[page_does_not_exist]
-other = "Özür dileriz, böyle bir sayfa yok."
-
-[head_back]
-other = "Ana sayfaya dönebilirsiniz."
-
-[licensed_under]
-other = "Lisansı alınta:"
-
-[powered_by]
-other = "Site program altyapısı"
-
-[see_also]
-other = "Ayrıca bakınız"
-
-[note]
-other = "not"
-
-[tip]
-other = "tavsiye"
-
-[example]
-other = "örnek"
-
-[question]
-other = "soru"
-
-[info]
-other = "bilgi"
-
-[warning]
-other = "uyarı"
-
-[error]
-other = "hata"
-
-[link_to_heading]
-other = "Başlık Linki"
diff --git a/themes/hugo-coder/i18n/ur.toml b/themes/hugo-coder/i18n/ur.toml
deleted file mode 100644
index 0957d90..0000000
--- a/themes/hugo-coder/i18n/ur.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "قسم"
-other = "اقسام"
-
-[tags]
-one = "ٹیگ"
-other = "ٹیگز"
-
-[series]
-one = "سلسلہ"
-other = "سلسلہ"
-
-[authors]
-one = "مصنف"
-other = "مصنفین"
-
-[posts]
-other = "اِشاعَتی"
-
-[reading_time]
-one = "اسے پڑھنے میں ایک منٹ لگے گا"
-other = "اسے پڑھنے میں {{ Count }} منٹ لگتا ہے۔"
-
-[page_not_found]
-other = "صفحہ نہیں ملا"
-
-[page_does_not_exist]
-other = "معذرت، یہ صفحہ موجود نہیں ہے۔"
-
-[head_back]
-other = "آپ ہوم پیج پر واپس جا سکتے ہیں۔"
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "شکریہ"
-
-[see_also]
-other = "بھی دیکھو"
-
-[note]
-other = "نوٹ"
-
-[tip]
-other = "ٹپ"
-
-[example]
-other = "مثال"
-
-[question]
-other = "سوال"
-
-[info]
-other = "معلومات"
-
-[warning]
-other = "انتباہ"
-
-[error]
-other = "غلطی"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/i18n/zh-cn.toml b/themes/hugo-coder/i18n/zh-cn.toml
deleted file mode 100644
index e6392c8..0000000
--- a/themes/hugo-coder/i18n/zh-cn.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "分类"
-other = "分类"
-
-[tags]
-one = "标签"
-other = "标签"
-
-[series]
-one = "系列"
-other = "系列"
-
-[authors]
-one = "作者"
-other = "作者"
-
-[posts]
-other = "文章"
-
-[reading_time]
-one = "阅读时间:1 分钟"
-other = "阅读时间:{{ .Count }} 分钟"
-
-[page_not_found]
-other = "找不到页面"
-
-[page_does_not_exist]
-other = "此页面不存在"
-
-[head_back]
-other = "返回 首页 ."
-
-[licensed_under]
-other = "许可依据"
-
-[powered_by]
-other = "技术支持"
-
-[see_also]
-other = "参见"
-
-[note]
-other = "注释"
-
-[tip]
-other = "提示"
-
-[example]
-other = "例子"
-
-[question]
-other = "问题"
-
-[info]
-other = "信息"
-
-[warning]
-other = "警告"
-
-[error]
-other = "错误"
-
-[link_to_heading]
-other = "链接到标题"
diff --git a/themes/hugo-coder/i18n/zh-tw.toml b/themes/hugo-coder/i18n/zh-tw.toml
deleted file mode 100644
index 69fb4c6..0000000
--- a/themes/hugo-coder/i18n/zh-tw.toml
+++ /dev/null
@@ -1,64 +0,0 @@
-[categories]
-one = "分類"
-other = "categories"
-
-[tags]
-one = "標籤"
-other = "tags"
-
-[series]
-one = "系列"
-other = "series"
-
-[authors]
-one = "作者"
-other = "authors"
-
-[posts]
-other = "文章"
-
-[reading_time]
-one = "閱讀時間 1 分鐘"
-other = "閱讀時間 {{ .Count }} 分鐘"
-
-[page_not_found]
-other = "找不到頁面"
-
-[page_does_not_exist]
-other = "此頁面不存在"
-
-[head_back]
-other = "返回 首頁 ."
-
-[licensed_under]
-other = "Licensed under"
-
-[powered_by]
-other = "技術支援"
-
-[see_also]
-other = "參見"
-
-[note]
-other = "note"
-
-[tip]
-other = "tip"
-
-[example]
-other = "example"
-
-[question]
-other = "question"
-
-[info]
-other = "info"
-
-[warning]
-other = "warning"
-
-[error]
-other = "error"
-
-[link_to_heading]
-other = "Link to heading"
diff --git a/themes/hugo-coder/images/logos/favicon.png b/themes/hugo-coder/images/logos/favicon.png
deleted file mode 100644
index f2f0316..0000000
Binary files a/themes/hugo-coder/images/logos/favicon.png and /dev/null differ
diff --git a/themes/hugo-coder/images/logos/favicon.svg b/themes/hugo-coder/images/logos/favicon.svg
deleted file mode 100644
index 432b43c..0000000
--- a/themes/hugo-coder/images/logos/favicon.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/themes/hugo-coder/images/logos/logomark.png b/themes/hugo-coder/images/logos/logomark.png
deleted file mode 100644
index eb975d9..0000000
Binary files a/themes/hugo-coder/images/logos/logomark.png and /dev/null differ
diff --git a/themes/hugo-coder/images/logos/logomark.svg b/themes/hugo-coder/images/logos/logomark.svg
deleted file mode 100644
index 97f287f..0000000
--- a/themes/hugo-coder/images/logos/logomark.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
diff --git a/themes/hugo-coder/images/logos/logotype-a.png b/themes/hugo-coder/images/logos/logotype-a.png
deleted file mode 100644
index 983f407..0000000
Binary files a/themes/hugo-coder/images/logos/logotype-a.png and /dev/null differ
diff --git a/themes/hugo-coder/images/logos/logotype-a.svg b/themes/hugo-coder/images/logos/logotype-a.svg
deleted file mode 100644
index e9ce474..0000000
--- a/themes/hugo-coder/images/logos/logotype-a.svg
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/themes/hugo-coder/images/logos/logotype-b.png b/themes/hugo-coder/images/logos/logotype-b.png
deleted file mode 100644
index 4352199..0000000
Binary files a/themes/hugo-coder/images/logos/logotype-b.png and /dev/null differ
diff --git a/themes/hugo-coder/images/logos/logotype-b.svg b/themes/hugo-coder/images/logos/logotype-b.svg
deleted file mode 100644
index 06e5dbc..0000000
--- a/themes/hugo-coder/images/logos/logotype-b.svg
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/themes/hugo-coder/images/screenshot.png b/themes/hugo-coder/images/screenshot.png
deleted file mode 100644
index 0f4029c..0000000
Binary files a/themes/hugo-coder/images/screenshot.png and /dev/null differ
diff --git a/themes/hugo-coder/images/tn.png b/themes/hugo-coder/images/tn.png
deleted file mode 100644
index 9cac7c7..0000000
Binary files a/themes/hugo-coder/images/tn.png and /dev/null differ
diff --git a/themes/hugo-coder/layouts/404.html b/themes/hugo-coder/layouts/404.html
deleted file mode 100644
index 23ecb19..0000000
--- a/themes/hugo-coder/layouts/404.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{ define "content" }}
- {{ partial "404.html" . }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_markup/render-heading.html b/themes/hugo-coder/layouts/_markup/render-heading.html
deleted file mode 100644
index 7801ecd..0000000
--- a/themes/hugo-coder/layouts/_markup/render-heading.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
- {{ .Text | safeHTML }}
-
-
- {{ i18n "link_to_heading" | default "Link to heading" }}
-
-
diff --git a/themes/hugo-coder/layouts/_markup/render-link.html b/themes/hugo-coder/layouts/_markup/render-link.html
deleted file mode 100644
index 0b13cd2..0000000
--- a/themes/hugo-coder/layouts/_markup/render-link.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ .Text | safeHTML }}
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/404.html b/themes/hugo-coder/layouts/_partials/404.html
deleted file mode 100644
index a884c68..0000000
--- a/themes/hugo-coder/layouts/_partials/404.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
404
-
{{ i18n "page_not_found" }}
-
{{ i18n "page_does_not_exist" }} {{ i18n "head_back" .Site.BaseURL | safeHTML }}
-
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/applicationinsights.html b/themes/hugo-coder/layouts/_partials/analytics/applicationinsights.html
deleted file mode 100644
index 72d2d18..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/applicationinsights.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/baidu.html b/themes/hugo-coder/layouts/_partials/analytics/baidu.html
deleted file mode 100644
index e2fcbe9..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/baidu.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/clicky.html b/themes/hugo-coder/layouts/_partials/analytics/clicky.html
deleted file mode 100644
index 7c91fc4..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/clicky.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/cloudflare.html b/themes/hugo-coder/layouts/_partials/analytics/cloudflare.html
deleted file mode 100644
index d8a732f..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/cloudflare.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/counterdev.html b/themes/hugo-coder/layouts/_partials/analytics/counterdev.html
deleted file mode 100644
index b04c3c7..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/counterdev.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/fathom.html b/themes/hugo-coder/layouts/_partials/analytics/fathom.html
deleted file mode 100644
index 13e7cfc..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/fathom.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/goatcounter.html b/themes/hugo-coder/layouts/_partials/analytics/goatcounter.html
deleted file mode 100644
index 5ba3063..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/goatcounter.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/googletagmanager.html b/themes/hugo-coder/layouts/_partials/analytics/googletagmanager.html
deleted file mode 100644
index 2d2581d..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/googletagmanager.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/matomo.html b/themes/hugo-coder/layouts/_partials/analytics/matomo.html
deleted file mode 100644
index 8fabb63..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/matomo.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/microanalyticsio.html b/themes/hugo-coder/layouts/_partials/analytics/microanalyticsio.html
deleted file mode 100644
index 0e8b65b..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/microanalyticsio.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/analytics/onedollarstats.html b/themes/hugo-coder/layouts/_partials/analytics/onedollarstats.html
deleted file mode 100644
index a5b6213..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/onedollarstats.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/pirsch.html b/themes/hugo-coder/layouts/_partials/analytics/pirsch.html
deleted file mode 100644
index c2fa852..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/pirsch.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/analytics/plausible.html b/themes/hugo-coder/layouts/_partials/analytics/plausible.html
deleted file mode 100644
index 28450c0..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/plausible.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/umami.html b/themes/hugo-coder/layouts/_partials/analytics/umami.html
deleted file mode 100644
index 3b2041c..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/umami.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/analytics/vercel.html b/themes/hugo-coder/layouts/_partials/analytics/vercel.html
deleted file mode 100644
index 43e80f6..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/vercel.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/analytics/wideangle.html b/themes/hugo-coder/layouts/_partials/analytics/wideangle.html
deleted file mode 100644
index 3ec5b70..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/wideangle.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/analytics/yandex-metrika.html b/themes/hugo-coder/layouts/_partials/analytics/yandex-metrika.html
deleted file mode 100644
index 9261187..0000000
--- a/themes/hugo-coder/layouts/_partials/analytics/yandex-metrika.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
diff --git a/themes/hugo-coder/layouts/_partials/body/extensions.html b/themes/hugo-coder/layouts/_partials/body/extensions.html
deleted file mode 100644
index 6dddea7..0000000
--- a/themes/hugo-coder/layouts/_partials/body/extensions.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{/*
- This extension point occurs just before the end of each page's tag.
-
- You can add further theme extensions or customizations here if needed.
-*/}}
diff --git a/themes/hugo-coder/layouts/_partials/csp.html b/themes/hugo-coder/layouts/_partials/csp.html
deleted file mode 100644
index ba6d255..0000000
--- a/themes/hugo-coder/layouts/_partials/csp.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ printf ` ` (delimit .Site.Params.csp.childsrc " ") (delimit .Site.Params.csp.fontsrc " ") (delimit .Site.Params.csp.formaction " ") (delimit .Site.Params.csp.framesrc " ") (delimit .Site.Params.csp.imgsrc " ") (delimit .Site.Params.csp.objectsrc " ") (delimit .Site.Params.csp.stylesrc " ") (delimit .Site.Params.csp.scriptsrc " ") (delimit .Site.Params.csp.connectsrc " ") | safeHTML }}
diff --git a/themes/hugo-coder/layouts/_partials/float.html b/themes/hugo-coder/layouts/_partials/float.html
deleted file mode 100644
index 9d6d1c1..0000000
--- a/themes/hugo-coder/layouts/_partials/float.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{{ if not .Site.Params.hideColorSchemeToggle }}
-
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/footer.html b/themes/hugo-coder/layouts/_partials/footer.html
deleted file mode 100644
index 201f5a2..0000000
--- a/themes/hugo-coder/layouts/_partials/footer.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/head.html b/themes/hugo-coder/layouts/_partials/head.html
deleted file mode 100644
index e9cad8b..0000000
--- a/themes/hugo-coder/layouts/_partials/head.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{{ partial "head/meta-tags.html" . }}
-
-{{ if .Params.canonicalUrl }}
-
-{{ else }}
-
-{{ end }}
-
-{{ partialCached "head/theme-styles.html" . }}
-
-{{ partialCached "head/color-scheme.html" . }}
-
-{{ partialCached "head/custom-styles.html" . }}
-
-{{ partialCached "head/custom-icons.html" . }}
-
-{{ partial "head/alternative-output-formats.html" . }}
-
-{{ if .IsHome }}{{ partial "head/hugo-generator.html" . }}{{ end }}
-
-{{ partial "head/extensions.html" . }}
diff --git a/themes/hugo-coder/layouts/_partials/head/alternative-output-formats.html b/themes/hugo-coder/layouts/_partials/head/alternative-output-formats.html
deleted file mode 100644
index 8b1829a..0000000
--- a/themes/hugo-coder/layouts/_partials/head/alternative-output-formats.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{ range .AlternativeOutputFormats -}}
- {{ printf ` ` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
-{{ end -}}
diff --git a/themes/hugo-coder/layouts/_partials/head/color-scheme.html b/themes/hugo-coder/layouts/_partials/head/color-scheme.html
deleted file mode 100644
index 0f4c549..0000000
--- a/themes/hugo-coder/layouts/_partials/head/color-scheme.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{{ if or (eq .Site.Params.colorScheme "auto") (eq .Site.Params.colorScheme "dark") }}
- {{ if hugo.IsServer }}
- {{ $cssOpts := (dict "targetPath" "css/coder-dark.css" "enableSourceMap" true ) }}
- {{ $styles := resources.Get "scss/coder-dark.scss" | resources.ExecuteAsTemplate "style.coder-dark.css" . | toCSS $cssOpts }}
-
- {{ else }}
- {{ $cssOpts := (dict "targetPath" "css/coder-dark.css" ) }}
- {{ $styles := resources.Get "scss/coder-dark.scss" | resources.ExecuteAsTemplate "style.coder-dark.css" . | toCSS $cssOpts | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/head/custom-icons.html b/themes/hugo-coder/layouts/_partials/head/custom-icons.html
deleted file mode 100644
index 6bad1a1..0000000
--- a/themes/hugo-coder/layouts/_partials/head/custom-icons.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/themes/hugo-coder/layouts/_partials/head/custom-styles.html b/themes/hugo-coder/layouts/_partials/head/custom-styles.html
deleted file mode 100644
index d8dc322..0000000
--- a/themes/hugo-coder/layouts/_partials/head/custom-styles.html
+++ /dev/null
@@ -1,21 +0,0 @@
- {{ range .Site.Params.customCSS }}
- {{ if hugo.IsServer }}
- {{ $styles := resources.Get . }}
-
- {{ else }}
- {{ $styles := resources.Get . | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
-{{ end }}
-
-{{ range .Site.Params.customSCSS }}
- {{/* We don't change the targetPath to because it's transparent to users */}}
- {{ if hugo.IsServer }}
- {{ $cssOpts := (dict "enableSourceMap" true ) }}
- {{ $styles := resources.Get . | toCSS $cssOpts }}
-
- {{ else }}
- {{ $styles := resources.Get . | toCSS | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/head/extensions.html b/themes/hugo-coder/layouts/_partials/head/extensions.html
deleted file mode 100644
index a9eb885..0000000
--- a/themes/hugo-coder/layouts/_partials/head/extensions.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{{/*
- You can add further theme extensions or customizations here if they should
- appear in .
-*/}}
diff --git a/themes/hugo-coder/layouts/_partials/head/hugo-generator.html b/themes/hugo-coder/layouts/_partials/head/hugo-generator.html
deleted file mode 100644
index cee2034..0000000
--- a/themes/hugo-coder/layouts/_partials/head/hugo-generator.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ hugo.Generator }}
diff --git a/themes/hugo-coder/layouts/_partials/head/meta-tags.html b/themes/hugo-coder/layouts/_partials/head/meta-tags.html
deleted file mode 100644
index d137948..0000000
--- a/themes/hugo-coder/layouts/_partials/head/meta-tags.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-{{ if .Site.Params.csp }}
-{{ partial "csp.html" . }}
-{{ end }}
-
-{{ with .Site.Params.author }}
- {{ end }}
-
-
-{{ if or .Params.fediverseCreator .Site.Params.fediverseCreator }} {{end}}
-
-{{ template "_internal/twitter_cards.html" . }}
-{{ template "_internal/opengraph.html" . }}
diff --git a/themes/hugo-coder/layouts/_partials/head/theme-styles.html b/themes/hugo-coder/layouts/_partials/head/theme-styles.html
deleted file mode 100644
index d59fb5b..0000000
--- a/themes/hugo-coder/layouts/_partials/head/theme-styles.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-{{ if hugo.IsServer }}
- {{ $cssOpts := (dict "targetPath" "css/coder.css" "enableSourceMap" true ) }}
- {{ $styles := resources.Get "scss/coder.scss" | resources.ExecuteAsTemplate "style.coder.css" . | toCSS $cssOpts }}
-
-{{ else }}
- {{ $cssOpts := (dict "targetPath" "css/coder.css" ) }}
- {{ $styles := resources.Get "scss/coder.scss" | resources.ExecuteAsTemplate "style.coder.css" . | toCSS $cssOpts | resources.Minify | resources.Fingerprint }}
-
-{{ end }}
-
-{{ if .Site.Params.rtl }}
- {{ if hugo.IsServer }}
- {{ $cssOpts := (dict "targetPath" "css/coder-rtl.css" "enableSourceMap" true ) }}
- {{ $styles := resources.Get "scss/coder-rtl.scss" | resources.ExecuteAsTemplate "style.coder-rtl.css" . | toCSS $cssOpts }}
-
- {{ else }}
- {{ $cssOpts := (dict "targetPath" "css/coder-rtl.css" ) }}
- {{ $styles := resources.Get "scss/coder-rtl.scss" | resources.ExecuteAsTemplate "style.coder-rtl.css" . | toCSS $cssOpts | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/header.html b/themes/hugo-coder/layouts/_partials/header.html
deleted file mode 100644
index 0e8ca70..0000000
--- a/themes/hugo-coder/layouts/_partials/header.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
- {{ with .Site }}
-
- {{ .Title }}
-
- {{ end }}
- {{ if or .Site.Menus.main hugo.IsMultilingual }}
-
-
-
- {{ with .Site.Menus.main}}
- {{ range sort . }}
-
- {{ .Name }}
-
- {{ end }}
- {{ end }}
- {{ if hugo.IsMultilingual }}
- {{ $node := . }}
- {{ .Scratch.Set "separator" true }}
- {{ range (default .Site.Home.AllTranslations .Translations) }}
- {{ if ne $.Site.Language .Language }}
- {{ if $node.Scratch.Get "separator" }}
-
- {{ $node.Scratch.Set "separator" false }}
- {{ end }}
-
- {{ .Language.LanguageName | emojify }}
-
- {{ end }}
- {{ end }}
- {{ end }}
-
- {{ end }}
-
-
diff --git a/themes/hugo-coder/layouts/_partials/home.html b/themes/hugo-coder/layouts/_partials/home.html
deleted file mode 100644
index 44ac21c..0000000
--- a/themes/hugo-coder/layouts/_partials/home.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- {{ partialCached "home/avatar.html" . }}
-
- {{ partialCached "home/author.html" . }}
-
- {{ partialCached "home/social.html" . }}
-
-
- {{ partialCached "home/extensions.html" . }}
-
-
-{{ partialCached "home/sections.html" . }}
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/home/author.html b/themes/hugo-coder/layouts/_partials/home/author.html
deleted file mode 100644
index 91ba25b..0000000
--- a/themes/hugo-coder/layouts/_partials/home/author.html
+++ /dev/null
@@ -1,6 +0,0 @@
-{{ .Site.Params.author }}
-{{ if reflect.IsSlice .Site.Params.info }}
-{{ range .Site.Params.info }}{{ . | markdownify }} {{ end}}
-{{ else }}
-{{ .Site.Params.info | markdownify }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/home/avatar.html b/themes/hugo-coder/layouts/_partials/home/avatar.html
deleted file mode 100644
index 4928915..0000000
--- a/themes/hugo-coder/layouts/_partials/home/avatar.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{{ if and (isset .Site.Params "avatarurl") (not (isset .Site.Params "gravatar")) }}
- {{ with .Site.Params.avatarURL }}
-
- {{ end }}
-{{ end }}
-{{ with .Site.Params.gravatar }}
-
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/home/extensions.html b/themes/hugo-coder/layouts/_partials/home/extensions.html
deleted file mode 100644
index 84617f0..0000000
--- a/themes/hugo-coder/layouts/_partials/home/extensions.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{{/*
- You can add further theme extensions or customizations here if they should
- appear in the "about" section.
-*/}}
diff --git a/themes/hugo-coder/layouts/_partials/home/sections.html b/themes/hugo-coder/layouts/_partials/home/sections.html
deleted file mode 100644
index d0b322f..0000000
--- a/themes/hugo-coder/layouts/_partials/home/sections.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{{/*
- You can add further sections here if they should
- appear after the "about" section.
-*/}}
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/home/social.html b/themes/hugo-coder/layouts/_partials/home/social.html
deleted file mode 100644
index 8d726c8..0000000
--- a/themes/hugo-coder/layouts/_partials/home/social.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{{ with .Site.Params.social }}
-
- {{ range sort . "weight" }}
- {{ if .icon }}
-
-
-
-
-
- {{ else }}
-
- {{ .name }}
-
- {{ end }}
- {{ end }}
-
-{{ end }}
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/list.html b/themes/hugo-coder/layouts/_partials/list.html
deleted file mode 100644
index 80026ae..0000000
--- a/themes/hugo-coder/layouts/_partials/list.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- {{ .Content }}
-
- {{ range .Paginator.Pages }}
-
- {{ .Date | time.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
- {{ .Title }}
-
- {{ end }}
-
- {{ partial "pagination.html" . }}
-
diff --git a/themes/hugo-coder/layouts/_partials/page.html b/themes/hugo-coder/layouts/_partials/page.html
deleted file mode 100644
index 656f2f1..0000000
--- a/themes/hugo-coder/layouts/_partials/page.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- {{ .Content }}
-
-
diff --git a/themes/hugo-coder/layouts/_partials/pagination.html b/themes/hugo-coder/layouts/_partials/pagination.html
deleted file mode 100644
index 1e004b8..0000000
--- a/themes/hugo-coder/layouts/_partials/pagination.html
+++ /dev/null
@@ -1,48 +0,0 @@
-{{ $paginator := .Paginator }}
-{{ $adjacent_links := 2 }}
-{{ $max_links := (add (mul $adjacent_links 2) 1) }}
-{{ $lower_limit := (add $adjacent_links 1) }}
-{{ $upper_limit := (sub $paginator.TotalPages $adjacent_links) }}
-{{ if gt $paginator.TotalPages 1 }}
-
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/posts/commento.html b/themes/hugo-coder/layouts/_partials/posts/commento.html
deleted file mode 100644
index 93a245e..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/commento.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{{- if and (isset .Site.Params "commentourl") (not (eq .Site.Params.commentoURL "" )) (eq (.Params.disableComments | default false) false) -}}
-
-
-{{- end -}}
diff --git a/themes/hugo-coder/layouts/_partials/posts/cusdis.html b/themes/hugo-coder/layouts/_partials/posts/cusdis.html
deleted file mode 100644
index c68fe2a..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/cusdis.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{- if isset .Site.Params "cusdis" -}}
- {{- if and (isset .Site.Params.cusdis "data_app_id") (eq (.Params.disableComments | default false) false) -}}
-
- {{- end -}}
-{{- end -}}
-
diff --git a/themes/hugo-coder/layouts/_partials/posts/disqus.html b/themes/hugo-coder/layouts/_partials/posts/disqus.html
deleted file mode 100644
index 0e18a0b..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/disqus.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{{- if and (not (eq (.Site.Config.Services.Disqus.Shortname | default "") "")) (eq (.Params.disableComments | default false) false) -}}
-
-
-{{- end -}}
diff --git a/themes/hugo-coder/layouts/_partials/posts/giscus.html b/themes/hugo-coder/layouts/_partials/posts/giscus.html
deleted file mode 100644
index 3bf25d2..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/giscus.html
+++ /dev/null
@@ -1,33 +0,0 @@
-{{- if isset .Site.Params "giscus" -}}
- {{- if and (isset .Site.Params.giscus "repo") (not (eq .Site.Params.giscus.repo "" )) (eq (.Params.disableComments | default false) false) -}}
-
- {{- end -}}
-{{- end -}}
diff --git a/themes/hugo-coder/layouts/_partials/posts/mastodon.html b/themes/hugo-coder/layouts/_partials/posts/mastodon.html
deleted file mode 100644
index bbd374c..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/mastodon.html
+++ /dev/null
@@ -1,108 +0,0 @@
-{{- if isset .Site.Params "mastodon" -}}
- {{- with .Site.Params.mastodon -}}
-
-
Comments
-
You can use your Mastodon account to reply to this post . Learn how this is implemented here.
-
Reply
-
-
- Reply to {{ .username }}'s post
-
- With an account on the Fediverse or Mastodon, you can respond to this post.
- Since Mastodon is decentralized, you can use your existing account hosted by another Mastodon server or compatible platform if you don't have an account on this one.
-
- Copy and paste this URL into the search field of your favourite Fediverse app or the web interface of your Mastodon server.
-
-
- Copy
- Close
-
-
-
You need JavaScript to view the comments.
-
-
-
- {{- end -}}
-{{- end -}}
diff --git a/themes/hugo-coder/layouts/_partials/posts/math.html b/themes/hugo-coder/layouts/_partials/posts/math.html
deleted file mode 100644
index 0d2d100..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/math.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{{- if or (.Params.math) (.Site.Params.math) (.Params.katex) (.Site.Params.katex) -}}
-
- {{/* The loading of KaTeX is deferred to speed up page rendering */}}
-
-
-{{- end -}}
diff --git a/themes/hugo-coder/layouts/_partials/posts/series.html b/themes/hugo-coder/layouts/_partials/posts/series.html
deleted file mode 100644
index 9a5b802..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/series.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{{ $currentPageUrl := .RelPermalink }}
-{{ if .Params.series }}
-
- {{ range .Params.series }}
- {{ $name := . | anchorize }}
- {{ $series := index $.Site.Taxonomies.series $name }}
- {{ if gt (len $series.Pages) 1 }}
-
-
-
- {{ $maxItems := $.Site.Params.maxSeeAlsoItems | default 5 }}
- {{ range first (add $maxItems 1) $series.Pages }}
- {{ if ne .RelPermalink $currentPageUrl }}
-
- {{ .Title }}
-
- {{ end }}
- {{ end }}
-
-
- {{ end }}
- {{ end }}
-
-{{ end }}
diff --git a/themes/hugo-coder/layouts/_partials/posts/telegram.html b/themes/hugo-coder/layouts/_partials/posts/telegram.html
deleted file mode 100644
index 2cdae65..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/telegram.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{{- if isset .Site.Params "telegram" -}}
- {{- if and (isset .Site.Params.telegram "siteid") (not (eq .Site.Params.telegram.siteID "" )) (eq (.Params.disableComments | default false) false) -}}
-
- {{- end -}}
-{{- end -}}
diff --git a/themes/hugo-coder/layouts/_partials/posts/utterances.html b/themes/hugo-coder/layouts/_partials/posts/utterances.html
deleted file mode 100644
index 80bf90e..0000000
--- a/themes/hugo-coder/layouts/_partials/posts/utterances.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{{- if isset .Site.Params "utterances" -}}
-{{- if and (isset .Site.Params.utterances "repo") (not (eq .Site.Params.utterances.repo "" )) (eq (.Params.disableComments | default false) false) -}}
-
-{{- end -}}
-{{- end -}}
\ No newline at end of file
diff --git a/themes/hugo-coder/layouts/_partials/taxonomy/authors.html b/themes/hugo-coder/layouts/_partials/taxonomy/authors.html
deleted file mode 100644
index 91dcbcf..0000000
--- a/themes/hugo-coder/layouts/_partials/taxonomy/authors.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- {{- range $index, $el := . -}}
- {{- if gt $index 0 }}
-
•
- {{- end }}
-
{{ .LinkTitle }}
- {{- end -}}
-
diff --git a/themes/hugo-coder/layouts/_partials/taxonomy/categories.html b/themes/hugo-coder/layouts/_partials/taxonomy/categories.html
deleted file mode 100644
index 67a0531..0000000
--- a/themes/hugo-coder/layouts/_partials/taxonomy/categories.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- {{- range $index, $el := . -}}
- {{- if gt $index 0 }}
-
•
- {{- end }}
-
{{ .LinkTitle }}
- {{- end -}}
-
diff --git a/themes/hugo-coder/layouts/_partials/taxonomy/tags.html b/themes/hugo-coder/layouts/_partials/taxonomy/tags.html
deleted file mode 100644
index 58211a2..0000000
--- a/themes/hugo-coder/layouts/_partials/taxonomy/tags.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
diff --git a/themes/hugo-coder/layouts/_partials/terms.html b/themes/hugo-coder/layouts/_partials/terms.html
deleted file mode 100644
index 864dc9f..0000000
--- a/themes/hugo-coder/layouts/_partials/terms.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- {{ .Content }}
-
- {{ $type := .Type }}
- {{ range $key, $value := .Data.Terms.Alphabetical }}
- {{ $name := .Name }}
- {{ $count := .Count }}
- {{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
-
-
- {{ .Name }}
- {{ $count }}
-
-
- {{ end }}
- {{ end }}
-
-
diff --git a/themes/hugo-coder/layouts/_partials/toc.html b/themes/hugo-coder/layouts/_partials/toc.html
deleted file mode 100644
index 5bebba2..0000000
--- a/themes/hugo-coder/layouts/_partials/toc.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{- $toc := default .Site.Params.Entry.toc .Params.toc -}}
-{{- $tocOpen := default .Site.Params.Entry.tocOpen .Params.tocOpen -}}
-
-{{- if $toc }}
-
- {{- T "entry_toc" -}}
- {{ .TableOfContents }}
-
-{{- end }}
diff --git a/themes/hugo-coder/layouts/_shortcodes/mermaid.html b/themes/hugo-coder/layouts/_shortcodes/mermaid.html
deleted file mode 100644
index 85166b1..0000000
--- a/themes/hugo-coder/layouts/_shortcodes/mermaid.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
- {{- .Inner | safeHTML }}
-
diff --git a/themes/hugo-coder/layouts/_shortcodes/notice.html b/themes/hugo-coder/layouts/_shortcodes/notice.html
deleted file mode 100644
index eef30cd..0000000
--- a/themes/hugo-coder/layouts/_shortcodes/notice.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{{- $type := .Get 0 -}}
-{{- $title := .Get 1 | default $type -}}
-{{- $inner := .Inner | .Page.RenderString | chomp -}}
-{{- $icon := dict "note" "fa-sticky-note" "tip" "fa-lightbulb" "example" "fa-file-text" "question" "fa-question" "info" "fa-exclamation-circle" "warning" "fa-exclamation-triangle" "error" "fa-times-circle" -}}
-
-
- {{ i18n $title | default $title | humanize }}
-
-
- {{- $inner -}}
-
-
diff --git a/themes/hugo-coder/layouts/_shortcodes/tab.html b/themes/hugo-coder/layouts/_shortcodes/tab.html
deleted file mode 100644
index 0fdd14e..0000000
--- a/themes/hugo-coder/layouts/_shortcodes/tab.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{{ $group := .Page.Scratch.Get "tabGroupIndex" | default 0 }}
-{{ $index := .Page.Scratch.Get "tabElementIndex" | default 0 }}
-{{ $name := .Get "name" | default "Name Me!" }}
-
-
-
-
-{{ $name }}
-
- {{ .Inner | markdownify }}
-
-
-{{ .Page.Scratch.Set "tabElementIndex" (add 1 $index) }}
diff --git a/themes/hugo-coder/layouts/_shortcodes/tabgroup.html b/themes/hugo-coder/layouts/_shortcodes/tabgroup.html
deleted file mode 100644
index 7a19005..0000000
--- a/themes/hugo-coder/layouts/_shortcodes/tabgroup.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ $align := .Get "align" | default "left" }}
-{{ $style := .Get "style" | default "markdown" }}
-{{ $group := .Page.Scratch.Get "tabGroupIndex" | default 0 }}
-{{ $index := .Page.Scratch.Set "tabElementIndex" 0 }}
-
-
- {{ .Inner }}
-
-
-{{ .Page.Scratch.Set "tabGroupIndex" (add 1 $group) }}
diff --git a/themes/hugo-coder/layouts/baseof.html b/themes/hugo-coder/layouts/baseof.html
deleted file mode 100644
index 1931442..0000000
--- a/themes/hugo-coder/layouts/baseof.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
- {{ block "title" . }}{{ .Site.Params.HeadTitle | default .Site.Title }}{{ end }}
- {{ partial "head.html" . }}
-
-
-
-{{ $csClass := "colorscheme-light" }}
-{{ if eq .Site.Params.colorScheme "dark" }}
-{{ $csClass = "colorscheme-dark" }}
-{{ else if eq .Site.Params.colorScheme "auto" }}
-{{ $csClass = "colorscheme-auto" }}
-{{ end }}
-
-
- {{ partial "float" . }}
-
- {{ partial "header.html" . }}
-
-
- {{ block "content" . }}{{ end }}
-
-
- {{ partial "footer.html" . }}
-
-
- {{ if .HasShortcode "mermaid" }}
-
-
- {{ end }}
-
- {{ if .Site.Params.disableDefaultJsScripts }}
- {{ if not .Site.Params.hideColorSchemeToggle }}
- {{ errorf "Invalid configuration. Default JS scripts are disabled, but 'hideColorSchemeToggle' is false." }}
- {{end}}
- {{ else if hugo.IsServer }}
- {{ $script := resources.Get "js/coder.js" }}
-
- {{ else }}
- {{ $script := resources.Get "js/coder.js" | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
-
- {{ range .Site.Params.customJS }}
- {{ if hugo.IsServer }}
- {{ $script := resources.Get . }}
-
- {{ else }}
- {{ $script := resources.Get . | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
- {{ end }}
-
- {{ range .Site.Params.customRemoteJS }}
- {{ if hugo.IsServer }}
- {{ $script := resources.GetRemote . }}
-
- {{ else }}
- {{ $script := resources.GetRemote . | resources.Minify | resources.Fingerprint }}
-
- {{ end }}
- {{ end }}
-
- {{ template "_internal/google_analytics.html" . }}
-
- {{ if and .Site.Params.counterdev .Site.Params.counterdev.id }}
- {{- partial "analytics/counterdev" . -}}
- {{ end }}
-
- {{ if and .Site.Params.fathomAnalytics .Site.Params.fathomAnalytics.siteID }}
- {{- partial "analytics/fathom" . -}}
- {{ end }}
-
- {{ if and .Site.Params.plausibleAnalytics .Site.Params.plausibleAnalytics.domain }}
- {{- partial "analytics/plausible" . -}}
- {{ end }}
-
- {{ if and .Site.Params.goatCounter .Site.Params.goatCounter.code }}
- {{- partial "analytics/goatcounter" . -}}
- {{ end }}
-
- {{ if and .Site.Params.cloudflare .Site.Params.cloudflare.token }}
- {{- partial "analytics/cloudflare" . -}}
- {{ end }}
-
- {{ if and .Site.Params.baidu .Site.Params.baidu.token }}
- {{- partial "analytics/baidu" . -}}
- {{ end }}
-
- {{ if and .Site.Params.wideAngleAnalytics .Site.Params.wideAngleAnalytics.siteID }}
- {{- partial "analytics/wideangle" . -}}
- {{ end }}
-
- {{ if and .Site.Params.matomo .Site.Params.matomo.serverURL }}
- {{- partial "analytics/matomo" . -}}
- {{ end }}
-
- {{ if and .Site.Params.googleTagManager .Site.Params.googleTagManager.id }}
- {{- partial "analytics/googletagmanager" . -}}
- {{ end }}
-
- {{ if and .Site.Params.applicationInsights .Site.Params.applicationInsights.connectionString }}
- {{- partial "analytics/applicationinsights" . -}}
- {{ end }}
-
- {{ if and .Site.Params.microAnalytics .Site.Params.microAnalytics.id }}
- {{- partial "analytics/microanalyticsio" . -}}
- {{ end }}
-
- {{ if and .Site.Params.onedollarstats .Site.Params.onedollarstats.id }}
- {{- partial "analytics/onedollarstats" . -}}
- {{ end }}
-
- {{ if .Site.Params.vercelAnalytics}}
- {{- partial "analytics/vercel" . -}}
- {{ end }}
-
- {{ if and .Site.Params.yandexMetrika .Site.Params.yandexMetrika.id }}
- {{- partial "analytics/yandex-metrika" . -}}
- {{ end }}
-
- {{ if and .Site.Params.umami .Site.Params.umami.siteID }}
- {{- partial "analytics/umami" . -}}
- {{ end }}
-
- {{ if and .Site.Params.pirsch .Site.Params.pirsch.code }}
- {{- partial "analytics/pirsch" . -}}
- {{ end }}
-
- {{ if and .Site.Params.clicky .Site.Params.clicky.id }}
- {{- partial "analytics/clicky" . -}}
- {{ end }}
-
- {{- partial "body/extensions" . -}}
-
-
-
diff --git a/themes/hugo-coder/layouts/home.html b/themes/hugo-coder/layouts/home.html
deleted file mode 100644
index b829b61..0000000
--- a/themes/hugo-coder/layouts/home.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{ define "content" }}
- {{ partial "home.html" . }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/list.html b/themes/hugo-coder/layouts/list.html
deleted file mode 100644
index cf15efb..0000000
--- a/themes/hugo-coder/layouts/list.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ define "title" }}
- {{- if eq .Kind "term" -}}
- {{- i18n .Data.Plural 1 | title -}}
- {{- print ": " -}}
- {{- end -}}
- {{- i18n (lower .Title) | default .Title | title }} · {{ .Site.Title -}}
-{{ end }}
-{{ define "content" }}
- {{ partial "list.html" . }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/posts/li.html b/themes/hugo-coder/layouts/posts/li.html
deleted file mode 100644
index 9d8a659..0000000
--- a/themes/hugo-coder/layouts/posts/li.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
- {{ .Date | time.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
- {{ .Title }}
-
diff --git a/themes/hugo-coder/layouts/posts/list.html b/themes/hugo-coder/layouts/posts/list.html
deleted file mode 100644
index 17abb71..0000000
--- a/themes/hugo-coder/layouts/posts/list.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{{ define "title" }}
- {{ title (i18n (lower .Title)) | default .Title }} · {{ .Site.Title }}
-{{ end }}
-{{ define "content" }}
-
-
- {{ .Content }}
-
- {{- range .Paginator.Pages -}}
- {{- .Render "li" -}}
- {{- end -}}
-
-
- {{ partial "pagination.html" . }}
-
-{{ end }}
diff --git a/themes/hugo-coder/layouts/posts/single.html b/themes/hugo-coder/layouts/posts/single.html
deleted file mode 100644
index e2f39e7..0000000
--- a/themes/hugo-coder/layouts/posts/single.html
+++ /dev/null
@@ -1,58 +0,0 @@
-{{ define "title" }}
- {{ .Title }} · {{ .Site.Title }}
-{{ end }}
-{{ define "content" }}
-
-
-
-
- {{ partial "toc.html" . }}
-
-
- {{ if .Params.featuredImage }}
-
- {{ end }}
- {{ .Content }}
-
-
-
-
- {{ partial "posts/series.html" . }}
- {{ partial "posts/disqus.html" . }}
- {{ partial "posts/commento.html" . }}
- {{ partial "posts/utterances.html" . }}
- {{ partial "posts/giscus.html" . }}
- {{ partial "posts/mastodon.html" . }}
- {{ partial "posts/telegram.html" . }}
- {{ partial "posts/cusdis.html" . }}
-
-
-
- {{ partial "posts/math.html" . }}
-
-{{ end }}
diff --git a/themes/hugo-coder/layouts/single.html b/themes/hugo-coder/layouts/single.html
deleted file mode 100644
index 6150c6a..0000000
--- a/themes/hugo-coder/layouts/single.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{{ define "title" }}
- {{ .Title }} · {{ .Site.Title }}
-{{ end }}
-{{ define "content" }}
- {{ partial "page.html" . }}
- {{ partial "posts/math.html" . }}
-{{ end }}
diff --git a/themes/hugo-coder/layouts/terms.html b/themes/hugo-coder/layouts/terms.html
deleted file mode 100644
index 48b37e2..0000000
--- a/themes/hugo-coder/layouts/terms.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ define "title" }}
- {{- if eq .Kind "term" -}}
- {{- i18n .Data.Plural | title -}}
- {{- print ": " -}}
- {{- end -}}
- {{- i18n (lower .Title) | default .Title | title }} · {{ .Site.Title -}}
-{{ end }}
-{{ define "content" }}
- {{ partial "terms.html" . }}
-{{ end }}
diff --git a/themes/hugo-coder/netlify.toml b/themes/hugo-coder/netlify.toml
deleted file mode 100644
index 85b0156..0000000
--- a/themes/hugo-coder/netlify.toml
+++ /dev/null
@@ -1,10 +0,0 @@
-[build]
-publish = "exampleSite/public"
-command = "cd exampleSite && hugo --themesDir=../.. --baseURL $URL"
-
-[build.environment]
-HUGO_VERSION = "0.148.2"
-HUGO_THEME = "repo"
-
-[context.deploy-preview]
-command = "cd exampleSite && hugo --themesDir=../.. --buildFuture --buildDrafts --baseURL $DEPLOY_PRIME_URL"
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/coder-dark.scss_9909fe12caa938878c0f06cd010153f1.content b/themes/hugo-coder/resources/_gen/assets/scss/coder-dark.scss_9909fe12caa938878c0f06cd010153f1.content
deleted file mode 100644
index 8ccfd94..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/coder-dark.scss_9909fe12caa938878c0f06cd010153f1.content
+++ /dev/null
@@ -1 +0,0 @@
-body.colorscheme-dark{color:#dadada;background-color:#212121}body.colorscheme-dark a{color:#42a5f5}body.colorscheme-dark h1,body.colorscheme-dark h2,body.colorscheme-dark h3,body.colorscheme-dark h4,body.colorscheme-dark h5,body.colorscheme-dark h6{color:#dadada}body.colorscheme-dark h1:hover .heading-link,body.colorscheme-dark h2:hover .heading-link,body.colorscheme-dark h3:hover .heading-link,body.colorscheme-dark h4:hover .heading-link,body.colorscheme-dark h5:hover .heading-link,body.colorscheme-dark h6:hover .heading-link{visibility:visible}body.colorscheme-dark h1 .heading-link,body.colorscheme-dark h2 .heading-link,body.colorscheme-dark h3 .heading-link,body.colorscheme-dark h4 .heading-link,body.colorscheme-dark h5 .heading-link,body.colorscheme-dark h6 .heading-link{color:#42a5f5;font-weight:inherit;text-decoration:none;font-size:80%;visibility:hidden}body.colorscheme-dark h1 .title-link,body.colorscheme-dark h2 .title-link,body.colorscheme-dark h3 .title-link,body.colorscheme-dark h4 .title-link,body.colorscheme-dark h5 .title-link,body.colorscheme-dark h6 .title-link{color:inherit;font-weight:inherit;text-decoration:none}body.colorscheme-dark pre code{background-color:inherit;color:inherit}body.colorscheme-dark code{background-color:#4f4f4f;color:#dadada}body.colorscheme-dark blockquote{border-left:2px solid #424242}body.colorscheme-dark th,body.colorscheme-dark td{padding:1.6rem}body.colorscheme-dark table{border-collapse:collapse}body.colorscheme-dark table td,body.colorscheme-dark table th{border:2px solid #dadada}body.colorscheme-dark table tr:first-child th{border-top:0}body.colorscheme-dark table tr:last-child td{border-bottom:0}body.colorscheme-dark table tr td:first-child,body.colorscheme-dark table tr th:first-child{border-left:0}body.colorscheme-dark table tr td:last-child,body.colorscheme-dark table tr th:last-child{border-right:0}@media(prefers-color-scheme:dark){body.colorscheme-auto{color:#dadada;background-color:#212121}body.colorscheme-auto a{color:#42a5f5}body.colorscheme-auto h1,body.colorscheme-auto h2,body.colorscheme-auto h3,body.colorscheme-auto h4,body.colorscheme-auto h5,body.colorscheme-auto h6{color:#dadada}body.colorscheme-auto h1:hover .heading-link,body.colorscheme-auto h2:hover .heading-link,body.colorscheme-auto h3:hover .heading-link,body.colorscheme-auto h4:hover .heading-link,body.colorscheme-auto h5:hover .heading-link,body.colorscheme-auto h6:hover .heading-link{visibility:visible}body.colorscheme-auto h1 .heading-link,body.colorscheme-auto h2 .heading-link,body.colorscheme-auto h3 .heading-link,body.colorscheme-auto h4 .heading-link,body.colorscheme-auto h5 .heading-link,body.colorscheme-auto h6 .heading-link{color:#42a5f5;font-weight:inherit;text-decoration:none;font-size:80%;visibility:hidden}body.colorscheme-auto h1 .title-link,body.colorscheme-auto h2 .title-link,body.colorscheme-auto h3 .title-link,body.colorscheme-auto h4 .title-link,body.colorscheme-auto h5 .title-link,body.colorscheme-auto h6 .title-link{color:inherit;font-weight:inherit;text-decoration:none}body.colorscheme-auto pre code{background-color:inherit;color:inherit}body.colorscheme-auto code{background-color:#4f4f4f;color:#dadada}body.colorscheme-auto blockquote{border-left:2px solid #424242}body.colorscheme-auto th,body.colorscheme-auto td{padding:1.6rem}body.colorscheme-auto table{border-collapse:collapse}body.colorscheme-auto table td,body.colorscheme-auto table th{border:2px solid #dadada}body.colorscheme-auto table tr:first-child th{border-top:0}body.colorscheme-auto table tr:last-child td{border-bottom:0}body.colorscheme-auto table tr td:first-child,body.colorscheme-auto table tr th:first-child{border-left:0}body.colorscheme-auto table tr td:last-child,body.colorscheme-auto table tr th:last-child{border-right:0}}body.colorscheme-dark .content .post .tags .tag{background-color:#424242}body.colorscheme-dark .content .post .tags .tag a{color:#dadada}body.colorscheme-dark .content .post .tags .tag a:active{color:#dadada}body.colorscheme-dark .content .list ul li .title{color:#dadada}body.colorscheme-dark .content .list ul li .title:hover,body.colorscheme-dark .content .list ul li .title:focus{color:#42a5f5}body.colorscheme-dark .content .centered .about ul li a{color:#dadada}body.colorscheme-dark .content .centered .about ul li a:hover,body.colorscheme-dark .content .centered .about ul li a:focus{color:#42a5f5}@media(prefers-color-scheme:dark){body.colorscheme-auto .content .post .tags .tag{background-color:#424242}body.colorscheme-auto .content .post .tags .tag a{color:#dadada}body.colorscheme-auto .content .post .tags .tag a:active{color:#dadada}body.colorscheme-auto .content .list ul li .title{color:#dadada}body.colorscheme-auto .content .list ul li .title:hover,body.colorscheme-auto .content .list ul li .title:focus{color:#42a5f5}body.colorscheme-auto .content .centered .about ul li a{color:#dadada}body.colorscheme-auto .content .centered .about ul li a:hover,body.colorscheme-auto .content .centered .about ul li a:focus{color:#42a5f5}}body.colorscheme-dark .notice .notice-title{border-bottom:1px solid #212121}@media(prefers-color-scheme:dark){body.colorscheme-auto .notice .notice-title{border-bottom:1px solid #212121}}body.colorscheme-dark .navigation a,body.colorscheme-dark .navigation span{color:#dadada}body.colorscheme-dark .navigation a:hover,body.colorscheme-dark .navigation a:focus{color:#42a5f5}@media only screen and (max-width:768px){body.colorscheme-dark .navigation .navigation-list{background-color:#212121;border-top:solid 2px #424242;border-bottom:solid 2px #424242}}@media only screen and (max-width:768px){body.colorscheme-dark .navigation .navigation-list .menu-separator{border-top:2px solid #dadada}}@media only screen and (max-width:768px){body.colorscheme-dark .navigation #menu-toggle:checked+label>i{color:#424242}}body.colorscheme-dark .navigation i{color:#dadada}body.colorscheme-dark .navigation i:hover,body.colorscheme-dark .navigation i:focus{color:#42a5f5}body.colorscheme-dark .navigation .menu-button i:hover,body.colorscheme-dark .navigation .menu-button i:focus{color:#dadada}@media(prefers-color-scheme:dark){body.colorscheme-auto .navigation a,body.colorscheme-auto .navigation span{color:#dadada}body.colorscheme-auto .navigation a:hover,body.colorscheme-auto .navigation a:focus{color:#42a5f5}}@media only screen and (prefers-color-scheme:dark) and (max-width:768px){body.colorscheme-auto .navigation .navigation-list{background-color:#212121;border-top:solid 2px #424242;border-bottom:solid 2px #424242}}@media only screen and (prefers-color-scheme:dark) and (max-width:768px){body.colorscheme-auto .navigation .navigation-list .menu-separator{border-top:2px solid #dadada}}@media only screen and (prefers-color-scheme:dark) and (max-width:768px){body.colorscheme-auto .navigation #menu-toggle:checked+label>i{color:#424242}}@media(prefers-color-scheme:dark){body.colorscheme-auto .navigation i{color:#dadada}body.colorscheme-auto .navigation i:hover,body.colorscheme-auto .navigation i:focus{color:#42a5f5}body.colorscheme-auto .navigation .menu-button i:hover,body.colorscheme-auto .navigation .menu-button i:focus{color:#dadada}}body.colorscheme-dark .tabs label.tab-label{background-color:#424242;border-color:#4f4f4f}body.colorscheme-dark .tabs input.tab-input:checked+label.tab-label{background-color:#212121}body.colorscheme-dark .tabs .tab-content{background-color:#212121;border-color:#4f4f4f}@media(prefers-color-scheme:dark){body.colorscheme-auto .tabs label.tab-label{background-color:#424242;border-color:#4f4f4f}body.colorscheme-auto .tabs input.tab-input:checked+label.tab-label{background-color:#212121}body.colorscheme-auto .tabs .tab-content{background-color:#212121;border-color:#4f4f4f}}body.colorscheme-dark .taxonomy-element{background-color:#424242}body.colorscheme-dark .taxonomy-element a{color:#dadada}body.colorscheme-dark .taxonomy-element a:active{color:#dadada}@media(prefers-color-scheme:dark){body.colorscheme-auto .taxonomy-element{background-color:#424242}body.colorscheme-auto .taxonomy-element a{color:#dadada}body.colorscheme-auto .taxonomy-element a:active{color:#dadada}}body.colorscheme-dark .footer a{color:#42a5f5}@media(prefers-color-scheme:dark){body.colorscheme-auto .footer a{color:#42a5f5}}body.colorscheme-dark .float-container a{color:#dadada;background-color:#424242}body.colorscheme-dark .float-container a:hover,body.colorscheme-dark .float-container a:focus{color:#42a5f5}@media only screen and (max-width:768px){body.colorscheme-dark .float-container a:hover,body.colorscheme-dark .float-container a:focus{color:#dadada}}@media(prefers-color-scheme:dark){body.colorscheme-auto .float-container a{color:#dadada;background-color:#424242}body.colorscheme-auto .float-container a:hover,body.colorscheme-auto .float-container a:focus{color:#42a5f5}}@media only screen and (prefers-color-scheme:dark) and (max-width:768px){body.colorscheme-auto .float-container a:hover,body.colorscheme-auto .float-container a:focus{color:#dadada}}body.colorscheme-dark{}body.colorscheme-dark .bg{color:#c9d1d9;background-color:#0d1117}body.colorscheme-dark .chroma{color:#c9d1d9;background-color:#0d1117}body.colorscheme-dark .chroma .err{color:#f85149}body.colorscheme-dark .chroma .lnlinks{outline:none;text-decoration:none;color:inherit}body.colorscheme-dark .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}body.colorscheme-dark .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0}body.colorscheme-dark .chroma .hl{background-color:#ffc}body.colorscheme-dark .chroma .lnt{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#64686c}body.colorscheme-dark .chroma .ln{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#6e7681}body.colorscheme-dark .chroma .line{display:flex}body.colorscheme-dark .chroma .k{color:#ff7b72}body.colorscheme-dark .chroma .kc{color:#79c0ff}body.colorscheme-dark .chroma .kd{color:#ff7b72}body.colorscheme-dark .chroma .kn{color:#ff7b72}body.colorscheme-dark .chroma .kp{color:#79c0ff}body.colorscheme-dark .chroma .kr{color:#ff7b72}body.colorscheme-dark .chroma .kt{color:#ff7b72}body.colorscheme-dark .chroma .nc{color:#f0883e;font-weight:700}body.colorscheme-dark .chroma .no{color:#79c0ff;font-weight:700}body.colorscheme-dark .chroma .nd{color:#d2a8ff;font-weight:700}body.colorscheme-dark .chroma .ni{color:#ffa657}body.colorscheme-dark .chroma .ne{color:#f0883e;font-weight:700}body.colorscheme-dark .chroma .nf{color:#d2a8ff;font-weight:700}body.colorscheme-dark .chroma .nl{color:#79c0ff;font-weight:700}body.colorscheme-dark .chroma .nn{color:#ff7b72}body.colorscheme-dark .chroma .py{color:#79c0ff}body.colorscheme-dark .chroma .nt{color:#7ee787}body.colorscheme-dark .chroma .nv{color:#79c0ff}body.colorscheme-dark .chroma .l{color:#a5d6ff}body.colorscheme-dark .chroma .ld{color:#79c0ff}body.colorscheme-dark .chroma .s{color:#a5d6ff}body.colorscheme-dark .chroma .sa{color:#79c0ff}body.colorscheme-dark .chroma .sb{color:#a5d6ff}body.colorscheme-dark .chroma .sc{color:#a5d6ff}body.colorscheme-dark .chroma .dl{color:#79c0ff}body.colorscheme-dark .chroma .sd{color:#a5d6ff}body.colorscheme-dark .chroma .s2{color:#a5d6ff}body.colorscheme-dark .chroma .se{color:#79c0ff}body.colorscheme-dark .chroma .sh{color:#79c0ff}body.colorscheme-dark .chroma .si{color:#a5d6ff}body.colorscheme-dark .chroma .sx{color:#a5d6ff}body.colorscheme-dark .chroma .sr{color:#79c0ff}body.colorscheme-dark .chroma .s1{color:#a5d6ff}body.colorscheme-dark .chroma .ss{color:#a5d6ff}body.colorscheme-dark .chroma .m{color:#a5d6ff}body.colorscheme-dark .chroma .mb{color:#a5d6ff}body.colorscheme-dark .chroma .mf{color:#a5d6ff}body.colorscheme-dark .chroma .mh{color:#a5d6ff}body.colorscheme-dark .chroma .mi{color:#a5d6ff}body.colorscheme-dark .chroma .il{color:#a5d6ff}body.colorscheme-dark .chroma .mo{color:#a5d6ff}body.colorscheme-dark .chroma .o{color:#ff7b72;font-weight:700}body.colorscheme-dark .chroma .ow{color:#ff7b72;font-weight:700}body.colorscheme-dark .chroma .c{color:#8b949e;font-style:italic}body.colorscheme-dark .chroma .ch{color:#8b949e;font-style:italic}body.colorscheme-dark .chroma .cm{color:#8b949e;font-style:italic}body.colorscheme-dark .chroma .c1{color:#8b949e;font-style:italic}body.colorscheme-dark .chroma .cs{color:#8b949e;font-weight:700;font-style:italic}body.colorscheme-dark .chroma .cp{color:#8b949e;font-weight:700;font-style:italic}body.colorscheme-dark .chroma .cpf{color:#8b949e;font-weight:700;font-style:italic}body.colorscheme-dark .chroma .gd{color:#ffa198;background-color:#490202}body.colorscheme-dark .chroma .ge{font-style:italic}body.colorscheme-dark .chroma .gr{color:#ffa198}body.colorscheme-dark .chroma .gh{color:#79c0ff;font-weight:700}body.colorscheme-dark .chroma .gi{color:#56d364;background-color:#0f5323}body.colorscheme-dark .chroma .go{color:#8b949e}body.colorscheme-dark .chroma .gp{color:#8b949e}body.colorscheme-dark .chroma .gs{font-weight:700}body.colorscheme-dark .chroma .gu{color:#79c0ff}body.colorscheme-dark .chroma .gt{color:#ff7b72}body.colorscheme-dark .chroma .gl{text-decoration:underline}body.colorscheme-dark .chroma .w{color:#6e7681}@media(prefers-color-scheme:dark){body.colorscheme-auto{}body.colorscheme-auto .bg{color:#c9d1d9;background-color:#0d1117}body.colorscheme-auto .chroma{color:#c9d1d9;background-color:#0d1117}body.colorscheme-auto .chroma .err{color:#f85149}body.colorscheme-auto .chroma .lnlinks{outline:none;text-decoration:none;color:inherit}body.colorscheme-auto .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}body.colorscheme-auto .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0}body.colorscheme-auto .chroma .hl{background-color:#ffc}body.colorscheme-auto .chroma .lnt{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#64686c}body.colorscheme-auto .chroma .ln{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#6e7681}body.colorscheme-auto .chroma .line{display:flex}body.colorscheme-auto .chroma .k{color:#ff7b72}body.colorscheme-auto .chroma .kc{color:#79c0ff}body.colorscheme-auto .chroma .kd{color:#ff7b72}body.colorscheme-auto .chroma .kn{color:#ff7b72}body.colorscheme-auto .chroma .kp{color:#79c0ff}body.colorscheme-auto .chroma .kr{color:#ff7b72}body.colorscheme-auto .chroma .kt{color:#ff7b72}body.colorscheme-auto .chroma .nc{color:#f0883e;font-weight:700}body.colorscheme-auto .chroma .no{color:#79c0ff;font-weight:700}body.colorscheme-auto .chroma .nd{color:#d2a8ff;font-weight:700}body.colorscheme-auto .chroma .ni{color:#ffa657}body.colorscheme-auto .chroma .ne{color:#f0883e;font-weight:700}body.colorscheme-auto .chroma .nf{color:#d2a8ff;font-weight:700}body.colorscheme-auto .chroma .nl{color:#79c0ff;font-weight:700}body.colorscheme-auto .chroma .nn{color:#ff7b72}body.colorscheme-auto .chroma .py{color:#79c0ff}body.colorscheme-auto .chroma .nt{color:#7ee787}body.colorscheme-auto .chroma .nv{color:#79c0ff}body.colorscheme-auto .chroma .l{color:#a5d6ff}body.colorscheme-auto .chroma .ld{color:#79c0ff}body.colorscheme-auto .chroma .s{color:#a5d6ff}body.colorscheme-auto .chroma .sa{color:#79c0ff}body.colorscheme-auto .chroma .sb{color:#a5d6ff}body.colorscheme-auto .chroma .sc{color:#a5d6ff}body.colorscheme-auto .chroma .dl{color:#79c0ff}body.colorscheme-auto .chroma .sd{color:#a5d6ff}body.colorscheme-auto .chroma .s2{color:#a5d6ff}body.colorscheme-auto .chroma .se{color:#79c0ff}body.colorscheme-auto .chroma .sh{color:#79c0ff}body.colorscheme-auto .chroma .si{color:#a5d6ff}body.colorscheme-auto .chroma .sx{color:#a5d6ff}body.colorscheme-auto .chroma .sr{color:#79c0ff}body.colorscheme-auto .chroma .s1{color:#a5d6ff}body.colorscheme-auto .chroma .ss{color:#a5d6ff}body.colorscheme-auto .chroma .m{color:#a5d6ff}body.colorscheme-auto .chroma .mb{color:#a5d6ff}body.colorscheme-auto .chroma .mf{color:#a5d6ff}body.colorscheme-auto .chroma .mh{color:#a5d6ff}body.colorscheme-auto .chroma .mi{color:#a5d6ff}body.colorscheme-auto .chroma .il{color:#a5d6ff}body.colorscheme-auto .chroma .mo{color:#a5d6ff}body.colorscheme-auto .chroma .o{color:#ff7b72;font-weight:700}body.colorscheme-auto .chroma .ow{color:#ff7b72;font-weight:700}body.colorscheme-auto .chroma .c{color:#8b949e;font-style:italic}body.colorscheme-auto .chroma .ch{color:#8b949e;font-style:italic}body.colorscheme-auto .chroma .cm{color:#8b949e;font-style:italic}body.colorscheme-auto .chroma .c1{color:#8b949e;font-style:italic}body.colorscheme-auto .chroma .cs{color:#8b949e;font-weight:700;font-style:italic}body.colorscheme-auto .chroma .cp{color:#8b949e;font-weight:700;font-style:italic}body.colorscheme-auto .chroma .cpf{color:#8b949e;font-weight:700;font-style:italic}body.colorscheme-auto .chroma .gd{color:#ffa198;background-color:#490202}body.colorscheme-auto .chroma .ge{font-style:italic}body.colorscheme-auto .chroma .gr{color:#ffa198}body.colorscheme-auto .chroma .gh{color:#79c0ff;font-weight:700}body.colorscheme-auto .chroma .gi{color:#56d364;background-color:#0f5323}body.colorscheme-auto .chroma .go{color:#8b949e}body.colorscheme-auto .chroma .gp{color:#8b949e}body.colorscheme-auto .chroma .gs{font-weight:700}body.colorscheme-auto .chroma .gu{color:#79c0ff}body.colorscheme-auto .chroma .gt{color:#ff7b72}body.colorscheme-auto .chroma .gl{text-decoration:underline}body.colorscheme-auto .chroma .w{color:#6e7681}}
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/coder-dark.scss_9909fe12caa938878c0f06cd010153f1.json b/themes/hugo-coder/resources/_gen/assets/scss/coder-dark.scss_9909fe12caa938878c0f06cd010153f1.json
deleted file mode 100644
index 26000e2..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/coder-dark.scss_9909fe12caa938878c0f06cd010153f1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/coder-dark.min.a00e6364bacbc8266ad1cc81230774a1397198f8cfb7bcba29b7d6fcb54ce57f.css","MediaType":"text/css","Data":{"Integrity":"sha256-oA5jZLrLyCZq0cyBIwd0oTlxmPjPt7y6KbfW/LVM5X8="}}
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/coder.scss_3309bf5eef245954e39c3edadcf84268.content b/themes/hugo-coder/resources/_gen/assets/scss/coder.scss_3309bf5eef245954e39c3edadcf84268.content
deleted file mode 100644
index cdba8cb..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/coder.scss_3309bf5eef245954e39c3edadcf84268.content
+++ /dev/null
@@ -1,11 +0,0 @@
-@charset "UTF-8";/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:initial;word-wrap:break-word}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}/*!* Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.*/.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fas,.far,.fab,.fa-solid,.content article a:where(.external-link):not(:has(img)):after,.fa-regular,.fa-brands,.fa{-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}.fas::before,.far::before,.fab::before,.fa-solid::before,.fa-regular::before,.fa-brands::before,.fa::before{content:var(--fa)}.fa-classic,.fas,.fa-solid,.content article a:where(.external-link):not(:has(img)):after,.far,.fa-regular{font-family:'font awesome 6 free'}.fa-brands,.fab{font-family:'font awesome 6 brands'}.content article a:where(.external-link):not(:has(img)):after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-style:normal;font-variant:normal;font-weight:400;line-height:1}.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:.08333333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07142857em;vertical-align:.05357143em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04166667em;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(-1 * var(--fa-li-width,2em));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,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);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{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);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{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1,1)translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9))translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1))translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95))translateY(0)}57%{transform:scale(1,1)translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1,1)translateY(0)}100%{transform:scale(1,1)translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,100%{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scale(-1,1)}.fa-flip-vertical{transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1,-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.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{--fa:"\30"}.fa-1{--fa:"\31"}.fa-2{--fa:"\32"}.fa-3{--fa:"\33"}.fa-4{--fa:"\34"}.fa-5{--fa:"\35"}.fa-6{--fa:"\36"}.fa-7{--fa:"\37"}.fa-8{--fa:"\38"}.fa-9{--fa:"\39"}.fa-fill-drip{--fa:"\f576"}.fa-arrows-to-circle{--fa:"\e4bd"}.fa-circle-chevron-right{--fa:"\f138"}.fa-chevron-circle-right{--fa:"\f138"}.fa-at{--fa:"\40"}.fa-trash-can{--fa:"\f2ed"}.fa-trash-alt{--fa:"\f2ed"}.fa-text-height{--fa:"\f034"}.fa-user-xmark{--fa:"\f235"}.fa-user-times{--fa:"\f235"}.fa-stethoscope{--fa:"\f0f1"}.fa-message{--fa:"\f27a"}.fa-comment-alt{--fa:"\f27a"}.fa-info{--fa:"\f129"}.fa-down-left-and-up-right-to-center{--fa:"\f422"}.fa-compress-alt{--fa:"\f422"}.fa-explosion{--fa:"\e4e9"}.fa-file-lines{--fa:"\f15c"}.fa-file-alt{--fa:"\f15c"}.fa-file-text{--fa:"\f15c"}.fa-wave-square{--fa:"\f83e"}.fa-ring{--fa:"\f70b"}.fa-building-un{--fa:"\e4d9"}.fa-dice-three{--fa:"\f527"}.fa-calendar-days{--fa:"\f073"}.fa-calendar-alt{--fa:"\f073"}.fa-anchor-circle-check{--fa:"\e4aa"}.fa-building-circle-arrow-right{--fa:"\e4d1"}.fa-volleyball{--fa:"\f45f"}.fa-volleyball-ball{--fa:"\f45f"}.fa-arrows-up-to-line{--fa:"\e4c2"}.fa-sort-down{--fa:"\f0dd"}.fa-sort-desc{--fa:"\f0dd"}.fa-circle-minus{--fa:"\f056"}.fa-minus-circle{--fa:"\f056"}.fa-door-open{--fa:"\f52b"}.fa-right-from-bracket{--fa:"\f2f5"}.fa-sign-out-alt{--fa:"\f2f5"}.fa-atom{--fa:"\f5d2"}.fa-soap{--fa:"\e06e"}.fa-icons{--fa:"\f86d"}.fa-heart-music-camera-bolt{--fa:"\f86d"}.fa-microphone-lines-slash{--fa:"\f539"}.fa-microphone-alt-slash{--fa:"\f539"}.fa-bridge-circle-check{--fa:"\e4c9"}.fa-pump-medical{--fa:"\e06a"}.fa-fingerprint{--fa:"\f577"}.fa-hand-point-right{--fa:"\f0a4"}.fa-magnifying-glass-location{--fa:"\f689"}.fa-search-location{--fa:"\f689"}.fa-forward-step{--fa:"\f051"}.fa-step-forward{--fa:"\f051"}.fa-face-smile-beam{--fa:"\f5b8"}.fa-smile-beam{--fa:"\f5b8"}.fa-flag-checkered{--fa:"\f11e"}.fa-football{--fa:"\f44e"}.fa-football-ball{--fa:"\f44e"}.fa-school-circle-exclamation{--fa:"\e56c"}.fa-crop{--fa:"\f125"}.fa-angles-down{--fa:"\f103"}.fa-angle-double-down{--fa:"\f103"}.fa-users-rectangle{--fa:"\e594"}.fa-people-roof{--fa:"\e537"}.fa-people-line{--fa:"\e534"}.fa-beer-mug-empty{--fa:"\f0fc"}.fa-beer{--fa:"\f0fc"}.fa-diagram-predecessor{--fa:"\e477"}.fa-arrow-up-long{--fa:"\f176"}.fa-long-arrow-up{--fa:"\f176"}.fa-fire-flame-simple{--fa:"\f46a"}.fa-burn{--fa:"\f46a"}.fa-person{--fa:"\f183"}.fa-male{--fa:"\f183"}.fa-laptop{--fa:"\f109"}.fa-file-csv{--fa:"\f6dd"}.fa-menorah{--fa:"\f676"}.fa-truck-plane{--fa:"\e58f"}.fa-record-vinyl{--fa:"\f8d9"}.fa-face-grin-stars{--fa:"\f587"}.fa-grin-stars{--fa:"\f587"}.fa-bong{--fa:"\f55c"}.fa-spaghetti-monster-flying{--fa:"\f67b"}.fa-pastafarianism{--fa:"\f67b"}.fa-arrow-down-up-across-line{--fa:"\e4af"}.fa-spoon{--fa:"\f2e5"}.fa-utensil-spoon{--fa:"\f2e5"}.fa-jar-wheat{--fa:"\e517"}.fa-envelopes-bulk{--fa:"\f674"}.fa-mail-bulk{--fa:"\f674"}.fa-file-circle-exclamation{--fa:"\e4eb"}.fa-circle-h{--fa:"\f47e"}.fa-hospital-symbol{--fa:"\f47e"}.fa-pager{--fa:"\f815"}.fa-address-book{--fa:"\f2b9"}.fa-contact-book{--fa:"\f2b9"}.fa-strikethrough{--fa:"\f0cc"}.fa-k{--fa:"\4b"}.fa-landmark-flag{--fa:"\e51c"}.fa-pencil{--fa:"\f303"}.fa-pencil-alt{--fa:"\f303"}.fa-backward{--fa:"\f04a"}.fa-caret-right{--fa:"\f0da"}.fa-comments{--fa:"\f086"}.fa-paste{--fa:"\f0ea"}.fa-file-clipboard{--fa:"\f0ea"}.fa-code-pull-request{--fa:"\e13c"}.fa-clipboard-list{--fa:"\f46d"}.fa-truck-ramp-box{--fa:"\f4de"}.fa-truck-loading{--fa:"\f4de"}.fa-user-check{--fa:"\f4fc"}.fa-vial-virus{--fa:"\e597"}.fa-sheet-plastic{--fa:"\e571"}.fa-blog{--fa:"\f781"}.fa-user-ninja{--fa:"\f504"}.fa-person-arrow-up-from-line{--fa:"\e539"}.fa-scroll-torah{--fa:"\f6a0"}.fa-torah{--fa:"\f6a0"}.fa-broom-ball{--fa:"\f458"}.fa-quidditch{--fa:"\f458"}.fa-quidditch-broom-ball{--fa:"\f458"}.fa-toggle-off{--fa:"\f204"}.fa-box-archive{--fa:"\f187"}.fa-archive{--fa:"\f187"}.fa-person-drowning{--fa:"\e545"}.fa-arrow-down-9-1{--fa:"\f886"}.fa-sort-numeric-desc{--fa:"\f886"}.fa-sort-numeric-down-alt{--fa:"\f886"}.fa-face-grin-tongue-squint{--fa:"\f58a"}.fa-grin-tongue-squint{--fa:"\f58a"}.fa-spray-can{--fa:"\f5bd"}.fa-truck-monster{--fa:"\f63b"}.fa-w{--fa:"\57"}.fa-earth-africa{--fa:"\f57c"}.fa-globe-africa{--fa:"\f57c"}.fa-rainbow{--fa:"\f75b"}.fa-circle-notch{--fa:"\f1ce"}.fa-tablet-screen-button{--fa:"\f3fa"}.fa-tablet-alt{--fa:"\f3fa"}.fa-paw{--fa:"\f1b0"}.fa-cloud{--fa:"\f0c2"}.fa-trowel-bricks{--fa:"\e58a"}.fa-face-flushed{--fa:"\f579"}.fa-flushed{--fa:"\f579"}.fa-hospital-user{--fa:"\f80d"}.fa-tent-arrow-left-right{--fa:"\e57f"}.fa-gavel{--fa:"\f0e3"}.fa-legal{--fa:"\f0e3"}.fa-binoculars{--fa:"\f1e5"}.fa-microphone-slash{--fa:"\f131"}.fa-box-tissue{--fa:"\e05b"}.fa-motorcycle{--fa:"\f21c"}.fa-bell-concierge{--fa:"\f562"}.fa-concierge-bell{--fa:"\f562"}.fa-pen-ruler{--fa:"\f5ae"}.fa-pencil-ruler{--fa:"\f5ae"}.fa-people-arrows{--fa:"\e068"}.fa-people-arrows-left-right{--fa:"\e068"}.fa-mars-and-venus-burst{--fa:"\e523"}.fa-square-caret-right{--fa:"\f152"}.fa-caret-square-right{--fa:"\f152"}.fa-scissors{--fa:"\f0c4"}.fa-cut{--fa:"\f0c4"}.fa-sun-plant-wilt{--fa:"\e57a"}.fa-toilets-portable{--fa:"\e584"}.fa-hockey-puck{--fa:"\f453"}.fa-table{--fa:"\f0ce"}.fa-magnifying-glass-arrow-right{--fa:"\e521"}.fa-tachograph-digital{--fa:"\f566"}.fa-digital-tachograph{--fa:"\f566"}.fa-users-slash{--fa:"\e073"}.fa-clover{--fa:"\e139"}.fa-reply{--fa:"\f3e5"}.fa-mail-reply{--fa:"\f3e5"}.fa-star-and-crescent{--fa:"\f699"}.fa-house-fire{--fa:"\e50c"}.fa-square-minus{--fa:"\f146"}.fa-minus-square{--fa:"\f146"}.fa-helicopter{--fa:"\f533"}.fa-compass{--fa:"\f14e"}.fa-square-caret-down{--fa:"\f150"}.fa-caret-square-down{--fa:"\f150"}.fa-file-circle-question{--fa:"\e4ef"}.fa-laptop-code{--fa:"\f5fc"}.fa-swatchbook{--fa:"\f5c3"}.fa-prescription-bottle{--fa:"\f485"}.fa-bars{--fa:"\f0c9"}.fa-navicon{--fa:"\f0c9"}.fa-people-group{--fa:"\e533"}.fa-hourglass-end{--fa:"\f253"}.fa-hourglass-3{--fa:"\f253"}.fa-heart-crack{--fa:"\f7a9"}.fa-heart-broken{--fa:"\f7a9"}.fa-square-up-right{--fa:"\f360"}.fa-external-link-square-alt{--fa:"\f360"}.fa-face-kiss-beam{--fa:"\f597"}.fa-kiss-beam{--fa:"\f597"}.fa-film{--fa:"\f008"}.fa-ruler-horizontal{--fa:"\f547"}.fa-people-robbery{--fa:"\e536"}.fa-lightbulb{--fa:"\f0eb"}.fa-caret-left{--fa:"\f0d9"}.fa-circle-exclamation{--fa:"\f06a"}.fa-exclamation-circle{--fa:"\f06a"}.fa-school-circle-xmark{--fa:"\e56d"}.fa-arrow-right-from-bracket{--fa:"\f08b"}.fa-sign-out{--fa:"\f08b"}.fa-circle-chevron-down{--fa:"\f13a"}.fa-chevron-circle-down{--fa:"\f13a"}.fa-unlock-keyhole{--fa:"\f13e"}.fa-unlock-alt{--fa:"\f13e"}.fa-cloud-showers-heavy{--fa:"\f740"}.fa-headphones-simple{--fa:"\f58f"}.fa-headphones-alt{--fa:"\f58f"}.fa-sitemap{--fa:"\f0e8"}.fa-circle-dollar-to-slot{--fa:"\f4b9"}.fa-donate{--fa:"\f4b9"}.fa-memory{--fa:"\f538"}.fa-road-spikes{--fa:"\e568"}.fa-fire-burner{--fa:"\e4f1"}.fa-flag{--fa:"\f024"}.fa-hanukiah{--fa:"\f6e6"}.fa-feather{--fa:"\f52d"}.fa-volume-low{--fa:"\f027"}.fa-volume-down{--fa:"\f027"}.fa-comment-slash{--fa:"\f4b3"}.fa-cloud-sun-rain{--fa:"\f743"}.fa-compress{--fa:"\f066"}.fa-wheat-awn{--fa:"\e2cd"}.fa-wheat-alt{--fa:"\e2cd"}.fa-ankh{--fa:"\f644"}.fa-hands-holding-child{--fa:"\e4fa"}.fa-asterisk{--fa:"\2a"}.fa-square-check{--fa:"\f14a"}.fa-check-square{--fa:"\f14a"}.fa-peseta-sign{--fa:"\e221"}.fa-heading{--fa:"\f1dc"}.fa-header{--fa:"\f1dc"}.fa-ghost{--fa:"\f6e2"}.fa-list{--fa:"\f03a"}.fa-list-squares{--fa:"\f03a"}.fa-square-phone-flip{--fa:"\f87b"}.fa-phone-square-alt{--fa:"\f87b"}.fa-cart-plus{--fa:"\f217"}.fa-gamepad{--fa:"\f11b"}.fa-circle-dot{--fa:"\f192"}.fa-dot-circle{--fa:"\f192"}.fa-face-dizzy{--fa:"\f567"}.fa-dizzy{--fa:"\f567"}.fa-egg{--fa:"\f7fb"}.fa-house-medical-circle-xmark{--fa:"\e513"}.fa-campground{--fa:"\f6bb"}.fa-folder-plus{--fa:"\f65e"}.fa-futbol{--fa:"\f1e3"}.fa-futbol-ball{--fa:"\f1e3"}.fa-soccer-ball{--fa:"\f1e3"}.fa-paintbrush{--fa:"\f1fc"}.fa-paint-brush{--fa:"\f1fc"}.fa-lock{--fa:"\f023"}.fa-gas-pump{--fa:"\f52f"}.fa-hot-tub-person{--fa:"\f593"}.fa-hot-tub{--fa:"\f593"}.fa-map-location{--fa:"\f59f"}.fa-map-marked{--fa:"\f59f"}.fa-house-flood-water{--fa:"\e50e"}.fa-tree{--fa:"\f1bb"}.fa-bridge-lock{--fa:"\e4cc"}.fa-sack-dollar{--fa:"\f81d"}.fa-pen-to-square{--fa:"\f044"}.fa-edit{--fa:"\f044"}.fa-car-side{--fa:"\f5e4"}.fa-share-nodes{--fa:"\f1e0"}.fa-share-alt{--fa:"\f1e0"}.fa-heart-circle-minus{--fa:"\e4ff"}.fa-hourglass-half{--fa:"\f252"}.fa-hourglass-2{--fa:"\f252"}.fa-microscope{--fa:"\f610"}.fa-sink{--fa:"\e06d"}.fa-bag-shopping{--fa:"\f290"}.fa-shopping-bag{--fa:"\f290"}.fa-arrow-down-z-a{--fa:"\f881"}.fa-sort-alpha-desc{--fa:"\f881"}.fa-sort-alpha-down-alt{--fa:"\f881"}.fa-mitten{--fa:"\f7b5"}.fa-person-rays{--fa:"\e54d"}.fa-users{--fa:"\f0c0"}.fa-eye-slash{--fa:"\f070"}.fa-flask-vial{--fa:"\e4f3"}.fa-hand{--fa:"\f256"}.fa-hand-paper{--fa:"\f256"}.fa-om{--fa:"\f679"}.fa-worm{--fa:"\e599"}.fa-house-circle-xmark{--fa:"\e50b"}.fa-plug{--fa:"\f1e6"}.fa-chevron-up{--fa:"\f077"}.fa-hand-spock{--fa:"\f259"}.fa-stopwatch{--fa:"\f2f2"}.fa-face-kiss{--fa:"\f596"}.fa-kiss{--fa:"\f596"}.fa-bridge-circle-xmark{--fa:"\e4cb"}.fa-face-grin-tongue{--fa:"\f589"}.fa-grin-tongue{--fa:"\f589"}.fa-chess-bishop{--fa:"\f43a"}.fa-face-grin-wink{--fa:"\f58c"}.fa-grin-wink{--fa:"\f58c"}.fa-ear-deaf{--fa:"\f2a4"}.fa-deaf{--fa:"\f2a4"}.fa-deafness{--fa:"\f2a4"}.fa-hard-of-hearing{--fa:"\f2a4"}.fa-road-circle-check{--fa:"\e564"}.fa-dice-five{--fa:"\f523"}.fa-square-rss{--fa:"\f143"}.fa-rss-square{--fa:"\f143"}.fa-land-mine-on{--fa:"\e51b"}.fa-i-cursor{--fa:"\f246"}.fa-stamp{--fa:"\f5bf"}.fa-stairs{--fa:"\e289"}.fa-i{--fa:"\49"}.fa-hryvnia-sign{--fa:"\f6f2"}.fa-hryvnia{--fa:"\f6f2"}.fa-pills{--fa:"\f484"}.fa-face-grin-wide{--fa:"\f581"}.fa-grin-alt{--fa:"\f581"}.fa-tooth{--fa:"\f5c9"}.fa-v{--fa:"\56"}.fa-bangladeshi-taka-sign{--fa:"\e2e6"}.fa-bicycle{--fa:"\f206"}.fa-staff-snake{--fa:"\e579"}.fa-rod-asclepius{--fa:"\e579"}.fa-rod-snake{--fa:"\e579"}.fa-staff-aesculapius{--fa:"\e579"}.fa-head-side-cough-slash{--fa:"\e062"}.fa-truck-medical{--fa:"\f0f9"}.fa-ambulance{--fa:"\f0f9"}.fa-wheat-awn-circle-exclamation{--fa:"\e598"}.fa-snowman{--fa:"\f7d0"}.fa-mortar-pestle{--fa:"\f5a7"}.fa-road-barrier{--fa:"\e562"}.fa-school{--fa:"\f549"}.fa-igloo{--fa:"\f7ae"}.fa-joint{--fa:"\f595"}.fa-angle-right{--fa:"\f105"}.fa-horse{--fa:"\f6f0"}.fa-q{--fa:"\51"}.fa-g{--fa:"\47"}.fa-notes-medical{--fa:"\f481"}.fa-temperature-half{--fa:"\f2c9"}.fa-temperature-2{--fa:"\f2c9"}.fa-thermometer-2{--fa:"\f2c9"}.fa-thermometer-half{--fa:"\f2c9"}.fa-dong-sign{--fa:"\e169"}.fa-capsules{--fa:"\f46b"}.fa-poo-storm{--fa:"\f75a"}.fa-poo-bolt{--fa:"\f75a"}.fa-face-frown-open{--fa:"\f57a"}.fa-frown-open{--fa:"\f57a"}.fa-hand-point-up{--fa:"\f0a6"}.fa-money-bill{--fa:"\f0d6"}.fa-bookmark{--fa:"\f02e"}.fa-align-justify{--fa:"\f039"}.fa-umbrella-beach{--fa:"\f5ca"}.fa-helmet-un{--fa:"\e503"}.fa-bullseye{--fa:"\f140"}.fa-bacon{--fa:"\f7e5"}.fa-hand-point-down{--fa:"\f0a7"}.fa-arrow-up-from-bracket{--fa:"\e09a"}.fa-folder{--fa:"\f07b"}.fa-folder-blank{--fa:"\f07b"}.fa-file-waveform{--fa:"\f478"}.fa-file-medical-alt{--fa:"\f478"}.fa-radiation{--fa:"\f7b9"}.fa-chart-simple{--fa:"\e473"}.fa-mars-stroke{--fa:"\f229"}.fa-vial{--fa:"\f492"}.fa-gauge{--fa:"\f624"}.fa-dashboard{--fa:"\f624"}.fa-gauge-med{--fa:"\f624"}.fa-tachometer-alt-average{--fa:"\f624"}.fa-wand-magic-sparkles{--fa:"\e2ca"}.fa-magic-wand-sparkles{--fa:"\e2ca"}.fa-e{--fa:"\45"}.fa-pen-clip{--fa:"\f305"}.fa-pen-alt{--fa:"\f305"}.fa-bridge-circle-exclamation{--fa:"\e4ca"}.fa-user{--fa:"\f007"}.fa-school-circle-check{--fa:"\e56b"}.fa-dumpster{--fa:"\f793"}.fa-van-shuttle{--fa:"\f5b6"}.fa-shuttle-van{--fa:"\f5b6"}.fa-building-user{--fa:"\e4da"}.fa-square-caret-left{--fa:"\f191"}.fa-caret-square-left{--fa:"\f191"}.fa-highlighter{--fa:"\f591"}.fa-key{--fa:"\f084"}.fa-bullhorn{--fa:"\f0a1"}.fa-globe{--fa:"\f0ac"}.fa-synagogue{--fa:"\f69b"}.fa-person-half-dress{--fa:"\e548"}.fa-road-bridge{--fa:"\e563"}.fa-location-arrow{--fa:"\f124"}.fa-c{--fa:"\43"}.fa-tablet-button{--fa:"\f10a"}.fa-building-lock{--fa:"\e4d6"}.fa-pizza-slice{--fa:"\f818"}.fa-money-bill-wave{--fa:"\f53a"}.fa-chart-area{--fa:"\f1fe"}.fa-area-chart{--fa:"\f1fe"}.fa-house-flag{--fa:"\e50d"}.fa-person-circle-minus{--fa:"\e540"}.fa-ban{--fa:"\f05e"}.fa-cancel{--fa:"\f05e"}.fa-camera-rotate{--fa:"\e0d8"}.fa-spray-can-sparkles{--fa:"\f5d0"}.fa-air-freshener{--fa:"\f5d0"}.fa-star{--fa:"\f005"}.fa-repeat{--fa:"\f363"}.fa-cross{--fa:"\f654"}.fa-box{--fa:"\f466"}.fa-venus-mars{--fa:"\f228"}.fa-arrow-pointer{--fa:"\f245"}.fa-mouse-pointer{--fa:"\f245"}.fa-maximize{--fa:"\f31e"}.fa-expand-arrows-alt{--fa:"\f31e"}.fa-charging-station{--fa:"\f5e7"}.fa-shapes{--fa:"\f61f"}.fa-triangle-circle-square{--fa:"\f61f"}.fa-shuffle{--fa:"\f074"}.fa-random{--fa:"\f074"}.fa-person-running{--fa:"\f70c"}.fa-running{--fa:"\f70c"}.fa-mobile-retro{--fa:"\e527"}.fa-grip-lines-vertical{--fa:"\f7a5"}.fa-spider{--fa:"\f717"}.fa-hands-bound{--fa:"\e4f9"}.fa-file-invoice-dollar{--fa:"\f571"}.fa-plane-circle-exclamation{--fa:"\e556"}.fa-x-ray{--fa:"\f497"}.fa-spell-check{--fa:"\f891"}.fa-slash{--fa:"\f715"}.fa-computer-mouse{--fa:"\f8cc"}.fa-mouse{--fa:"\f8cc"}.fa-arrow-right-to-bracket{--fa:"\f090"}.fa-sign-in{--fa:"\f090"}.fa-shop-slash{--fa:"\e070"}.fa-store-alt-slash{--fa:"\e070"}.fa-server{--fa:"\f233"}.fa-virus-covid-slash{--fa:"\e4a9"}.fa-shop-lock{--fa:"\e4a5"}.fa-hourglass-start{--fa:"\f251"}.fa-hourglass-1{--fa:"\f251"}.fa-blender-phone{--fa:"\f6b6"}.fa-building-wheat{--fa:"\e4db"}.fa-person-breastfeeding{--fa:"\e53a"}.fa-right-to-bracket{--fa:"\f2f6"}.fa-sign-in-alt{--fa:"\f2f6"}.fa-venus{--fa:"\f221"}.fa-passport{--fa:"\f5ab"}.fa-thumbtack-slash{--fa:"\e68f"}.fa-thumb-tack-slash{--fa:"\e68f"}.fa-heart-pulse{--fa:"\f21e"}.fa-heartbeat{--fa:"\f21e"}.fa-people-carry-box{--fa:"\f4ce"}.fa-people-carry{--fa:"\f4ce"}.fa-temperature-high{--fa:"\f769"}.fa-microchip{--fa:"\f2db"}.fa-crown{--fa:"\f521"}.fa-weight-hanging{--fa:"\f5cd"}.fa-xmarks-lines{--fa:"\e59a"}.fa-file-prescription{--fa:"\f572"}.fa-weight-scale{--fa:"\f496"}.fa-weight{--fa:"\f496"}.fa-user-group{--fa:"\f500"}.fa-user-friends{--fa:"\f500"}.fa-arrow-up-a-z{--fa:"\f15e"}.fa-sort-alpha-up{--fa:"\f15e"}.fa-chess-knight{--fa:"\f441"}.fa-face-laugh-squint{--fa:"\f59b"}.fa-laugh-squint{--fa:"\f59b"}.fa-wheelchair{--fa:"\f193"}.fa-circle-arrow-up{--fa:"\f0aa"}.fa-arrow-circle-up{--fa:"\f0aa"}.fa-toggle-on{--fa:"\f205"}.fa-person-walking{--fa:"\f554"}.fa-walking{--fa:"\f554"}.fa-l{--fa:"\4c"}.fa-fire{--fa:"\f06d"}.fa-bed-pulse{--fa:"\f487"}.fa-procedures{--fa:"\f487"}.fa-shuttle-space{--fa:"\f197"}.fa-space-shuttle{--fa:"\f197"}.fa-face-laugh{--fa:"\f599"}.fa-laugh{--fa:"\f599"}.fa-folder-open{--fa:"\f07c"}.fa-heart-circle-plus{--fa:"\e500"}.fa-code-fork{--fa:"\e13b"}.fa-city{--fa:"\f64f"}.fa-microphone-lines{--fa:"\f3c9"}.fa-microphone-alt{--fa:"\f3c9"}.fa-pepper-hot{--fa:"\f816"}.fa-unlock{--fa:"\f09c"}.fa-colon-sign{--fa:"\e140"}.fa-headset{--fa:"\f590"}.fa-store-slash{--fa:"\e071"}.fa-road-circle-xmark{--fa:"\e566"}.fa-user-minus{--fa:"\f503"}.fa-mars-stroke-up{--fa:"\f22a"}.fa-mars-stroke-v{--fa:"\f22a"}.fa-champagne-glasses{--fa:"\f79f"}.fa-glass-cheers{--fa:"\f79f"}.fa-clipboard{--fa:"\f328"}.fa-house-circle-exclamation{--fa:"\e50a"}.fa-file-arrow-up{--fa:"\f574"}.fa-file-upload{--fa:"\f574"}.fa-wifi{--fa:"\f1eb"}.fa-wifi-3{--fa:"\f1eb"}.fa-wifi-strong{--fa:"\f1eb"}.fa-bath{--fa:"\f2cd"}.fa-bathtub{--fa:"\f2cd"}.fa-underline{--fa:"\f0cd"}.fa-user-pen{--fa:"\f4ff"}.fa-user-edit{--fa:"\f4ff"}.fa-signature{--fa:"\f5b7"}.fa-stroopwafel{--fa:"\f551"}.fa-bold{--fa:"\f032"}.fa-anchor-lock{--fa:"\e4ad"}.fa-building-ngo{--fa:"\e4d7"}.fa-manat-sign{--fa:"\e1d5"}.fa-not-equal{--fa:"\f53e"}.fa-border-top-left{--fa:"\f853"}.fa-border-style{--fa:"\f853"}.fa-map-location-dot{--fa:"\f5a0"}.fa-map-marked-alt{--fa:"\f5a0"}.fa-jedi{--fa:"\f669"}.fa-square-poll-vertical{--fa:"\f681"}.fa-poll{--fa:"\f681"}.fa-mug-hot{--fa:"\f7b6"}.fa-car-battery{--fa:"\f5df"}.fa-battery-car{--fa:"\f5df"}.fa-gift{--fa:"\f06b"}.fa-dice-two{--fa:"\f528"}.fa-chess-queen{--fa:"\f445"}.fa-glasses{--fa:"\f530"}.fa-chess-board{--fa:"\f43c"}.fa-building-circle-check{--fa:"\e4d2"}.fa-person-chalkboard{--fa:"\e53d"}.fa-mars-stroke-right{--fa:"\f22b"}.fa-mars-stroke-h{--fa:"\f22b"}.fa-hand-back-fist{--fa:"\f255"}.fa-hand-rock{--fa:"\f255"}.fa-square-caret-up{--fa:"\f151"}.fa-caret-square-up{--fa:"\f151"}.fa-cloud-showers-water{--fa:"\e4e4"}.fa-chart-bar{--fa:"\f080"}.fa-bar-chart{--fa:"\f080"}.fa-hands-bubbles{--fa:"\e05e"}.fa-hands-wash{--fa:"\e05e"}.fa-less-than-equal{--fa:"\f537"}.fa-train{--fa:"\f238"}.fa-eye-low-vision{--fa:"\f2a8"}.fa-low-vision{--fa:"\f2a8"}.fa-crow{--fa:"\f520"}.fa-sailboat{--fa:"\e445"}.fa-window-restore{--fa:"\f2d2"}.fa-square-plus{--fa:"\f0fe"}.fa-plus-square{--fa:"\f0fe"}.fa-torii-gate{--fa:"\f6a1"}.fa-frog{--fa:"\f52e"}.fa-bucket{--fa:"\e4cf"}.fa-image{--fa:"\f03e"}.fa-microphone{--fa:"\f130"}.fa-cow{--fa:"\f6c8"}.fa-caret-up{--fa:"\f0d8"}.fa-screwdriver{--fa:"\f54a"}.fa-folder-closed{--fa:"\e185"}.fa-house-tsunami{--fa:"\e515"}.fa-square-nfi{--fa:"\e576"}.fa-arrow-up-from-ground-water{--fa:"\e4b5"}.fa-martini-glass{--fa:"\f57b"}.fa-glass-martini-alt{--fa:"\f57b"}.fa-square-binary{--fa:"\e69b"}.fa-rotate-left{--fa:"\f2ea"}.fa-rotate-back{--fa:"\f2ea"}.fa-rotate-backward{--fa:"\f2ea"}.fa-undo-alt{--fa:"\f2ea"}.fa-table-columns{--fa:"\f0db"}.fa-columns{--fa:"\f0db"}.fa-lemon{--fa:"\f094"}.fa-head-side-mask{--fa:"\e063"}.fa-handshake{--fa:"\f2b5"}.fa-gem{--fa:"\f3a5"}.fa-dolly{--fa:"\f472"}.fa-dolly-box{--fa:"\f472"}.fa-smoking{--fa:"\f48d"}.fa-minimize{--fa:"\f78c"}.fa-compress-arrows-alt{--fa:"\f78c"}.fa-monument{--fa:"\f5a6"}.fa-snowplow{--fa:"\f7d2"}.fa-angles-right{--fa:"\f101"}.fa-angle-double-right{--fa:"\f101"}.fa-cannabis{--fa:"\f55f"}.fa-circle-play{--fa:"\f144"}.fa-play-circle{--fa:"\f144"}.fa-tablets{--fa:"\f490"}.fa-ethernet{--fa:"\f796"}.fa-euro-sign{--fa:"\f153"}.fa-eur{--fa:"\f153"}.fa-euro{--fa:"\f153"}.fa-chair{--fa:"\f6c0"}.fa-circle-check{--fa:"\f058"}.fa-check-circle{--fa:"\f058"}.fa-circle-stop{--fa:"\f28d"}.fa-stop-circle{--fa:"\f28d"}.fa-compass-drafting{--fa:"\f568"}.fa-drafting-compass{--fa:"\f568"}.fa-plate-wheat{--fa:"\e55a"}.fa-icicles{--fa:"\f7ad"}.fa-person-shelter{--fa:"\e54f"}.fa-neuter{--fa:"\f22c"}.fa-id-badge{--fa:"\f2c1"}.fa-marker{--fa:"\f5a1"}.fa-face-laugh-beam{--fa:"\f59a"}.fa-laugh-beam{--fa:"\f59a"}.fa-helicopter-symbol{--fa:"\e502"}.fa-universal-access{--fa:"\f29a"}.fa-circle-chevron-up{--fa:"\f139"}.fa-chevron-circle-up{--fa:"\f139"}.fa-lari-sign{--fa:"\e1c8"}.fa-volcano{--fa:"\f770"}.fa-person-walking-dashed-line-arrow-right{--fa:"\e553"}.fa-sterling-sign{--fa:"\f154"}.fa-gbp{--fa:"\f154"}.fa-pound-sign{--fa:"\f154"}.fa-viruses{--fa:"\e076"}.fa-square-person-confined{--fa:"\e577"}.fa-user-tie{--fa:"\f508"}.fa-arrow-down-long{--fa:"\f175"}.fa-long-arrow-down{--fa:"\f175"}.fa-tent-arrow-down-to-line{--fa:"\e57e"}.fa-certificate{--fa:"\f0a3"}.fa-reply-all{--fa:"\f122"}.fa-mail-reply-all{--fa:"\f122"}.fa-suitcase{--fa:"\f0f2"}.fa-person-skating{--fa:"\f7c5"}.fa-skating{--fa:"\f7c5"}.fa-filter-circle-dollar{--fa:"\f662"}.fa-funnel-dollar{--fa:"\f662"}.fa-camera-retro{--fa:"\f083"}.fa-circle-arrow-down{--fa:"\f0ab"}.fa-arrow-circle-down{--fa:"\f0ab"}.fa-file-import{--fa:"\f56f"}.fa-arrow-right-to-file{--fa:"\f56f"}.fa-square-arrow-up-right{--fa:"\f14c"}.fa-external-link-square{--fa:"\f14c"}.fa-box-open{--fa:"\f49e"}.fa-scroll{--fa:"\f70e"}.fa-spa{--fa:"\f5bb"}.fa-location-pin-lock{--fa:"\e51f"}.fa-pause{--fa:"\f04c"}.fa-hill-avalanche{--fa:"\e507"}.fa-temperature-empty{--fa:"\f2cb"}.fa-temperature-0{--fa:"\f2cb"}.fa-thermometer-0{--fa:"\f2cb"}.fa-thermometer-empty{--fa:"\f2cb"}.fa-bomb{--fa:"\f1e2"}.fa-registered{--fa:"\f25d"}.fa-address-card{--fa:"\f2bb"}.fa-contact-card{--fa:"\f2bb"}.fa-vcard{--fa:"\f2bb"}.fa-scale-unbalanced-flip{--fa:"\f516"}.fa-balance-scale-right{--fa:"\f516"}.fa-subscript{--fa:"\f12c"}.fa-diamond-turn-right{--fa:"\f5eb"}.fa-directions{--fa:"\f5eb"}.fa-burst{--fa:"\e4dc"}.fa-house-laptop{--fa:"\e066"}.fa-laptop-house{--fa:"\e066"}.fa-face-tired{--fa:"\f5c8"}.fa-tired{--fa:"\f5c8"}.fa-money-bills{--fa:"\e1f3"}.fa-smog{--fa:"\f75f"}.fa-crutch{--fa:"\f7f7"}.fa-cloud-arrow-up{--fa:"\f0ee"}.fa-cloud-upload{--fa:"\f0ee"}.fa-cloud-upload-alt{--fa:"\f0ee"}.fa-palette{--fa:"\f53f"}.fa-arrows-turn-right{--fa:"\e4c0"}.fa-vest{--fa:"\e085"}.fa-ferry{--fa:"\e4ea"}.fa-arrows-down-to-people{--fa:"\e4b9"}.fa-seedling{--fa:"\f4d8"}.fa-sprout{--fa:"\f4d8"}.fa-left-right{--fa:"\f337"}.fa-arrows-alt-h{--fa:"\f337"}.fa-boxes-packing{--fa:"\e4c7"}.fa-circle-arrow-left{--fa:"\f0a8"}.fa-arrow-circle-left{--fa:"\f0a8"}.fa-group-arrows-rotate{--fa:"\e4f6"}.fa-bowl-food{--fa:"\e4c6"}.fa-candy-cane{--fa:"\f786"}.fa-arrow-down-wide-short{--fa:"\f160"}.fa-sort-amount-asc{--fa:"\f160"}.fa-sort-amount-down{--fa:"\f160"}.fa-cloud-bolt{--fa:"\f76c"}.fa-thunderstorm{--fa:"\f76c"}.fa-text-slash{--fa:"\f87d"}.fa-remove-format{--fa:"\f87d"}.fa-face-smile-wink{--fa:"\f4da"}.fa-smile-wink{--fa:"\f4da"}.fa-file-word{--fa:"\f1c2"}.fa-file-powerpoint{--fa:"\f1c4"}.fa-arrows-left-right{--fa:"\f07e"}.fa-arrows-h{--fa:"\f07e"}.fa-house-lock{--fa:"\e510"}.fa-cloud-arrow-down{--fa:"\f0ed"}.fa-cloud-download{--fa:"\f0ed"}.fa-cloud-download-alt{--fa:"\f0ed"}.fa-children{--fa:"\e4e1"}.fa-chalkboard{--fa:"\f51b"}.fa-blackboard{--fa:"\f51b"}.fa-user-large-slash{--fa:"\f4fa"}.fa-user-alt-slash{--fa:"\f4fa"}.fa-envelope-open{--fa:"\f2b6"}.fa-handshake-simple-slash{--fa:"\e05f"}.fa-handshake-alt-slash{--fa:"\e05f"}.fa-mattress-pillow{--fa:"\e525"}.fa-guarani-sign{--fa:"\e19a"}.fa-arrows-rotate{--fa:"\f021"}.fa-refresh{--fa:"\f021"}.fa-sync{--fa:"\f021"}.fa-fire-extinguisher{--fa:"\f134"}.fa-cruzeiro-sign{--fa:"\e152"}.fa-greater-than-equal{--fa:"\f532"}.fa-shield-halved{--fa:"\f3ed"}.fa-shield-alt{--fa:"\f3ed"}.fa-book-atlas{--fa:"\f558"}.fa-atlas{--fa:"\f558"}.fa-virus{--fa:"\e074"}.fa-envelope-circle-check{--fa:"\e4e8"}.fa-layer-group{--fa:"\f5fd"}.fa-arrows-to-dot{--fa:"\e4be"}.fa-archway{--fa:"\f557"}.fa-heart-circle-check{--fa:"\e4fd"}.fa-house-chimney-crack{--fa:"\f6f1"}.fa-house-damage{--fa:"\f6f1"}.fa-file-zipper{--fa:"\f1c6"}.fa-file-archive{--fa:"\f1c6"}.fa-square{--fa:"\f0c8"}.fa-martini-glass-empty{--fa:"\f000"}.fa-glass-martini{--fa:"\f000"}.fa-couch{--fa:"\f4b8"}.fa-cedi-sign{--fa:"\e0df"}.fa-italic{--fa:"\f033"}.fa-table-cells-column-lock{--fa:"\e678"}.fa-church{--fa:"\f51d"}.fa-comments-dollar{--fa:"\f653"}.fa-democrat{--fa:"\f747"}.fa-z{--fa:"\5a"}.fa-person-skiing{--fa:"\f7c9"}.fa-skiing{--fa:"\f7c9"}.fa-road-lock{--fa:"\e567"}.fa-a{--fa:"\41"}.fa-temperature-arrow-down{--fa:"\e03f"}.fa-temperature-down{--fa:"\e03f"}.fa-feather-pointed{--fa:"\f56b"}.fa-feather-alt{--fa:"\f56b"}.fa-p{--fa:"\50"}.fa-snowflake{--fa:"\f2dc"}.fa-newspaper{--fa:"\f1ea"}.fa-rectangle-ad{--fa:"\f641"}.fa-ad{--fa:"\f641"}.fa-circle-arrow-right{--fa:"\f0a9"}.fa-arrow-circle-right{--fa:"\f0a9"}.fa-filter-circle-xmark{--fa:"\e17b"}.fa-locust{--fa:"\e520"}.fa-sort{--fa:"\f0dc"}.fa-unsorted{--fa:"\f0dc"}.fa-list-ol{--fa:"\f0cb"}.fa-list-1-2{--fa:"\f0cb"}.fa-list-numeric{--fa:"\f0cb"}.fa-person-dress-burst{--fa:"\e544"}.fa-money-check-dollar{--fa:"\f53d"}.fa-money-check-alt{--fa:"\f53d"}.fa-vector-square{--fa:"\f5cb"}.fa-bread-slice{--fa:"\f7ec"}.fa-language{--fa:"\f1ab"}.fa-face-kiss-wink-heart{--fa:"\f598"}.fa-kiss-wink-heart{--fa:"\f598"}.fa-filter{--fa:"\f0b0"}.fa-question{--fa:"\3f"}.fa-file-signature{--fa:"\f573"}.fa-up-down-left-right{--fa:"\f0b2"}.fa-arrows-alt{--fa:"\f0b2"}.fa-house-chimney-user{--fa:"\e065"}.fa-hand-holding-heart{--fa:"\f4be"}.fa-puzzle-piece{--fa:"\f12e"}.fa-money-check{--fa:"\f53c"}.fa-star-half-stroke{--fa:"\f5c0"}.fa-star-half-alt{--fa:"\f5c0"}.fa-code{--fa:"\f121"}.fa-whiskey-glass{--fa:"\f7a0"}.fa-glass-whiskey{--fa:"\f7a0"}.fa-building-circle-exclamation{--fa:"\e4d3"}.fa-magnifying-glass-chart{--fa:"\e522"}.fa-arrow-up-right-from-square{--fa:"\f08e"}.fa-external-link{--fa:"\f08e"}.fa-cubes-stacked{--fa:"\e4e6"}.fa-won-sign{--fa:"\f159"}.fa-krw{--fa:"\f159"}.fa-won{--fa:"\f159"}.fa-virus-covid{--fa:"\e4a8"}.fa-austral-sign{--fa:"\e0a9"}.fa-f{--fa:"\46"}.fa-leaf{--fa:"\f06c"}.fa-road{--fa:"\f018"}.fa-taxi{--fa:"\f1ba"}.fa-cab{--fa:"\f1ba"}.fa-person-circle-plus{--fa:"\e541"}.fa-chart-pie{--fa:"\f200"}.fa-pie-chart{--fa:"\f200"}.fa-bolt-lightning{--fa:"\e0b7"}.fa-sack-xmark{--fa:"\e56a"}.fa-file-excel{--fa:"\f1c3"}.fa-file-contract{--fa:"\f56c"}.fa-fish-fins{--fa:"\e4f2"}.fa-building-flag{--fa:"\e4d5"}.fa-face-grin-beam{--fa:"\f582"}.fa-grin-beam{--fa:"\f582"}.fa-object-ungroup{--fa:"\f248"}.fa-poop{--fa:"\f619"}.fa-location-pin{--fa:"\f041"}.fa-map-marker{--fa:"\f041"}.fa-kaaba{--fa:"\f66b"}.fa-toilet-paper{--fa:"\f71e"}.fa-helmet-safety{--fa:"\f807"}.fa-hard-hat{--fa:"\f807"}.fa-hat-hard{--fa:"\f807"}.fa-eject{--fa:"\f052"}.fa-circle-right{--fa:"\f35a"}.fa-arrow-alt-circle-right{--fa:"\f35a"}.fa-plane-circle-check{--fa:"\e555"}.fa-face-rolling-eyes{--fa:"\f5a5"}.fa-meh-rolling-eyes{--fa:"\f5a5"}.fa-object-group{--fa:"\f247"}.fa-chart-line{--fa:"\f201"}.fa-line-chart{--fa:"\f201"}.fa-mask-ventilator{--fa:"\e524"}.fa-arrow-right{--fa:"\f061"}.fa-signs-post{--fa:"\f277"}.fa-map-signs{--fa:"\f277"}.fa-cash-register{--fa:"\f788"}.fa-person-circle-question{--fa:"\e542"}.fa-h{--fa:"\48"}.fa-tarp{--fa:"\e57b"}.fa-screwdriver-wrench{--fa:"\f7d9"}.fa-tools{--fa:"\f7d9"}.fa-arrows-to-eye{--fa:"\e4bf"}.fa-plug-circle-bolt{--fa:"\e55b"}.fa-heart{--fa:"\f004"}.fa-mars-and-venus{--fa:"\f224"}.fa-house-user{--fa:"\e1b0"}.fa-home-user{--fa:"\e1b0"}.fa-dumpster-fire{--fa:"\f794"}.fa-house-crack{--fa:"\e3b1"}.fa-martini-glass-citrus{--fa:"\f561"}.fa-cocktail{--fa:"\f561"}.fa-face-surprise{--fa:"\f5c2"}.fa-surprise{--fa:"\f5c2"}.fa-bottle-water{--fa:"\e4c5"}.fa-circle-pause{--fa:"\f28b"}.fa-pause-circle{--fa:"\f28b"}.fa-toilet-paper-slash{--fa:"\e072"}.fa-apple-whole{--fa:"\f5d1"}.fa-apple-alt{--fa:"\f5d1"}.fa-kitchen-set{--fa:"\e51a"}.fa-r{--fa:"\52"}.fa-temperature-quarter{--fa:"\f2ca"}.fa-temperature-1{--fa:"\f2ca"}.fa-thermometer-1{--fa:"\f2ca"}.fa-thermometer-quarter{--fa:"\f2ca"}.fa-cube{--fa:"\f1b2"}.fa-bitcoin-sign{--fa:"\e0b4"}.fa-shield-dog{--fa:"\e573"}.fa-solar-panel{--fa:"\f5ba"}.fa-lock-open{--fa:"\f3c1"}.fa-elevator{--fa:"\e16d"}.fa-money-bill-transfer{--fa:"\e528"}.fa-money-bill-trend-up{--fa:"\e529"}.fa-house-flood-water-circle-arrow-right{--fa:"\e50f"}.fa-square-poll-horizontal{--fa:"\f682"}.fa-poll-h{--fa:"\f682"}.fa-circle{--fa:"\f111"}.fa-backward-fast{--fa:"\f049"}.fa-fast-backward{--fa:"\f049"}.fa-recycle{--fa:"\f1b8"}.fa-user-astronaut{--fa:"\f4fb"}.fa-plane-slash{--fa:"\e069"}.fa-trademark{--fa:"\f25c"}.fa-basketball{--fa:"\f434"}.fa-basketball-ball{--fa:"\f434"}.fa-satellite-dish{--fa:"\f7c0"}.fa-circle-up{--fa:"\f35b"}.fa-arrow-alt-circle-up{--fa:"\f35b"}.fa-mobile-screen-button{--fa:"\f3cd"}.fa-mobile-alt{--fa:"\f3cd"}.fa-volume-high{--fa:"\f028"}.fa-volume-up{--fa:"\f028"}.fa-users-rays{--fa:"\e593"}.fa-wallet{--fa:"\f555"}.fa-clipboard-check{--fa:"\f46c"}.fa-file-audio{--fa:"\f1c7"}.fa-burger{--fa:"\f805"}.fa-hamburger{--fa:"\f805"}.fa-wrench{--fa:"\f0ad"}.fa-bugs{--fa:"\e4d0"}.fa-rupee-sign{--fa:"\f156"}.fa-rupee{--fa:"\f156"}.fa-file-image{--fa:"\f1c5"}.fa-circle-question{--fa:"\f059"}.fa-question-circle{--fa:"\f059"}.fa-plane-departure{--fa:"\f5b0"}.fa-handshake-slash{--fa:"\e060"}.fa-book-bookmark{--fa:"\e0bb"}.fa-code-branch{--fa:"\f126"}.fa-hat-cowboy{--fa:"\f8c0"}.fa-bridge{--fa:"\e4c8"}.fa-phone-flip{--fa:"\f879"}.fa-phone-alt{--fa:"\f879"}.fa-truck-front{--fa:"\e2b7"}.fa-cat{--fa:"\f6be"}.fa-anchor-circle-exclamation{--fa:"\e4ab"}.fa-truck-field{--fa:"\e58d"}.fa-route{--fa:"\f4d7"}.fa-clipboard-question{--fa:"\e4e3"}.fa-panorama{--fa:"\e209"}.fa-comment-medical{--fa:"\f7f5"}.fa-teeth-open{--fa:"\f62f"}.fa-file-circle-minus{--fa:"\e4ed"}.fa-tags{--fa:"\f02c"}.fa-wine-glass{--fa:"\f4e3"}.fa-forward-fast{--fa:"\f050"}.fa-fast-forward{--fa:"\f050"}.fa-face-meh-blank{--fa:"\f5a4"}.fa-meh-blank{--fa:"\f5a4"}.fa-square-parking{--fa:"\f540"}.fa-parking{--fa:"\f540"}.fa-house-signal{--fa:"\e012"}.fa-bars-progress{--fa:"\f828"}.fa-tasks-alt{--fa:"\f828"}.fa-faucet-drip{--fa:"\e006"}.fa-cart-flatbed{--fa:"\f474"}.fa-dolly-flatbed{--fa:"\f474"}.fa-ban-smoking{--fa:"\f54d"}.fa-smoking-ban{--fa:"\f54d"}.fa-terminal{--fa:"\f120"}.fa-mobile-button{--fa:"\f10b"}.fa-house-medical-flag{--fa:"\e514"}.fa-basket-shopping{--fa:"\f291"}.fa-shopping-basket{--fa:"\f291"}.fa-tape{--fa:"\f4db"}.fa-bus-simple{--fa:"\f55e"}.fa-bus-alt{--fa:"\f55e"}.fa-eye{--fa:"\f06e"}.fa-face-sad-cry{--fa:"\f5b3"}.fa-sad-cry{--fa:"\f5b3"}.fa-audio-description{--fa:"\f29e"}.fa-person-military-to-person{--fa:"\e54c"}.fa-file-shield{--fa:"\e4f0"}.fa-user-slash{--fa:"\f506"}.fa-pen{--fa:"\f304"}.fa-tower-observation{--fa:"\e586"}.fa-file-code{--fa:"\f1c9"}.fa-signal{--fa:"\f012"}.fa-signal-5{--fa:"\f012"}.fa-signal-perfect{--fa:"\f012"}.fa-bus{--fa:"\f207"}.fa-heart-circle-xmark{--fa:"\e501"}.fa-house-chimney{--fa:"\e3af"}.fa-home-lg{--fa:"\e3af"}.fa-window-maximize{--fa:"\f2d0"}.fa-face-frown{--fa:"\f119"}.fa-frown{--fa:"\f119"}.fa-prescription{--fa:"\f5b1"}.fa-shop{--fa:"\f54f"}.fa-store-alt{--fa:"\f54f"}.fa-floppy-disk{--fa:"\f0c7"}.fa-save{--fa:"\f0c7"}.fa-vihara{--fa:"\f6a7"}.fa-scale-unbalanced{--fa:"\f515"}.fa-balance-scale-left{--fa:"\f515"}.fa-sort-up{--fa:"\f0de"}.fa-sort-asc{--fa:"\f0de"}.fa-comment-dots{--fa:"\f4ad"}.fa-commenting{--fa:"\f4ad"}.fa-plant-wilt{--fa:"\e5aa"}.fa-diamond{--fa:"\f219"}.fa-face-grin-squint{--fa:"\f585"}.fa-grin-squint{--fa:"\f585"}.fa-hand-holding-dollar{--fa:"\f4c0"}.fa-hand-holding-usd{--fa:"\f4c0"}.fa-chart-diagram{--fa:"\e695"}.fa-bacterium{--fa:"\e05a"}.fa-hand-pointer{--fa:"\f25a"}.fa-drum-steelpan{--fa:"\f56a"}.fa-hand-scissors{--fa:"\f257"}.fa-hands-praying{--fa:"\f684"}.fa-praying-hands{--fa:"\f684"}.fa-arrow-rotate-right{--fa:"\f01e"}.fa-arrow-right-rotate{--fa:"\f01e"}.fa-arrow-rotate-forward{--fa:"\f01e"}.fa-redo{--fa:"\f01e"}.fa-biohazard{--fa:"\f780"}.fa-location-crosshairs{--fa:"\f601"}.fa-location{--fa:"\f601"}.fa-mars-double{--fa:"\f227"}.fa-child-dress{--fa:"\e59c"}.fa-users-between-lines{--fa:"\e591"}.fa-lungs-virus{--fa:"\e067"}.fa-face-grin-tears{--fa:"\f588"}.fa-grin-tears{--fa:"\f588"}.fa-phone{--fa:"\f095"}.fa-calendar-xmark{--fa:"\f273"}.fa-calendar-times{--fa:"\f273"}.fa-child-reaching{--fa:"\e59d"}.fa-head-side-virus{--fa:"\e064"}.fa-user-gear{--fa:"\f4fe"}.fa-user-cog{--fa:"\f4fe"}.fa-arrow-up-1-9{--fa:"\f163"}.fa-sort-numeric-up{--fa:"\f163"}.fa-door-closed{--fa:"\f52a"}.fa-shield-virus{--fa:"\e06c"}.fa-dice-six{--fa:"\f526"}.fa-mosquito-net{--fa:"\e52c"}.fa-file-fragment{--fa:"\e697"}.fa-bridge-water{--fa:"\e4ce"}.fa-person-booth{--fa:"\f756"}.fa-text-width{--fa:"\f035"}.fa-hat-wizard{--fa:"\f6e8"}.fa-pen-fancy{--fa:"\f5ac"}.fa-person-digging{--fa:"\f85e"}.fa-digging{--fa:"\f85e"}.fa-trash{--fa:"\f1f8"}.fa-gauge-simple{--fa:"\f629"}.fa-gauge-simple-med{--fa:"\f629"}.fa-tachometer-average{--fa:"\f629"}.fa-book-medical{--fa:"\f7e6"}.fa-poo{--fa:"\f2fe"}.fa-quote-right{--fa:"\f10e"}.fa-quote-right-alt{--fa:"\f10e"}.fa-shirt{--fa:"\f553"}.fa-t-shirt{--fa:"\f553"}.fa-tshirt{--fa:"\f553"}.fa-cubes{--fa:"\f1b3"}.fa-divide{--fa:"\f529"}.fa-tenge-sign{--fa:"\f7d7"}.fa-tenge{--fa:"\f7d7"}.fa-headphones{--fa:"\f025"}.fa-hands-holding{--fa:"\f4c2"}.fa-hands-clapping{--fa:"\e1a8"}.fa-republican{--fa:"\f75e"}.fa-arrow-left{--fa:"\f060"}.fa-person-circle-xmark{--fa:"\e543"}.fa-ruler{--fa:"\f545"}.fa-align-left{--fa:"\f036"}.fa-dice-d6{--fa:"\f6d1"}.fa-restroom{--fa:"\f7bd"}.fa-j{--fa:"\4a"}.fa-users-viewfinder{--fa:"\e595"}.fa-file-video{--fa:"\f1c8"}.fa-up-right-from-square{--fa:"\f35d"}.fa-external-link-alt{--fa:"\f35d"}.fa-table-cells{--fa:"\f00a"}.fa-th{--fa:"\f00a"}.fa-file-pdf{--fa:"\f1c1"}.fa-book-bible{--fa:"\f647"}.fa-bible{--fa:"\f647"}.fa-o{--fa:"\4f"}.fa-suitcase-medical{--fa:"\f0fa"}.fa-medkit{--fa:"\f0fa"}.fa-user-secret{--fa:"\f21b"}.fa-otter{--fa:"\f700"}.fa-person-dress{--fa:"\f182"}.fa-female{--fa:"\f182"}.fa-comment-dollar{--fa:"\f651"}.fa-business-time{--fa:"\f64a"}.fa-briefcase-clock{--fa:"\f64a"}.fa-table-cells-large{--fa:"\f009"}.fa-th-large{--fa:"\f009"}.fa-book-tanakh{--fa:"\f827"}.fa-tanakh{--fa:"\f827"}.fa-phone-volume{--fa:"\f2a0"}.fa-volume-control-phone{--fa:"\f2a0"}.fa-hat-cowboy-side{--fa:"\f8c1"}.fa-clipboard-user{--fa:"\f7f3"}.fa-child{--fa:"\f1ae"}.fa-lira-sign{--fa:"\f195"}.fa-satellite{--fa:"\f7bf"}.fa-plane-lock{--fa:"\e558"}.fa-tag{--fa:"\f02b"}.fa-comment{--fa:"\f075"}.fa-cake-candles{--fa:"\f1fd"}.fa-birthday-cake{--fa:"\f1fd"}.fa-cake{--fa:"\f1fd"}.fa-envelope{--fa:"\f0e0"}.fa-angles-up{--fa:"\f102"}.fa-angle-double-up{--fa:"\f102"}.fa-paperclip{--fa:"\f0c6"}.fa-arrow-right-to-city{--fa:"\e4b3"}.fa-ribbon{--fa:"\f4d6"}.fa-lungs{--fa:"\f604"}.fa-arrow-up-9-1{--fa:"\f887"}.fa-sort-numeric-up-alt{--fa:"\f887"}.fa-litecoin-sign{--fa:"\e1d3"}.fa-border-none{--fa:"\f850"}.fa-circle-nodes{--fa:"\e4e2"}.fa-parachute-box{--fa:"\f4cd"}.fa-indent{--fa:"\f03c"}.fa-truck-field-un{--fa:"\e58e"}.fa-hourglass{--fa:"\f254"}.fa-hourglass-empty{--fa:"\f254"}.fa-mountain{--fa:"\f6fc"}.fa-user-doctor{--fa:"\f0f0"}.fa-user-md{--fa:"\f0f0"}.fa-circle-info{--fa:"\f05a"}.fa-info-circle{--fa:"\f05a"}.fa-cloud-meatball{--fa:"\f73b"}.fa-camera{--fa:"\f030"}.fa-camera-alt{--fa:"\f030"}.fa-square-virus{--fa:"\e578"}.fa-meteor{--fa:"\f753"}.fa-car-on{--fa:"\e4dd"}.fa-sleigh{--fa:"\f7cc"}.fa-arrow-down-1-9{--fa:"\f162"}.fa-sort-numeric-asc{--fa:"\f162"}.fa-sort-numeric-down{--fa:"\f162"}.fa-hand-holding-droplet{--fa:"\f4c1"}.fa-hand-holding-water{--fa:"\f4c1"}.fa-water{--fa:"\f773"}.fa-calendar-check{--fa:"\f274"}.fa-braille{--fa:"\f2a1"}.fa-prescription-bottle-medical{--fa:"\f486"}.fa-prescription-bottle-alt{--fa:"\f486"}.fa-landmark{--fa:"\f66f"}.fa-truck{--fa:"\f0d1"}.fa-crosshairs{--fa:"\f05b"}.fa-person-cane{--fa:"\e53c"}.fa-tent{--fa:"\e57d"}.fa-vest-patches{--fa:"\e086"}.fa-check-double{--fa:"\f560"}.fa-arrow-down-a-z{--fa:"\f15d"}.fa-sort-alpha-asc{--fa:"\f15d"}.fa-sort-alpha-down{--fa:"\f15d"}.fa-money-bill-wheat{--fa:"\e52a"}.fa-cookie{--fa:"\f563"}.fa-arrow-rotate-left{--fa:"\f0e2"}.fa-arrow-left-rotate{--fa:"\f0e2"}.fa-arrow-rotate-back{--fa:"\f0e2"}.fa-arrow-rotate-backward{--fa:"\f0e2"}.fa-undo{--fa:"\f0e2"}.fa-hard-drive{--fa:"\f0a0"}.fa-hdd{--fa:"\f0a0"}.fa-face-grin-squint-tears{--fa:"\f586"}.fa-grin-squint-tears{--fa:"\f586"}.fa-dumbbell{--fa:"\f44b"}.fa-rectangle-list{--fa:"\f022"}.fa-list-alt{--fa:"\f022"}.fa-tarp-droplet{--fa:"\e57c"}.fa-house-medical-circle-check{--fa:"\e511"}.fa-person-skiing-nordic{--fa:"\f7ca"}.fa-skiing-nordic{--fa:"\f7ca"}.fa-calendar-plus{--fa:"\f271"}.fa-plane-arrival{--fa:"\f5af"}.fa-circle-left{--fa:"\f359"}.fa-arrow-alt-circle-left{--fa:"\f359"}.fa-train-subway{--fa:"\f239"}.fa-subway{--fa:"\f239"}.fa-chart-gantt{--fa:"\e0e4"}.fa-indian-rupee-sign{--fa:"\e1bc"}.fa-indian-rupee{--fa:"\e1bc"}.fa-inr{--fa:"\e1bc"}.fa-crop-simple{--fa:"\f565"}.fa-crop-alt{--fa:"\f565"}.fa-money-bill-1{--fa:"\f3d1"}.fa-money-bill-alt{--fa:"\f3d1"}.fa-left-long{--fa:"\f30a"}.fa-long-arrow-alt-left{--fa:"\f30a"}.fa-dna{--fa:"\f471"}.fa-virus-slash{--fa:"\e075"}.fa-minus{--fa:"\f068"}.fa-subtract{--fa:"\f068"}.fa-chess{--fa:"\f439"}.fa-arrow-left-long{--fa:"\f177"}.fa-long-arrow-left{--fa:"\f177"}.fa-plug-circle-check{--fa:"\e55c"}.fa-street-view{--fa:"\f21d"}.fa-franc-sign{--fa:"\e18f"}.fa-volume-off{--fa:"\f026"}.fa-hands-asl-interpreting{--fa:"\f2a3"}.fa-american-sign-language-interpreting{--fa:"\f2a3"}.fa-asl-interpreting{--fa:"\f2a3"}.fa-hands-american-sign-language-interpreting{--fa:"\f2a3"}.fa-gear{--fa:"\f013"}.fa-cog{--fa:"\f013"}.fa-droplet-slash{--fa:"\f5c7"}.fa-tint-slash{--fa:"\f5c7"}.fa-mosque{--fa:"\f678"}.fa-mosquito{--fa:"\e52b"}.fa-star-of-david{--fa:"\f69a"}.fa-person-military-rifle{--fa:"\e54b"}.fa-cart-shopping{--fa:"\f07a"}.fa-shopping-cart{--fa:"\f07a"}.fa-vials{--fa:"\f493"}.fa-plug-circle-plus{--fa:"\e55f"}.fa-place-of-worship{--fa:"\f67f"}.fa-grip-vertical{--fa:"\f58e"}.fa-hexagon-nodes{--fa:"\e699"}.fa-arrow-turn-up{--fa:"\f148"}.fa-level-up{--fa:"\f148"}.fa-u{--fa:"\55"}.fa-square-root-variable{--fa:"\f698"}.fa-square-root-alt{--fa:"\f698"}.fa-clock{--fa:"\f017"}.fa-clock-four{--fa:"\f017"}.fa-backward-step{--fa:"\f048"}.fa-step-backward{--fa:"\f048"}.fa-pallet{--fa:"\f482"}.fa-faucet{--fa:"\e005"}.fa-baseball-bat-ball{--fa:"\f432"}.fa-s{--fa:"\53"}.fa-timeline{--fa:"\e29c"}.fa-keyboard{--fa:"\f11c"}.fa-caret-down{--fa:"\f0d7"}.fa-house-chimney-medical{--fa:"\f7f2"}.fa-clinic-medical{--fa:"\f7f2"}.fa-temperature-three-quarters{--fa:"\f2c8"}.fa-temperature-3{--fa:"\f2c8"}.fa-thermometer-3{--fa:"\f2c8"}.fa-thermometer-three-quarters{--fa:"\f2c8"}.fa-mobile-screen{--fa:"\f3cf"}.fa-mobile-android-alt{--fa:"\f3cf"}.fa-plane-up{--fa:"\e22d"}.fa-piggy-bank{--fa:"\f4d3"}.fa-battery-half{--fa:"\f242"}.fa-battery-3{--fa:"\f242"}.fa-mountain-city{--fa:"\e52e"}.fa-coins{--fa:"\f51e"}.fa-khanda{--fa:"\f66d"}.fa-sliders{--fa:"\f1de"}.fa-sliders-h{--fa:"\f1de"}.fa-folder-tree{--fa:"\f802"}.fa-network-wired{--fa:"\f6ff"}.fa-map-pin{--fa:"\f276"}.fa-hamsa{--fa:"\f665"}.fa-cent-sign{--fa:"\e3f5"}.fa-flask{--fa:"\f0c3"}.fa-person-pregnant{--fa:"\e31e"}.fa-wand-sparkles{--fa:"\f72b"}.fa-ellipsis-vertical{--fa:"\f142"}.fa-ellipsis-v{--fa:"\f142"}.fa-ticket{--fa:"\f145"}.fa-power-off{--fa:"\f011"}.fa-right-long{--fa:"\f30b"}.fa-long-arrow-alt-right{--fa:"\f30b"}.fa-flag-usa{--fa:"\f74d"}.fa-laptop-file{--fa:"\e51d"}.fa-tty{--fa:"\f1e4"}.fa-teletype{--fa:"\f1e4"}.fa-diagram-next{--fa:"\e476"}.fa-person-rifle{--fa:"\e54e"}.fa-house-medical-circle-exclamation{--fa:"\e512"}.fa-closed-captioning{--fa:"\f20a"}.fa-person-hiking{--fa:"\f6ec"}.fa-hiking{--fa:"\f6ec"}.fa-venus-double{--fa:"\f226"}.fa-images{--fa:"\f302"}.fa-calculator{--fa:"\f1ec"}.fa-people-pulling{--fa:"\e535"}.fa-n{--fa:"\4e"}.fa-cable-car{--fa:"\f7da"}.fa-tram{--fa:"\f7da"}.fa-cloud-rain{--fa:"\f73d"}.fa-building-circle-xmark{--fa:"\e4d4"}.fa-ship{--fa:"\f21a"}.fa-arrows-down-to-line{--fa:"\e4b8"}.fa-download{--fa:"\f019"}.fa-face-grin{--fa:"\f580"}.fa-grin{--fa:"\f580"}.fa-delete-left{--fa:"\f55a"}.fa-backspace{--fa:"\f55a"}.fa-eye-dropper{--fa:"\f1fb"}.fa-eye-dropper-empty{--fa:"\f1fb"}.fa-eyedropper{--fa:"\f1fb"}.fa-file-circle-check{--fa:"\e5a0"}.fa-forward{--fa:"\f04e"}.fa-mobile{--fa:"\f3ce"}.fa-mobile-android{--fa:"\f3ce"}.fa-mobile-phone{--fa:"\f3ce"}.fa-face-meh{--fa:"\f11a"}.fa-meh{--fa:"\f11a"}.fa-align-center{--fa:"\f037"}.fa-book-skull{--fa:"\f6b7"}.fa-book-dead{--fa:"\f6b7"}.fa-id-card{--fa:"\f2c2"}.fa-drivers-license{--fa:"\f2c2"}.fa-outdent{--fa:"\f03b"}.fa-dedent{--fa:"\f03b"}.fa-heart-circle-exclamation{--fa:"\e4fe"}.fa-house{--fa:"\f015"}.fa-home{--fa:"\f015"}.fa-home-alt{--fa:"\f015"}.fa-home-lg-alt{--fa:"\f015"}.fa-calendar-week{--fa:"\f784"}.fa-laptop-medical{--fa:"\f812"}.fa-b{--fa:"\42"}.fa-file-medical{--fa:"\f477"}.fa-dice-one{--fa:"\f525"}.fa-kiwi-bird{--fa:"\f535"}.fa-arrow-right-arrow-left{--fa:"\f0ec"}.fa-exchange{--fa:"\f0ec"}.fa-rotate-right{--fa:"\f2f9"}.fa-redo-alt{--fa:"\f2f9"}.fa-rotate-forward{--fa:"\f2f9"}.fa-utensils{--fa:"\f2e7"}.fa-cutlery{--fa:"\f2e7"}.fa-arrow-up-wide-short{--fa:"\f161"}.fa-sort-amount-up{--fa:"\f161"}.fa-mill-sign{--fa:"\e1ed"}.fa-bowl-rice{--fa:"\e2eb"}.fa-skull{--fa:"\f54c"}.fa-tower-broadcast{--fa:"\f519"}.fa-broadcast-tower{--fa:"\f519"}.fa-truck-pickup{--fa:"\f63c"}.fa-up-long{--fa:"\f30c"}.fa-long-arrow-alt-up{--fa:"\f30c"}.fa-stop{--fa:"\f04d"}.fa-code-merge{--fa:"\f387"}.fa-upload{--fa:"\f093"}.fa-hurricane{--fa:"\f751"}.fa-mound{--fa:"\e52d"}.fa-toilet-portable{--fa:"\e583"}.fa-compact-disc{--fa:"\f51f"}.fa-file-arrow-down{--fa:"\f56d"}.fa-file-download{--fa:"\f56d"}.fa-caravan{--fa:"\f8ff"}.fa-shield-cat{--fa:"\e572"}.fa-bolt{--fa:"\f0e7"}.fa-zap{--fa:"\f0e7"}.fa-glass-water{--fa:"\e4f4"}.fa-oil-well{--fa:"\e532"}.fa-vault{--fa:"\e2c5"}.fa-mars{--fa:"\f222"}.fa-toilet{--fa:"\f7d8"}.fa-plane-circle-xmark{--fa:"\e557"}.fa-yen-sign{--fa:"\f157"}.fa-cny{--fa:"\f157"}.fa-jpy{--fa:"\f157"}.fa-rmb{--fa:"\f157"}.fa-yen{--fa:"\f157"}.fa-ruble-sign{--fa:"\f158"}.fa-rouble{--fa:"\f158"}.fa-rub{--fa:"\f158"}.fa-ruble{--fa:"\f158"}.fa-sun{--fa:"\f185"}.fa-guitar{--fa:"\f7a6"}.fa-face-laugh-wink{--fa:"\f59c"}.fa-laugh-wink{--fa:"\f59c"}.fa-horse-head{--fa:"\f7ab"}.fa-bore-hole{--fa:"\e4c3"}.fa-industry{--fa:"\f275"}.fa-circle-down{--fa:"\f358"}.fa-arrow-alt-circle-down{--fa:"\f358"}.fa-arrows-turn-to-dots{--fa:"\e4c1"}.fa-florin-sign{--fa:"\e184"}.fa-arrow-down-short-wide{--fa:"\f884"}.fa-sort-amount-desc{--fa:"\f884"}.fa-sort-amount-down-alt{--fa:"\f884"}.fa-less-than{--fa:"\3c"}.fa-angle-down{--fa:"\f107"}.fa-car-tunnel{--fa:"\e4de"}.fa-head-side-cough{--fa:"\e061"}.fa-grip-lines{--fa:"\f7a4"}.fa-thumbs-down{--fa:"\f165"}.fa-user-lock{--fa:"\f502"}.fa-arrow-right-long{--fa:"\f178"}.fa-long-arrow-right{--fa:"\f178"}.fa-anchor-circle-xmark{--fa:"\e4ac"}.fa-ellipsis{--fa:"\f141"}.fa-ellipsis-h{--fa:"\f141"}.fa-chess-pawn{--fa:"\f443"}.fa-kit-medical{--fa:"\f479"}.fa-first-aid{--fa:"\f479"}.fa-person-through-window{--fa:"\e5a9"}.fa-toolbox{--fa:"\f552"}.fa-hands-holding-circle{--fa:"\e4fb"}.fa-bug{--fa:"\f188"}.fa-credit-card{--fa:"\f09d"}.fa-credit-card-alt{--fa:"\f09d"}.fa-car{--fa:"\f1b9"}.fa-automobile{--fa:"\f1b9"}.fa-hand-holding-hand{--fa:"\e4f7"}.fa-book-open-reader{--fa:"\f5da"}.fa-book-reader{--fa:"\f5da"}.fa-mountain-sun{--fa:"\e52f"}.fa-arrows-left-right-to-line{--fa:"\e4ba"}.fa-dice-d20{--fa:"\f6cf"}.fa-truck-droplet{--fa:"\e58c"}.fa-file-circle-xmark{--fa:"\e5a1"}.fa-temperature-arrow-up{--fa:"\e040"}.fa-temperature-up{--fa:"\e040"}.fa-medal{--fa:"\f5a2"}.fa-bed{--fa:"\f236"}.fa-square-h{--fa:"\f0fd"}.fa-h-square{--fa:"\f0fd"}.fa-podcast{--fa:"\f2ce"}.fa-temperature-full{--fa:"\f2c7"}.fa-temperature-4{--fa:"\f2c7"}.fa-thermometer-4{--fa:"\f2c7"}.fa-thermometer-full{--fa:"\f2c7"}.fa-bell{--fa:"\f0f3"}.fa-superscript{--fa:"\f12b"}.fa-plug-circle-xmark{--fa:"\e560"}.fa-star-of-life{--fa:"\f621"}.fa-phone-slash{--fa:"\f3dd"}.fa-paint-roller{--fa:"\f5aa"}.fa-handshake-angle{--fa:"\f4c4"}.fa-hands-helping{--fa:"\f4c4"}.fa-location-dot{--fa:"\f3c5"}.fa-map-marker-alt{--fa:"\f3c5"}.fa-file{--fa:"\f15b"}.fa-greater-than{--fa:"\3e"}.fa-person-swimming{--fa:"\f5c4"}.fa-swimmer{--fa:"\f5c4"}.fa-arrow-down{--fa:"\f063"}.fa-droplet{--fa:"\f043"}.fa-tint{--fa:"\f043"}.fa-eraser{--fa:"\f12d"}.fa-earth-americas{--fa:"\f57d"}.fa-earth{--fa:"\f57d"}.fa-earth-america{--fa:"\f57d"}.fa-globe-americas{--fa:"\f57d"}.fa-person-burst{--fa:"\e53b"}.fa-dove{--fa:"\f4ba"}.fa-battery-empty{--fa:"\f244"}.fa-battery-0{--fa:"\f244"}.fa-socks{--fa:"\f696"}.fa-inbox{--fa:"\f01c"}.fa-section{--fa:"\e447"}.fa-gauge-high{--fa:"\f625"}.fa-tachometer-alt{--fa:"\f625"}.fa-tachometer-alt-fast{--fa:"\f625"}.fa-envelope-open-text{--fa:"\f658"}.fa-hospital{--fa:"\f0f8"}.fa-hospital-alt{--fa:"\f0f8"}.fa-hospital-wide{--fa:"\f0f8"}.fa-wine-bottle{--fa:"\f72f"}.fa-chess-rook{--fa:"\f447"}.fa-bars-staggered{--fa:"\f550"}.fa-reorder{--fa:"\f550"}.fa-stream{--fa:"\f550"}.fa-dharmachakra{--fa:"\f655"}.fa-hotdog{--fa:"\f80f"}.fa-person-walking-with-cane{--fa:"\f29d"}.fa-blind{--fa:"\f29d"}.fa-drum{--fa:"\f569"}.fa-ice-cream{--fa:"\f810"}.fa-heart-circle-bolt{--fa:"\e4fc"}.fa-fax{--fa:"\f1ac"}.fa-paragraph{--fa:"\f1dd"}.fa-check-to-slot{--fa:"\f772"}.fa-vote-yea{--fa:"\f772"}.fa-star-half{--fa:"\f089"}.fa-boxes-stacked{--fa:"\f468"}.fa-boxes{--fa:"\f468"}.fa-boxes-alt{--fa:"\f468"}.fa-link{--fa:"\f0c1"}.fa-chain{--fa:"\f0c1"}.fa-ear-listen{--fa:"\f2a2"}.fa-assistive-listening-systems{--fa:"\f2a2"}.fa-tree-city{--fa:"\e587"}.fa-play{--fa:"\f04b"}.fa-font{--fa:"\f031"}.fa-table-cells-row-lock{--fa:"\e67a"}.fa-rupiah-sign{--fa:"\e23d"}.fa-magnifying-glass{--fa:"\f002"}.fa-search{--fa:"\f002"}.fa-table-tennis-paddle-ball{--fa:"\f45d"}.fa-ping-pong-paddle-ball{--fa:"\f45d"}.fa-table-tennis{--fa:"\f45d"}.fa-person-dots-from-line{--fa:"\f470"}.fa-diagnoses{--fa:"\f470"}.fa-trash-can-arrow-up{--fa:"\f82a"}.fa-trash-restore-alt{--fa:"\f82a"}.fa-naira-sign{--fa:"\e1f6"}.fa-cart-arrow-down{--fa:"\f218"}.fa-walkie-talkie{--fa:"\f8ef"}.fa-file-pen{--fa:"\f31c"}.fa-file-edit{--fa:"\f31c"}.fa-receipt{--fa:"\f543"}.fa-square-pen{--fa:"\f14b"}.fa-pen-square{--fa:"\f14b"}.fa-pencil-square{--fa:"\f14b"}.fa-suitcase-rolling{--fa:"\f5c1"}.fa-person-circle-exclamation{--fa:"\e53f"}.fa-chevron-down{--fa:"\f078"}.fa-battery-full{--fa:"\f240"}.fa-battery{--fa:"\f240"}.fa-battery-5{--fa:"\f240"}.fa-skull-crossbones{--fa:"\f714"}.fa-code-compare{--fa:"\e13a"}.fa-list-ul{--fa:"\f0ca"}.fa-list-dots{--fa:"\f0ca"}.fa-school-lock{--fa:"\e56f"}.fa-tower-cell{--fa:"\e585"}.fa-down-long{--fa:"\f309"}.fa-long-arrow-alt-down{--fa:"\f309"}.fa-ranking-star{--fa:"\e561"}.fa-chess-king{--fa:"\f43f"}.fa-person-harassing{--fa:"\e549"}.fa-brazilian-real-sign{--fa:"\e46c"}.fa-landmark-dome{--fa:"\f752"}.fa-landmark-alt{--fa:"\f752"}.fa-arrow-up{--fa:"\f062"}.fa-tv{--fa:"\f26c"}.fa-television{--fa:"\f26c"}.fa-tv-alt{--fa:"\f26c"}.fa-shrimp{--fa:"\e448"}.fa-list-check{--fa:"\f0ae"}.fa-tasks{--fa:"\f0ae"}.fa-jug-detergent{--fa:"\e519"}.fa-circle-user{--fa:"\f2bd"}.fa-user-circle{--fa:"\f2bd"}.fa-user-shield{--fa:"\f505"}.fa-wind{--fa:"\f72e"}.fa-car-burst{--fa:"\f5e1"}.fa-car-crash{--fa:"\f5e1"}.fa-y{--fa:"\59"}.fa-person-snowboarding{--fa:"\f7ce"}.fa-snowboarding{--fa:"\f7ce"}.fa-truck-fast{--fa:"\f48b"}.fa-shipping-fast{--fa:"\f48b"}.fa-fish{--fa:"\f578"}.fa-user-graduate{--fa:"\f501"}.fa-circle-half-stroke{--fa:"\f042"}.fa-adjust{--fa:"\f042"}.fa-clapperboard{--fa:"\e131"}.fa-circle-radiation{--fa:"\f7ba"}.fa-radiation-alt{--fa:"\f7ba"}.fa-baseball{--fa:"\f433"}.fa-baseball-ball{--fa:"\f433"}.fa-jet-fighter-up{--fa:"\e518"}.fa-diagram-project{--fa:"\f542"}.fa-project-diagram{--fa:"\f542"}.fa-copy{--fa:"\f0c5"}.fa-volume-xmark{--fa:"\f6a9"}.fa-volume-mute{--fa:"\f6a9"}.fa-volume-times{--fa:"\f6a9"}.fa-hand-sparkles{--fa:"\e05d"}.fa-grip{--fa:"\f58d"}.fa-grip-horizontal{--fa:"\f58d"}.fa-share-from-square{--fa:"\f14d"}.fa-share-square{--fa:"\f14d"}.fa-child-combatant{--fa:"\e4e0"}.fa-child-rifle{--fa:"\e4e0"}.fa-gun{--fa:"\e19b"}.fa-square-phone{--fa:"\f098"}.fa-phone-square{--fa:"\f098"}.fa-plus{--fa:"\2b"}.fa-add{--fa:"\2b"}.fa-expand{--fa:"\f065"}.fa-computer{--fa:"\e4e5"}.fa-xmark{--fa:"\f00d"}.fa-close{--fa:"\f00d"}.fa-multiply{--fa:"\f00d"}.fa-remove{--fa:"\f00d"}.fa-times{--fa:"\f00d"}.fa-arrows-up-down-left-right{--fa:"\f047"}.fa-arrows{--fa:"\f047"}.fa-chalkboard-user{--fa:"\f51c"}.fa-chalkboard-teacher{--fa:"\f51c"}.fa-peso-sign{--fa:"\e222"}.fa-building-shield{--fa:"\e4d8"}.fa-baby{--fa:"\f77c"}.fa-users-line{--fa:"\e592"}.fa-quote-left{--fa:"\f10d"}.fa-quote-left-alt{--fa:"\f10d"}.fa-tractor{--fa:"\f722"}.fa-trash-arrow-up{--fa:"\f829"}.fa-trash-restore{--fa:"\f829"}.fa-arrow-down-up-lock{--fa:"\e4b0"}.fa-lines-leaning{--fa:"\e51e"}.fa-ruler-combined{--fa:"\f546"}.fa-copyright{--fa:"\f1f9"}.fa-equals{--fa:"\3d"}.fa-blender{--fa:"\f517"}.fa-teeth{--fa:"\f62e"}.fa-shekel-sign{--fa:"\f20b"}.fa-ils{--fa:"\f20b"}.fa-shekel{--fa:"\f20b"}.fa-sheqel{--fa:"\f20b"}.fa-sheqel-sign{--fa:"\f20b"}.fa-map{--fa:"\f279"}.fa-rocket{--fa:"\f135"}.fa-photo-film{--fa:"\f87c"}.fa-photo-video{--fa:"\f87c"}.fa-folder-minus{--fa:"\f65d"}.fa-hexagon-nodes-bolt{--fa:"\e69a"}.fa-store{--fa:"\f54e"}.fa-arrow-trend-up{--fa:"\e098"}.fa-plug-circle-minus{--fa:"\e55e"}.fa-sign-hanging{--fa:"\f4d9"}.fa-sign{--fa:"\f4d9"}.fa-bezier-curve{--fa:"\f55b"}.fa-bell-slash{--fa:"\f1f6"}.fa-tablet{--fa:"\f3fb"}.fa-tablet-android{--fa:"\f3fb"}.fa-school-flag{--fa:"\e56e"}.fa-fill{--fa:"\f575"}.fa-angle-up{--fa:"\f106"}.fa-drumstick-bite{--fa:"\f6d7"}.fa-holly-berry{--fa:"\f7aa"}.fa-chevron-left{--fa:"\f053"}.fa-bacteria{--fa:"\e059"}.fa-hand-lizard{--fa:"\f258"}.fa-notdef{--fa:"\e1fe"}.fa-disease{--fa:"\f7fa"}.fa-briefcase-medical{--fa:"\f469"}.fa-genderless{--fa:"\f22d"}.fa-chevron-right{--fa:"\f054"}.fa-retweet{--fa:"\f079"}.fa-car-rear{--fa:"\f5de"}.fa-car-alt{--fa:"\f5de"}.fa-pump-soap{--fa:"\e06b"}.fa-video-slash{--fa:"\f4e2"}.fa-battery-quarter{--fa:"\f243"}.fa-battery-2{--fa:"\f243"}.fa-radio{--fa:"\f8d7"}.fa-baby-carriage{--fa:"\f77d"}.fa-carriage-baby{--fa:"\f77d"}.fa-traffic-light{--fa:"\f637"}.fa-thermometer{--fa:"\f491"}.fa-vr-cardboard{--fa:"\f729"}.fa-hand-middle-finger{--fa:"\f806"}.fa-percent{--fa:"\25"}.fa-percentage{--fa:"\25"}.fa-truck-moving{--fa:"\f4df"}.fa-glass-water-droplet{--fa:"\e4f5"}.fa-display{--fa:"\e163"}.fa-face-smile{--fa:"\f118"}.fa-smile{--fa:"\f118"}.fa-thumbtack{--fa:"\f08d"}.fa-thumb-tack{--fa:"\f08d"}.fa-trophy{--fa:"\f091"}.fa-person-praying{--fa:"\f683"}.fa-pray{--fa:"\f683"}.fa-hammer{--fa:"\f6e3"}.fa-hand-peace{--fa:"\f25b"}.fa-rotate{--fa:"\f2f1"}.fa-sync-alt{--fa:"\f2f1"}.fa-spinner{--fa:"\f110"}.fa-robot{--fa:"\f544"}.fa-peace{--fa:"\f67c"}.fa-gears{--fa:"\f085"}.fa-cogs{--fa:"\f085"}.fa-warehouse{--fa:"\f494"}.fa-arrow-up-right-dots{--fa:"\e4b7"}.fa-splotch{--fa:"\f5bc"}.fa-face-grin-hearts{--fa:"\f584"}.fa-grin-hearts{--fa:"\f584"}.fa-dice-four{--fa:"\f524"}.fa-sim-card{--fa:"\f7c4"}.fa-transgender{--fa:"\f225"}.fa-transgender-alt{--fa:"\f225"}.fa-mercury{--fa:"\f223"}.fa-arrow-turn-down{--fa:"\f149"}.fa-level-down{--fa:"\f149"}.fa-person-falling-burst{--fa:"\e547"}.fa-award{--fa:"\f559"}.fa-ticket-simple{--fa:"\f3ff"}.fa-ticket-alt{--fa:"\f3ff"}.fa-building{--fa:"\f1ad"}.fa-angles-left{--fa:"\f100"}.fa-angle-double-left{--fa:"\f100"}.fa-qrcode{--fa:"\f029"}.fa-clock-rotate-left{--fa:"\f1da"}.fa-history{--fa:"\f1da"}.fa-face-grin-beam-sweat{--fa:"\f583"}.fa-grin-beam-sweat{--fa:"\f583"}.fa-file-export{--fa:"\f56e"}.fa-arrow-right-from-file{--fa:"\f56e"}.fa-shield{--fa:"\f132"}.fa-shield-blank{--fa:"\f132"}.fa-arrow-up-short-wide{--fa:"\f885"}.fa-sort-amount-up-alt{--fa:"\f885"}.fa-comment-nodes{--fa:"\e696"}.fa-house-medical{--fa:"\e3b2"}.fa-golf-ball-tee{--fa:"\f450"}.fa-golf-ball{--fa:"\f450"}.fa-circle-chevron-left{--fa:"\f137"}.fa-chevron-circle-left{--fa:"\f137"}.fa-house-chimney-window{--fa:"\e00d"}.fa-pen-nib{--fa:"\f5ad"}.fa-tent-arrow-turn-left{--fa:"\e580"}.fa-tents{--fa:"\e582"}.fa-wand-magic{--fa:"\f0d0"}.fa-magic{--fa:"\f0d0"}.fa-dog{--fa:"\f6d3"}.fa-carrot{--fa:"\f787"}.fa-moon{--fa:"\f186"}.fa-wine-glass-empty{--fa:"\f5ce"}.fa-wine-glass-alt{--fa:"\f5ce"}.fa-cheese{--fa:"\f7ef"}.fa-yin-yang{--fa:"\f6ad"}.fa-music{--fa:"\f001"}.fa-code-commit{--fa:"\f386"}.fa-temperature-low{--fa:"\f76b"}.fa-person-biking{--fa:"\f84a"}.fa-biking{--fa:"\f84a"}.fa-broom{--fa:"\f51a"}.fa-shield-heart{--fa:"\e574"}.fa-gopuram{--fa:"\f664"}.fa-earth-oceania{--fa:"\e47b"}.fa-globe-oceania{--fa:"\e47b"}.fa-square-xmark{--fa:"\f2d3"}.fa-times-square{--fa:"\f2d3"}.fa-xmark-square{--fa:"\f2d3"}.fa-hashtag{--fa:"\23"}.fa-up-right-and-down-left-from-center{--fa:"\f424"}.fa-expand-alt{--fa:"\f424"}.fa-oil-can{--fa:"\f613"}.fa-t{--fa:"\54"}.fa-hippo{--fa:"\f6ed"}.fa-chart-column{--fa:"\e0e3"}.fa-infinity{--fa:"\f534"}.fa-vial-circle-check{--fa:"\e596"}.fa-person-arrow-down-to-line{--fa:"\e538"}.fa-voicemail{--fa:"\f897"}.fa-fan{--fa:"\f863"}.fa-person-walking-luggage{--fa:"\e554"}.fa-up-down{--fa:"\f338"}.fa-arrows-alt-v{--fa:"\f338"}.fa-cloud-moon-rain{--fa:"\f73c"}.fa-calendar{--fa:"\f133"}.fa-trailer{--fa:"\e041"}.fa-bahai{--fa:"\f666"}.fa-haykal{--fa:"\f666"}.fa-sd-card{--fa:"\f7c2"}.fa-dragon{--fa:"\f6d5"}.fa-shoe-prints{--fa:"\f54b"}.fa-circle-plus{--fa:"\f055"}.fa-plus-circle{--fa:"\f055"}.fa-face-grin-tongue-wink{--fa:"\f58b"}.fa-grin-tongue-wink{--fa:"\f58b"}.fa-hand-holding{--fa:"\f4bd"}.fa-plug-circle-exclamation{--fa:"\e55d"}.fa-link-slash{--fa:"\f127"}.fa-chain-broken{--fa:"\f127"}.fa-chain-slash{--fa:"\f127"}.fa-unlink{--fa:"\f127"}.fa-clone{--fa:"\f24d"}.fa-person-walking-arrow-loop-left{--fa:"\e551"}.fa-arrow-up-z-a{--fa:"\f882"}.fa-sort-alpha-up-alt{--fa:"\f882"}.fa-fire-flame-curved{--fa:"\f7e4"}.fa-fire-alt{--fa:"\f7e4"}.fa-tornado{--fa:"\f76f"}.fa-file-circle-plus{--fa:"\e494"}.fa-book-quran{--fa:"\f687"}.fa-quran{--fa:"\f687"}.fa-anchor{--fa:"\f13d"}.fa-border-all{--fa:"\f84c"}.fa-face-angry{--fa:"\f556"}.fa-angry{--fa:"\f556"}.fa-cookie-bite{--fa:"\f564"}.fa-arrow-trend-down{--fa:"\e097"}.fa-rss{--fa:"\f09e"}.fa-feed{--fa:"\f09e"}.fa-draw-polygon{--fa:"\f5ee"}.fa-scale-balanced{--fa:"\f24e"}.fa-balance-scale{--fa:"\f24e"}.fa-gauge-simple-high{--fa:"\f62a"}.fa-tachometer{--fa:"\f62a"}.fa-tachometer-fast{--fa:"\f62a"}.fa-shower{--fa:"\f2cc"}.fa-desktop{--fa:"\f390"}.fa-desktop-alt{--fa:"\f390"}.fa-m{--fa:"\4d"}.fa-table-list{--fa:"\f00b"}.fa-th-list{--fa:"\f00b"}.fa-comment-sms{--fa:"\f7cd"}.fa-sms{--fa:"\f7cd"}.fa-book{--fa:"\f02d"}.fa-user-plus{--fa:"\f234"}.fa-check{--fa:"\f00c"}.fa-battery-three-quarters{--fa:"\f241"}.fa-battery-4{--fa:"\f241"}.fa-house-circle-check{--fa:"\e509"}.fa-angle-left{--fa:"\f104"}.fa-diagram-successor{--fa:"\e47a"}.fa-truck-arrow-right{--fa:"\e58b"}.fa-arrows-split-up-and-left{--fa:"\e4bc"}.fa-hand-fist{--fa:"\f6de"}.fa-fist-raised{--fa:"\f6de"}.fa-cloud-moon{--fa:"\f6c3"}.fa-briefcase{--fa:"\f0b1"}.fa-person-falling{--fa:"\e546"}.fa-image-portrait{--fa:"\f3e0"}.fa-portrait{--fa:"\f3e0"}.fa-user-tag{--fa:"\f507"}.fa-rug{--fa:"\e569"}.fa-earth-europe{--fa:"\f7a2"}.fa-globe-europe{--fa:"\f7a2"}.fa-cart-flatbed-suitcase{--fa:"\f59d"}.fa-luggage-cart{--fa:"\f59d"}.fa-rectangle-xmark{--fa:"\f410"}.fa-rectangle-times{--fa:"\f410"}.fa-times-rectangle{--fa:"\f410"}.fa-window-close{--fa:"\f410"}.fa-baht-sign{--fa:"\e0ac"}.fa-book-open{--fa:"\f518"}.fa-book-journal-whills{--fa:"\f66a"}.fa-journal-whills{--fa:"\f66a"}.fa-handcuffs{--fa:"\e4f8"}.fa-triangle-exclamation{--fa:"\f071"}.fa-exclamation-triangle{--fa:"\f071"}.fa-warning{--fa:"\f071"}.fa-database{--fa:"\f1c0"}.fa-share{--fa:"\f064"}.fa-mail-forward{--fa:"\f064"}.fa-bottle-droplet{--fa:"\e4c4"}.fa-mask-face{--fa:"\e1d7"}.fa-hill-rockslide{--fa:"\e508"}.fa-right-left{--fa:"\f362"}.fa-exchange-alt{--fa:"\f362"}.fa-paper-plane{--fa:"\f1d8"}.fa-road-circle-exclamation{--fa:"\e565"}.fa-dungeon{--fa:"\f6d9"}.fa-align-right{--fa:"\f038"}.fa-money-bill-1-wave{--fa:"\f53b"}.fa-money-bill-wave-alt{--fa:"\f53b"}.fa-life-ring{--fa:"\f1cd"}.fa-hands{--fa:"\f2a7"}.fa-sign-language{--fa:"\f2a7"}.fa-signing{--fa:"\f2a7"}.fa-calendar-day{--fa:"\f783"}.fa-water-ladder{--fa:"\f5c5"}.fa-ladder-water{--fa:"\f5c5"}.fa-swimming-pool{--fa:"\f5c5"}.fa-arrows-up-down{--fa:"\f07d"}.fa-arrows-v{--fa:"\f07d"}.fa-face-grimace{--fa:"\f57f"}.fa-grimace{--fa:"\f57f"}.fa-wheelchair-move{--fa:"\e2ce"}.fa-wheelchair-alt{--fa:"\e2ce"}.fa-turn-down{--fa:"\f3be"}.fa-level-down-alt{--fa:"\f3be"}.fa-person-walking-arrow-right{--fa:"\e552"}.fa-square-envelope{--fa:"\f199"}.fa-envelope-square{--fa:"\f199"}.fa-dice{--fa:"\f522"}.fa-bowling-ball{--fa:"\f436"}.fa-brain{--fa:"\f5dc"}.fa-bandage{--fa:"\f462"}.fa-band-aid{--fa:"\f462"}.fa-calendar-minus{--fa:"\f272"}.fa-circle-xmark{--fa:"\f057"}.fa-times-circle{--fa:"\f057"}.fa-xmark-circle{--fa:"\f057"}.fa-gifts{--fa:"\f79c"}.fa-hotel{--fa:"\f594"}.fa-earth-asia{--fa:"\f57e"}.fa-globe-asia{--fa:"\f57e"}.fa-id-card-clip{--fa:"\f47f"}.fa-id-card-alt{--fa:"\f47f"}.fa-magnifying-glass-plus{--fa:"\f00e"}.fa-search-plus{--fa:"\f00e"}.fa-thumbs-up{--fa:"\f164"}.fa-user-clock{--fa:"\f4fd"}.fa-hand-dots{--fa:"\f461"}.fa-allergies{--fa:"\f461"}.fa-file-invoice{--fa:"\f570"}.fa-window-minimize{--fa:"\f2d1"}.fa-mug-saucer{--fa:"\f0f4"}.fa-coffee{--fa:"\f0f4"}.fa-brush{--fa:"\f55d"}.fa-file-half-dashed{--fa:"\e698"}.fa-mask{--fa:"\f6fa"}.fa-magnifying-glass-minus{--fa:"\f010"}.fa-search-minus{--fa:"\f010"}.fa-ruler-vertical{--fa:"\f548"}.fa-user-large{--fa:"\f406"}.fa-user-alt{--fa:"\f406"}.fa-train-tram{--fa:"\e5b4"}.fa-user-nurse{--fa:"\f82f"}.fa-syringe{--fa:"\f48e"}.fa-cloud-sun{--fa:"\f6c4"}.fa-stopwatch-20{--fa:"\e06f"}.fa-square-full{--fa:"\f45c"}.fa-magnet{--fa:"\f076"}.fa-jar{--fa:"\e516"}.fa-note-sticky{--fa:"\f249"}.fa-sticky-note{--fa:"\f249"}.fa-bug-slash{--fa:"\e490"}.fa-arrow-up-from-water-pump{--fa:"\e4b6"}.fa-bone{--fa:"\f5d7"}.fa-table-cells-row-unlock{--fa:"\e691"}.fa-user-injured{--fa:"\f728"}.fa-face-sad-tear{--fa:"\f5b4"}.fa-sad-tear{--fa:"\f5b4"}.fa-plane{--fa:"\f072"}.fa-tent-arrows-down{--fa:"\e581"}.fa-exclamation{--fa:"\21"}.fa-arrows-spin{--fa:"\e4bb"}.fa-print{--fa:"\f02f"}.fa-turkish-lira-sign{--fa:"\e2bb"}.fa-try{--fa:"\e2bb"}.fa-turkish-lira{--fa:"\e2bb"}.fa-dollar-sign{--fa:"\24"}.fa-dollar{--fa:"\24"}.fa-usd{--fa:"\24"}.fa-x{--fa:"\58"}.fa-magnifying-glass-dollar{--fa:"\f688"}.fa-search-dollar{--fa:"\f688"}.fa-users-gear{--fa:"\f509"}.fa-users-cog{--fa:"\f509"}.fa-person-military-pointing{--fa:"\e54a"}.fa-building-columns{--fa:"\f19c"}.fa-bank{--fa:"\f19c"}.fa-institution{--fa:"\f19c"}.fa-museum{--fa:"\f19c"}.fa-university{--fa:"\f19c"}.fa-umbrella{--fa:"\f0e9"}.fa-trowel{--fa:"\e589"}.fa-d{--fa:"\44"}.fa-stapler{--fa:"\e5af"}.fa-masks-theater{--fa:"\f630"}.fa-theater-masks{--fa:"\f630"}.fa-kip-sign{--fa:"\e1c4"}.fa-hand-point-left{--fa:"\f0a5"}.fa-handshake-simple{--fa:"\f4c6"}.fa-handshake-alt{--fa:"\f4c6"}.fa-jet-fighter{--fa:"\f0fb"}.fa-fighter-jet{--fa:"\f0fb"}.fa-square-share-nodes{--fa:"\f1e1"}.fa-share-alt-square{--fa:"\f1e1"}.fa-barcode{--fa:"\f02a"}.fa-plus-minus{--fa:"\e43c"}.fa-video{--fa:"\f03d"}.fa-video-camera{--fa:"\f03d"}.fa-graduation-cap{--fa:"\f19d"}.fa-mortar-board{--fa:"\f19d"}.fa-hand-holding-medical{--fa:"\e05c"}.fa-person-circle-check{--fa:"\e53e"}.fa-turn-up{--fa:"\f3bf"}.fa-level-up-alt{--fa:"\f3bf"}.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}/*!* Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.*/:root,:host{--fa-style-family-classic:'Font Awesome 6 Free';--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(../fonts/fa-regular-400.woff2)format("woff2"),url(../fonts/fa-regular-400.ttf)format("truetype")}.far,.fa-regular{font-weight:400}/*!* Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.*/:root,:host{--fa-style-family-classic:'Font Awesome 6 Free';--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(../fonts/fa-solid-900.woff2)format("woff2"),url(../fonts/fa-solid-900.ttf)format("truetype")}.fas,.fa-solid,.content article a:where(.external-link):not(:has(img)):after{font-weight:900}/*!* Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.*/:root,:host{--fa-style-family-brands:'Font Awesome 6 Brands';--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(../fonts/fa-brands-400.woff2)format("woff2"),url(../fonts/fa-brands-400.ttf)format("truetype")}.fab,.fa-brands{font-weight:400}.fa-monero{--fa:"\f3d0"}.fa-hooli{--fa:"\f427"}.fa-yelp{--fa:"\f1e9"}.fa-cc-visa{--fa:"\f1f0"}.fa-lastfm{--fa:"\f202"}.fa-shopware{--fa:"\f5b5"}.fa-creative-commons-nc{--fa:"\f4e8"}.fa-aws{--fa:"\f375"}.fa-redhat{--fa:"\f7bc"}.fa-yoast{--fa:"\f2b1"}.fa-cloudflare{--fa:"\e07d"}.fa-ups{--fa:"\f7e0"}.fa-pixiv{--fa:"\e640"}.fa-wpexplorer{--fa:"\f2de"}.fa-dyalog{--fa:"\f399"}.fa-bity{--fa:"\f37a"}.fa-stackpath{--fa:"\f842"}.fa-buysellads{--fa:"\f20d"}.fa-first-order{--fa:"\f2b0"}.fa-modx{--fa:"\f285"}.fa-guilded{--fa:"\e07e"}.fa-vnv{--fa:"\f40b"}.fa-square-js{--fa:"\f3b9"}.fa-js-square{--fa:"\f3b9"}.fa-microsoft{--fa:"\f3ca"}.fa-qq{--fa:"\f1d6"}.fa-orcid{--fa:"\f8d2"}.fa-java{--fa:"\f4e4"}.fa-invision{--fa:"\f7b0"}.fa-creative-commons-pd-alt{--fa:"\f4ed"}.fa-centercode{--fa:"\f380"}.fa-glide-g{--fa:"\f2a6"}.fa-drupal{--fa:"\f1a9"}.fa-jxl{--fa:"\e67b"}.fa-dart-lang{--fa:"\e693"}.fa-hire-a-helper{--fa:"\f3b0"}.fa-creative-commons-by{--fa:"\f4e7"}.fa-unity{--fa:"\e049"}.fa-whmcs{--fa:"\f40d"}.fa-rocketchat{--fa:"\f3e8"}.fa-vk{--fa:"\f189"}.fa-untappd{--fa:"\f405"}.fa-mailchimp{--fa:"\f59e"}.fa-css3-alt{--fa:"\f38b"}.fa-square-reddit{--fa:"\f1a2"}.fa-reddit-square{--fa:"\f1a2"}.fa-vimeo-v{--fa:"\f27d"}.fa-contao{--fa:"\f26d"}.fa-square-font-awesome{--fa:"\e5ad"}.fa-deskpro{--fa:"\f38f"}.fa-brave{--fa:"\e63c"}.fa-sistrix{--fa:"\f3ee"}.fa-square-instagram{--fa:"\e055"}.fa-instagram-square{--fa:"\e055"}.fa-battle-net{--fa:"\f835"}.fa-the-red-yeti{--fa:"\f69d"}.fa-square-hacker-news{--fa:"\f3af"}.fa-hacker-news-square{--fa:"\f3af"}.fa-edge{--fa:"\f282"}.fa-threads{--fa:"\e618"}.fa-napster{--fa:"\f3d2"}.fa-square-snapchat{--fa:"\f2ad"}.fa-snapchat-square{--fa:"\f2ad"}.fa-google-plus-g{--fa:"\f0d5"}.fa-artstation{--fa:"\f77a"}.fa-markdown{--fa:"\f60f"}.fa-sourcetree{--fa:"\f7d3"}.fa-google-plus{--fa:"\f2b3"}.fa-diaspora{--fa:"\f791"}.fa-foursquare{--fa:"\f180"}.fa-stack-overflow{--fa:"\f16c"}.fa-github-alt{--fa:"\f113"}.fa-phoenix-squadron{--fa:"\f511"}.fa-pagelines{--fa:"\f18c"}.fa-algolia{--fa:"\f36c"}.fa-red-river{--fa:"\f3e3"}.fa-creative-commons-sa{--fa:"\f4ef"}.fa-safari{--fa:"\f267"}.fa-google{--fa:"\f1a0"}.fa-square-font-awesome-stroke{--fa:"\f35c"}.fa-font-awesome-alt{--fa:"\f35c"}.fa-atlassian{--fa:"\f77b"}.fa-linkedin-in{--fa:"\f0e1"}.fa-digital-ocean{--fa:"\f391"}.fa-nimblr{--fa:"\f5a8"}.fa-chromecast{--fa:"\f838"}.fa-evernote{--fa:"\f839"}.fa-hacker-news{--fa:"\f1d4"}.fa-creative-commons-sampling{--fa:"\f4f0"}.fa-adversal{--fa:"\f36a"}.fa-creative-commons{--fa:"\f25e"}.fa-watchman-monitoring{--fa:"\e087"}.fa-fonticons{--fa:"\f280"}.fa-weixin{--fa:"\f1d7"}.fa-shirtsinbulk{--fa:"\f214"}.fa-codepen{--fa:"\f1cb"}.fa-git-alt{--fa:"\f841"}.fa-lyft{--fa:"\f3c3"}.fa-rev{--fa:"\f5b2"}.fa-windows{--fa:"\f17a"}.fa-wizards-of-the-coast{--fa:"\f730"}.fa-square-viadeo{--fa:"\f2aa"}.fa-viadeo-square{--fa:"\f2aa"}.fa-meetup{--fa:"\f2e0"}.fa-centos{--fa:"\f789"}.fa-adn{--fa:"\f170"}.fa-cloudsmith{--fa:"\f384"}.fa-opensuse{--fa:"\e62b"}.fa-pied-piper-alt{--fa:"\f1a8"}.fa-square-dribbble{--fa:"\f397"}.fa-dribbble-square{--fa:"\f397"}.fa-codiepie{--fa:"\f284"}.fa-node{--fa:"\f419"}.fa-mix{--fa:"\f3cb"}.fa-steam{--fa:"\f1b6"}.fa-cc-apple-pay{--fa:"\f416"}.fa-scribd{--fa:"\f28a"}.fa-debian{--fa:"\e60b"}.fa-openid{--fa:"\f19b"}.fa-instalod{--fa:"\e081"}.fa-files-pinwheel{--fa:"\e69f"}.fa-expeditedssl{--fa:"\f23e"}.fa-sellcast{--fa:"\f2da"}.fa-square-twitter{--fa:"\f081"}.fa-twitter-square{--fa:"\f081"}.fa-r-project{--fa:"\f4f7"}.fa-delicious{--fa:"\f1a5"}.fa-freebsd{--fa:"\f3a4"}.fa-vuejs{--fa:"\f41f"}.fa-accusoft{--fa:"\f369"}.fa-ioxhost{--fa:"\f208"}.fa-fonticons-fi{--fa:"\f3a2"}.fa-app-store{--fa:"\f36f"}.fa-cc-mastercard{--fa:"\f1f1"}.fa-itunes-note{--fa:"\f3b5"}.fa-golang{--fa:"\e40f"}.fa-kickstarter{--fa:"\f3bb"}.fa-square-kickstarter{--fa:"\f3bb"}.fa-grav{--fa:"\f2d6"}.fa-weibo{--fa:"\f18a"}.fa-uncharted{--fa:"\e084"}.fa-firstdraft{--fa:"\f3a1"}.fa-square-youtube{--fa:"\f431"}.fa-youtube-square{--fa:"\f431"}.fa-wikipedia-w{--fa:"\f266"}.fa-wpressr{--fa:"\f3e4"}.fa-rendact{--fa:"\f3e4"}.fa-angellist{--fa:"\f209"}.fa-galactic-republic{--fa:"\f50c"}.fa-nfc-directional{--fa:"\e530"}.fa-skype{--fa:"\f17e"}.fa-joget{--fa:"\f3b7"}.fa-fedora{--fa:"\f798"}.fa-stripe-s{--fa:"\f42a"}.fa-meta{--fa:"\e49b"}.fa-laravel{--fa:"\f3bd"}.fa-hotjar{--fa:"\f3b1"}.fa-bluetooth-b{--fa:"\f294"}.fa-square-letterboxd{--fa:"\e62e"}.fa-sticker-mule{--fa:"\f3f7"}.fa-creative-commons-zero{--fa:"\f4f3"}.fa-hips{--fa:"\f452"}.fa-css{--fa:"\e6a2"}.fa-behance{--fa:"\f1b4"}.fa-reddit{--fa:"\f1a1"}.fa-discord{--fa:"\f392"}.fa-chrome{--fa:"\f268"}.fa-app-store-ios{--fa:"\f370"}.fa-cc-discover{--fa:"\f1f2"}.fa-wpbeginner{--fa:"\f297"}.fa-confluence{--fa:"\f78d"}.fa-shoelace{--fa:"\e60c"}.fa-mdb{--fa:"\f8ca"}.fa-dochub{--fa:"\f394"}.fa-accessible-icon{--fa:"\f368"}.fa-ebay{--fa:"\f4f4"}.fa-amazon{--fa:"\f270"}.fa-unsplash{--fa:"\e07c"}.fa-yarn{--fa:"\f7e3"}.fa-square-steam{--fa:"\f1b7"}.fa-steam-square{--fa:"\f1b7"}.fa-500px{--fa:"\f26e"}.fa-square-vimeo{--fa:"\f194"}.fa-vimeo-square{--fa:"\f194"}.fa-asymmetrik{--fa:"\f372"}.fa-font-awesome{--fa:"\f2b4"}.fa-font-awesome-flag{--fa:"\f2b4"}.fa-font-awesome-logo-full{--fa:"\f2b4"}.fa-gratipay{--fa:"\f184"}.fa-apple{--fa:"\f179"}.fa-hive{--fa:"\e07f"}.fa-gitkraken{--fa:"\f3a6"}.fa-keybase{--fa:"\f4f5"}.fa-apple-pay{--fa:"\f415"}.fa-padlet{--fa:"\e4a0"}.fa-amazon-pay{--fa:"\f42c"}.fa-square-github{--fa:"\f092"}.fa-github-square{--fa:"\f092"}.fa-stumbleupon{--fa:"\f1a4"}.fa-fedex{--fa:"\f797"}.fa-phoenix-framework{--fa:"\f3dc"}.fa-shopify{--fa:"\e057"}.fa-neos{--fa:"\f612"}.fa-square-threads{--fa:"\e619"}.fa-hackerrank{--fa:"\f5f7"}.fa-researchgate{--fa:"\f4f8"}.fa-swift{--fa:"\f8e1"}.fa-angular{--fa:"\f420"}.fa-speakap{--fa:"\f3f3"}.fa-angrycreative{--fa:"\f36e"}.fa-y-combinator{--fa:"\f23b"}.fa-empire{--fa:"\f1d1"}.fa-envira{--fa:"\f299"}.fa-google-scholar{--fa:"\e63b"}.fa-square-gitlab{--fa:"\e5ae"}.fa-gitlab-square{--fa:"\e5ae"}.fa-studiovinari{--fa:"\f3f8"}.fa-pied-piper{--fa:"\f2ae"}.fa-wordpress{--fa:"\f19a"}.fa-product-hunt{--fa:"\f288"}.fa-firefox{--fa:"\f269"}.fa-linode{--fa:"\f2b8"}.fa-goodreads{--fa:"\f3a8"}.fa-square-odnoklassniki{--fa:"\f264"}.fa-odnoklassniki-square{--fa:"\f264"}.fa-jsfiddle{--fa:"\f1cc"}.fa-sith{--fa:"\f512"}.fa-themeisle{--fa:"\f2b2"}.fa-page4{--fa:"\f3d7"}.fa-hashnode{--fa:"\e499"}.fa-react{--fa:"\f41b"}.fa-cc-paypal{--fa:"\f1f4"}.fa-squarespace{--fa:"\f5be"}.fa-cc-stripe{--fa:"\f1f5"}.fa-creative-commons-share{--fa:"\f4f2"}.fa-bitcoin{--fa:"\f379"}.fa-keycdn{--fa:"\f3ba"}.fa-opera{--fa:"\f26a"}.fa-itch-io{--fa:"\f83a"}.fa-umbraco{--fa:"\f8e8"}.fa-galactic-senate{--fa:"\f50d"}.fa-ubuntu{--fa:"\f7df"}.fa-draft2digital{--fa:"\f396"}.fa-stripe{--fa:"\f429"}.fa-houzz{--fa:"\f27c"}.fa-gg{--fa:"\f260"}.fa-dhl{--fa:"\f790"}.fa-square-pinterest{--fa:"\f0d3"}.fa-pinterest-square{--fa:"\f0d3"}.fa-xing{--fa:"\f168"}.fa-blackberry{--fa:"\f37b"}.fa-creative-commons-pd{--fa:"\f4ec"}.fa-playstation{--fa:"\f3df"}.fa-quinscape{--fa:"\f459"}.fa-less{--fa:"\f41d"}.fa-blogger-b{--fa:"\f37d"}.fa-opencart{--fa:"\f23d"}.fa-vine{--fa:"\f1ca"}.fa-signal-messenger{--fa:"\e663"}.fa-paypal{--fa:"\f1ed"}.fa-gitlab{--fa:"\f296"}.fa-typo3{--fa:"\f42b"}.fa-reddit-alien{--fa:"\f281"}.fa-yahoo{--fa:"\f19e"}.fa-dailymotion{--fa:"\e052"}.fa-affiliatetheme{--fa:"\f36b"}.fa-pied-piper-pp{--fa:"\f1a7"}.fa-bootstrap{--fa:"\f836"}.fa-odnoklassniki{--fa:"\f263"}.fa-nfc-symbol{--fa:"\e531"}.fa-mintbit{--fa:"\e62f"}.fa-ethereum{--fa:"\f42e"}.fa-speaker-deck{--fa:"\f83c"}.fa-creative-commons-nc-eu{--fa:"\f4e9"}.fa-patreon{--fa:"\f3d9"}.fa-avianex{--fa:"\f374"}.fa-ello{--fa:"\f5f1"}.fa-gofore{--fa:"\f3a7"}.fa-bimobject{--fa:"\f378"}.fa-brave-reverse{--fa:"\e63d"}.fa-facebook-f{--fa:"\f39e"}.fa-square-google-plus{--fa:"\f0d4"}.fa-google-plus-square{--fa:"\f0d4"}.fa-web-awesome{--fa:"\e682"}.fa-mandalorian{--fa:"\f50f"}.fa-first-order-alt{--fa:"\f50a"}.fa-osi{--fa:"\f41a"}.fa-google-wallet{--fa:"\f1ee"}.fa-d-and-d-beyond{--fa:"\f6ca"}.fa-periscope{--fa:"\f3da"}.fa-fulcrum{--fa:"\f50b"}.fa-cloudscale{--fa:"\f383"}.fa-forumbee{--fa:"\f211"}.fa-mizuni{--fa:"\f3cc"}.fa-schlix{--fa:"\f3ea"}.fa-square-xing{--fa:"\f169"}.fa-xing-square{--fa:"\f169"}.fa-bandcamp{--fa:"\f2d5"}.fa-wpforms{--fa:"\f298"}.fa-cloudversify{--fa:"\f385"}.fa-usps{--fa:"\f7e1"}.fa-megaport{--fa:"\f5a3"}.fa-magento{--fa:"\f3c4"}.fa-spotify{--fa:"\f1bc"}.fa-optin-monster{--fa:"\f23c"}.fa-fly{--fa:"\f417"}.fa-square-bluesky{--fa:"\e6a3"}.fa-aviato{--fa:"\f421"}.fa-itunes{--fa:"\f3b4"}.fa-cuttlefish{--fa:"\f38c"}.fa-blogger{--fa:"\f37c"}.fa-flickr{--fa:"\f16e"}.fa-viber{--fa:"\f409"}.fa-soundcloud{--fa:"\f1be"}.fa-digg{--fa:"\f1a6"}.fa-tencent-weibo{--fa:"\f1d5"}.fa-letterboxd{--fa:"\e62d"}.fa-symfony{--fa:"\f83d"}.fa-maxcdn{--fa:"\f136"}.fa-etsy{--fa:"\f2d7"}.fa-facebook-messenger{--fa:"\f39f"}.fa-audible{--fa:"\f373"}.fa-think-peaks{--fa:"\f731"}.fa-bilibili{--fa:"\e3d9"}.fa-erlang{--fa:"\f39d"}.fa-x-twitter{--fa:"\e61b"}.fa-cotton-bureau{--fa:"\f89e"}.fa-dashcube{--fa:"\f210"}.fa-42-group{--fa:"\e080"}.fa-innosoft{--fa:"\e080"}.fa-stack-exchange{--fa:"\f18d"}.fa-elementor{--fa:"\f430"}.fa-square-pied-piper{--fa:"\e01e"}.fa-pied-piper-square{--fa:"\e01e"}.fa-creative-commons-nd{--fa:"\f4eb"}.fa-palfed{--fa:"\f3d8"}.fa-superpowers{--fa:"\f2dd"}.fa-resolving{--fa:"\f3e7"}.fa-xbox{--fa:"\f412"}.fa-square-web-awesome-stroke{--fa:"\e684"}.fa-searchengin{--fa:"\f3eb"}.fa-tiktok{--fa:"\e07b"}.fa-square-facebook{--fa:"\f082"}.fa-facebook-square{--fa:"\f082"}.fa-renren{--fa:"\f18b"}.fa-linux{--fa:"\f17c"}.fa-glide{--fa:"\f2a5"}.fa-linkedin{--fa:"\f08c"}.fa-hubspot{--fa:"\f3b2"}.fa-deploydog{--fa:"\f38e"}.fa-twitch{--fa:"\f1e8"}.fa-flutter{--fa:"\e694"}.fa-ravelry{--fa:"\f2d9"}.fa-mixer{--fa:"\e056"}.fa-square-lastfm{--fa:"\f203"}.fa-lastfm-square{--fa:"\f203"}.fa-vimeo{--fa:"\f40a"}.fa-mendeley{--fa:"\f7b3"}.fa-uniregistry{--fa:"\f404"}.fa-figma{--fa:"\f799"}.fa-creative-commons-remix{--fa:"\f4ee"}.fa-cc-amazon-pay{--fa:"\f42d"}.fa-dropbox{--fa:"\f16b"}.fa-instagram{--fa:"\f16d"}.fa-cmplid{--fa:"\e360"}.fa-upwork{--fa:"\e641"}.fa-facebook{--fa:"\f09a"}.fa-gripfire{--fa:"\f3ac"}.fa-jedi-order{--fa:"\f50e"}.fa-uikit{--fa:"\f403"}.fa-fort-awesome-alt{--fa:"\f3a3"}.fa-phabricator{--fa:"\f3db"}.fa-ussunnah{--fa:"\f407"}.fa-earlybirds{--fa:"\f39a"}.fa-trade-federation{--fa:"\f513"}.fa-autoprefixer{--fa:"\f41c"}.fa-whatsapp{--fa:"\f232"}.fa-square-upwork{--fa:"\e67c"}.fa-slideshare{--fa:"\f1e7"}.fa-google-play{--fa:"\f3ab"}.fa-viadeo{--fa:"\f2a9"}.fa-line{--fa:"\f3c0"}.fa-google-drive{--fa:"\f3aa"}.fa-servicestack{--fa:"\f3ec"}.fa-simplybuilt{--fa:"\f215"}.fa-bitbucket{--fa:"\f171"}.fa-imdb{--fa:"\f2d8"}.fa-deezer{--fa:"\e077"}.fa-raspberry-pi{--fa:"\f7bb"}.fa-jira{--fa:"\f7b1"}.fa-docker{--fa:"\f395"}.fa-screenpal{--fa:"\e570"}.fa-bluetooth{--fa:"\f293"}.fa-gitter{--fa:"\f426"}.fa-d-and-d{--fa:"\f38d"}.fa-microblog{--fa:"\e01a"}.fa-cc-diners-club{--fa:"\f24c"}.fa-gg-circle{--fa:"\f261"}.fa-pied-piper-hat{--fa:"\f4e5"}.fa-kickstarter-k{--fa:"\f3bc"}.fa-yandex{--fa:"\f413"}.fa-readme{--fa:"\f4d5"}.fa-html5{--fa:"\f13b"}.fa-sellsy{--fa:"\f213"}.fa-square-web-awesome{--fa:"\e683"}.fa-sass{--fa:"\f41e"}.fa-wirsindhandwerk{--fa:"\e2d0"}.fa-wsh{--fa:"\e2d0"}.fa-buromobelexperte{--fa:"\f37f"}.fa-salesforce{--fa:"\f83b"}.fa-octopus-deploy{--fa:"\e082"}.fa-medapps{--fa:"\f3c6"}.fa-ns8{--fa:"\f3d5"}.fa-pinterest-p{--fa:"\f231"}.fa-apper{--fa:"\f371"}.fa-fort-awesome{--fa:"\f286"}.fa-waze{--fa:"\f83f"}.fa-bluesky{--fa:"\e671"}.fa-cc-jcb{--fa:"\f24b"}.fa-snapchat{--fa:"\f2ab"}.fa-snapchat-ghost{--fa:"\f2ab"}.fa-fantasy-flight-games{--fa:"\f6dc"}.fa-rust{--fa:"\e07a"}.fa-wix{--fa:"\f5cf"}.fa-square-behance{--fa:"\f1b5"}.fa-behance-square{--fa:"\f1b5"}.fa-supple{--fa:"\f3f9"}.fa-webflow{--fa:"\e65c"}.fa-rebel{--fa:"\f1d0"}.fa-css3{--fa:"\f13c"}.fa-staylinked{--fa:"\f3f5"}.fa-kaggle{--fa:"\f5fa"}.fa-space-awesome{--fa:"\e5ac"}.fa-deviantart{--fa:"\f1bd"}.fa-cpanel{--fa:"\f388"}.fa-goodreads-g{--fa:"\f3a9"}.fa-square-git{--fa:"\f1d2"}.fa-git-square{--fa:"\f1d2"}.fa-square-tumblr{--fa:"\f174"}.fa-tumblr-square{--fa:"\f174"}.fa-trello{--fa:"\f181"}.fa-creative-commons-nc-jp{--fa:"\f4ea"}.fa-get-pocket{--fa:"\f265"}.fa-perbyte{--fa:"\e083"}.fa-grunt{--fa:"\f3ad"}.fa-weebly{--fa:"\f5cc"}.fa-connectdevelop{--fa:"\f20e"}.fa-leanpub{--fa:"\f212"}.fa-black-tie{--fa:"\f27e"}.fa-themeco{--fa:"\f5c6"}.fa-python{--fa:"\f3e2"}.fa-android{--fa:"\f17b"}.fa-bots{--fa:"\e340"}.fa-free-code-camp{--fa:"\f2c5"}.fa-hornbill{--fa:"\f592"}.fa-js{--fa:"\f3b8"}.fa-ideal{--fa:"\e013"}.fa-git{--fa:"\f1d3"}.fa-dev{--fa:"\f6cc"}.fa-sketch{--fa:"\f7c6"}.fa-yandex-international{--fa:"\f414"}.fa-cc-amex{--fa:"\f1f3"}.fa-uber{--fa:"\f402"}.fa-github{--fa:"\f09b"}.fa-php{--fa:"\f457"}.fa-alipay{--fa:"\f642"}.fa-youtube{--fa:"\f167"}.fa-skyatlas{--fa:"\f216"}.fa-firefox-browser{--fa:"\e007"}.fa-replyd{--fa:"\f3e6"}.fa-suse{--fa:"\f7d6"}.fa-jenkins{--fa:"\f3b6"}.fa-twitter{--fa:"\f099"}.fa-rockrms{--fa:"\f3e9"}.fa-pinterest{--fa:"\f0d2"}.fa-buffer{--fa:"\f837"}.fa-npm{--fa:"\f3d4"}.fa-yammer{--fa:"\f840"}.fa-btc{--fa:"\f15a"}.fa-dribbble{--fa:"\f17d"}.fa-stumbleupon-circle{--fa:"\f1a3"}.fa-internet-explorer{--fa:"\f26b"}.fa-stubber{--fa:"\e5c7"}.fa-telegram{--fa:"\f2c6"}.fa-telegram-plane{--fa:"\f2c6"}.fa-old-republic{--fa:"\f510"}.fa-odysee{--fa:"\e5c6"}.fa-square-whatsapp{--fa:"\f40c"}.fa-whatsapp-square{--fa:"\f40c"}.fa-node-js{--fa:"\f3d3"}.fa-edge-legacy{--fa:"\e078"}.fa-slack{--fa:"\f198"}.fa-slack-hash{--fa:"\f198"}.fa-medrt{--fa:"\f3c8"}.fa-usb{--fa:"\f287"}.fa-tumblr{--fa:"\f173"}.fa-vaadin{--fa:"\f408"}.fa-quora{--fa:"\f2c4"}.fa-square-x-twitter{--fa:"\e61a"}.fa-reacteurope{--fa:"\f75d"}.fa-medium{--fa:"\f23a"}.fa-medium-m{--fa:"\f23a"}.fa-amilia{--fa:"\f36d"}.fa-mixcloud{--fa:"\f289"}.fa-flipboard{--fa:"\f44d"}.fa-viacoin{--fa:"\f237"}.fa-critical-role{--fa:"\f6c9"}.fa-sitrox{--fa:"\e44a"}.fa-discourse{--fa:"\f393"}.fa-joomla{--fa:"\f1aa"}.fa-mastodon{--fa:"\f4f6"}.fa-airbnb{--fa:"\f834"}.fa-wolf-pack-battalion{--fa:"\f514"}.fa-buy-n-large{--fa:"\f8a6"}.fa-gulp{--fa:"\f3ae"}.fa-creative-commons-sampling-plus{--fa:"\f4f1"}.fa-strava{--fa:"\f428"}.fa-ember{--fa:"\f423"}.fa-canadian-maple-leaf{--fa:"\f785"}.fa-teamspeak{--fa:"\f4f9"}.fa-pushed{--fa:"\f3e1"}.fa-wordpress-simple{--fa:"\f411"}.fa-nutritionix{--fa:"\f3d6"}.fa-wodu{--fa:"\e088"}.fa-google-pay{--fa:"\e079"}.fa-intercom{--fa:"\f7af"}.fa-zhihu{--fa:"\f63f"}.fa-korvue{--fa:"\f42f"}.fa-pix{--fa:"\e43a"}.fa-steam-symbol{--fa:"\f3f6"}/*!* Font Awesome Free 6.7.2 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 2024 Fonticons, Inc.*/.fa.fa-glass{--fa:"\f000"}.fa.fa-envelope-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-envelope-o{--fa:"\f0e0"}.fa.fa-star-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-star-o{--fa:"\f005"}.fa.fa-remove{--fa:"\f00d"}.fa.fa-close{--fa:"\f00d"}.fa.fa-gear{--fa:"\f013"}.fa.fa-trash-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-trash-o{--fa:"\f2ed"}.fa.fa-home{--fa:"\f015"}.fa.fa-file-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-o{--fa:"\f15b"}.fa.fa-clock-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-clock-o{--fa:"\f017"}.fa.fa-arrow-circle-o-down{font-family:'font awesome 6 free';font-weight:400}.fa.fa-arrow-circle-o-down{--fa:"\f358"}.fa.fa-arrow-circle-o-up{font-family:'font awesome 6 free';font-weight:400}.fa.fa-arrow-circle-o-up{--fa:"\f35b"}.fa.fa-play-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-play-circle-o{--fa:"\f144"}.fa.fa-repeat{--fa:"\f01e"}.fa.fa-rotate-right{--fa:"\f01e"}.fa.fa-refresh{--fa:"\f021"}.fa.fa-list-alt{font-family:'font awesome 6 free';font-weight:400}.fa.fa-list-alt{--fa:"\f022"}.fa.fa-dedent{--fa:"\f03b"}.fa.fa-video-camera{--fa:"\f03d"}.fa.fa-picture-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-picture-o{--fa:"\f03e"}.fa.fa-photo{font-family:'font awesome 6 free';font-weight:400}.fa.fa-photo{--fa:"\f03e"}.fa.fa-image{font-family:'font awesome 6 free';font-weight:400}.fa.fa-image{--fa:"\f03e"}.fa.fa-map-marker{--fa:"\f3c5"}.fa.fa-pencil-square-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-pencil-square-o{--fa:"\f044"}.fa.fa-edit{font-family:'font awesome 6 free';font-weight:400}.fa.fa-edit{--fa:"\f044"}.fa.fa-share-square-o{--fa:"\f14d"}.fa.fa-check-square-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-check-square-o{--fa:"\f14a"}.fa.fa-arrows{--fa:"\f0b2"}.fa.fa-times-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-times-circle-o{--fa:"\f057"}.fa.fa-check-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-check-circle-o{--fa:"\f058"}.fa.fa-mail-forward{--fa:"\f064"}.fa.fa-expand{--fa:"\f424"}.fa.fa-compress{--fa:"\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{--fa:"\f071"}.fa.fa-calendar{--fa:"\f073"}.fa.fa-arrows-v{--fa:"\f338"}.fa.fa-arrows-h{--fa:"\f337"}.fa.fa-bar-chart{--fa:"\e0e3"}.fa.fa-bar-chart-o{--fa:"\e0e3"}.fa.fa-twitter-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-twitter-square{--fa:"\f081"}.fa.fa-facebook-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-facebook-square{--fa:"\f082"}.fa.fa-gears{--fa:"\f085"}.fa.fa-thumbs-o-up{font-family:'font awesome 6 free';font-weight:400}.fa.fa-thumbs-o-up{--fa:"\f164"}.fa.fa-thumbs-o-down{font-family:'font awesome 6 free';font-weight:400}.fa.fa-thumbs-o-down{--fa:"\f165"}.fa.fa-heart-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-heart-o{--fa:"\f004"}.fa.fa-sign-out{--fa:"\f2f5"}.fa.fa-linkedin-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-linkedin-square{--fa:"\f08c"}.fa.fa-thumb-tack{--fa:"\f08d"}.fa.fa-external-link{--fa:"\f35d"}.fa.fa-sign-in{--fa:"\f2f6"}.fa.fa-github-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-github-square{--fa:"\f092"}.fa.fa-lemon-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-lemon-o{--fa:"\f094"}.fa.fa-square-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-square-o{--fa:"\f0c8"}.fa.fa-bookmark-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-bookmark-o{--fa:"\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{--fa:"\f39e"}.fa.fa-facebook-f{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-facebook-f{--fa:"\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{--fa:"\f09e"}.fa.fa-hdd-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hdd-o{--fa:"\f0a0"}.fa.fa-hand-o-right{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-o-right{--fa:"\f0a4"}.fa.fa-hand-o-left{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-o-left{--fa:"\f0a5"}.fa.fa-hand-o-up{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-o-up{--fa:"\f0a6"}.fa.fa-hand-o-down{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-o-down{--fa:"\f0a7"}.fa.fa-globe{--fa:"\f57d"}.fa.fa-tasks{--fa:"\f828"}.fa.fa-arrows-alt{--fa:"\f31e"}.fa.fa-group{--fa:"\f0c0"}.fa.fa-chain{--fa:"\f0c1"}.fa.fa-cut{--fa:"\f0c4"}.fa.fa-files-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-files-o{--fa:"\f0c5"}.fa.fa-floppy-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-floppy-o{--fa:"\f0c7"}.fa.fa-save{font-family:'font awesome 6 free';font-weight:400}.fa.fa-save{--fa:"\f0c7"}.fa.fa-navicon{--fa:"\f0c9"}.fa.fa-reorder{--fa:"\f0c9"}.fa.fa-magic{--fa:"\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-pinterest-square{--fa:"\f0d3"}.fa.fa-google-plus-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-google-plus-square{--fa:"\f0d4"}.fa.fa-google-plus{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-google-plus{--fa:"\f0d5"}.fa.fa-money{--fa:"\f3d1"}.fa.fa-unsorted{--fa:"\f0dc"}.fa.fa-sort-desc{--fa:"\f0dd"}.fa.fa-sort-asc{--fa:"\f0de"}.fa.fa-linkedin{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-linkedin{--fa:"\f0e1"}.fa.fa-rotate-left{--fa:"\f0e2"}.fa.fa-legal{--fa:"\f0e3"}.fa.fa-tachometer{--fa:"\f625"}.fa.fa-dashboard{--fa:"\f625"}.fa.fa-comment-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-comment-o{--fa:"\f075"}.fa.fa-comments-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-comments-o{--fa:"\f086"}.fa.fa-flash{--fa:"\f0e7"}.fa.fa-clipboard{--fa:"\f0ea"}.fa.fa-lightbulb-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-lightbulb-o{--fa:"\f0eb"}.fa.fa-exchange{--fa:"\f362"}.fa.fa-cloud-download{--fa:"\f0ed"}.fa.fa-cloud-upload{--fa:"\f0ee"}.fa.fa-bell-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-bell-o{--fa:"\f0f3"}.fa.fa-cutlery{--fa:"\f2e7"}.fa.fa-file-text-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-text-o{--fa:"\f15c"}.fa.fa-building-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-building-o{--fa:"\f1ad"}.fa.fa-hospital-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hospital-o{--fa:"\f0f8"}.fa.fa-tablet{--fa:"\f3fa"}.fa.fa-mobile{--fa:"\f3cd"}.fa.fa-mobile-phone{--fa:"\f3cd"}.fa.fa-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-circle-o{--fa:"\f111"}.fa.fa-mail-reply{--fa:"\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{--fa:"\f07b"}.fa.fa-folder-open-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-folder-open-o{--fa:"\f07c"}.fa.fa-smile-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-smile-o{--fa:"\f118"}.fa.fa-frown-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-frown-o{--fa:"\f119"}.fa.fa-meh-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-meh-o{--fa:"\f11a"}.fa.fa-keyboard-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-keyboard-o{--fa:"\f11c"}.fa.fa-flag-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-flag-o{--fa:"\f024"}.fa.fa-mail-reply-all{--fa:"\f122"}.fa.fa-star-half-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-star-half-o{--fa:"\f5c0"}.fa.fa-star-half-empty{font-family:'font awesome 6 free';font-weight:400}.fa.fa-star-half-empty{--fa:"\f5c0"}.fa.fa-star-half-full{font-family:'font awesome 6 free';font-weight:400}.fa.fa-star-half-full{--fa:"\f5c0"}.fa.fa-code-fork{--fa:"\f126"}.fa.fa-chain-broken{--fa:"\f127"}.fa.fa-unlink{--fa:"\f127"}.fa.fa-calendar-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-calendar-o{--fa:"\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{--fa:"\f09c"}.fa.fa-minus-square-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-minus-square-o{--fa:"\f146"}.fa.fa-level-up{--fa:"\f3bf"}.fa.fa-level-down{--fa:"\f3be"}.fa.fa-pencil-square{--fa:"\f14b"}.fa.fa-external-link-square{--fa:"\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{--fa:"\f150"}.fa.fa-toggle-down{font-family:'font awesome 6 free';font-weight:400}.fa.fa-toggle-down{--fa:"\f150"}.fa.fa-caret-square-o-up{font-family:'font awesome 6 free';font-weight:400}.fa.fa-caret-square-o-up{--fa:"\f151"}.fa.fa-toggle-up{font-family:'font awesome 6 free';font-weight:400}.fa.fa-toggle-up{--fa:"\f151"}.fa.fa-caret-square-o-right{font-family:'font awesome 6 free';font-weight:400}.fa.fa-caret-square-o-right{--fa:"\f152"}.fa.fa-toggle-right{font-family:'font awesome 6 free';font-weight:400}.fa.fa-toggle-right{--fa:"\f152"}.fa.fa-eur{--fa:"\f153"}.fa.fa-euro{--fa:"\f153"}.fa.fa-gbp{--fa:"\f154"}.fa.fa-usd{--fa:"\24"}.fa.fa-dollar{--fa:"\24"}.fa.fa-inr{--fa:"\e1bc"}.fa.fa-rupee{--fa:"\e1bc"}.fa.fa-jpy{--fa:"\f157"}.fa.fa-cny{--fa:"\f157"}.fa.fa-rmb{--fa:"\f157"}.fa.fa-yen{--fa:"\f157"}.fa.fa-rub{--fa:"\f158"}.fa.fa-ruble{--fa:"\f158"}.fa.fa-rouble{--fa:"\f158"}.fa.fa-krw{--fa:"\f159"}.fa.fa-won{--fa:"\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{--fa:"\f15a"}.fa.fa-file-text{--fa:"\f15c"}.fa.fa-sort-alpha-asc{--fa:"\f15d"}.fa.fa-sort-alpha-desc{--fa:"\f881"}.fa.fa-sort-amount-asc{--fa:"\f884"}.fa.fa-sort-amount-desc{--fa:"\f160"}.fa.fa-sort-numeric-asc{--fa:"\f162"}.fa.fa-sort-numeric-desc{--fa:"\f886"}.fa.fa-youtube-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-youtube-square{--fa:"\f431"}.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-xing-square{--fa:"\f169"}.fa.fa-youtube-play{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-youtube-play{--fa:"\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{--fa:"\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-tumblr-square{--fa:"\f174"}.fa.fa-long-arrow-down{--fa:"\f309"}.fa.fa-long-arrow-up{--fa:"\f30c"}.fa.fa-long-arrow-left{--fa:"\f30a"}.fa.fa-long-arrow-right{--fa:"\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{--fa:"\f184"}.fa.fa-sun-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-sun-o{--fa:"\f185"}.fa.fa-moon-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-moon-o{--fa:"\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{--fa:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:'font awesome 6 free';font-weight:400}.fa.fa-arrow-circle-o-left{--fa:"\f359"}.fa.fa-caret-square-o-left{font-family:'font awesome 6 free';font-weight:400}.fa.fa-caret-square-o-left{--fa:"\f191"}.fa.fa-toggle-left{font-family:'font awesome 6 free';font-weight:400}.fa.fa-toggle-left{--fa:"\f191"}.fa.fa-dot-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-dot-circle-o{--fa:"\f192"}.fa.fa-vimeo-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-vimeo-square{--fa:"\f194"}.fa.fa-try{--fa:"\e2bb"}.fa.fa-turkish-lira{--fa:"\e2bb"}.fa.fa-plus-square-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-plus-square-o{--fa:"\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{--fa:"\f19c"}.fa.fa-bank{--fa:"\f19c"}.fa.fa-mortar-board{--fa:"\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-reddit-square{--fa:"\f1a2"}.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-behance-square{--fa:"\f1b5"}.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-steam-square{--fa:"\f1b7"}.fa.fa-automobile{--fa:"\f1b9"}.fa.fa-cab{--fa:"\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{--fa:"\f1c1"}.fa.fa-file-word-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-word-o{--fa:"\f1c2"}.fa.fa-file-excel-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-excel-o{--fa:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-powerpoint-o{--fa:"\f1c4"}.fa.fa-file-image-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-image-o{--fa:"\f1c5"}.fa.fa-file-photo-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-photo-o{--fa:"\f1c5"}.fa.fa-file-picture-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-picture-o{--fa:"\f1c5"}.fa.fa-file-archive-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-archive-o{--fa:"\f1c6"}.fa.fa-file-zip-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-zip-o{--fa:"\f1c6"}.fa.fa-file-audio-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-audio-o{--fa:"\f1c7"}.fa.fa-file-sound-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-sound-o{--fa:"\f1c7"}.fa.fa-file-video-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-video-o{--fa:"\f1c8"}.fa.fa-file-movie-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-movie-o{--fa:"\f1c8"}.fa.fa-file-code-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-file-code-o{--fa:"\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{--fa:"\f1cd"}.fa.fa-life-buoy{--fa:"\f1cd"}.fa.fa-life-saver{--fa:"\f1cd"}.fa.fa-support{--fa:"\f1cd"}.fa.fa-circle-o-notch{--fa:"\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{--fa:"\f1d0"}.fa.fa-resistance{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-resistance{--fa:"\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{--fa:"\f1d1"}.fa.fa-git-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-git-square{--fa:"\f1d2"}.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{--fa:"\f1d4"}.fa.fa-yc-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-yc-square{--fa:"\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{--fa:"\f1d7"}.fa.fa-send{--fa:"\f1d8"}.fa.fa-paper-plane-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-paper-plane-o{--fa:"\f1d8"}.fa.fa-send-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-send-o{--fa:"\f1d8"}.fa.fa-circle-thin{font-family:'font awesome 6 free';font-weight:400}.fa.fa-circle-thin{--fa:"\f111"}.fa.fa-header{--fa:"\f1dc"}.fa.fa-futbol-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-futbol-o{--fa:"\f1e3"}.fa.fa-soccer-ball-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-soccer-ball-o{--fa:"\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{--fa:"\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{--fa:"\f1f6"}.fa.fa-trash{--fa:"\f2ed"}.fa.fa-copyright{font-family:'font awesome 6 free';font-weight:400}.fa.fa-eyedropper{--fa:"\f1fb"}.fa.fa-area-chart{--fa:"\f1fe"}.fa.fa-pie-chart{--fa:"\f200"}.fa.fa-line-chart{--fa:"\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-lastfm-square{--fa:"\f203"}.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{--fa:"\f20a"}.fa.fa-ils{--fa:"\f20b"}.fa.fa-shekel{--fa:"\f20b"}.fa.fa-sheqel{--fa:"\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{--fa:"\f3a5"}.fa.fa-transgender{--fa:"\f224"}.fa.fa-intersex{--fa:"\f224"}.fa.fa-transgender-alt{--fa:"\f225"}.fa.fa-facebook-official{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-facebook-official{--fa:"\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{--fa:"\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{--fa:"\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{--fa:"\f240"}.fa.fa-battery{--fa:"\f240"}.fa.fa-battery-3{--fa:"\f241"}.fa.fa-battery-2{--fa:"\f242"}.fa.fa-battery-1{--fa:"\f243"}.fa.fa-battery-0{--fa:"\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{--fa:"\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{--fa:"\f254"}.fa.fa-hourglass-1{--fa:"\f251"}.fa.fa-hourglass-2{--fa:"\f252"}.fa.fa-hourglass-3{--fa:"\f253"}.fa.fa-hand-rock-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-rock-o{--fa:"\f255"}.fa.fa-hand-grab-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-grab-o{--fa:"\f255"}.fa.fa-hand-paper-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-paper-o{--fa:"\f256"}.fa.fa-hand-stop-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-stop-o{--fa:"\f256"}.fa.fa-hand-scissors-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-scissors-o{--fa:"\f257"}.fa.fa-hand-lizard-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-lizard-o{--fa:"\f258"}.fa.fa-hand-spock-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-spock-o{--fa:"\f259"}.fa.fa-hand-pointer-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-pointer-o{--fa:"\f25a"}.fa.fa-hand-peace-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-hand-peace-o{--fa:"\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-odnoklassniki-square{--fa:"\f264"}.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{--fa:"\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{--fa:"\f271"}.fa.fa-calendar-minus-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-calendar-minus-o{--fa:"\f272"}.fa.fa-calendar-times-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-calendar-times-o{--fa:"\f273"}.fa.fa-calendar-check-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-calendar-check-o{--fa:"\f274"}.fa.fa-map-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-map-o{--fa:"\f279"}.fa.fa-commenting{--fa:"\f4ad"}.fa.fa-commenting-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-commenting-o{--fa:"\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{--fa:"\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{--fa:"\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{--fa:"\f28b"}.fa.fa-stop-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-stop-circle-o{--fa:"\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{--fa:"\f368"}.fa.fa-question-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-question-circle-o{--fa:"\f059"}.fa.fa-volume-control-phone{--fa:"\f2a0"}.fa.fa-asl-interpreting{--fa:"\f2a3"}.fa.fa-deafness{--fa:"\f2a4"}.fa.fa-hard-of-hearing{--fa:"\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{--fa:"\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-viadeo-square{--fa:"\f2aa"}.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{--fa:"\f2ab"}.fa.fa-snapchat-square{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-snapchat-square{--fa:"\f2ad"}.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{--fa:"\f2b3"}.fa.fa-google-plus-circle{font-family:'font awesome 6 brands';font-weight:400}.fa.fa-google-plus-circle{--fa:"\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{--fa:"\f2b4"}.fa.fa-handshake-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-handshake-o{--fa:"\f2b5"}.fa.fa-envelope-open-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-envelope-open-o{--fa:"\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{--fa:"\f2b9"}.fa.fa-vcard{--fa:"\f2bb"}.fa.fa-address-card-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-address-card-o{--fa:"\f2bb"}.fa.fa-vcard-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-vcard-o{--fa:"\f2bb"}.fa.fa-user-circle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-user-circle-o{--fa:"\f2bd"}.fa.fa-user-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-user-o{--fa:"\f007"}.fa.fa-id-badge{font-family:'font awesome 6 free';font-weight:400}.fa.fa-drivers-license{--fa:"\f2c2"}.fa.fa-id-card-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-id-card-o{--fa:"\f2c2"}.fa.fa-drivers-license-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-drivers-license-o{--fa:"\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{--fa:"\f2c7"}.fa.fa-thermometer{--fa:"\f2c7"}.fa.fa-thermometer-3{--fa:"\f2c8"}.fa.fa-thermometer-2{--fa:"\f2c9"}.fa.fa-thermometer-1{--fa:"\f2ca"}.fa.fa-thermometer-0{--fa:"\f2cb"}.fa.fa-bathtub{--fa:"\f2cd"}.fa.fa-s15{--fa:"\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{--fa:"\f410"}.fa.fa-window-close-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-window-close-o{--fa:"\f410"}.fa.fa-times-rectangle-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-times-rectangle-o{--fa:"\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{--fa:"\f2da"}.fa.fa-snowflake-o{font-family:'font awesome 6 free';font-weight:400}.fa.fa-snowflake-o{--fa:"\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}*,*:after,*:before{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{color:#212121;background-color:#fafafa;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen-Sans,Ubuntu,Cantarell,helvetica neue,Helvetica,游ゴシック,pingfang sc,STXihei,华文细黑,microsoft yahei,微软雅黑,SimSun,宋体,Heiti,黑体,sans-serif;font-size:1.8em;font-weight:400;line-height:1.8em}@media only screen and (max-width:768px){body{font-size:1.6em;line-height:1.6em}}iframe[src*=disqus]{color-scheme:light}a{font-weight:500;color:#1565c0;text-decoration:none;transition:all .25s ease-in}a:focus,a:hover{text-decoration:underline}p{margin:2rem 0}@media only screen and (max-width:768px){p{margin:1.5rem 0}}h1,h2,h3,h4,h5,h6{font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen-Sans,Ubuntu,Cantarell,helvetica neue,Helvetica,游ゴシック,pingfang sc,STXihei,华文细黑,microsoft yahei,微软雅黑,SimSun,宋体,Heiti,黑体,sans-serif;font-weight:600;color:#000;margin:4rem 0 2.5rem}h1:hover .heading-link,h2:hover .heading-link,h3:hover .heading-link,h4:hover .heading-link,h5:hover .heading-link,h6:hover .heading-link{visibility:visible}h1 .heading-link,h2 .heading-link,h3 .heading-link,h4 .heading-link,h5 .heading-link,h6 .heading-link{color:#1565c0;font-weight:inherit;text-decoration:none;font-size:80%;visibility:hidden}h1 .title-link,h2 .title-link,h3 .title-link,h4 .title-link,h5 .title-link,h6 .title-link{color:inherit;font-weight:inherit;text-decoration:none}h1{font-size:3.2rem;line-height:3.6rem}@media only screen and (max-width:768px){h1{font-size:3rem;line-height:3.4rem}}h2{font-size:2.8rem;line-height:3.2rem}@media only screen and (max-width:768px){h2{font-size:2.6rem;line-height:3rem}}h3{font-size:2.4rem;line-height:2.8rem}@media only screen and (max-width:768px){h3{font-size:2.2rem;line-height:2.6rem}}h4{font-size:2.2rem;line-height:2.6rem}@media only screen and (max-width:768px){h4{font-size:2rem;line-height:2.4rem}}h5{font-size:2rem;line-height:2.4rem}@media only screen and (max-width:768px){h5{font-size:1.8rem;line-height:2.2rem}}h6{font-size:1.8rem;line-height:2.2rem}@media only screen and (max-width:768px){h6{font-size:1.6rem;line-height:2rem}}b,strong{font-weight:700}.highlight div,.highlight pre{margin:2rem 0;padding:1rem;border-radius:1rem;overflow-x:auto}pre{display:block;font-family:sf mono,Consolas,Liberation Mono,Menlo,monospace;font-size:1.6rem;font-weight:400;line-height:2.6rem;overflow-x:auto;margin:2rem 0;padding:1rem;border-radius:1rem}pre code{display:inline-block;background-color:inherit;color:inherit}code{font-family:sf mono,Consolas,Liberation Mono,Menlo,monospace;font-size:1.6rem;font-weight:400;border-radius:.6rem;padding:.3rem .6rem;background-color:#ccc;color:#212121}@media only screen and (max-width:768px){code{font-size:1.5rem}}blockquote{border-left:2px solid #e0e0e0;padding-left:2rem;line-height:2.2rem;font-weight:400;font-style:italic}*{-webkit-tap-highlight-color:transparent}th,td{padding:1.6rem}table{border-collapse:collapse}table td,table th{border:2px solid #000}table tr:first-child th{border-top:0}table tr:last-child td{border-bottom:0}table tr td:first-child,table tr th:first-child{border-left:0}table tr td:last-child,table tr th:last-child{border-right:0}img{max-width:100%}figure{text-align:center}.footnotes ol li p{margin:0}.preload-transitions *{-webkit-transition:none!important;-moz-transition:none!important;-ms-transition:none!important;-o-transition:none!important;transition:none!important}.wrapper{display:flex;flex-direction:column;min-height:100vh;width:100%}.container{margin:1rem auto;max-width:90rem;width:100%;padding-left:2rem;padding-right:2rem}.fab{font-weight:400}.fas{font-weight:700}.float-right{float:right}.float-left{float:left}.fab{font-weight:400}.fas{font-weight:900}.content{flex:1;display:flex;margin-top:1.6rem;margin-bottom:3.2rem}@media only screen and (max-width:768px){.content{margin-top:1rem;margin-bottom:1.6rem}}.content header{margin-top:6.4rem;margin-bottom:3.2rem}.content header h1{font-size:4.2rem;line-height:4.6rem;margin:0}@media only screen and (max-width:768px){.content header h1{font-size:4rem;line-height:4.4rem}}.content article a:where(.external-link):not(:has(img)):after{content:"\f08e";padding-left:.5em;font-size:.75em;display:inline}.content article details summary{cursor:pointer}.content article footer{margin-top:4rem}.content article footer .see-also{margin:3.2rem 0}.content article footer .see-also h3{margin:3.2rem 0}.content article p{text-align:justify;text-justify:auto;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.content .post .post-title{margin-bottom:.75em}.content .post .post-meta i{text-align:center;width:1.6rem;margin-left:0;margin-right:.5rem}.content .post .post-meta .date .posted-on{margin-left:0;margin-right:1.5rem}.content .post .post-meta .tags .tag{display:inline-block;padding:.3rem .6rem;background-color:#e0e0e0;border-radius:.6rem;line-height:1.5em}.content .post .post-meta .tags .tag a{color:#212121}.content .post .post-meta .tags .tag a:active{color:#212121}.content figure{margin:0;padding:0}.content figcaption p{text-align:center;font-style:italic;font-size:1.6rem;margin:0}.avatar img{width:20rem;height:auto;border-radius:50%}@media only screen and (max-width:768px){.avatar img{width:17rem}}.list ul{margin:3.2rem 0;list-style:none;padding:0}.list ul li{font-size:1.8rem}@media only screen and (max-width:768px){.list ul li{margin:1.6rem 0}}.list ul li .date{display:inline-block;flex:1;width:20rem;text-align:right;margin-right:3rem}@media only screen and (max-width:768px){.list ul li .date{display:block;text-align:left}}.list ul li .title{font-size:1.8rem;flex:2;color:#212121;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen-Sans,Ubuntu,Cantarell,helvetica neue,Helvetica,游ゴシック,pingfang sc,STXihei,华文细黑,microsoft yahei,微软雅黑,SimSun,宋体,Heiti,黑体,sans-serif;font-weight:700}.list ul li .title:hover,.list ul li .title:focus{color:#1565c0}@media only screen and (min-width:768.1px){.list ul:not(.pagination) li{display:flex}}.centered{display:flex;align-items:center;justify-content:center}.centered .about{text-align:center}.centered .about h1{margin-top:2rem;margin-bottom:.5rem}.centered .about h2{margin-top:1rem;margin-bottom:.5rem;font-size:2.4rem}@media only screen and (max-width:768px){.centered .about h2{font-size:2rem}}.centered .about ul{list-style:none;margin:3rem 0 1rem;padding:0;cursor:pointer}.centered .about ul li{display:inline-block;position:relative}.centered .about ul li a{color:#212121;text-transform:uppercase;margin-left:1rem;margin-right:1rem;font-size:1.6rem}.centered .about ul li a:hover,.centered .about ul li a:focus{color:#1565c0}@media only screen and (max-width:768px){.centered .about ul li a{font-size:1.5rem}}.centered .error{text-align:center}.centered .error h1{margin-top:2rem;margin-bottom:.5rem;font-size:4.6rem}@media only screen and (max-width:768px){.centered .error h1{font-size:3.2rem}}.centered .error h2{margin-top:2rem;margin-bottom:3.2rem;font-size:3.2rem}@media only screen and (max-width:768px){.centered .error h2{font-size:2.8rem}}.notice{border-radius:.2rem;position:relative;margin:2rem 0;padding:0 .75rem;overflow:auto}.notice .notice-title{position:relative;font-weight:700;margin:0 -.75rem;padding:.2rem 3.5rem;border-bottom:1px solid #fafafa}.notice .notice-title i{position:absolute;top:50%;left:1.8rem;transform:translate(-50%,-50%)}.notice .notice-content{display:block;margin:2rem}.notice.note{background-color:#7e57c21a}.notice.note .notice-title{background-color:#673ab71a}.notice.note .notice-title i{color:#5e35b1}.notice.tip{background-color:#26a69a1a}.notice.tip .notice-title{background-color:#0096881a}.notice.tip .notice-title i{color:#00897b}.notice.example{background-color:#8d6e631a}.notice.example .notice-title{background-color:#7955481a}.notice.example .notice-title i{color:#6d4c41}.notice.question{background-color:#9ccc651a}.notice.question .notice-title{background-color:#8bc34a1a}.notice.question .notice-title i{color:#7cb342}.notice.info{background-color:#42a5f51a}.notice.info .notice-title{background-color:#2196f31a}.notice.info .notice-title i{color:#1e88e5}.notice.warning{background-color:#ffca281a}.notice.warning .notice-title{background-color:#ffc1071a}.notice.warning .notice-title i{color:#ffb300}.notice.error{background-color:#ef53501a}.notice.error .notice-title{background-color:#f443361a}.notice.error .notice-title i{color:#e53935}.navigation{height:6rem;width:100%}.navigation a,.navigation span{display:inline;font-size:1.7rem;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen-Sans,Ubuntu,Cantarell,helvetica neue,Helvetica,游ゴシック,pingfang sc,STXihei,华文细黑,microsoft yahei,微软雅黑,SimSun,宋体,Heiti,黑体,sans-serif;font-weight:600;color:#212121}.navigation a:hover,.navigation a:focus{color:#1565c0}.navigation .navigation-title{letter-spacing:.1rem;text-transform:uppercase}.navigation .navigation-list{float:right;list-style:none;margin-bottom:0;margin-top:0}@media only screen and (max-width:768px){.navigation .navigation-list{position:relative;top:2rem;right:0;z-index:5;visibility:hidden;opacity:0;padding:0;max-height:0;width:100%;background-color:#fafafa;border-top:solid 2px #e0e0e0;border-bottom:solid 2px #e0e0e0;transition:opacity .25s,max-height .15s linear}}.navigation .navigation-list .navigation-item{float:left;margin:0;position:relative}@media only screen and (max-width:768px){.navigation .navigation-list .navigation-item{float:none!important;text-align:center}.navigation .navigation-list .navigation-item a,.navigation .navigation-list .navigation-item span{line-height:5rem}}.navigation .navigation-list .navigation-item a,.navigation .navigation-list .navigation-item span{margin-left:1rem;margin-right:1rem}@media only screen and (max-width:768px){.navigation .navigation-list .separator{display:none}}@media only screen and (max-width:768px){.navigation .navigation-list .menu-separator{border-top:2px solid #212121;margin:0 8rem}.navigation .navigation-list .menu-separator span{display:none}}.navigation #dark-mode-toggle{margin:1.7rem 0;font-size:2.4rem;line-height:inherit;bottom:2rem;left:2rem;z-index:100;position:fixed}.navigation #menu-toggle{display:none}@media only screen and (max-width:768px){.navigation #menu-toggle{display:initial;position:relative;visibility:hidden}.navigation #menu-toggle:checked+label>i{color:#e0e0e0}.navigation #menu-toggle:checked+label+ul{visibility:visible;opacity:1;max-height:100rem}.navigation #menu-toggle:focus-visible+label{outline-style:auto}}.navigation .menu-button{display:none}@media only screen and (max-width:768px){.navigation .menu-button{position:relative;display:block;font-size:2.4rem;font-weight:400}}.navigation .menu-button i:hover,.navigation .menu-button i:focus{color:#000}.navigation i{color:#212121;cursor:pointer}.navigation i:hover,.navigation i:focus{color:#1565c0}.pagination{display:flex;justify-content:center;margin-top:6rem;text-align:center;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen-Sans,Ubuntu,Cantarell,helvetica neue,Helvetica,游ゴシック,pingfang sc,STXihei,华文细黑,microsoft yahei,微软雅黑,SimSun,宋体,Heiti,黑体,sans-serif}.pagination li{display:inline;text-align:center;font-weight:700;margin:0 2px;text-align:center;width:2.2rem}.pagination li a{font-weight:300}.tabs{display:flex;flex-wrap:wrap;margin:2rem 0;position:relative}.tabs.tabs-left{justify-content:flex-start}.tabs.tabs-left label.tab-label{margin-right:.5rem}.tabs.tabs-left .tab-content{border-radius:0 4px 4px 4px}.tabs.tabs-right{justify-content:flex-end}.tabs.tabs-right label.tab-label{margin-left:.5rem}.tabs.tabs-right .tab-content{border-radius:4px 0 4px 4px}.tabs input.tab-input{display:none}.tabs label.tab-label{background-color:#e0e0e0;border-color:#ccc;border-radius:4px 4px 0 0;border-style:solid;border-bottom-style:hidden;border-width:1px;cursor:pointer;display:inline-block;order:1;padding:.3rem .6rem;position:relative;top:1px;user-select:none}.tabs input.tab-input:checked+label.tab-label{background-color:#fafafa}.tabs .tab-content{background-color:#fafafa;border-color:#ccc;border-style:solid;border-width:1px;display:none;order:2;padding:1rem;width:100%}.tabs.tabs-code .tab-content{padding:.5rem}.tabs.tabs-code .tab-content pre{margin:0}.taxonomy li{display:inline-block;margin:.9rem}.taxonomy .taxonomy-element{display:block;padding:.3rem .9rem;background-color:#e0e0e0;border-radius:.6rem}.taxonomy .taxonomy-element a{color:#212121}.taxonomy .taxonomy-element a:active{color:#212121}.footer{width:100%;text-align:center;font-size:1.6rem;line-height:2rem;margin-bottom:1rem}@media only screen and (max-width:768px){.footer{font-size:1.5rem}}.footer a{color:#1565c0}.float-container{bottom:2rem;right:2rem;z-index:100;position:fixed;font-size:1.6em}.float-container a{position:relative;display:inline-block;width:3rem;height:3rem;font-size:2rem;color:#000;background-color:#e0e0e0;border-radius:.2rem;opacity:.5;transition:all .25s ease-in}.float-container a:hover,.float-container a:focus{color:#1565c0;opacity:1}@media only screen and (max-width:768px){.float-container a:hover,.float-container a:focus{color:#000;opacity:.5}}.float-container a i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.mastodon-wrapper{display:flex;gap:3rem;flex-direction:row}.comment-level{max-width:3rem;min-width:3rem}.reply-original{display:none}.mastodon-comment{background-color:var(--body-background);border-radius:var(--card-border-radius);padding:var(--card-padding);margin-bottom:1rem;display:flex;gap:1rem;flex-direction:column;flex-grow:2}.mastodon-comment .comment{display:flex;flex-direction:row;gap:1rem;flex-wrap:true}.mastodon-comment .comment-avatar img{width:6rem}.mastodon-comment .content{flex-grow:2}.mastodon-comment .comment-author{display:flex;flex-direction:column}.mastodon-comment .comment-author-name{font-weight:700}.mastodon-comment .comment-author-name a{display:flex;align-items:center}.mastodon-comment .comment-author-date{margin-left:auto}.mastodon-comment .disabled{color:var(--accent-color)}.mastodon-comment-content p:first-child{margin-top:0}.mastodon{--dlg-bg:#282c37;--dlg-w:600px;--dlg-color:#9baec8;--dlg-button-p:0.75em 2em;--dlg-outline-c:#00D9F5}.bg{background-color:#fff}.chroma{background-color:#fff}.chroma .err{color:#a61717;background-color:#e3d2d2}.chroma .lnlinks{outline:none;text-decoration:none;color:inherit}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0}.chroma .hl{background-color:#ffc}.chroma .lnt{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#7f7f7f}.chroma .ln{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#7f7f7f}.chroma .line{display:flex}.chroma .k{color:#000;font-weight:700}.chroma .kc{color:#000;font-weight:700}.chroma .kd{color:#000;font-weight:700}.chroma .kn{color:#000;font-weight:700}.chroma .kp{color:#000;font-weight:700}.chroma .kr{color:#000;font-weight:700}.chroma .kt{color:#458;font-weight:700}.chroma .na{color:teal}.chroma .nb{color:#0086b3}.chroma .bp{color:#999}.chroma .nc{color:#458;font-weight:700}.chroma .no{color:teal}.chroma .nd{color:#3c5d5d;font-weight:700}.chroma .ni{color:purple}.chroma .ne{color:#900;font-weight:700}.chroma .nf{color:#900;font-weight:700}.chroma .nl{color:#900;font-weight:700}.chroma .nn{color:#555}.chroma .nt{color:navy}.chroma .nv{color:teal}.chroma .vc{color:teal}.chroma .vg{color:teal}.chroma .vi{color:teal}.chroma .s{color:#d14}.chroma .sa{color:#d14}.chroma .sb{color:#d14}.chroma .sc{color:#d14}.chroma .dl{color:#d14}.chroma .sd{color:#d14}.chroma .s2{color:#d14}.chroma .se{color:#d14}.chroma .sh{color:#d14}.chroma .si{color:#d14}.chroma .sx{color:#d14}.chroma .sr{color:#009926}.chroma .s1{color:#d14}.chroma .ss{color:#990073}.chroma .m{color:#099}.chroma .mb{color:#099}.chroma .mf{color:#099}.chroma .mh{color:#099}.chroma .mi{color:#099}.chroma .il{color:#099}.chroma .mo{color:#099}.chroma .o{color:#000;font-weight:700}.chroma .ow{color:#000;font-weight:700}.chroma .c{color:#998;font-style:italic}.chroma .ch{color:#998;font-style:italic}.chroma .cm{color:#998;font-style:italic}.chroma .c1{color:#998;font-style:italic}.chroma .cs{color:#999;font-weight:700;font-style:italic}.chroma .cp{color:#999;font-weight:700;font-style:italic}.chroma .cpf{color:#999;font-weight:700;font-style:italic}.chroma .gd{color:#000;background-color:#fdd}.chroma .ge{color:#000;font-style:italic}.chroma .gr{color:#a00}.chroma .gh{color:#999}.chroma .gi{color:#000;background-color:#dfd}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gs{font-weight:700}.chroma .gu{color:#aaa}.chroma .gt{color:#a00}.chroma .gl{text-decoration:underline}.chroma .w{color:#bbb}
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/coder.scss_3309bf5eef245954e39c3edadcf84268.json b/themes/hugo-coder/resources/_gen/assets/scss/coder.scss_3309bf5eef245954e39c3edadcf84268.json
deleted file mode 100644
index b55cbef..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/coder.scss_3309bf5eef245954e39c3edadcf84268.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css","MediaType":"text/css","Data":{"Integrity":"sha256-9rGzWnsCUhslM49s9Yl1+ZgKbBKEd2P+NaSDB3WM0ec="}}
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder-dark.scss_9e20ccd2d8034c8e0fd83b11fb6e2bd5.content b/themes/hugo-coder/resources/_gen/assets/scss/scss/coder-dark.scss_9e20ccd2d8034c8e0fd83b11fb6e2bd5.content
deleted file mode 100644
index 81ba508..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder-dark.scss_9e20ccd2d8034c8e0fd83b11fb6e2bd5.content
+++ /dev/null
@@ -1,281 +0,0 @@
-body.colorscheme-dark {
- color: #dadada;
- background-color: #212121; }
- body.colorscheme-dark a {
- color: #42a5f5; }
- body.colorscheme-dark h1,
- body.colorscheme-dark h2,
- body.colorscheme-dark h3,
- body.colorscheme-dark h4,
- body.colorscheme-dark h5,
- body.colorscheme-dark h6 {
- color: #dadada; }
- body.colorscheme-dark h1:hover .heading-link,
- body.colorscheme-dark h2:hover .heading-link,
- body.colorscheme-dark h3:hover .heading-link,
- body.colorscheme-dark h4:hover .heading-link,
- body.colorscheme-dark h5:hover .heading-link,
- body.colorscheme-dark h6:hover .heading-link {
- visibility: visible; }
- body.colorscheme-dark h1 .heading-link,
- body.colorscheme-dark h2 .heading-link,
- body.colorscheme-dark h3 .heading-link,
- body.colorscheme-dark h4 .heading-link,
- body.colorscheme-dark h5 .heading-link,
- body.colorscheme-dark h6 .heading-link {
- color: #42a5f5;
- font-weight: inherit;
- text-decoration: none;
- font-size: 80%;
- visibility: hidden; }
- body.colorscheme-dark h1 .title-link,
- body.colorscheme-dark h2 .title-link,
- body.colorscheme-dark h3 .title-link,
- body.colorscheme-dark h4 .title-link,
- body.colorscheme-dark h5 .title-link,
- body.colorscheme-dark h6 .title-link {
- color: inherit;
- font-weight: inherit;
- text-decoration: none; }
- body.colorscheme-dark blockquote {
- border-left: 2px solid #424242; }
- body.colorscheme-dark th,
- body.colorscheme-dark td {
- padding: 1.6rem; }
- body.colorscheme-dark table {
- border-collapse: collapse; }
- body.colorscheme-dark table td,
- body.colorscheme-dark table th {
- border: 2px solid #dadada; }
- body.colorscheme-dark table tr:first-child th {
- border-top: 0; }
- body.colorscheme-dark table tr:last-child td {
- border-bottom: 0; }
- body.colorscheme-dark table tr td:first-child,
- body.colorscheme-dark table tr th:first-child {
- border-left: 0; }
- body.colorscheme-dark table tr td:last-child,
- body.colorscheme-dark table tr th:last-child {
- border-right: 0; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto {
- color: #dadada;
- background-color: #212121; }
- body.colorscheme-auto a {
- color: #42a5f5; }
- body.colorscheme-auto h1,
- body.colorscheme-auto h2,
- body.colorscheme-auto h3,
- body.colorscheme-auto h4,
- body.colorscheme-auto h5,
- body.colorscheme-auto h6 {
- color: #dadada; }
- body.colorscheme-auto h1:hover .heading-link,
- body.colorscheme-auto h2:hover .heading-link,
- body.colorscheme-auto h3:hover .heading-link,
- body.colorscheme-auto h4:hover .heading-link,
- body.colorscheme-auto h5:hover .heading-link,
- body.colorscheme-auto h6:hover .heading-link {
- visibility: visible; }
- body.colorscheme-auto h1 .heading-link,
- body.colorscheme-auto h2 .heading-link,
- body.colorscheme-auto h3 .heading-link,
- body.colorscheme-auto h4 .heading-link,
- body.colorscheme-auto h5 .heading-link,
- body.colorscheme-auto h6 .heading-link {
- color: #42a5f5;
- font-weight: inherit;
- text-decoration: none;
- font-size: 80%;
- visibility: hidden; }
- body.colorscheme-auto h1 .title-link,
- body.colorscheme-auto h2 .title-link,
- body.colorscheme-auto h3 .title-link,
- body.colorscheme-auto h4 .title-link,
- body.colorscheme-auto h5 .title-link,
- body.colorscheme-auto h6 .title-link {
- color: inherit;
- font-weight: inherit;
- text-decoration: none; }
- body.colorscheme-auto blockquote {
- border-left: 2px solid #424242; }
- body.colorscheme-auto th,
- body.colorscheme-auto td {
- padding: 1.6rem; }
- body.colorscheme-auto table {
- border-collapse: collapse; }
- body.colorscheme-auto table td,
- body.colorscheme-auto table th {
- border: 2px solid #dadada; }
- body.colorscheme-auto table tr:first-child th {
- border-top: 0; }
- body.colorscheme-auto table tr:last-child td {
- border-bottom: 0; }
- body.colorscheme-auto table tr td:first-child,
- body.colorscheme-auto table tr th:first-child {
- border-left: 0; }
- body.colorscheme-auto table tr td:last-child,
- body.colorscheme-auto table tr th:last-child {
- border-right: 0; } }
-
-body.colorscheme-dark .content .post .tags .tag {
- background-color: #424242; }
- body.colorscheme-dark .content .post .tags .tag a {
- color: #dadada; }
- body.colorscheme-dark .content .post .tags .tag a:active {
- color: #dadada; }
-
-body.colorscheme-dark .content .list ul li .title {
- color: #dadada; }
- body.colorscheme-dark .content .list ul li .title:hover, body.colorscheme-dark .content .list ul li .title:focus {
- color: #42a5f5; }
-
-body.colorscheme-dark .content .centered .about ul li a {
- color: #dadada; }
- body.colorscheme-dark .content .centered .about ul li a:hover, body.colorscheme-dark .content .centered .about ul li a:focus {
- color: #42a5f5; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .content .post .tags .tag {
- background-color: #424242; }
- body.colorscheme-auto .content .post .tags .tag a {
- color: #dadada; }
- body.colorscheme-auto .content .post .tags .tag a:active {
- color: #dadada; }
- body.colorscheme-auto .content .list ul li .title {
- color: #dadada; }
- body.colorscheme-auto .content .list ul li .title:hover, body.colorscheme-auto .content .list ul li .title:focus {
- color: #42a5f5; }
- body.colorscheme-auto .content .centered .about ul li a {
- color: #dadada; }
- body.colorscheme-auto .content .centered .about ul li a:hover, body.colorscheme-auto .content .centered .about ul li a:focus {
- color: #42a5f5; } }
-
-body.colorscheme-dark .notice .notice-title {
- border-bottom: 1px solid #212121; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .notice .notice-title {
- border-bottom: 1px solid #212121; } }
-
-body.colorscheme-dark .navigation a,
-body.colorscheme-dark .navigation span {
- color: #dadada; }
-
-body.colorscheme-dark .navigation a:hover, body.colorscheme-dark .navigation a:focus {
- color: #42a5f5; }
-
-@media only screen and (max-width: 768px) {
- body.colorscheme-dark .navigation .navigation-list {
- background-color: #212121;
- border-top: solid 2px #424242;
- border-bottom: solid 2px #424242; } }
-
-@media only screen and (max-width: 768px) {
- body.colorscheme-dark .navigation .navigation-list .menu-separator {
- border-top: 2px solid #dadada; } }
-
-@media only screen and (max-width: 768px) {
- body.colorscheme-dark .navigation #menu-toggle:checked + label > i {
- color: #424242; } }
-
-body.colorscheme-dark .navigation i {
- color: #dadada; }
- body.colorscheme-dark .navigation i:hover, body.colorscheme-dark .navigation i:focus {
- color: #42a5f5; }
-
-body.colorscheme-dark .navigation .menu-button i:hover, body.colorscheme-dark .navigation .menu-button i:focus {
- color: #dadada; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .navigation a,
- body.colorscheme-auto .navigation span {
- color: #dadada; }
- body.colorscheme-auto .navigation a:hover, body.colorscheme-auto .navigation a:focus {
- color: #42a5f5; } }
-
-@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
- body.colorscheme-auto .navigation .navigation-list {
- background-color: #212121;
- border-top: solid 2px #424242;
- border-bottom: solid 2px #424242; } }
-
-@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
- body.colorscheme-auto .navigation .navigation-list .menu-separator {
- border-top: 2px solid #dadada; } }
-
-@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
- body.colorscheme-auto .navigation #menu-toggle:checked + label > i {
- color: #424242; } }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .navigation i {
- color: #dadada; }
- body.colorscheme-auto .navigation i:hover, body.colorscheme-auto .navigation i:focus {
- color: #42a5f5; }
- body.colorscheme-auto .navigation .menu-button i:hover, body.colorscheme-auto .navigation .menu-button i:focus {
- color: #dadada; } }
-
-body.colorscheme-dark .tabs label.tab-label {
- background-color: #424242;
- border-color: #4f4f4f; }
-
-body.colorscheme-dark .tabs input.tab-input:checked + label.tab-label {
- background-color: #212121; }
-
-body.colorscheme-dark .tabs .tab-content {
- background-color: #212121;
- border-color: #4f4f4f; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .tabs label.tab-label {
- background-color: #424242;
- border-color: #4f4f4f; }
- body.colorscheme-auto .tabs input.tab-input:checked + label.tab-label {
- background-color: #212121; }
- body.colorscheme-auto .tabs .tab-content {
- background-color: #212121;
- border-color: #4f4f4f; } }
-
-body.colorscheme-dark .taxonomy-element {
- background-color: #424242; }
- body.colorscheme-dark .taxonomy-element a {
- color: #dadada; }
- body.colorscheme-dark .taxonomy-element a:active {
- color: #dadada; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .taxonomy-element {
- background-color: #424242; }
- body.colorscheme-auto .taxonomy-element a {
- color: #dadada; }
- body.colorscheme-auto .taxonomy-element a:active {
- color: #dadada; } }
-
-body.colorscheme-dark .footer a {
- color: #42a5f5; }
-
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .footer a {
- color: #42a5f5; } }
-
-body.colorscheme-dark .float-container a {
- color: #dadada;
- background-color: #424242; }
- body.colorscheme-dark .float-container a:hover, body.colorscheme-dark .float-container a:focus {
- color: #42a5f5; }
- @media only screen and (max-width: 768px) {
- body.colorscheme-dark .float-container a:hover, body.colorscheme-dark .float-container a:focus {
- color: #dadada; } }
-@media (prefers-color-scheme: dark) {
- body.colorscheme-auto .float-container a {
- color: #dadada;
- background-color: #424242; }
- body.colorscheme-auto .float-container a:hover, body.colorscheme-auto .float-container a:focus {
- color: #42a5f5; } }
- @media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
- body.colorscheme-auto .float-container a:hover, body.colorscheme-auto .float-container a:focus {
- color: #dadada; } }
-
-/*# sourceMappingURL=coder-dark.css.map */
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder-dark.scss_9e20ccd2d8034c8e0fd83b11fb6e2bd5.json b/themes/hugo-coder/resources/_gen/assets/scss/scss/coder-dark.scss_9e20ccd2d8034c8e0fd83b11fb6e2bd5.json
deleted file mode 100644
index 8a50cdb..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder-dark.scss_9e20ccd2d8034c8e0fd83b11fb6e2bd5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/coder-dark.css","MediaType":"text/css","Data":{}}
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder.scss_fd4b5b3f9a48bc0c7f005d2f7a4cc30f.content b/themes/hugo-coder/resources/_gen/assets/scss/scss/coder.scss_fd4b5b3f9a48bc0c7f005d2f7a4cc30f.content
deleted file mode 100644
index ef26525..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder.scss_fd4b5b3f9a48bc0c7f005d2f7a4cc30f.content
+++ /dev/null
@@ -1,3687 +0,0 @@
-@charset "UTF-8";
-/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
-/* Document
- ========================================================================== */
-/**
- * 1. Correct the line height in all browsers.
- * 2. Prevent adjustments of font size after orientation changes in iOS.
- */
-html {
- line-height: 1.15;
- /* 1 */
- -webkit-text-size-adjust: 100%;
- /* 2 */ }
-
-/* Sections
- ========================================================================== */
-/**
- * Remove the margin in all browsers.
- */
-body {
- margin: 0; }
-
-/**
- * Render the `main` element consistently in IE.
- */
-main {
- display: block; }
-
-/**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
-h1 {
- font-size: 2em;
- margin: 0.67em 0; }
-
-/* Grouping content
- ========================================================================== */
-/**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
-hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */ }
-
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-pre {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */ }
-
-/* Text-level semantics
- ========================================================================== */
-/**
- * Remove the gray background on active links in IE 10.
- */
-a {
- background-color: transparent;
- word-wrap: break-word; }
-
-/**
- * 1. Remove the bottom border in Chrome 57-
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
-abbr[title] {
- border-bottom: none;
- /* 1 */
- text-decoration: underline;
- /* 2 */
- text-decoration: underline dotted;
- /* 2 */ }
-
-/**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
-b,
-strong {
- font-weight: bolder; }
-
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-code,
-kbd,
-samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */ }
-
-/**
- * Add the correct font size in all browsers.
- */
-small {
- font-size: 80%; }
-
-/**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline; }
-
-sub {
- bottom: -0.25em; }
-
-sup {
- top: -0.5em; }
-
-/* Embedded content
- ========================================================================== */
-/**
- * Remove the border on images inside links in IE 10.
- */
-img {
- border-style: none; }
-
-/* Forms
- ========================================================================== */
-/**
- * 1. Change the font styles in all browsers.
- * 2. Remove the margin in Firefox and Safari.
- */
-button,
-input,
-optgroup,
-select,
-textarea {
- font-family: inherit;
- /* 1 */
- font-size: 100%;
- /* 1 */
- line-height: 1.15;
- /* 1 */
- margin: 0;
- /* 2 */ }
-
-/**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
-button,
-input {
- /* 1 */
- overflow: visible; }
-
-/**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
-button,
-select {
- /* 1 */
- text-transform: none; }
-
-/**
- * Correct the inability to style clickable types in iOS and Safari.
- */
-button,
-[type="button"],
-[type="reset"],
-[type="submit"] {
- -webkit-appearance: button; }
-
-/**
- * Remove the inner border and padding in Firefox.
- */
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0; }
-
-/**
- * Restore the focus styles unset by the previous rule.
- */
-button:-moz-focusring,
-[type="button"]:-moz-focusring,
-[type="reset"]:-moz-focusring,
-[type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText; }
-
-/**
- * Correct the padding in Firefox.
- */
-fieldset {
- padding: 0.35em 0.75em 0.625em; }
-
-/**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
-legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */ }
-
-/**
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
-progress {
- vertical-align: baseline; }
-
-/**
- * Remove the default vertical scrollbar in IE 10+.
- */
-textarea {
- overflow: auto; }
-
-/**
- * 1. Add the correct box sizing in IE 10.
- * 2. Remove the padding in IE 10.
- */
-[type="checkbox"],
-[type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */ }
-
-/**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto; }
-
-/**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
-[type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */ }
-
-/**
- * Remove the inner padding in Chrome and Safari on macOS.
- */
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none; }
-
-/**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
-::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */ }
-
-/* Interactive
- ========================================================================== */
-/*
- * Add the correct display in Edge, IE 10+, and Firefox.
- */
-details {
- display: block; }
-
-/*
- * Add the correct display in all browsers.
- */
-summary {
- display: list-item; }
-
-/* Misc
- ========================================================================== */
-/**
- * Add the correct display in IE 10+.
- */
-template {
- display: none; }
-
-/**
- * Add the correct display in IE 10.
- */
-[hidden] {
- display: none; }
-
-/*!
-Fork Awesome 1.2.0
-License - https://forkaweso.me/Fork-Awesome/license
-
-Copyright 2018 Dave Gandy & Fork Awesome
-
-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.
- */
-/* FONT PATH
- * -------------------------- */
-@font-face {
- font-family: "ForkAwesome";
- src: url("../fonts/forkawesome-webfont.eot?v=1.2.0");
- src: url("../fonts/forkawesome-webfont.eot?#iefix&v=1.2.0") format("embedded-opentype"), url("../fonts/forkawesome-webfont.woff2?v=1.2.0") format("woff2"), url("../fonts/forkawesome-webfont.woff?v=1.2.0") format("woff"), url("../fonts/forkawesome-webfont.ttf?v=1.2.0") format("truetype"), url("../fonts/forkawesome-webfont.svg?v=1.2.0#forkawesomeregular") format("svg");
- font-weight: normal;
- font-style: normal;
- font-display: block; }
-
-.fa {
- display: inline-block;
- font: normal normal normal 14px/1 ForkAwesome;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale; }
-
-/* makes the font 33% larger relative to the icon container */
-.fa-lg {
- font-size: 1.33333333em;
- line-height: 0.75em;
- vertical-align: -15%; }
-
-.fa-2x {
- font-size: 2em; }
-
-.fa-3x {
- font-size: 3em; }
-
-.fa-4x {
- font-size: 4em; }
-
-.fa-5x {
- font-size: 5em; }
-
-.fa-fw {
- width: 1.28571429em;
- text-align: center; }
-
-.fa-ul {
- padding-left: 0;
- margin-left: 2.14285714em;
- list-style-type: none; }
- .fa-ul > li {
- position: relative; }
-
-.fa-li {
- position: absolute;
- left: -2.14285714em;
- width: 2.14285714em;
- top: 0.14285714em;
- text-align: center; }
- .fa-li.fa-lg {
- left: -1.85714286em; }
-
-.fa-border {
- padding: .2em .25em .15em;
- border: solid 0.08em #eee;
- border-radius: .1em; }
-
-.fa-pull-left {
- float: left; }
-
-.fa-pull-right {
- float: right; }
-
-.fa.fa-pull-left {
- margin-right: .3em; }
-
-.fa.fa-pull-right {
- margin-left: .3em; }
-
-/* Deprecated as of 4.4.0 */
-.pull-right {
- float: right; }
-
-.pull-left {
- float: left; }
-
-.fa.pull-left {
- margin-right: .3em; }
-
-.fa.pull-right {
- margin-left: .3em; }
-
-.fa-spin {
- -webkit-animation: fa-spin 2s infinite linear;
- animation: fa-spin 2s infinite linear; }
-
-.fa-pulse {
- -webkit-animation: fa-spin 1s infinite steps(8);
- animation: fa-spin 1s infinite steps(8); }
-
-@-webkit-keyframes fa-spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg); }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg); } }
-
-@keyframes fa-spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg); }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg); } }
-
-.fa-rotate-90 {
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
- -webkit-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg); }
-
-.fa-rotate-180 {
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- transform: rotate(180deg); }
-
-.fa-rotate-270 {
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
- -webkit-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- transform: rotate(270deg); }
-
-.fa-flip-horizontal {
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
- -webkit-transform: scale(-1, 1);
- -ms-transform: scale(-1, 1);
- transform: scale(-1, 1); }
-
-.fa-flip-vertical {
- -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
- -webkit-transform: scale(1, -1);
- -ms-transform: scale(1, -1);
- transform: scale(1, -1); }
-
-:root .fa-rotate-90,
-:root .fa-rotate-180,
-:root .fa-rotate-270,
-:root .fa-flip-horizontal,
-:root .fa-flip-vertical {
- filter: none; }
-
-.fa-stack {
- position: relative;
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- vertical-align: middle; }
-
-.fa-stack-1x, .fa-stack-2x {
- position: absolute;
- left: 0;
- width: 100%;
- text-align: center; }
-
-.fa-stack-1x {
- line-height: inherit; }
-
-.fa-stack-2x {
- font-size: 2em; }
-
-.fa-inverse {
- color: #fff; }
-
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
- readers do not read off random characters that represent icons */
-.fa-glass:before {
- content: "\f000"; }
-
-.fa-music:before {
- content: "\f001"; }
-
-.fa-search:before {
- content: "\f002"; }
-
-.fa-envelope-o:before {
- content: "\f003"; }
-
-.fa-heart:before {
- content: "\f004"; }
-
-.fa-star:before {
- content: "\f005"; }
-
-.fa-star-o:before {
- content: "\f006"; }
-
-.fa-user:before {
- content: "\f007"; }
-
-.fa-film:before {
- content: "\f008"; }
-
-.fa-th-large:before {
- content: "\f009"; }
-
-.fa-th:before {
- content: "\f00a"; }
-
-.fa-th-list:before {
- content: "\f00b"; }
-
-.fa-check:before {
- content: "\f00c"; }
-
-.fa-remove:before,
-.fa-close:before,
-.fa-times:before {
- content: "\f00d"; }
-
-.fa-search-plus:before {
- content: "\f00e"; }
-
-.fa-search-minus:before {
- content: "\f010"; }
-
-.fa-power-off:before {
- content: "\f011"; }
-
-.fa-signal:before {
- content: "\f012"; }
-
-.fa-gear:before,
-.fa-cog:before {
- content: "\f013"; }
-
-.fa-trash-o:before {
- content: "\f014"; }
-
-.fa-home:before {
- content: "\f015"; }
-
-.fa-file-o:before {
- content: "\f016"; }
-
-.fa-clock-o:before {
- content: "\f017"; }
-
-.fa-road:before {
- content: "\f018"; }
-
-.fa-download:before {
- content: "\f019"; }
-
-.fa-arrow-circle-o-down:before {
- content: "\f01a"; }
-
-.fa-arrow-circle-o-up:before {
- content: "\f01b"; }
-
-.fa-inbox:before {
- content: "\f01c"; }
-
-.fa-play-circle-o:before {
- content: "\f01d"; }
-
-.fa-rotate-right:before,
-.fa-repeat:before {
- content: "\f01e"; }
-
-.fa-sync:before,
-.fa-refresh:before {
- content: "\f021"; }
-
-.fa-list-alt:before {
- content: "\f022"; }
-
-.fa-lock:before {
- content: "\f023"; }
-
-.fa-flag:before {
- content: "\f024"; }
-
-.fa-headphones:before {
- content: "\f025"; }
-
-.fa-volume-off:before {
- content: "\f026"; }
-
-.fa-volume-down:before {
- content: "\f027"; }
-
-.fa-volume-up:before {
- content: "\f028"; }
-
-.fa-qrcode:before {
- content: "\f029"; }
-
-.fa-barcode:before {
- content: "\f02a"; }
-
-.fa-tag:before {
- content: "\f02b"; }
-
-.fa-tags:before {
- content: "\f02c"; }
-
-.fa-book:before {
- content: "\f02d"; }
-
-.fa-bookmark:before {
- content: "\f02e"; }
-
-.fa-print:before {
- content: "\f02f"; }
-
-.fa-camera:before {
- content: "\f030"; }
-
-.fa-font:before {
- content: "\f031"; }
-
-.fa-bold:before {
- content: "\f032"; }
-
-.fa-italic:before {
- content: "\f033"; }
-
-.fa-text-height:before {
- content: "\f034"; }
-
-.fa-text-width:before {
- content: "\f035"; }
-
-.fa-align-left:before {
- content: "\f036"; }
-
-.fa-align-center:before {
- content: "\f037"; }
-
-.fa-align-right:before {
- content: "\f038"; }
-
-.fa-align-justify:before {
- content: "\f039"; }
-
-.fa-list:before {
- content: "\f03a"; }
-
-.fa-dedent:before,
-.fa-outdent:before {
- content: "\f03b"; }
-
-.fa-indent:before {
- content: "\f03c"; }
-
-.fa-video:before,
-.fa-video-camera:before {
- content: "\f03d"; }
-
-.fa-photo:before,
-.fa-image:before,
-.fa-picture-o:before {
- content: "\f03e"; }
-
-.fa-pencil:before {
- content: "\f040"; }
-
-.fa-map-marker:before {
- content: "\f041"; }
-
-.fa-adjust:before {
- content: "\f042"; }
-
-.fa-tint:before {
- content: "\f043"; }
-
-.fa-edit:before,
-.fa-pencil-square-o:before {
- content: "\f044"; }
-
-.fa-share-square-o:before {
- content: "\f045"; }
-
-.fa-check-square-o:before {
- content: "\f046"; }
-
-.fa-arrows:before {
- content: "\f047"; }
-
-.fa-step-backward:before {
- content: "\f048"; }
-
-.fa-fast-backward:before {
- content: "\f049"; }
-
-.fa-backward:before {
- content: "\f04a"; }
-
-.fa-play:before {
- content: "\f04b"; }
-
-.fa-pause:before {
- content: "\f04c"; }
-
-.fa-stop:before {
- content: "\f04d"; }
-
-.fa-forward:before {
- content: "\f04e"; }
-
-.fa-fast-forward:before {
- content: "\f050"; }
-
-.fa-step-forward:before {
- content: "\f051"; }
-
-.fa-eject:before {
- content: "\f052"; }
-
-.fa-chevron-left:before {
- content: "\f053"; }
-
-.fa-chevron-right:before {
- content: "\f054"; }
-
-.fa-plus-circle:before {
- content: "\f055"; }
-
-.fa-minus-circle:before {
- content: "\f056"; }
-
-.fa-times-circle:before {
- content: "\f057"; }
-
-.fa-check-circle:before {
- content: "\f058"; }
-
-.fa-question-circle:before {
- content: "\f059"; }
-
-.fa-info-circle:before {
- content: "\f05a"; }
-
-.fa-crosshairs:before {
- content: "\f05b"; }
-
-.fa-times-circle-o:before {
- content: "\f05c"; }
-
-.fa-check-circle-o:before {
- content: "\f05d"; }
-
-.fa-ban:before {
- content: "\f05e"; }
-
-.fa-arrow-left:before {
- content: "\f060"; }
-
-.fa-arrow-right:before {
- content: "\f061"; }
-
-.fa-arrow-up:before {
- content: "\f062"; }
-
-.fa-arrow-down:before {
- content: "\f063"; }
-
-.fa-mail-forward:before,
-.fa-share:before {
- content: "\f064"; }
-
-.fa-expand:before {
- content: "\f065"; }
-
-.fa-compress:before {
- content: "\f066"; }
-
-.fa-plus:before {
- content: "\f067"; }
-
-.fa-minus:before {
- content: "\f068"; }
-
-.fa-asterisk:before {
- content: "\f069"; }
-
-.fa-exclamation-circle:before {
- content: "\f06a"; }
-
-.fa-gift:before {
- content: "\f06b"; }
-
-.fa-leaf:before {
- content: "\f06c"; }
-
-.fa-fire:before {
- content: "\f06d"; }
-
-.fa-eye:before {
- content: "\f06e"; }
-
-.fa-eye-slash:before {
- content: "\f070"; }
-
-.fa-warning:before,
-.fa-exclamation-triangle:before {
- content: "\f071"; }
-
-.fa-plane:before {
- content: "\f072"; }
-
-.fa-calendar:before {
- content: "\f073"; }
-
-.fa-random:before {
- content: "\f074"; }
-
-.fa-comment:before {
- content: "\f075"; }
-
-.fa-magnet:before {
- content: "\f076"; }
-
-.fa-chevron-up:before {
- content: "\f077"; }
-
-.fa-chevron-down:before {
- content: "\f078"; }
-
-.fa-retweet:before {
- content: "\f079"; }
-
-.fa-shopping-cart:before {
- content: "\f07a"; }
-
-.fa-folder:before {
- content: "\f07b"; }
-
-.fa-folder-open:before {
- content: "\f07c"; }
-
-.fa-arrows-v:before {
- content: "\f07d"; }
-
-.fa-arrows-h:before {
- content: "\f07e"; }
-
-.fa-bar-chart-o:before,
-.fa-bar-chart:before {
- content: "\f080"; }
-
-.fa-twitter-square:before {
- content: "\f081"; }
-
-.fa-facebook-square:before {
- content: "\f082"; }
-
-.fa-camera-retro:before {
- content: "\f083"; }
-
-.fa-key:before {
- content: "\f084"; }
-
-.fa-gears:before,
-.fa-cogs:before {
- content: "\f085"; }
-
-.fa-comments:before {
- content: "\f086"; }
-
-.fa-thumbs-o-up:before {
- content: "\f087"; }
-
-.fa-thumbs-o-down:before {
- content: "\f088"; }
-
-.fa-star-half:before {
- content: "\f089"; }
-
-.fa-heart-o:before {
- content: "\f08a"; }
-
-.fa-sign-out:before {
- content: "\f08b"; }
-
-.fa-linkedin-square:before {
- content: "\f08c"; }
-
-.fa-thumb-tack:before {
- content: "\f08d"; }
-
-.fa-external-link:before {
- content: "\f08e"; }
-
-.fa-sign-in:before {
- content: "\f090"; }
-
-.fa-trophy:before {
- content: "\f091"; }
-
-.fa-github-square:before {
- content: "\f092"; }
-
-.fa-upload:before {
- content: "\f093"; }
-
-.fa-lemon-o:before {
- content: "\f094"; }
-
-.fa-phone:before {
- content: "\f095"; }
-
-.fa-square-o:before {
- content: "\f096"; }
-
-.fa-bookmark-o:before {
- content: "\f097"; }
-
-.fa-phone-square:before {
- content: "\f098"; }
-
-.fa-twitter:before {
- content: "\f099"; }
-
-.fa-facebook-f:before,
-.fa-facebook:before {
- content: "\f09a"; }
-
-.fa-github:before {
- content: "\f09b"; }
-
-.fa-unlock:before {
- content: "\f09c"; }
-
-.fa-credit-card:before {
- content: "\f09d"; }
-
-.fa-feed:before,
-.fa-rss:before {
- content: "\f09e"; }
-
-.fa-hdd-o:before {
- content: "\f0a0"; }
-
-.fa-bullhorn:before {
- content: "\f0a1"; }
-
-.fa-bell-o:before {
- content: "\f0f3"; }
-
-.fa-certificate:before {
- content: "\f0a3"; }
-
-.fa-hand-o-right:before {
- content: "\f0a4"; }
-
-.fa-hand-o-left:before {
- content: "\f0a5"; }
-
-.fa-hand-o-up:before {
- content: "\f0a6"; }
-
-.fa-hand-o-down:before {
- content: "\f0a7"; }
-
-.fa-arrow-circle-left:before {
- content: "\f0a8"; }
-
-.fa-arrow-circle-right:before {
- content: "\f0a9"; }
-
-.fa-arrow-circle-up:before {
- content: "\f0aa"; }
-
-.fa-arrow-circle-down:before {
- content: "\f0ab"; }
-
-.fa-globe:before {
- content: "\f0ac"; }
-
-.fa-globe-e:before {
- content: "\f304"; }
-
-.fa-globe-w:before {
- content: "\f305"; }
-
-.fa-wrench:before {
- content: "\f0ad"; }
-
-.fa-tasks:before {
- content: "\f0ae"; }
-
-.fa-filter:before {
- content: "\f0b0"; }
-
-.fa-briefcase:before {
- content: "\f0b1"; }
-
-.fa-arrows-alt:before {
- content: "\f0b2"; }
-
-.fa-community:before,
-.fa-group:before,
-.fa-users:before {
- content: "\f0c0"; }
-
-.fa-chain:before,
-.fa-link:before {
- content: "\f0c1"; }
-
-.fa-cloud:before {
- content: "\f0c2"; }
-
-.fa-flask:before {
- content: "\f0c3"; }
-
-.fa-cut:before,
-.fa-scissors:before {
- content: "\f0c4"; }
-
-.fa-copy:before,
-.fa-files-o:before {
- content: "\f0c5"; }
-
-.fa-paperclip:before {
- content: "\f0c6"; }
-
-.fa-save:before,
-.fa-floppy-o:before {
- content: "\f0c7"; }
-
-.fa-square:before {
- content: "\f0c8"; }
-
-.fa-navicon:before,
-.fa-reorder:before,
-.fa-bars:before {
- content: "\f0c9"; }
-
-.fa-list-ul:before {
- content: "\f0ca"; }
-
-.fa-list-ol:before {
- content: "\f0cb"; }
-
-.fa-strikethrough:before {
- content: "\f0cc"; }
-
-.fa-underline:before {
- content: "\f0cd"; }
-
-.fa-table:before {
- content: "\f0ce"; }
-
-.fa-magic:before {
- content: "\f0d0"; }
-
-.fa-truck:before {
- content: "\f0d1"; }
-
-.fa-pinterest:before {
- content: "\f0d2"; }
-
-.fa-pinterest-square:before {
- content: "\f0d3"; }
-
-.fa-google-plus-square:before {
- content: "\f0d4"; }
-
-.fa-google-plus-g:before,
-.fa-google-plus:before {
- content: "\f0d5"; }
-
-.fa-money:before {
- content: "\f0d6"; }
-
-.fa-caret-down:before {
- content: "\f0d7"; }
-
-.fa-caret-up:before {
- content: "\f0d8"; }
-
-.fa-caret-left:before {
- content: "\f0d9"; }
-
-.fa-caret-right:before {
- content: "\f0da"; }
-
-.fa-columns:before {
- content: "\f0db"; }
-
-.fa-unsorted:before,
-.fa-sort:before {
- content: "\f0dc"; }
-
-.fa-sort-down:before,
-.fa-sort-desc:before {
- content: "\f0dd"; }
-
-.fa-sort-up:before,
-.fa-sort-asc:before {
- content: "\f0de"; }
-
-.fa-envelope:before {
- content: "\f0e0"; }
-
-.fa-linkedin:before {
- content: "\f0e1"; }
-
-.fa-rotate-left:before,
-.fa-undo:before {
- content: "\f0e2"; }
-
-.fa-legal:before,
-.fa-gavel:before {
- content: "\f0e3"; }
-
-.fa-dashboard:before,
-.fa-tachometer:before {
- content: "\f0e4"; }
-
-.fa-comment-o:before {
- content: "\f0e5"; }
-
-.fa-comments-o:before {
- content: "\f0e6"; }
-
-.fa-flash:before,
-.fa-bolt:before {
- content: "\f0e7"; }
-
-.fa-sitemap:before {
- content: "\f0e8"; }
-
-.fa-umbrella:before {
- content: "\f0e9"; }
-
-.fa-paste:before,
-.fa-clipboard:before {
- content: "\f0ea"; }
-
-.fa-lightbulb-o:before {
- content: "\f0eb"; }
-
-.fa-exchange:before {
- content: "\f0ec"; }
-
-.fa-cloud-download:before {
- content: "\f0ed"; }
-
-.fa-cloud-upload:before {
- content: "\f0ee"; }
-
-.fa-user-md:before {
- content: "\f0f0"; }
-
-.fa-stethoscope:before {
- content: "\f0f1"; }
-
-.fa-suitcase:before {
- content: "\f0f2"; }
-
-.fa-bell:before {
- content: "\f0a2"; }
-
-.fa-coffee:before {
- content: "\f0f4"; }
-
-.fa-utensils:before,
-.fa-cutlery:before {
- content: "\f0f5"; }
-
-.fa-file-text-o:before {
- content: "\f0f6"; }
-
-.fa-building-o:before {
- content: "\f0f7"; }
-
-.fa-hospital-o:before {
- content: "\f0f8"; }
-
-.fa-ambulance:before {
- content: "\f0f9"; }
-
-.fa-medkit:before {
- content: "\f0fa"; }
-
-.fa-fighter-jet:before {
- content: "\f0fb"; }
-
-.fa-beer:before {
- content: "\f0fc"; }
-
-.fa-h-square:before {
- content: "\f0fd"; }
-
-.fa-plus-square:before {
- content: "\f0fe"; }
-
-.fa-angle-double-left:before {
- content: "\f100"; }
-
-.fa-angle-double-right:before {
- content: "\f101"; }
-
-.fa-angle-double-up:before {
- content: "\f102"; }
-
-.fa-angle-double-down:before {
- content: "\f103"; }
-
-.fa-angle-left:before {
- content: "\f104"; }
-
-.fa-angle-right:before {
- content: "\f105"; }
-
-.fa-angle-up:before {
- content: "\f106"; }
-
-.fa-angle-down:before {
- content: "\f107"; }
-
-.fa-desktop:before {
- content: "\f108"; }
-
-.fa-laptop:before {
- content: "\f109"; }
-
-.fa-tablet:before {
- content: "\f10a"; }
-
-.fa-mobile-phone:before,
-.fa-mobile:before {
- content: "\f10b"; }
-
-.fa-circle-o:before {
- content: "\f10c"; }
-
-.fa-quote-left:before {
- content: "\f10d"; }
-
-.fa-quote-right:before {
- content: "\f10e"; }
-
-.fa-spinner:before {
- content: "\f110"; }
-
-.fa-circle:before {
- content: "\f111"; }
-
-.fa-mail-reply:before,
-.fa-reply:before {
- content: "\f112"; }
-
-.fa-github-alt:before {
- content: "\f113"; }
-
-.fa-folder-o:before {
- content: "\f114"; }
-
-.fa-folder-open-o:before {
- content: "\f115"; }
-
-.fa-smile-o:before {
- content: "\f118"; }
-
-.fa-frown-o:before {
- content: "\f119"; }
-
-.fa-meh-o:before {
- content: "\f11a"; }
-
-.fa-gamepad:before {
- content: "\f11b"; }
-
-.fa-keyboard-o:before {
- content: "\f11c"; }
-
-.fa-flag-o:before {
- content: "\f11d"; }
-
-.fa-flag-checkered:before {
- content: "\f11e"; }
-
-.fa-terminal:before {
- content: "\f120"; }
-
-.fa-code:before {
- content: "\f121"; }
-
-.fa-mail-reply-all:before,
-.fa-reply-all:before {
- content: "\f122"; }
-
-.fa-star-half-empty:before,
-.fa-star-half-full:before,
-.fa-star-half-o:before {
- content: "\f123"; }
-
-.fa-location-arrow:before {
- content: "\f124"; }
-
-.fa-crop:before {
- content: "\f125"; }
-
-.fa-code-fork:before {
- content: "\f126"; }
-
-.fa-unlink:before,
-.fa-chain-broken:before {
- content: "\f127"; }
-
-.fa-question:before {
- content: "\f128"; }
-
-.fa-info:before {
- content: "\f129"; }
-
-.fa-exclamation:before {
- content: "\f12a"; }
-
-.fa-superscript:before {
- content: "\f12b"; }
-
-.fa-subscript:before {
- content: "\f12c"; }
-
-.fa-eraser:before {
- content: "\f12d"; }
-
-.fa-puzzle-piece:before {
- content: "\f12e"; }
-
-.fa-microphone:before {
- content: "\f130"; }
-
-.fa-microphone-slash:before {
- content: "\f131"; }
-
-.fa-shield:before {
- content: "\f132"; }
-
-.fa-calendar-o:before {
- content: "\f133"; }
-
-.fa-fire-extinguisher:before {
- content: "\f134"; }
-
-.fa-rocket:before {
- content: "\f135"; }
-
-.fa-maxcdn:before {
- content: "\f136"; }
-
-.fa-chevron-circle-left:before {
- content: "\f137"; }
-
-.fa-chevron-circle-right:before {
- content: "\f138"; }
-
-.fa-chevron-circle-up:before {
- content: "\f139"; }
-
-.fa-chevron-circle-down:before {
- content: "\f13a"; }
-
-.fa-html5:before {
- content: "\f13b"; }
-
-.fa-css3:before {
- content: "\f13c"; }
-
-.fa-anchor:before {
- content: "\f13d"; }
-
-.fa-unlock-alt:before {
- content: "\f13e"; }
-
-.fa-bullseye:before {
- content: "\f140"; }
-
-.fa-ellipsis-h:before {
- content: "\f141"; }
-
-.fa-ellipsis-v:before {
- content: "\f142"; }
-
-.fa-rss-square:before {
- content: "\f143"; }
-
-.fa-play-circle:before {
- content: "\f144"; }
-
-.fa-ticket:before {
- content: "\f145"; }
-
-.fa-minus-square:before {
- content: "\f146"; }
-
-.fa-minus-square-o:before {
- content: "\f147"; }
-
-.fa-level-up:before {
- content: "\f148"; }
-
-.fa-level-down:before {
- content: "\f149"; }
-
-.fa-check-square:before {
- content: "\f14a"; }
-
-.fa-pencil-square:before {
- content: "\f14b"; }
-
-.fa-external-link-square:before {
- content: "\f14c"; }
-
-.fa-share-square:before {
- content: "\f14d"; }
-
-.fa-compass:before {
- content: "\f14e"; }
-
-.fa-toggle-down:before,
-.fa-caret-square-o-down:before {
- content: "\f150"; }
-
-.fa-toggle-up:before,
-.fa-caret-square-o-up:before {
- content: "\f151"; }
-
-.fa-toggle-right:before,
-.fa-caret-square-o-right:before {
- content: "\f152"; }
-
-.fa-euro:before,
-.fa-eur:before {
- content: "\f153"; }
-
-.fa-pound:before,
-.fa-gbp:before {
- content: "\f154"; }
-
-.fa-dollar:before,
-.fa-usd:before {
- content: "\f155"; }
-
-.fa-rupee:before,
-.fa-inr:before {
- content: "\f156"; }
-
-.fa-cny:before,
-.fa-rmb:before,
-.fa-yen:before,
-.fa-jpy:before {
- content: "\f157"; }
-
-.fa-ruble:before,
-.fa-rouble:before,
-.fa-rub:before {
- content: "\f158"; }
-
-.fa-won:before,
-.fa-krw:before {
- content: "\f159"; }
-
-.fa-bitcoin:before,
-.fa-btc:before {
- content: "\f15a"; }
-
-.fa-file:before {
- content: "\f15b"; }
-
-.fa-file-text:before {
- content: "\f15c"; }
-
-.fa-sort-alpha-down:before,
-.fa-sort-alpha-asc:before {
- content: "\f15d"; }
-
-.fa-sort-alpha-up:before,
-.fa-sort-alpha-desc:before {
- content: "\f15e"; }
-
-.fa-sort-amount-down:before,
-.fa-sort-amount-asc:before {
- content: "\f160"; }
-
-.fa-sort-amount-up:before,
-.fa-sort-amount-desc:before {
- content: "\f161"; }
-
-.fa-sort-numeric-down:before,
-.fa-sort-numeric-asc:before {
- content: "\f162"; }
-
-.fa-sort-numeric-up:before,
-.fa-sort-numeric-desc:before {
- content: "\f163"; }
-
-.fa-thumbs-up:before {
- content: "\f164"; }
-
-.fa-thumbs-down:before {
- content: "\f165"; }
-
-.fa-youtube-square:before {
- content: "\f166"; }
-
-.fa-youtube:before {
- content: "\f167"; }
-
-.fa-xing:before {
- content: "\f168"; }
-
-.fa-xing-square:before {
- content: "\f169"; }
-
-.fa-youtube-play:before {
- content: "\f16a"; }
-
-.fa-dropbox:before {
- content: "\f16b"; }
-
-.fa-stack-overflow:before {
- content: "\f16c"; }
-
-.fa-instagram:before {
- content: "\f16d"; }
-
-.fa-flickr:before {
- content: "\f16e"; }
-
-.fa-adn:before {
- content: "\f170"; }
-
-.fa-bitbucket:before {
- content: "\f171"; }
-
-.fa-bitbucket-square:before {
- content: "\f172"; }
-
-.fa-tumblr:before {
- content: "\f173"; }
-
-.fa-tumblr-square:before {
- content: "\f174"; }
-
-.fa-long-arrow-down:before {
- content: "\f175"; }
-
-.fa-long-arrow-up:before {
- content: "\f176"; }
-
-.fa-long-arrow-left:before {
- content: "\f177"; }
-
-.fa-long-arrow-right:before {
- content: "\f178"; }
-
-.fa-apple:before {
- content: "\f179"; }
-
-.fa-windows:before {
- content: "\f17a"; }
-
-.fa-android:before {
- content: "\f17b"; }
-
-.fa-linux:before {
- content: "\f17c"; }
-
-.fa-dribbble:before {
- content: "\f17d"; }
-
-.fa-skype:before {
- content: "\f17e"; }
-
-.fa-foursquare:before {
- content: "\f180"; }
-
-.fa-trello:before {
- content: "\f181"; }
-
-.fa-female:before {
- content: "\f182"; }
-
-.fa-male:before {
- content: "\f183"; }
-
-.fa-gittip:before,
-.fa-gratipay:before {
- content: "\f184"; }
-
-.fa-sun-o:before {
- content: "\f185"; }
-
-.fa-moon-o:before {
- content: "\f186"; }
-
-.fa-archive:before {
- content: "\f187"; }
-
-.fa-bug:before {
- content: "\f188"; }
-
-.fa-vk:before {
- content: "\f189"; }
-
-.fa-weibo:before {
- content: "\f18a"; }
-
-.fa-renren:before {
- content: "\f18b"; }
-
-.fa-pagelines:before {
- content: "\f18c"; }
-
-.fa-stack-exchange:before {
- content: "\f18d"; }
-
-.fa-arrow-circle-o-right:before {
- content: "\f18e"; }
-
-.fa-arrow-circle-o-left:before {
- content: "\f190"; }
-
-.fa-toggle-left:before,
-.fa-caret-square-o-left:before {
- content: "\f191"; }
-
-.fa-dot-circle-o:before {
- content: "\f192"; }
-
-.fa-wheelchair:before {
- content: "\f193"; }
-
-.fa-vimeo-square:before {
- content: "\f194"; }
-
-.fa-turkish-lira:before,
-.fa-try:before {
- content: "\f195"; }
-
-.fa-plus-square-o:before {
- content: "\f196"; }
-
-.fa-space-shuttle:before {
- content: "\f197"; }
-
-.fa-slack:before {
- content: "\f198"; }
-
-.fa-envelope-square:before {
- content: "\f199"; }
-
-.fa-wordpress:before {
- content: "\f19a"; }
-
-.fa-openid:before {
- content: "\f19b"; }
-
-.fa-institution:before,
-.fa-bank:before,
-.fa-university:before {
- content: "\f19c"; }
-
-.fa-mortar-board:before,
-.fa-graduation-cap:before {
- content: "\f19d"; }
-
-.fa-yahoo:before {
- content: "\f19e"; }
-
-.fa-google:before {
- content: "\f1a0"; }
-
-.fa-reddit:before {
- content: "\f1a1"; }
-
-.fa-reddit-square:before {
- content: "\f1a2"; }
-
-.fa-stumbleupon-circle:before {
- content: "\f1a3"; }
-
-.fa-stumbleupon:before {
- content: "\f1a4"; }
-
-.fa-delicious:before {
- content: "\f1a5"; }
-
-.fa-digg:before {
- content: "\f1a6"; }
-
-.fa-drupal:before {
- content: "\f1a9"; }
-
-.fa-joomla:before {
- content: "\f1aa"; }
-
-.fa-language:before {
- content: "\f1ab"; }
-
-.fa-fax:before {
- content: "\f1ac"; }
-
-.fa-building:before {
- content: "\f1ad"; }
-
-.fa-child:before {
- content: "\f1ae"; }
-
-.fa-paw:before {
- content: "\f1b0"; }
-
-.fa-utensil-spoon:before,
-.fa-spoon:before {
- content: "\f1b1"; }
-
-.fa-cube:before {
- content: "\f1b2"; }
-
-.fa-cubes:before {
- content: "\f1b3"; }
-
-.fa-behance:before {
- content: "\f1b4"; }
-
-.fa-behance-square:before {
- content: "\f1b5"; }
-
-.fa-steam:before {
- content: "\f1b6"; }
-
-.fa-steam-square:before {
- content: "\f1b7"; }
-
-.fa-recycle:before {
- content: "\f1b8"; }
-
-.fa-automobile:before,
-.fa-car:before {
- content: "\f1b9"; }
-
-.fa-cab:before,
-.fa-taxi:before {
- content: "\f1ba"; }
-
-.fa-tree:before {
- content: "\f1bb"; }
-
-.fa-spotify:before {
- content: "\f1bc"; }
-
-.fa-deviantart:before {
- content: "\f1bd"; }
-
-.fa-soundcloud:before {
- content: "\f1be"; }
-
-.fa-database:before {
- content: "\f1c0"; }
-
-.fa-file-pdf-o:before {
- content: "\f1c1"; }
-
-.fa-file-word-o:before {
- content: "\f1c2"; }
-
-.fa-file-excel-o:before {
- content: "\f1c3"; }
-
-.fa-file-powerpoint-o:before {
- content: "\f1c4"; }
-
-.fa-file-photo-o:before,
-.fa-file-picture-o:before,
-.fa-file-image-o:before {
- content: "\f1c5"; }
-
-.fa-file-zip-o:before,
-.fa-file-archive-o:before {
- content: "\f1c6"; }
-
-.fa-file-sound-o:before,
-.fa-file-audio-o:before {
- content: "\f1c7"; }
-
-.fa-file-movie-o:before,
-.fa-file-video-o:before {
- content: "\f1c8"; }
-
-.fa-file-code-o:before {
- content: "\f1c9"; }
-
-.fa-vine:before {
- content: "\f1ca"; }
-
-.fa-codepen:before {
- content: "\f1cb"; }
-
-.fa-jsfiddle:before {
- content: "\f1cc"; }
-
-.fa-life-bouy:before,
-.fa-life-buoy:before,
-.fa-life-saver:before,
-.fa-support:before,
-.fa-life-ring:before {
- content: "\f1cd"; }
-
-.fa-circle-o-notch:before {
- content: "\f1ce"; }
-
-.fa-ra:before,
-.fa-resistance:before,
-.fa-rebel:before {
- content: "\f1d0"; }
-
-.fa-ge:before,
-.fa-empire:before {
- content: "\f1d1"; }
-
-.fa-git-square:before {
- content: "\f1d2"; }
-
-.fa-git:before {
- content: "\f1d3"; }
-
-.fa-y-combinator-square:before,
-.fa-yc-square:before,
-.fa-hacker-news:before {
- content: "\f1d4"; }
-
-.fa-tencent-weibo:before {
- content: "\f1d5"; }
-
-.fa-qq:before {
- content: "\f1d6"; }
-
-.fa-wechat:before,
-.fa-weixin:before {
- content: "\f1d7"; }
-
-.fa-send:before,
-.fa-paper-plane:before {
- content: "\f1d8"; }
-
-.fa-send-o:before,
-.fa-paper-plane-o:before {
- content: "\f1d9"; }
-
-.fa-history:before {
- content: "\f1da"; }
-
-.fa-circle-thin:before {
- content: "\f1db"; }
-
-.fa-heading:before,
-.fa-header:before {
- content: "\f1dc"; }
-
-.fa-paragraph:before {
- content: "\f1dd"; }
-
-.fa-sliders:before {
- content: "\f1de"; }
-
-.fa-share-alt:before {
- content: "\f1e0"; }
-
-.fa-share-alt-square:before {
- content: "\f1e1"; }
-
-.fa-bomb:before {
- content: "\f1e2"; }
-
-.fa-soccer-ball-o:before,
-.fa-futbol-o:before {
- content: "\f1e3"; }
-
-.fa-tty:before {
- content: "\f1e4"; }
-
-.fa-binoculars:before {
- content: "\f1e5"; }
-
-.fa-plug:before {
- content: "\f1e6"; }
-
-.fa-slideshare:before {
- content: "\f1e7"; }
-
-.fa-twitch:before {
- content: "\f1e8"; }
-
-.fa-yelp:before {
- content: "\f1e9"; }
-
-.fa-newspaper-o:before {
- content: "\f1ea"; }
-
-.fa-wifi:before {
- content: "\f1eb"; }
-
-.fa-calculator:before {
- content: "\f1ec"; }
-
-.fa-paypal:before {
- content: "\f1ed"; }
-
-.fa-google-wallet:before {
- content: "\f1ee"; }
-
-.fa-cc-visa:before {
- content: "\f1f0"; }
-
-.fa-cc-mastercard:before {
- content: "\f1f1"; }
-
-.fa-cc-discover:before {
- content: "\f1f2"; }
-
-.fa-cc-amex:before {
- content: "\f1f3"; }
-
-.fa-cc-paypal:before {
- content: "\f1f4"; }
-
-.fa-cc-stripe:before {
- content: "\f1f5"; }
-
-.fa-bell-slash:before {
- content: "\f1f6"; }
-
-.fa-bell-slash-o:before {
- content: "\f1f7"; }
-
-.fa-trash:before {
- content: "\f1f8"; }
-
-.fa-copyright:before {
- content: "\f1f9"; }
-
-.fa-at:before {
- content: "\f1fa"; }
-
-.fa-eyedropper:before {
- content: "\f1fb"; }
-
-.fa-paint-brush:before {
- content: "\f1fc"; }
-
-.fa-birthday-cake:before {
- content: "\f1fd"; }
-
-.fa-area-chart:before {
- content: "\f1fe"; }
-
-.fa-pie-chart:before {
- content: "\f200"; }
-
-.fa-line-chart:before {
- content: "\f201"; }
-
-.fa-lastfm:before {
- content: "\f202"; }
-
-.fa-lastfm-square:before {
- content: "\f203"; }
-
-.fa-toggle-off:before {
- content: "\f204"; }
-
-.fa-toggle-on:before {
- content: "\f205"; }
-
-.fa-bicycle:before {
- content: "\f206"; }
-
-.fa-bus:before {
- content: "\f207"; }
-
-.fa-ioxhost:before {
- content: "\f208"; }
-
-.fa-angellist:before {
- content: "\f209"; }
-
-.fa-closed-captioning:before,
-.fa-cc:before {
- content: "\f20a"; }
-
-.fa-shekel:before,
-.fa-sheqel:before,
-.fa-ils:before {
- content: "\f20b"; }
-
-.fa-meanpath:before {
- content: "\f20c"; }
-
-.fa-buysellads:before {
- content: "\f20d"; }
-
-.fa-connectdevelop:before {
- content: "\f20e"; }
-
-.fa-dashcube:before {
- content: "\f210"; }
-
-.fa-forumbee:before {
- content: "\f211"; }
-
-.fa-leanpub:before {
- content: "\f212"; }
-
-.fa-sellsy:before {
- content: "\f213"; }
-
-.fa-shirtsinbulk:before {
- content: "\f214"; }
-
-.fa-simplybuilt:before {
- content: "\f215"; }
-
-.fa-skyatlas:before {
- content: "\f216"; }
-
-.fa-cart-plus:before {
- content: "\f217"; }
-
-.fa-cart-arrow-down:before {
- content: "\f218"; }
-
-.fa-gem:before,
-.fa-diamond:before {
- content: "\f219"; }
-
-.fa-ship:before {
- content: "\f21a"; }
-
-.fa-user-secret:before {
- content: "\f21b"; }
-
-.fa-motorcycle:before {
- content: "\f21c"; }
-
-.fa-street-view:before {
- content: "\f21d"; }
-
-.fa-heartbeat:before {
- content: "\f21e"; }
-
-.fa-venus:before {
- content: "\f221"; }
-
-.fa-mars:before {
- content: "\f222"; }
-
-.fa-mercury:before {
- content: "\f223"; }
-
-.fa-intersex:before,
-.fa-transgender:before {
- content: "\f224"; }
-
-.fa-transgender-alt:before {
- content: "\f225"; }
-
-.fa-venus-double:before {
- content: "\f226"; }
-
-.fa-mars-double:before {
- content: "\f227"; }
-
-.fa-venus-mars:before {
- content: "\f228"; }
-
-.fa-mars-stroke:before {
- content: "\f229"; }
-
-.fa-mars-stroke-v:before {
- content: "\f22a"; }
-
-.fa-mars-stroke-h:before {
- content: "\f22b"; }
-
-.fa-neuter:before {
- content: "\f22c"; }
-
-.fa-genderless:before {
- content: "\f22d"; }
-
-.fa-facebook-official:before {
- content: "\f230"; }
-
-.fa-pinterest-p:before {
- content: "\f231"; }
-
-.fa-whatsapp:before {
- content: "\f232"; }
-
-.fa-server:before {
- content: "\f233"; }
-
-.fa-user-plus:before {
- content: "\f234"; }
-
-.fa-user-times:before {
- content: "\f235"; }
-
-.fa-hotel:before,
-.fa-bed:before {
- content: "\f236"; }
-
-.fa-viacoin:before {
- content: "\f237"; }
-
-.fa-train:before {
- content: "\f238"; }
-
-.fa-subway:before {
- content: "\f239"; }
-
-.fa-medium:before {
- content: "\f23a"; }
-
-.fa-medium-square:before {
- content: "\f2f8"; }
-
-.fa-yc:before,
-.fa-y-combinator:before {
- content: "\f23b"; }
-
-.fa-optin-monster:before {
- content: "\f23c"; }
-
-.fa-opencart:before {
- content: "\f23d"; }
-
-.fa-expeditedssl:before {
- content: "\f23e"; }
-
-.fa-battery-4:before,
-.fa-battery:before,
-.fa-battery-full:before {
- content: "\f240"; }
-
-.fa-battery-3:before,
-.fa-battery-three-quarters:before {
- content: "\f241"; }
-
-.fa-battery-2:before,
-.fa-battery-half:before {
- content: "\f242"; }
-
-.fa-battery-1:before,
-.fa-battery-quarter:before {
- content: "\f243"; }
-
-.fa-battery-0:before,
-.fa-battery-empty:before {
- content: "\f244"; }
-
-.fa-mouse-pointer:before {
- content: "\f245"; }
-
-.fa-i-cursor:before {
- content: "\f246"; }
-
-.fa-object-group:before {
- content: "\f247"; }
-
-.fa-object-ungroup:before {
- content: "\f248"; }
-
-.fa-sticky-note:before {
- content: "\f249"; }
-
-.fa-sticky-note-o:before {
- content: "\f24a"; }
-
-.fa-cc-jcb:before {
- content: "\f24b"; }
-
-.fa-cc-diners-club:before {
- content: "\f24c"; }
-
-.fa-clone:before {
- content: "\f24d"; }
-
-.fa-balance-scale:before {
- content: "\f24e"; }
-
-.fa-hourglass-o:before {
- content: "\f250"; }
-
-.fa-hourglass-1:before,
-.fa-hourglass-start:before {
- content: "\f251"; }
-
-.fa-hourglass-2:before,
-.fa-hourglass-half:before {
- content: "\f252"; }
-
-.fa-hourglass-3:before,
-.fa-hourglass-end:before {
- content: "\f253"; }
-
-.fa-hourglass:before {
- content: "\f254"; }
-
-.fa-hand-grab-o:before,
-.fa-hand-rock-o:before {
- content: "\f255"; }
-
-.fa-hand-stop-o:before,
-.fa-hand-paper-o:before {
- content: "\f256"; }
-
-.fa-hand-scissors-o:before {
- content: "\f257"; }
-
-.fa-hand-lizard-o:before {
- content: "\f258"; }
-
-.fa-hand-spock-o:before {
- content: "\f259"; }
-
-.fa-hand-pointer-o:before {
- content: "\f25a"; }
-
-.fa-hand-peace-o:before {
- content: "\f25b"; }
-
-.fa-trademark:before {
- content: "\f25c"; }
-
-.fa-registered:before {
- content: "\f25d"; }
-
-.fa-creative-commons:before {
- content: "\f25e"; }
-
-.fa-gg:before {
- content: "\f260"; }
-
-.fa-gg-circle:before {
- content: "\f261"; }
-
-.fa-tripadvisor:before {
- content: "\f262"; }
-
-.fa-odnoklassniki:before {
- content: "\f263"; }
-
-.fa-odnoklassniki-square:before {
- content: "\f264"; }
-
-.fa-get-pocket:before {
- content: "\f265"; }
-
-.fa-wikipedia-w:before {
- content: "\f266"; }
-
-.fa-safari:before {
- content: "\f267"; }
-
-.fa-chrome:before {
- content: "\f268"; }
-
-.fa-firefox:before {
- content: "\f269"; }
-
-.fa-opera:before {
- content: "\f26a"; }
-
-.fa-internet-explorer:before {
- content: "\f26b"; }
-
-.fa-tv:before,
-.fa-television:before {
- content: "\f26c"; }
-
-.fa-contao:before {
- content: "\f26d"; }
-
-.fa-500px:before {
- content: "\f26e"; }
-
-.fa-amazon:before {
- content: "\f270"; }
-
-.fa-calendar-plus-o:before {
- content: "\f271"; }
-
-.fa-calendar-minus-o:before {
- content: "\f272"; }
-
-.fa-calendar-times-o:before {
- content: "\f273"; }
-
-.fa-calendar-check-o:before {
- content: "\f274"; }
-
-.fa-industry:before {
- content: "\f275"; }
-
-.fa-map-pin:before {
- content: "\f276"; }
-
-.fa-map-signs:before {
- content: "\f277"; }
-
-.fa-map-o:before {
- content: "\f278"; }
-
-.fa-map:before {
- content: "\f279"; }
-
-.fa-commenting:before {
- content: "\f27a"; }
-
-.fa-commenting-o:before {
- content: "\f27b"; }
-
-.fa-houzz:before {
- content: "\f27c"; }
-
-.fa-vimeo-v:before,
-.fa-vimeo:before {
- content: "\f27d"; }
-
-.fa-black-tie:before {
- content: "\f27e"; }
-
-.fa-fonticons:before {
- content: "\f280"; }
-
-.fa-reddit-alien:before {
- content: "\f281"; }
-
-.fa-edge:before {
- content: "\f282"; }
-
-.fa-credit-card-alt:before {
- content: "\f283"; }
-
-.fa-codiepie:before {
- content: "\f284"; }
-
-.fa-modx:before {
- content: "\f285"; }
-
-.fa-fort-awesome:before {
- content: "\f286"; }
-
-.fa-usb:before {
- content: "\f287"; }
-
-.fa-product-hunt:before {
- content: "\f288"; }
-
-.fa-mixcloud:before {
- content: "\f289"; }
-
-.fa-scribd:before {
- content: "\f28a"; }
-
-.fa-pause-circle:before {
- content: "\f28b"; }
-
-.fa-pause-circle-o:before {
- content: "\f28c"; }
-
-.fa-stop-circle:before {
- content: "\f28d"; }
-
-.fa-stop-circle-o:before {
- content: "\f28e"; }
-
-.fa-shopping-bag:before {
- content: "\f290"; }
-
-.fa-shopping-basket:before {
- content: "\f291"; }
-
-.fa-hashtag:before {
- content: "\f292"; }
-
-.fa-bluetooth:before {
- content: "\f293"; }
-
-.fa-bluetooth-b:before {
- content: "\f294"; }
-
-.fa-percent:before {
- content: "\f295"; }
-
-.fa-gitlab:before {
- content: "\f296"; }
-
-.fa-wpbeginner:before {
- content: "\f297"; }
-
-.fa-wpforms:before {
- content: "\f298"; }
-
-.fa-envira:before {
- content: "\f299"; }
-
-.fa-universal-access:before {
- content: "\f29a"; }
-
-.fa-wheelchair-alt:before {
- content: "\f29b"; }
-
-.fa-question-circle-o:before {
- content: "\f29c"; }
-
-.fa-blind:before {
- content: "\f29d"; }
-
-.fa-audio-description:before {
- content: "\f29e"; }
-
-.fa-phone-volume:before,
-.fa-volume-control-phone:before {
- content: "\f2a0"; }
-
-.fa-braille:before {
- content: "\f2a1"; }
-
-.fa-assistive-listening-systems:before {
- content: "\f2a2"; }
-
-.fa-asl-interpreting:before,
-.fa-american-sign-language-interpreting:before {
- content: "\f2a3"; }
-
-.fa-deafness:before,
-.fa-hard-of-hearing:before,
-.fa-deaf:before {
- content: "\f2a4"; }
-
-.fa-glide:before {
- content: "\f2a5"; }
-
-.fa-glide-g:before {
- content: "\f2a6"; }
-
-.fa-signing:before,
-.fa-sign-language:before {
- content: "\f2a7"; }
-
-.fa-low-vision:before {
- content: "\f2a8"; }
-
-.fa-viadeo:before {
- content: "\f2a9"; }
-
-.fa-viadeo-square:before {
- content: "\f2aa"; }
-
-.fa-snapchat:before {
- content: "\f2ab"; }
-
-.fa-snapchat-ghost:before {
- content: "\f2ac"; }
-
-.fa-snapchat-square:before {
- content: "\f2ad"; }
-
-.fa-first-order:before {
- content: "\f2b0"; }
-
-.fa-yoast:before {
- content: "\f2b1"; }
-
-.fa-themeisle:before {
- content: "\f2b2"; }
-
-.fa-google-plus-circle:before,
-.fa-google-plus-official:before {
- content: "\f2b3"; }
-
-.fa-fa:before,
-.fa-font-awesome:before {
- content: "\f2b4"; }
-
-.fa-handshake-o:before {
- content: "\f2b5"; }
-
-.fa-envelope-open:before {
- content: "\f2b6"; }
-
-.fa-envelope-open-o:before {
- content: "\f2b7"; }
-
-.fa-linode:before {
- content: "\f2b8"; }
-
-.fa-address-book:before {
- content: "\f2b9"; }
-
-.fa-address-book-o:before {
- content: "\f2ba"; }
-
-.fa-vcard:before,
-.fa-address-card:before {
- content: "\f2bb"; }
-
-.fa-vcard-o:before,
-.fa-address-card-o:before {
- content: "\f2bc"; }
-
-.fa-user-circle:before {
- content: "\f2bd"; }
-
-.fa-user-circle-o:before {
- content: "\f2be"; }
-
-.fa-user-o:before {
- content: "\f2c0"; }
-
-.fa-id-badge:before {
- content: "\f2c1"; }
-
-.fa-drivers-license:before,
-.fa-id-card:before {
- content: "\f2c2"; }
-
-.fa-drivers-license-o:before,
-.fa-id-card-o:before {
- content: "\f2c3"; }
-
-.fa-quora:before {
- content: "\f2c4"; }
-
-.fa-free-code-camp:before {
- content: "\f2c5"; }
-
-.fa-telegram:before {
- content: "\f2c6"; }
-
-.fa-thermometer-4:before,
-.fa-thermometer:before,
-.fa-thermometer-full:before {
- content: "\f2c7"; }
-
-.fa-thermometer-3:before,
-.fa-thermometer-three-quarters:before {
- content: "\f2c8"; }
-
-.fa-thermometer-2:before,
-.fa-thermometer-half:before {
- content: "\f2c9"; }
-
-.fa-thermometer-1:before,
-.fa-thermometer-quarter:before {
- content: "\f2ca"; }
-
-.fa-thermometer-0:before,
-.fa-thermometer-empty:before {
- content: "\f2cb"; }
-
-.fa-shower:before {
- content: "\f2cc"; }
-
-.fa-bathtub:before,
-.fa-s15:before,
-.fa-bath:before {
- content: "\f2cd"; }
-
-.fa-podcast:before {
- content: "\f2ce"; }
-
-.fa-window-maximize:before {
- content: "\f2d0"; }
-
-.fa-window-minimize:before {
- content: "\f2d1"; }
-
-.fa-window-restore:before {
- content: "\f2d2"; }
-
-.fa-times-rectangle:before,
-.fa-window-close:before {
- content: "\f2d3"; }
-
-.fa-times-rectangle-o:before,
-.fa-window-close-o:before {
- content: "\f2d4"; }
-
-.fa-bandcamp:before {
- content: "\f2d5"; }
-
-.fa-grav:before {
- content: "\f2d6"; }
-
-.fa-etsy:before {
- content: "\f2d7"; }
-
-.fa-imdb:before {
- content: "\f2d8"; }
-
-.fa-ravelry:before {
- content: "\f2d9"; }
-
-.fa-eercast:before {
- content: "\f2da"; }
-
-.fa-microchip:before {
- content: "\f2db"; }
-
-.fa-snowflake-o:before {
- content: "\f2dc"; }
-
-.fa-superpowers:before {
- content: "\f2dd"; }
-
-.fa-wpexplorer:before {
- content: "\f2de"; }
-
-.fa-meetup:before {
- content: "\f2e0"; }
-
-.fa-mastodon:before {
- content: "\f2e1"; }
-
-.fa-mastodon-alt:before {
- content: "\f2e2"; }
-
-.fa-fork-circle:before,
-.fa-fork-awesome:before {
- content: "\f2e3"; }
-
-.fa-peertube:before {
- content: "\f2e4"; }
-
-.fa-diaspora:before {
- content: "\f2e5"; }
-
-.fa-friendica:before {
- content: "\f2e6"; }
-
-.fa-gnu-social:before {
- content: "\f2e7"; }
-
-.fa-liberapay-square:before {
- content: "\f2e8"; }
-
-.fa-liberapay:before {
- content: "\f2e9"; }
-
-.fa-ssb:before,
-.fa-scuttlebutt:before {
- content: "\f2ea"; }
-
-.fa-hubzilla:before {
- content: "\f2eb"; }
-
-.fa-social-home:before {
- content: "\f2ec"; }
-
-.fa-artstation:before {
- content: "\f2ed"; }
-
-.fa-discord:before {
- content: "\f2ee"; }
-
-.fa-discord-alt:before {
- content: "\f2ef"; }
-
-.fa-patreon:before {
- content: "\f2f0"; }
-
-.fa-snowdrift:before {
- content: "\f2f1"; }
-
-.fa-activitypub:before {
- content: "\f2f2"; }
-
-.fa-ethereum:before {
- content: "\f2f3"; }
-
-.fa-keybase:before {
- content: "\f2f4"; }
-
-.fa-shaarli:before {
- content: "\f2f5"; }
-
-.fa-shaarli-o:before {
- content: "\f2f6"; }
-
-.fa-cut-key:before,
-.fa-key-modern:before {
- content: "\f2f7"; }
-
-.fa-xmpp:before {
- content: "\f2f9"; }
-
-.fa-archive-org:before {
- content: "\f2fc"; }
-
-.fa-freedombox:before {
- content: "\f2fd"; }
-
-.fa-facebook-messenger:before {
- content: "\f2fe"; }
-
-.fa-debian:before {
- content: "\f2ff"; }
-
-.fa-mastodon-square:before {
- content: "\f300"; }
-
-.fa-tipeee:before {
- content: "\f301"; }
-
-.fa-react:before {
- content: "\f302"; }
-
-.fa-dogmazic:before {
- content: "\f303"; }
-
-.fa-zotero:before {
- content: "\f309"; }
-
-.fa-nodejs:before {
- content: "\f308"; }
-
-.fa-nextcloud:before {
- content: "\f306"; }
-
-.fa-nextcloud-square:before {
- content: "\f307"; }
-
-.fa-hackaday:before {
- content: "\f30a"; }
-
-.fa-laravel:before {
- content: "\f30b"; }
-
-.fa-signalapp:before {
- content: "\f30c"; }
-
-.fa-gnupg:before {
- content: "\f30d"; }
-
-.fa-php:before {
- content: "\f30e"; }
-
-.fa-ffmpeg:before {
- content: "\f30f"; }
-
-.fa-joplin:before {
- content: "\f310"; }
-
-.fa-syncthing:before {
- content: "\f311"; }
-
-.fa-inkscape:before {
- content: "\f312"; }
-
-.fa-matrix-org:before {
- content: "\f313"; }
-
-.fa-pixelfed:before {
- content: "\f314"; }
-
-.fa-bootstrap:before {
- content: "\f315"; }
-
-.fa-dev-to:before {
- content: "\f316"; }
-
-.fa-hashnode:before {
- content: "\f317"; }
-
-.fa-jirafeau:before {
- content: "\f318"; }
-
-.fa-emby:before {
- content: "\f319"; }
-
-.fa-wikidata:before {
- content: "\f31a"; }
-
-.fa-gimp:before {
- content: "\f31b"; }
-
-.fa-c:before {
- content: "\f31c"; }
-
-.fa-digitalocean:before {
- content: "\f31d"; }
-
-.fa-att:before {
- content: "\f31e"; }
-
-.fa-gitea:before {
- content: "\f31f"; }
-
-.fa-file-epub:before {
- content: "\f321"; }
-
-.fa-python:before {
- content: "\f322"; }
-
-.fa-archlinux:before {
- content: "\f323"; }
-
-.fa-pleroma:before {
- content: "\f324"; }
-
-.fa-unsplash:before {
- content: "\f325"; }
-
-.fa-hackster:before {
- content: "\f326"; }
-
-.fa-spell-check:before {
- content: "\f327"; }
-
-.fa-moon:before {
- content: "\f328"; }
-
-.fa-sun:before {
- content: "\f329"; }
-
-.fa-f-droid:before {
- content: "\f32a"; }
-
-.fa-biometric:before {
- content: "\f32b"; }
-
-.fa-wire:before {
- content: "\f32c"; }
-
-.fa-tor-onion:before {
- content: "\f32e"; }
-
-.fa-volume-mute:before {
- content: "\f32f"; }
-
-.fa-bell-ringing:before {
- content: "\f32d"; }
-
-.fa-bell-ringing-o:before {
- content: "\f330"; }
-
-.fa-hal:before {
- content: "\f333"; }
-
-.fa-jupyter:before {
- content: "\f335"; }
-
-.fa-julia:before {
- content: "\f334"; }
-
-.fa-classicpress:before {
- content: "\f331"; }
-
-.fa-classicpress-circle:before {
- content: "\f332"; }
-
-.fa-open-collective:before {
- content: "\f336"; }
-
-.fa-orcid:before {
- content: "\f337"; }
-
-.fa-researchgate:before {
- content: "\f338"; }
-
-.fa-funkwhale:before {
- content: "\f339"; }
-
-.fa-askfm:before {
- content: "\f33a"; }
-
-.fa-blockstack:before {
- content: "\f33b"; }
-
-.fa-boardgamegeek:before {
- content: "\f33c"; }
-
-.fa-bunny:before {
- content: "\f35f"; }
-
-.fa-buymeacoffee:before {
- content: "\f33d"; }
-
-.fa-cc-by:before {
- content: "\f33e"; }
-
-.fa-creative-commons-alt:before,
-.fa-cc-cc:before {
- content: "\f33f"; }
-
-.fa-cc-nc-eu:before {
- content: "\f341"; }
-
-.fa-cc-nc-jp:before {
- content: "\f342"; }
-
-.fa-cc-nc:before {
- content: "\f340"; }
-
-.fa-cc-nd:before {
- content: "\f343"; }
-
-.fa-cc-pd:before {
- content: "\f344"; }
-
-.fa-cc-remix:before {
- content: "\f345"; }
-
-.fa-cc-sa:before {
- content: "\f346"; }
-
-.fa-cc-share:before {
- content: "\f347"; }
-
-.fa-cc-zero:before {
- content: "\f348"; }
-
-.fa-conway-hacker:before,
-.fa-conway-glider:before {
- content: "\f349"; }
-
-.fa-csharp:before {
- content: "\f34a"; }
-
-.fa-email-bulk:before {
- content: "\f34b"; }
-
-.fa-email-bulk-o:before {
- content: "\f34c"; }
-
-.fa-gnu:before {
- content: "\f34d"; }
-
-.fa-google-play:before {
- content: "\f34e"; }
-
-.fa-heroku:before {
- content: "\f34f"; }
-
-.fa-hassio:before,
-.fa-home-assistant:before {
- content: "\f350"; }
-
-.fa-java:before {
- content: "\f351"; }
-
-.fa-mariadb:before {
- content: "\f352"; }
-
-.fa-markdown:before {
- content: "\f353"; }
-
-.fa-mysql:before {
- content: "\f354"; }
-
-.fa-nordcast:before {
- content: "\f355"; }
-
-.fa-plume:before {
- content: "\f356"; }
-
-.fa-postgresql:before {
- content: "\f357"; }
-
-.fa-sass-alt:before {
- content: "\f359"; }
-
-.fa-sass:before {
- content: "\f358"; }
-
-.fa-skate:before {
- content: "\f35a"; }
-
-.fa-sketchfab:before {
- content: "\f35b"; }
-
-.fa-tex:before {
- content: "\f35c"; }
-
-.fa-textpattern:before {
- content: "\f35d"; }
-
-.fa-unity:before {
- content: "\f35e"; }
-
-.sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- padding: 0;
- margin: -1px;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- border: 0; }
-
-.sr-only-focusable:active, .sr-only-focusable:focus {
- position: static;
- width: auto;
- height: auto;
- margin: 0;
- overflow: visible;
- clip: auto; }
-
-*,
-*:after,
-*:before {
- box-sizing: inherit; }
-
-html {
- box-sizing: border-box;
- font-size: 62.5%; }
-
-body {
- color: #212121;
- background-color: #fafafa;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, "游ゴシック", "PingFang SC", STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
- font-size: 1.8em;
- font-weight: 400;
- line-height: 1.8em; }
- @media only screen and (max-width: 768px) {
- body {
- font-size: 1.6em;
- line-height: 1.6em; } }
-iframe[src*=disqus] {
- color-scheme: light; }
-
-a {
- font-weight: 500;
- color: #1565c0;
- text-decoration: none;
- transition: all 0.25s ease-in; }
- a:focus, a:hover {
- text-decoration: underline; }
-
-p {
- margin: 2rem 0 2rem 0; }
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, "游ゴシック", "PingFang SC", STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
- font-weight: 600;
- color: #000;
- margin: 4rem 0 2.5rem 0; }
- h1:hover .heading-link,
- h2:hover .heading-link,
- h3:hover .heading-link,
- h4:hover .heading-link,
- h5:hover .heading-link,
- h6:hover .heading-link {
- visibility: visible; }
- h1 .heading-link,
- h2 .heading-link,
- h3 .heading-link,
- h4 .heading-link,
- h5 .heading-link,
- h6 .heading-link {
- color: #1565c0;
- font-weight: inherit;
- text-decoration: none;
- font-size: 80%;
- visibility: hidden; }
- h1 .title-link,
- h2 .title-link,
- h3 .title-link,
- h4 .title-link,
- h5 .title-link,
- h6 .title-link {
- color: inherit;
- font-weight: inherit;
- text-decoration: none; }
-
-h1 {
- font-size: 3.2rem;
- line-height: 3.6rem; }
- @media only screen and (max-width: 768px) {
- h1 {
- font-size: 3rem;
- line-height: 3.4rem; } }
-h2 {
- font-size: 2.8rem;
- line-height: 3.2rem; }
- @media only screen and (max-width: 768px) {
- h2 {
- font-size: 2.6rem;
- line-height: 3rem; } }
-h3 {
- font-size: 2.4rem;
- line-height: 2.8rem; }
- @media only screen and (max-width: 768px) {
- h3 {
- font-size: 2.2rem;
- line-height: 2.6rem; } }
-h4 {
- font-size: 2.2rem;
- line-height: 2.6rem; }
- @media only screen and (max-width: 768px) {
- h4 {
- font-size: 2rem;
- line-height: 2.4rem; } }
-h5 {
- font-size: 2rem;
- line-height: 2.4rem; }
- @media only screen and (max-width: 768px) {
- h5 {
- font-size: 1.8rem;
- line-height: 2.2rem; } }
-h6 {
- font-size: 1.8rem;
- line-height: 2.2rem; }
- @media only screen and (max-width: 768px) {
- h6 {
- font-size: 1.6rem;
- line-height: 2rem; } }
-b,
-strong {
- font-weight: 700; }
-
-.highlight div,
-.highlight pre {
- margin: 2rem 0 2rem;
- padding: 1rem;
- border-radius: 1rem; }
-
-pre {
- display: block;
- font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
- font-size: 1.6rem;
- font-weight: 400;
- line-height: 2.6rem;
- overflow-x: auto;
- margin: 2rem 0 2rem;
- padding: 1rem;
- border-radius: 1rem; }
- pre code {
- display: inline-block; }
-
-code {
- font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
- font-size: 1.6rem;
- font-weight: 400;
- border-radius: 0.6rem;
- padding: 0.3rem 0.6rem; }
-
-blockquote {
- border-left: 2px solid #e0e0e0;
- padding-left: 2rem;
- line-height: 2.2rem;
- font-weight: 400;
- font-style: italic; }
-
-th,
-td {
- padding: 1.6rem; }
-
-table {
- border-collapse: collapse; }
-
-table td,
-table th {
- border: 2px solid #000; }
-
-table tr:first-child th {
- border-top: 0; }
-
-table tr:last-child td {
- border-bottom: 0; }
-
-table tr td:first-child,
-table tr th:first-child {
- border-left: 0; }
-
-table tr td:last-child,
-table tr th:last-child {
- border-right: 0; }
-
-img {
- max-width: 100%; }
-
-figure {
- text-align: center; }
-
-.footnotes ol li p {
- margin: 0; }
-
-.preload-transitions * {
- -webkit-transition: none !important;
- -moz-transition: none !important;
- -ms-transition: none !important;
- -o-transition: none !important;
- transition: none !important; }
-
-.wrapper {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- width: 100%; }
-
-.container {
- margin: 1rem auto;
- max-width: 90rem;
- width: 100%;
- padding-left: 2rem;
- padding-right: 2rem; }
-
-.fab {
- font-weight: 400; }
-
-.fas {
- font-weight: 700; }
-
-.float-right {
- float: right; }
-
-.float-left {
- float: left; }
-
-.fab {
- font-weight: 400; }
-
-.fas {
- font-weight: 900; }
-
-.content {
- flex: 1;
- display: flex;
- margin-top: 1.6rem;
- margin-bottom: 3.2rem; }
- .content header {
- margin-top: 6.4rem;
- margin-bottom: 3.2rem; }
- .content header h1 {
- font-size: 4.2rem;
- line-height: 4.6rem;
- margin: 0; }
- @media only screen and (max-width: 768px) {
- .content header h1 {
- font-size: 4rem;
- line-height: 4.4rem; } }
- .content article a:where(.external-link)::after {
- content: "⬈"; }
- .content article details summary {
- cursor: pointer; }
- .content article footer {
- margin-top: 4rem; }
- .content article footer .see-also {
- margin: 3.2rem 0; }
- .content article footer .see-also h3 {
- margin: 3.2rem 0; }
- .content article p {
- text-align: justify;
- text-justify: auto;
- hyphens: auto; }
- .content .post .post-title {
- margin-bottom: 0.75em; }
- .content .post .post-meta i {
- text-align: center;
- width: 1.6rem;
- margin-left: 0;
- margin-right: 0.5rem; }
- .content .post .post-meta .date .posted-on {
- margin-left: 0;
- margin-right: 1.5rem; }
- .content .post .post-meta .tags .tag {
- display: inline-block;
- padding: 0.3rem 0.6rem;
- background-color: #e0e0e0;
- border-radius: 0.6rem;
- line-height: 1.4em; }
- .content .post .post-meta .tags .tag a {
- color: #212121; }
- .content .post .post-meta .tags .tag a:active {
- color: #212121; }
- .content figure {
- margin: 0;
- padding: 0; }
- .content figcaption p {
- text-align: center;
- font-style: italic;
- font-size: 1.6rem;
- margin: 0; }
-
-.avatar img {
- width: 20rem;
- height: auto;
- border-radius: 50%; }
- @media only screen and (max-width: 768px) {
- .avatar img {
- width: 10rem; } }
-.list ul {
- margin: 3.2rem 0 3.2rem 0;
- list-style: none;
- padding: 0; }
- .list ul li {
- font-size: 1.8rem; }
- @media only screen and (max-width: 768px) {
- .list ul li {
- margin: 1.6rem 0 1.6rem 0; } }
- .list ul li .date {
- display: inline-block;
- flex: 1;
- width: 20rem;
- text-align: right;
- margin-right: 3rem; }
- @media only screen and (max-width: 768px) {
- .list ul li .date {
- display: block;
- text-align: left; } }
- .list ul li .title {
- font-size: 1.8rem;
- flex: 2;
- color: #212121;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, "游ゴシック", "PingFang SC", STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
- font-weight: 700; }
- .list ul li .title:hover, .list ul li .title:focus {
- color: #1565c0; }
-
-@media only screen and (min-width: 768.1px) {
- .list ul:not(.pagination) li {
- display: flex; } }
-
-.centered {
- display: flex;
- align-items: center;
- justify-content: center; }
- .centered .about {
- text-align: center; }
- .centered .about h1 {
- margin-top: 2rem;
- margin-bottom: 0.5rem; }
- .centered .about h2 {
- margin-top: 1rem;
- margin-bottom: 0.5rem;
- font-size: 2.4rem; }
- @media only screen and (max-width: 768px) {
- .centered .about h2 {
- font-size: 2rem; } }
- .centered .about ul {
- list-style: none;
- margin: 3rem 0 1rem 0;
- padding: 0; }
- .centered .about ul li {
- display: inline-block;
- position: relative; }
- .centered .about ul li a {
- color: #212121;
- text-transform: uppercase;
- margin-left: 1rem;
- margin-right: 1rem;
- font-size: 1.6rem; }
- .centered .about ul li a:hover, .centered .about ul li a:focus {
- color: #1565c0; }
- @media only screen and (max-width: 768px) {
- .centered .about ul li a {
- font-size: 1.4rem; } }
- .centered .error {
- text-align: center; }
- .centered .error h1 {
- margin-top: 2rem;
- margin-bottom: 0.5rem;
- font-size: 4.6rem; }
- @media only screen and (max-width: 768px) {
- .centered .error h1 {
- font-size: 3.2rem; } }
- .centered .error h2 {
- margin-top: 2rem;
- margin-bottom: 3.2rem;
- font-size: 3.2rem; }
- @media only screen and (max-width: 768px) {
- .centered .error h2 {
- font-size: 2.8rem; } }
-.notice {
- border-radius: 0.2rem;
- position: relative;
- margin: 2rem 0;
- padding: 0 0.75rem;
- overflow: auto; }
- .notice .notice-title {
- position: relative;
- font-weight: 700;
- margin: 0 -0.75rem;
- padding: 0.2rem 3.5rem;
- border-bottom: 1px solid #fafafa; }
- .notice .notice-title i {
- position: absolute;
- top: 50%;
- left: 1.8rem;
- transform: translate(-50%, -50%); }
- .notice .notice-content {
- display: block;
- margin: 2rem 2rem; }
-
-.notice.note {
- background-color: #7e57c21a; }
- .notice.note .notice-title {
- background-color: #673ab71a; }
- .notice.note .notice-title i {
- color: #5e35b1; }
-
-.notice.tip {
- background-color: #26a69a1a; }
- .notice.tip .notice-title {
- background-color: #0096881a; }
- .notice.tip .notice-title i {
- color: #00897b; }
-
-.notice.example {
- background-color: #8d6e631a; }
- .notice.example .notice-title {
- background-color: #7955481a; }
- .notice.example .notice-title i {
- color: #6d4c41; }
-
-.notice.question {
- background-color: #9ccc651a; }
- .notice.question .notice-title {
- background-color: #8bc34a1a; }
- .notice.question .notice-title i {
- color: #7cb342; }
-
-.notice.info {
- background-color: #42a5f51a; }
- .notice.info .notice-title {
- background-color: #2196f31a; }
- .notice.info .notice-title i {
- color: #1e88e5; }
-
-.notice.warning {
- background-color: #ffca281a; }
- .notice.warning .notice-title {
- background-color: #ffc1071a; }
- .notice.warning .notice-title i {
- color: #ffb300; }
-
-.notice.error {
- background-color: #ef53501a; }
- .notice.error .notice-title {
- background-color: #f443361a; }
- .notice.error .notice-title i {
- color: #e53935; }
-
-.navigation {
- height: 6rem;
- width: 100%; }
- .navigation a,
- .navigation span {
- display: inline;
- font-size: 1.7rem;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, "游ゴシック", "PingFang SC", STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
- font-weight: 600;
- color: #212121; }
- .navigation a:hover, .navigation a:focus {
- color: #1565c0; }
- .navigation .navigation-title {
- letter-spacing: 0.1rem;
- text-transform: uppercase; }
- .navigation .navigation-list {
- float: right;
- list-style: none;
- margin-bottom: 0;
- margin-top: 0; }
- @media only screen and (max-width: 768px) {
- .navigation .navigation-list {
- position: relative;
- top: 2rem;
- right: 0;
- z-index: 5;
- visibility: hidden;
- opacity: 0;
- padding: 0;
- max-height: 0;
- width: 100%;
- background-color: #fafafa;
- border-top: solid 2px #e0e0e0;
- border-bottom: solid 2px #e0e0e0;
- transition: opacity 0.25s, max-height 0.15s linear; } }
- .navigation .navigation-list .navigation-item {
- float: left;
- margin: 0;
- position: relative; }
- @media only screen and (max-width: 768px) {
- .navigation .navigation-list .navigation-item {
- float: none !important;
- text-align: center; }
- .navigation .navigation-list .navigation-item a,
- .navigation .navigation-list .navigation-item span {
- line-height: 5rem; } }
- .navigation .navigation-list .navigation-item a,
- .navigation .navigation-list .navigation-item span {
- margin-left: 1rem;
- margin-right: 1rem; }
- @media only screen and (max-width: 768px) {
- .navigation .navigation-list .separator {
- display: none; } }
- @media only screen and (max-width: 768px) {
- .navigation .navigation-list .menu-separator {
- border-top: 2px solid #212121;
- margin: 0 8rem; }
- .navigation .navigation-list .menu-separator span {
- display: none; } }
- .navigation #dark-mode-toggle {
- margin: 1.7rem 0;
- font-size: 2.4rem;
- line-height: inherit;
- bottom: 2rem;
- left: 2rem;
- z-index: 100;
- position: fixed; }
- .navigation #menu-toggle {
- display: none; }
- @media only screen and (max-width: 768px) {
- .navigation #menu-toggle:checked + label > i {
- color: #e0e0e0; }
- .navigation #menu-toggle:checked + label + ul {
- visibility: visible;
- opacity: 1;
- max-height: 100rem; } }
- .navigation .menu-button {
- display: none; }
- @media only screen and (max-width: 768px) {
- .navigation .menu-button {
- position: relative;
- display: block;
- font-size: 2.4rem;
- font-weight: 400; } }
- .navigation .menu-button i:hover, .navigation .menu-button i:focus {
- color: #000; }
- .navigation i {
- color: #212121;
- cursor: pointer; }
- .navigation i:hover, .navigation i:focus {
- color: #1565c0; }
-
-.pagination {
- margin-top: 6rem;
- text-align: center;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, "游ゴシック", "PingFang SC", STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif; }
- .pagination li {
- display: inline;
- text-align: center;
- font-weight: 700; }
- .pagination li span {
- margin: 0;
- text-align: center;
- width: 3.2rem; }
- .pagination li a {
- font-weight: 300; }
- .pagination li a span {
- margin: 0;
- text-align: center;
- width: 3.2rem; }
-
-.tabs {
- display: flex;
- flex-wrap: wrap;
- margin: 2rem 0 2rem 0;
- position: relative; }
- .tabs.tabs-left {
- justify-content: flex-start; }
- .tabs.tabs-left label.tab-label {
- margin-right: 0.5rem; }
- .tabs.tabs-left .tab-content {
- border-radius: 0px 4px 4px 4px; }
- .tabs.tabs-right {
- justify-content: flex-end; }
- .tabs.tabs-right label.tab-label {
- margin-left: 0.5rem; }
- .tabs.tabs-right .tab-content {
- border-radius: 4px 0px 4px 4px; }
- .tabs input.tab-input {
- display: none; }
- .tabs label.tab-label {
- background-color: #e0e0e0;
- border-color: #ccc;
- border-radius: 4px 4px 0px 0px;
- border-style: solid;
- border-bottom-style: hidden;
- border-width: 1px;
- cursor: pointer;
- display: inline-block;
- order: 1;
- padding: 0.3rem 0.6rem;
- position: relative;
- top: 1px;
- user-select: none; }
- .tabs input.tab-input:checked + label.tab-label {
- background-color: #fafafa; }
- .tabs .tab-content {
- background-color: #fafafa;
- border-color: #ccc;
- border-style: solid;
- border-width: 1px;
- display: none;
- order: 2;
- padding: 1rem;
- width: 100%; }
- .tabs.tabs-code .tab-content {
- padding: 0.5rem; }
- .tabs.tabs-code .tab-content pre {
- margin: 0; }
-
-.taxonomy li {
- display: inline-block;
- margin: 0.9rem; }
-
-.taxonomy .taxonomy-element {
- display: block;
- padding: 0.3rem 0.9rem;
- background-color: #e0e0e0;
- border-radius: 0.6rem; }
- .taxonomy .taxonomy-element a {
- color: #212121; }
- .taxonomy .taxonomy-element a:active {
- color: #212121; }
-
-.footer {
- width: 100%;
- text-align: center;
- font-size: 1.6rem;
- line-height: 2rem;
- margin-bottom: 1rem; }
- .footer a {
- color: #1565c0; }
-
-.float-container {
- bottom: 2rem;
- right: 2rem;
- z-index: 100;
- position: fixed;
- font-size: 1.6em; }
- .float-container a {
- position: relative;
- display: inline-block;
- width: 3rem;
- height: 3rem;
- font-size: 2rem;
- color: #000;
- background-color: #e0e0e0;
- border-radius: 0.2rem;
- opacity: 0.5;
- transition: all 0.25s ease-in; }
- .float-container a:hover, .float-container a:focus {
- color: #1565c0;
- opacity: 1; }
- @media only screen and (max-width: 768px) {
- .float-container a:hover, .float-container a:focus {
- color: #000;
- opacity: 0.5; } }
- .float-container a i {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%); }
-
-/*# sourceMappingURL=coder.css.map */
\ No newline at end of file
diff --git a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder.scss_fd4b5b3f9a48bc0c7f005d2f7a4cc30f.json b/themes/hugo-coder/resources/_gen/assets/scss/scss/coder.scss_fd4b5b3f9a48bc0c7f005d2f7a4cc30f.json
deleted file mode 100644
index cfa430e..0000000
--- a/themes/hugo-coder/resources/_gen/assets/scss/scss/coder.scss_fd4b5b3f9a48bc0c7f005d2f7a4cc30f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/coder.css","MediaType":"text/css","Data":{}}
\ No newline at end of file
diff --git a/themes/hugo-coder/static/fonts/LICENSE.txt b/themes/hugo-coder/static/fonts/LICENSE.txt
deleted file mode 100644
index e69c5e3..0000000
--- a/themes/hugo-coder/static/fonts/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) 2024 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 2024 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/themes/hugo-coder/static/fonts/fa-brands-400.ttf b/themes/hugo-coder/static/fonts/fa-brands-400.ttf
deleted file mode 100644
index 0f82a83..0000000
Binary files a/themes/hugo-coder/static/fonts/fa-brands-400.ttf and /dev/null differ
diff --git a/themes/hugo-coder/static/fonts/fa-brands-400.woff2 b/themes/hugo-coder/static/fonts/fa-brands-400.woff2
deleted file mode 100644
index 3c5cf97..0000000
Binary files a/themes/hugo-coder/static/fonts/fa-brands-400.woff2 and /dev/null differ
diff --git a/themes/hugo-coder/static/fonts/fa-regular-400.ttf b/themes/hugo-coder/static/fonts/fa-regular-400.ttf
deleted file mode 100644
index 9ee1919..0000000
Binary files a/themes/hugo-coder/static/fonts/fa-regular-400.ttf and /dev/null differ
diff --git a/themes/hugo-coder/static/fonts/fa-regular-400.woff2 b/themes/hugo-coder/static/fonts/fa-regular-400.woff2
deleted file mode 100644
index 57d9179..0000000
Binary files a/themes/hugo-coder/static/fonts/fa-regular-400.woff2 and /dev/null differ
diff --git a/themes/hugo-coder/static/fonts/fa-solid-900.ttf b/themes/hugo-coder/static/fonts/fa-solid-900.ttf
deleted file mode 100644
index 1c10972..0000000
Binary files a/themes/hugo-coder/static/fonts/fa-solid-900.ttf and /dev/null differ
diff --git a/themes/hugo-coder/static/fonts/fa-solid-900.woff2 b/themes/hugo-coder/static/fonts/fa-solid-900.woff2
deleted file mode 100644
index 1672102..0000000
Binary files a/themes/hugo-coder/static/fonts/fa-solid-900.woff2 and /dev/null differ
diff --git a/themes/hugo-coder/theme.toml b/themes/hugo-coder/theme.toml
deleted file mode 100644
index 524c705..0000000
--- a/themes/hugo-coder/theme.toml
+++ /dev/null
@@ -1,31 +0,0 @@
-name = "Coder"
-license = "MIT"
-licenselink = "https://github.com/luizdepra/hugo-coder/blob/master/LICENSE.md"
-description = "A simple and clean blog theme for Hugo"
-homepage = "https://github.com/luizdepra/hugo-coder/"
-demosite = "https://hugo-coder.netlify.app/"
-tags = [
- "blog",
- "minimal",
- "minimalist",
- "responsive",
- "simple",
- "clean",
- "personal",
- "light",
- "dark",
- "dark mode"
-]
-features = [
- "analytics",
- "favicon",
- "multilingual",
- "pagination",
- "single-column",
- "syntax-highlighting"
-]
-min_version = "0.124.0"
-
-[author]
-name = "Luiz F. A. de Prá"
-homepage = "https://luizdepra.com"
Comments:
-