From b73c2d112dfb6101eb5e6fae25d044d8d30fe2d7 Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Wed, 30 Jun 2021 13:46:20 -0300
Subject: [PATCH 01/45] Add or update the App Service deployment workflow
configuration from Azure Portal.
---
.../workflows/master_DeepDatasPortalWeb.yml | 62 +++++++++++++++++++
1 file changed, 62 insertions(+)
create mode 100644 .github/workflows/master_DeepDatasPortalWeb.yml
diff --git a/.github/workflows/master_DeepDatasPortalWeb.yml b/.github/workflows/master_DeepDatasPortalWeb.yml
new file mode 100644
index 000000000..0614dd6a4
--- /dev/null
+++ b/.github/workflows/master_DeepDatasPortalWeb.yml
@@ -0,0 +1,62 @@
+# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
+# More GitHub Actions for Azure: https://github.com/Azure/actions
+# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions
+
+name: Build and deploy Python app to Azure Web App - DeepDatasPortalWeb
+
+on:
+ push:
+ branches:
+ - master
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up Python version
+ uses: actions/setup-python@v1
+ with:
+ python-version: '3.8'
+
+ - name: Create and start virtual environment
+ run: |
+ python -m venv venv
+ source venv/bin/activate
+
+ - name: Install dependencies
+ run: pip install -r requirements.txt
+
+ # Optional: Add step to run tests here (PyTest, Django test suites, etc.)
+
+ - name: Upload artifact for deployment jobs
+ uses: actions/upload-artifact@v2
+ with:
+ name: python-app
+ path: |
+ .
+ !venv/
+
+ deploy:
+ runs-on: ubuntu-latest
+ needs: build
+ environment:
+ name: 'production'
+ url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
+
+ steps:
+ - name: Download artifact from build job
+ uses: actions/download-artifact@v2
+ with:
+ name: python-app
+ path: .
+
+ - name: 'Deploy to Azure Web App'
+ uses: azure/webapps-deploy@v2
+ with:
+ app-name: 'DeepDatasPortalWeb'
+ slot-name: 'production'
+ publish-profile: ${{ secrets.AzureAppService_PublishProfile_36c22231a5c34d78941fa3b1bbcf8963 }}
\ No newline at end of file
From 1cddfb7cc3f4e87b05658b2d16410d32976386f6 Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Wed, 30 Jun 2021 15:43:33 -0300
Subject: [PATCH 02/45] Update app.py
---
app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app.py b/app.py
index 7f8a1f2e8..4948b0a6e 100644
--- a/app.py
+++ b/app.py
@@ -3,4 +3,4 @@
@app.route("/")
def hello():
- return "Hello, World!"
+ return "Hello, World 123!"
From a81e39b08b4c73a3bba941d57b6c3a15d0102aaf Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Wed, 30 Jun 2021 21:13:41 -0300
Subject: [PATCH 03/45] Add or update the App Service deployment workflow
configuration from Azure Portal.
---
.github/workflows/master_DeepDatasPortalWeb.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/master_DeepDatasPortalWeb.yml b/.github/workflows/master_DeepDatasPortalWeb.yml
index 0614dd6a4..595bf995d 100644
--- a/.github/workflows/master_DeepDatasPortalWeb.yml
+++ b/.github/workflows/master_DeepDatasPortalWeb.yml
@@ -59,4 +59,4 @@ jobs:
with:
app-name: 'DeepDatasPortalWeb'
slot-name: 'production'
- publish-profile: ${{ secrets.AzureAppService_PublishProfile_36c22231a5c34d78941fa3b1bbcf8963 }}
\ No newline at end of file
+ publish-profile: ${{ secrets.AzureAppService_PublishProfile_c26aee3a3409483281729414738f6778 }}
\ No newline at end of file
From ec5a66715a014c5fa70a26918b21ead972976817 Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 16:25:48 -0300
Subject: [PATCH 04/45] Update app.py
---
app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app.py b/app.py
index 4948b0a6e..e6278c499 100644
--- a/app.py
+++ b/app.py
@@ -3,4 +3,4 @@
@app.route("/")
def hello():
- return "Hello, World 123!"
+ return "Hello, World 1234!"
From 05fda894f2c304658064144ed1d56bf8076b7b38 Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 16:45:25 -0300
Subject: [PATCH 05/45] Update app.py
---
app.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/app.py b/app.py
index e6278c499..6d2a9d573 100644
--- a/app.py
+++ b/app.py
@@ -4,3 +4,8 @@
@app.route("/")
def hello():
return "Hello, World 1234!"
+
+
+@app.route("/hola")
+def hola():
+ return "Hello, Deepdatas 1234!"
From fa1a6c8a3051ab626c9fa875998083a1fb13492c Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 16:50:25 -0300
Subject: [PATCH 06/45] Update app.py
---
app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app.py b/app.py
index 6d2a9d573..ce0a8c99f 100644
--- a/app.py
+++ b/app.py
@@ -8,4 +8,4 @@ def hello():
@app.route("/hola")
def hola():
- return "Hello, Deepdatas 1234!"
+ return "
Hello, Deepdatas 1234! "
From de84eeef0c5c029c87e10163b82c4f0901df50c1 Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 16:55:38 -0300
Subject: [PATCH 07/45] Add files via upload
---
login.html | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 87 insertions(+)
create mode 100644 login.html
diff --git a/login.html b/login.html
new file mode 100644
index 000000000..ce6efa563
--- /dev/null
+++ b/login.html
@@ -0,0 +1,87 @@
+
+
+
+ Portal - Deepdatas
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Log in to Portal
+
+
+
+
No Account? Sign up
here .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Portal Deepdatas:
+
Portal de procesamiento de datos.
+
+
+
+
+
+
+
+
+
+
+
From 4cb97985ac1ac3a11e2b753e85b9459aecfcef4a Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 16:59:28 -0300
Subject: [PATCH 08/45] Update app.py
---
app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app.py b/app.py
index ce0a8c99f..ed831c5d8 100644
--- a/app.py
+++ b/app.py
@@ -5,7 +5,7 @@
def hello():
return "Hello, World 1234!"
-
@app.route("/hola")
def hola():
return "Hello, Deepdatas 1234! "
+
From 4d123f3fe74eb329f914e98c8071c4dfccf4a343 Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 17:04:00 -0300
Subject: [PATCH 09/45] Update app.py
---
app.py | 5 -----
1 file changed, 5 deletions(-)
diff --git a/app.py b/app.py
index ed831c5d8..e6278c499 100644
--- a/app.py
+++ b/app.py
@@ -4,8 +4,3 @@
@app.route("/")
def hello():
return "Hello, World 1234!"
-
-@app.route("/hola")
-def hola():
- return "Hello, Deepdatas 1234! "
-
From bd0ea19f078b338445b2a2da4c570fa0d39b9b1c Mon Sep 17 00:00:00 2001
From: Fernando <64105564+fxbloi@users.noreply.github.com>
Date: Thu, 1 Jul 2021 17:05:20 -0300
Subject: [PATCH 10/45] Add files via upload
---
Drag_and_drop_upload/index.html | 42 +++++++++++++++++++++++++++++++++
Drag_and_drop_upload/js.js | 31 ++++++++++++++++++++++++
2 files changed, 73 insertions(+)
create mode 100644 Drag_and_drop_upload/index.html
create mode 100644 Drag_and_drop_upload/js.js
diff --git a/Drag_and_drop_upload/index.html b/Drag_and_drop_upload/index.html
new file mode 100644
index 000000000..e7a1a72d5
--- /dev/null
+++ b/Drag_and_drop_upload/index.html
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ Subida de Archivos
+
+
+
+
+
+
+
+
+
Suba el archivo correspondiente
+
Recuerde que el archivo debe ser formato ".xlsx" .
+ Tambien la informacion correspondiente debe estar en la primer hoja, sin informacion como encabezado solo nombres de columnas.
+
+
+
+
+
+
+
+
+
+
+
Subir
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Drag_and_drop_upload/js.js b/Drag_and_drop_upload/js.js
new file mode 100644
index 000000000..f90e5642e
--- /dev/null
+++ b/Drag_and_drop_upload/js.js
@@ -0,0 +1,31 @@
+$("#input-ficons-5").fileinput({
+ uploadUrl: "C:\Users\Marti\Documents\Drag_and_drop_upload",
+ uploadAsync: false,
+ previewFileIcon: ' ',
+ preferIconicPreview: true, // esto hace que los archivos que se suban salgan con iconos sig
+ previewFileIconSettings: {
+ mov: ' ',
+ mp3: ' ',
+ img: ' ',
+ model: ' ',
+ xlsx: ' '
+ },
+ previewFileExtSettings: {
+ // configure the logic for determining icon file extensions
+ mov: function(ext) {
+ return ext.match(/(avi|mpg|mkv|mov|mp4|3gp|webm|wmv)$/i);
+ },
+ mp3: function(ext) {
+ return ext.match(/(mp3|wav)$/i);
+ },
+ img: function(ext) {
+ return ext.match(/(jpg|gif|png|svg)$/i)
+ },
+ model: function(ext) {
+ return ext.match(/(obj|fbx)$/i)
+ },
+ xlsx: function(ext) {
+ return ext.match(/(xlsx|xls|txt)$/i)
+ }
+ }
+});
\ No newline at end of file
From b4087dd8907c31c1282165c695969a6c56fb904c Mon Sep 17 00:00:00 2001
From: Ivan Torres
Date: Mon, 5 Jul 2021 14:55:34 -0300
Subject: [PATCH 11/45] Se agrega una ruta para el login y se renderiza el
login.html en la carpeta template
---
app.py | 5 +++
templates/login.html | 87 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 92 insertions(+)
create mode 100644 templates/login.html
diff --git a/app.py b/app.py
index e6278c499..ac47c1eea 100644
--- a/app.py
+++ b/app.py
@@ -4,3 +4,8 @@
@app.route("/")
def hello():
return "Hello, World 1234!"
+
+
+@app.route("/login")
+def hello():
+ render_template('login.html')
\ No newline at end of file
diff --git a/templates/login.html b/templates/login.html
new file mode 100644
index 000000000..ce6efa563
--- /dev/null
+++ b/templates/login.html
@@ -0,0 +1,87 @@
+
+
+
+ Portal - Deepdatas
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Log in to Portal
+
+
+
+
No Account? Sign up
here .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Portal Deepdatas:
+
Portal de procesamiento de datos.
+
+
+
+
+
+
+
+
+
+
+
From 2a83bdb3095a6e4122877783546ea6baedc18d7d Mon Sep 17 00:00:00 2001
From: Ivan Torres
Date: Mon, 5 Jul 2021 15:06:03 -0300
Subject: [PATCH 12/45] Se agrega bootstrap al archivo de requerimientos
---
requirements.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/requirements.txt b/requirements.txt
index 32e2d2715..b1e9d13e8 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1,2 @@
Flask>=1.0,<=1.1.2
+flask-bootstrap
\ No newline at end of file
From 8ef5057ef5d0002d60f08fa384bedb130b97a2ab Mon Sep 17 00:00:00 2001
From: Ivan Torres
Date: Mon, 5 Jul 2021 15:13:10 -0300
Subject: [PATCH 13/45] La funcion para login habia quedado con el nombre de
'hello', se cambia por 'login'
---
app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app.py b/app.py
index ac47c1eea..a52f9115f 100644
--- a/app.py
+++ b/app.py
@@ -7,5 +7,5 @@ def hello():
@app.route("/login")
-def hello():
+def login():
render_template('login.html')
\ No newline at end of file
From 32f5e1c3eb27d0dc9b8336621d128b7c06033dd0 Mon Sep 17 00:00:00 2001
From: Ivan Torres
Date: Mon, 5 Jul 2021 15:16:29 -0300
Subject: [PATCH 14/45] Se corrige funcion de login y se agrega render de index
---
app.py | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/app.py b/app.py
index a52f9115f..89c98e24d 100644
--- a/app.py
+++ b/app.py
@@ -1,11 +1,14 @@
-from flask import Flask
+from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello, World 1234!"
-
@app.route("/login")
def login():
- render_template('login.html')
\ No newline at end of file
+ return render_template('login.html')
+
+@app.route("/index")
+def index():
+ return render_template('index.html')
\ No newline at end of file
From 7b52488e80fa69dc962fd62fa5770e6da9a65559 Mon Sep 17 00:00:00 2001
From: Ivan Torres
Date: Mon, 5 Jul 2021 15:17:02 -0300
Subject: [PATCH 15/45] Se agrega html de index
---
templates/index.html | 727 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 727 insertions(+)
create mode 100644 templates/index.html
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 000000000..f54e727db
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,727 @@
+
+
+
+ Portal - Deepdatas
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Overview
+
+
+
+
+
Bienvenido, Vafood!
+
+
+
+
+
+
+
+
+
+
+
+
Total Sales
+
$12,628
+
+
+
+
+
+
+
+
+
+
+
Projects
+
23
+
+ Open
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This week
+ Today
+ This Month
+ This Year
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This week
+ Today
+ This Month
+ This Year
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Project lorem ipsum dolor sit amet
+
+
+
+
+
+
+
+
+
+
+
+
Project duis aliquam et lacus quis ornare
+
+
+
+
+
+
+
+
+
+
+
Project sed tempus felis id lacus pulvinar
+
+
+
+
+
+
+
+
+
+
+
Project sed tempus felis id lacus pulvinar
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam aliquet eros vel diam semper mollis.
+
+
+
+
+
+
+
+
+
+
Pellentesque varius, elit vel volutpat sollicitudin, lacus quam efficitur augue
+
+
+
+
+
+
+
+
+
+
Sed maximus, libero ac pharetra elementum, turpis nisi molestie neque, et tincidunt velit turpis non enim.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 29bd0a57b8fa73d55eef51f89a2999017b0197c9 Mon Sep 17 00:00:00 2001
From: Ivan Torres
Date: Mon, 5 Jul 2021 16:06:34 -0300
Subject: [PATCH 16/45] Se agregan estilos
---
Drag_and_drop_upload/index.html | 42 -
Drag_and_drop_upload/js.js | 31 -
app.py | 3 +
templates/assets/.DS_Store | Bin 0 -> 10244 bytes
templates/assets/css/.DS_Store | Bin 0 -> 6148 bytes
templates/assets/css/portal.css | 12336 ++++
templates/assets/images/.DS_Store | Bin 0 -> 6148 bytes
templates/assets/images/app-logo.svg | 76 +
templates/assets/images/app-logo1.svg | 21 +
.../assets/images/background/background-1.jpg | Bin 0 -> 155516 bytes
.../images/background/background-1b.jpg | Bin 0 -> 153510 bytes
.../assets/images/background/background-2.jpg | Bin 0 -> 237122 bytes
.../assets/images/background/background-3.jpg | Bin 0 -> 262107 bytes
templates/assets/images/doc-thumb-1.jpg | Bin 0 -> 77087 bytes
templates/assets/images/doc-thumb-2.jpg | Bin 0 -> 77157 bytes
templates/assets/images/portal-logo.svg | 21 +
.../assets/images/profiles/profile-1.png | Bin 0 -> 34635 bytes
.../assets/images/profiles/profile-2.png | Bin 0 -> 35390 bytes
.../assets/images/profiles/profile-3.png | Bin 0 -> 38022 bytes
.../assets/images/profiles/profile-4.png | Bin 0 -> 22161 bytes
.../assets/images/profiles/profile-5.png | Bin 0 -> 36680 bytes
.../assets/images/profiles/profile-6.png | Bin 0 -> 29805 bytes
templates/assets/images/user.png | Bin 0 -> 38823 bytes
templates/assets/images/users/.DS_Store | Bin 0 -> 6148 bytes
templates/assets/images/users/user-1.jpg | Bin 0 -> 49523 bytes
templates/assets/images/users/user-2.jpg | Bin 0 -> 28252 bytes
templates/assets/images/users/user-3.jpg | Bin 0 -> 40974 bytes
templates/assets/images/users/user-4.jpg | Bin 0 -> 7344 bytes
templates/assets/images/users/user-5.jpg | Bin 0 -> 22985 bytes
templates/assets/images/users/user-6.jpg | Bin 0 -> 9350 bytes
templates/assets/images/users/user-7.jpg | Bin 0 -> 22928 bytes
templates/assets/images/users/user-8.jpg | Bin 0 -> 12816 bytes
templates/assets/images/users/user-9.jpg | Bin 0 -> 32295 bytes
templates/assets/js/.DS_Store | Bin 0 -> 6148 bytes
templates/assets/js/app.js | 96 +
templates/assets/js/charts-demo.js | 366 +
templates/assets/js/index-charts.js | 224 +
templates/assets/plugins/.DS_Store | Bin 0 -> 6148 bytes
templates/assets/plugins/bootstrap/.DS_Store | Bin 0 -> 6148 bytes
.../plugins/bootstrap/css/bootstrap-grid.css | 4997 ++
.../bootstrap/css/bootstrap-grid.css.map | 1 +
.../bootstrap/css/bootstrap-grid.min.css | 7 +
.../bootstrap/css/bootstrap-grid.min.css.map | 1 +
.../bootstrap/css/bootstrap-grid.rtl.css | 4996 ++
.../bootstrap/css/bootstrap-grid.rtl.css.map | 1 +
.../bootstrap/css/bootstrap-grid.rtl.min.css | 7 +
.../css/bootstrap-grid.rtl.min.css.map | 1 +
.../bootstrap/css/bootstrap-reboot.css | 426 +
.../bootstrap/css/bootstrap-reboot.css.map | 1 +
.../bootstrap/css/bootstrap-reboot.min.css | 8 +
.../css/bootstrap-reboot.min.css.map | 1 +
.../bootstrap/css/bootstrap-reboot.rtl.css | 423 +
.../css/bootstrap-reboot.rtl.css.map | 1 +
.../css/bootstrap-reboot.rtl.min.css | 8 +
.../css/bootstrap-reboot.rtl.min.css.map | 1 +
.../bootstrap/css/bootstrap-utilities.css | 4752 ++
.../bootstrap/css/bootstrap-utilities.css.map | 1 +
.../bootstrap/css/bootstrap-utilities.min.css | 7 +
.../css/bootstrap-utilities.min.css.map | 1 +
.../bootstrap/css/bootstrap-utilities.rtl.css | 4743 ++
.../css/bootstrap-utilities.rtl.css.map | 1 +
.../css/bootstrap-utilities.rtl.min.css | 7 +
.../css/bootstrap-utilities.rtl.min.css.map | 1 +
.../plugins/bootstrap/css/bootstrap.css | 10820 +++
.../plugins/bootstrap/css/bootstrap.css.map | 1 +
.../plugins/bootstrap/css/bootstrap.min.css | 7 +
.../bootstrap/css/bootstrap.min.css.map | 1 +
.../plugins/bootstrap/css/bootstrap.rtl.css | 10796 +++
.../bootstrap/css/bootstrap.rtl.css.map | 1 +
.../bootstrap/css/bootstrap.rtl.min.css | 7 +
.../bootstrap/css/bootstrap.rtl.min.css.map | 1 +
.../plugins/bootstrap/js/bootstrap.bundle.js | 6727 ++
.../bootstrap/js/bootstrap.bundle.js.map | 1 +
.../bootstrap/js/bootstrap.bundle.min.js | 7 +
.../bootstrap/js/bootstrap.bundle.min.js.map | 1 +
.../plugins/bootstrap/js/bootstrap.esm.js | 4946 ++
.../plugins/bootstrap/js/bootstrap.esm.js.map | 1 +
.../plugins/bootstrap/js/bootstrap.esm.min.js | 7 +
.../bootstrap/js/bootstrap.esm.min.js.map | 1 +
.../assets/plugins/bootstrap/js/bootstrap.js | 4995 ++
.../plugins/bootstrap/js/bootstrap.js.map | 1 +
.../plugins/bootstrap/js/bootstrap.min.js | 7 +
.../plugins/bootstrap/js/bootstrap.min.js.map | 1 +
.../assets/plugins/chart.js/chart.min.js | 7 +
.../assets/plugins/fontawesome/.DS_Store | Bin 0 -> 8196 bytes
.../assets/plugins/fontawesome/LICENSE.txt | 34 +
.../assets/plugins/fontawesome/attribution.js | 3 +
.../assets/plugins/fontawesome/css/all.css | 4619 ++
.../plugins/fontawesome/css/all.min.css | 5 +
.../assets/plugins/fontawesome/css/brands.css | 15 +
.../plugins/fontawesome/css/brands.min.css | 5 +
.../plugins/fontawesome/css/fontawesome.css | 4585 ++
.../fontawesome/css/fontawesome.min.css | 5 +
.../plugins/fontawesome/css/regular.css | 15 +
.../plugins/fontawesome/css/regular.min.css | 5 +
.../assets/plugins/fontawesome/css/solid.css | 16 +
.../plugins/fontawesome/css/solid.min.css | 5 +
.../plugins/fontawesome/css/svg-with-js.css | 371 +
.../fontawesome/css/svg-with-js.min.css | 5 +
.../plugins/fontawesome/css/v4-shims.css | 2172 +
.../plugins/fontawesome/css/v4-shims.min.css | 5 +
.../assets/plugins/fontawesome/js/all.js | 4467 ++
.../assets/plugins/fontawesome/js/all.min.js | 5 +
.../assets/plugins/fontawesome/js/brands.js | 586 +
.../plugins/fontawesome/js/brands.min.js | 5 +
.../fontawesome/js/conflict-detection.js | 998 +
.../fontawesome/js/conflict-detection.min.js | 5 +
.../plugins/fontawesome/js/fontawesome.js | 2483 +
.../plugins/fontawesome/js/fontawesome.min.js | 5 +
.../assets/plugins/fontawesome/js/regular.js | 280 +
.../plugins/fontawesome/js/regular.min.js | 5 +
.../assets/plugins/fontawesome/js/solid.js | 1130 +
.../plugins/fontawesome/js/solid.min.js | 5 +
.../assets/plugins/fontawesome/js/v4-shims.js | 68 +
.../plugins/fontawesome/js/v4-shims.min.js | 5 +
.../plugins/fontawesome/less/_animated.less | 19 +
.../fontawesome/less/_bordered-pulled.less | 16 +
.../plugins/fontawesome/less/_core.less | 12 +
.../fontawesome/less/_fixed-width.less | 6 +
.../plugins/fontawesome/less/_icons.less | 1462 +
.../plugins/fontawesome/less/_larger.less | 27 +
.../plugins/fontawesome/less/_list.less | 18 +
.../plugins/fontawesome/less/_mixins.less | 56 +
.../fontawesome/less/_rotated-flipped.less | 24 +
.../fontawesome/less/_screen-reader.less | 5 +
.../plugins/fontawesome/less/_shims.less | 2066 +
.../plugins/fontawesome/less/_stacked.less | 22 +
.../plugins/fontawesome/less/_variables.less | 1474 +
.../plugins/fontawesome/less/brands.less | 23 +
.../plugins/fontawesome/less/fontawesome.less | 16 +
.../plugins/fontawesome/less/regular.less | 23 +
.../plugins/fontawesome/less/solid.less | 24 +
.../plugins/fontawesome/less/v4-shims.less | 6 +
.../fontawesome/metadata/categories.yml | 2572 +
.../plugins/fontawesome/metadata/icons.json | 58548 ++++++++++++++++
.../plugins/fontawesome/metadata/icons.yml | 21783 ++++++
.../plugins/fontawesome/metadata/shims.json | 2317 +
.../plugins/fontawesome/metadata/shims.yml | 298 +
.../plugins/fontawesome/metadata/sponsors.yml | 744 +
.../plugins/fontawesome/scss/_animated.scss | 20 +
.../fontawesome/scss/_bordered-pulled.scss | 20 +
.../plugins/fontawesome/scss/_core.scss | 21 +
.../fontawesome/scss/_fixed-width.scss | 6 +
.../plugins/fontawesome/scss/_icons.scss | 1462 +
.../plugins/fontawesome/scss/_larger.scss | 23 +
.../plugins/fontawesome/scss/_list.scss | 18 +
.../plugins/fontawesome/scss/_mixins.scss | 56 +
.../fontawesome/scss/_rotated-flipped.scss | 24 +
.../fontawesome/scss/_screen-reader.scss | 5 +
.../plugins/fontawesome/scss/_shims.scss | 2066 +
.../plugins/fontawesome/scss/_stacked.scss | 31 +
.../plugins/fontawesome/scss/_variables.scss | 1479 +
.../plugins/fontawesome/scss/brands.scss | 23 +
.../plugins/fontawesome/scss/fontawesome.scss | 16 +
.../plugins/fontawesome/scss/regular.scss | 23 +
.../plugins/fontawesome/scss/solid.scss | 24 +
.../plugins/fontawesome/scss/v4-shims.scss | 6 +
.../plugins/fontawesome/sprites/brands.svg | 1381 +
.../plugins/fontawesome/sprites/regular.svg | 463 +
.../plugins/fontawesome/sprites/solid.svg | 3013 +
.../plugins/fontawesome/svgs/brands/500px.svg | 1 +
.../svgs/brands/accessible-icon.svg | 1 +
.../fontawesome/svgs/brands/accusoft.svg | 1 +
.../svgs/brands/acquisitions-incorporated.svg | 1 +
.../plugins/fontawesome/svgs/brands/adn.svg | 1 +
.../fontawesome/svgs/brands/adversal.svg | 1 +
.../svgs/brands/affiliatetheme.svg | 1 +
.../fontawesome/svgs/brands/airbnb.svg | 1 +
.../fontawesome/svgs/brands/algolia.svg | 1 +
.../fontawesome/svgs/brands/alipay.svg | 1 +
.../fontawesome/svgs/brands/amazon-pay.svg | 1 +
.../fontawesome/svgs/brands/amazon.svg | 1 +
.../fontawesome/svgs/brands/amilia.svg | 1 +
.../fontawesome/svgs/brands/android.svg | 1 +
.../fontawesome/svgs/brands/angellist.svg | 1 +
.../fontawesome/svgs/brands/angrycreative.svg | 1 +
.../fontawesome/svgs/brands/angular.svg | 1 +
.../fontawesome/svgs/brands/app-store-ios.svg | 1 +
.../fontawesome/svgs/brands/app-store.svg | 1 +
.../plugins/fontawesome/svgs/brands/apper.svg | 1 +
.../fontawesome/svgs/brands/apple-pay.svg | 1 +
.../plugins/fontawesome/svgs/brands/apple.svg | 1 +
.../fontawesome/svgs/brands/artstation.svg | 1 +
.../fontawesome/svgs/brands/asymmetrik.svg | 1 +
.../fontawesome/svgs/brands/atlassian.svg | 1 +
.../fontawesome/svgs/brands/audible.svg | 1 +
.../fontawesome/svgs/brands/autoprefixer.svg | 1 +
.../fontawesome/svgs/brands/avianex.svg | 1 +
.../fontawesome/svgs/brands/aviato.svg | 1 +
.../plugins/fontawesome/svgs/brands/aws.svg | 1 +
.../fontawesome/svgs/brands/bandcamp.svg | 1 +
.../fontawesome/svgs/brands/battle-net.svg | 1 +
.../svgs/brands/behance-square.svg | 1 +
.../fontawesome/svgs/brands/behance.svg | 1 +
.../fontawesome/svgs/brands/bimobject.svg | 1 +
.../fontawesome/svgs/brands/bitbucket.svg | 1 +
.../fontawesome/svgs/brands/bitcoin.svg | 1 +
.../plugins/fontawesome/svgs/brands/bity.svg | 1 +
.../fontawesome/svgs/brands/black-tie.svg | 1 +
.../fontawesome/svgs/brands/blackberry.svg | 1 +
.../fontawesome/svgs/brands/blogger-b.svg | 1 +
.../fontawesome/svgs/brands/blogger.svg | 1 +
.../fontawesome/svgs/brands/bluetooth-b.svg | 1 +
.../fontawesome/svgs/brands/bluetooth.svg | 1 +
.../fontawesome/svgs/brands/bootstrap.svg | 1 +
.../plugins/fontawesome/svgs/brands/btc.svg | 1 +
.../fontawesome/svgs/brands/buffer.svg | 1 +
.../svgs/brands/buromobelexperte.svg | 1 +
.../fontawesome/svgs/brands/buy-n-large.svg | 1 +
.../fontawesome/svgs/brands/buysellads.svg | 1 +
.../svgs/brands/canadian-maple-leaf.svg | 1 +
.../fontawesome/svgs/brands/cc-amazon-pay.svg | 1 +
.../fontawesome/svgs/brands/cc-amex.svg | 1 +
.../fontawesome/svgs/brands/cc-apple-pay.svg | 1 +
.../svgs/brands/cc-diners-club.svg | 1 +
.../fontawesome/svgs/brands/cc-discover.svg | 1 +
.../fontawesome/svgs/brands/cc-jcb.svg | 1 +
.../fontawesome/svgs/brands/cc-mastercard.svg | 1 +
.../fontawesome/svgs/brands/cc-paypal.svg | 1 +
.../fontawesome/svgs/brands/cc-stripe.svg | 1 +
.../fontawesome/svgs/brands/cc-visa.svg | 1 +
.../fontawesome/svgs/brands/centercode.svg | 1 +
.../fontawesome/svgs/brands/centos.svg | 1 +
.../fontawesome/svgs/brands/chrome.svg | 1 +
.../fontawesome/svgs/brands/chromecast.svg | 1 +
.../fontawesome/svgs/brands/cloudflare.svg | 1 +
.../fontawesome/svgs/brands/cloudscale.svg | 1 +
.../fontawesome/svgs/brands/cloudsmith.svg | 1 +
.../fontawesome/svgs/brands/cloudversify.svg | 1 +
.../fontawesome/svgs/brands/codepen.svg | 1 +
.../fontawesome/svgs/brands/codiepie.svg | 1 +
.../fontawesome/svgs/brands/confluence.svg | 1 +
.../svgs/brands/connectdevelop.svg | 1 +
.../fontawesome/svgs/brands/contao.svg | 1 +
.../fontawesome/svgs/brands/cotton-bureau.svg | 1 +
.../fontawesome/svgs/brands/cpanel.svg | 1 +
.../svgs/brands/creative-commons-by.svg | 1 +
.../svgs/brands/creative-commons-nc-eu.svg | 1 +
.../svgs/brands/creative-commons-nc-jp.svg | 1 +
.../svgs/brands/creative-commons-nc.svg | 1 +
.../svgs/brands/creative-commons-nd.svg | 1 +
.../svgs/brands/creative-commons-pd-alt.svg | 1 +
.../svgs/brands/creative-commons-pd.svg | 1 +
.../svgs/brands/creative-commons-remix.svg | 1 +
.../svgs/brands/creative-commons-sa.svg | 1 +
.../brands/creative-commons-sampling-plus.svg | 1 +
.../svgs/brands/creative-commons-sampling.svg | 1 +
.../svgs/brands/creative-commons-share.svg | 1 +
.../svgs/brands/creative-commons-zero.svg | 1 +
.../svgs/brands/creative-commons.svg | 1 +
.../fontawesome/svgs/brands/critical-role.svg | 1 +
.../fontawesome/svgs/brands/css3-alt.svg | 1 +
.../plugins/fontawesome/svgs/brands/css3.svg | 1 +
.../fontawesome/svgs/brands/cuttlefish.svg | 1 +
.../svgs/brands/d-and-d-beyond.svg | 1 +
.../fontawesome/svgs/brands/d-and-d.svg | 1 +
.../fontawesome/svgs/brands/dailymotion.svg | 1 +
.../fontawesome/svgs/brands/dashcube.svg | 1 +
.../fontawesome/svgs/brands/deezer.svg | 1 +
.../fontawesome/svgs/brands/delicious.svg | 1 +
.../fontawesome/svgs/brands/deploydog.svg | 1 +
.../fontawesome/svgs/brands/deskpro.svg | 1 +
.../plugins/fontawesome/svgs/brands/dev.svg | 1 +
.../fontawesome/svgs/brands/deviantart.svg | 1 +
.../plugins/fontawesome/svgs/brands/dhl.svg | 1 +
.../fontawesome/svgs/brands/diaspora.svg | 1 +
.../plugins/fontawesome/svgs/brands/digg.svg | 1 +
.../fontawesome/svgs/brands/digital-ocean.svg | 1 +
.../fontawesome/svgs/brands/discord.svg | 1 +
.../fontawesome/svgs/brands/discourse.svg | 1 +
.../fontawesome/svgs/brands/dochub.svg | 1 +
.../fontawesome/svgs/brands/docker.svg | 1 +
.../fontawesome/svgs/brands/draft2digital.svg | 1 +
.../svgs/brands/dribbble-square.svg | 1 +
.../fontawesome/svgs/brands/dribbble.svg | 1 +
.../fontawesome/svgs/brands/dropbox.svg | 1 +
.../fontawesome/svgs/brands/drupal.svg | 1 +
.../fontawesome/svgs/brands/dyalog.svg | 1 +
.../fontawesome/svgs/brands/earlybirds.svg | 1 +
.../plugins/fontawesome/svgs/brands/ebay.svg | 1 +
.../fontawesome/svgs/brands/edge-legacy.svg | 1 +
.../plugins/fontawesome/svgs/brands/edge.svg | 1 +
.../fontawesome/svgs/brands/elementor.svg | 1 +
.../plugins/fontawesome/svgs/brands/ello.svg | 1 +
.../plugins/fontawesome/svgs/brands/ember.svg | 1 +
.../fontawesome/svgs/brands/empire.svg | 1 +
.../fontawesome/svgs/brands/envira.svg | 1 +
.../fontawesome/svgs/brands/erlang.svg | 1 +
.../fontawesome/svgs/brands/ethereum.svg | 1 +
.../plugins/fontawesome/svgs/brands/etsy.svg | 1 +
.../fontawesome/svgs/brands/evernote.svg | 1 +
.../fontawesome/svgs/brands/expeditedssl.svg | 1 +
.../fontawesome/svgs/brands/facebook-f.svg | 1 +
.../svgs/brands/facebook-messenger.svg | 1 +
.../svgs/brands/facebook-square.svg | 1 +
.../fontawesome/svgs/brands/facebook.svg | 1 +
.../svgs/brands/fantasy-flight-games.svg | 1 +
.../plugins/fontawesome/svgs/brands/fedex.svg | 1 +
.../fontawesome/svgs/brands/fedora.svg | 1 +
.../plugins/fontawesome/svgs/brands/figma.svg | 1 +
.../svgs/brands/firefox-browser.svg | 1 +
.../fontawesome/svgs/brands/firefox.svg | 1 +
.../svgs/brands/first-order-alt.svg | 1 +
.../fontawesome/svgs/brands/first-order.svg | 1 +
.../fontawesome/svgs/brands/firstdraft.svg | 1 +
.../fontawesome/svgs/brands/flickr.svg | 1 +
.../fontawesome/svgs/brands/flipboard.svg | 1 +
.../plugins/fontawesome/svgs/brands/fly.svg | 1 +
.../svgs/brands/font-awesome-alt.svg | 1 +
.../svgs/brands/font-awesome-flag.svg | 1 +
.../svgs/brands/font-awesome-logo-full.svg | 1 +
.../fontawesome/svgs/brands/font-awesome.svg | 1 +
.../fontawesome/svgs/brands/fonticons-fi.svg | 1 +
.../fontawesome/svgs/brands/fonticons.svg | 1 +
.../svgs/brands/fort-awesome-alt.svg | 1 +
.../fontawesome/svgs/brands/fort-awesome.svg | 1 +
.../fontawesome/svgs/brands/forumbee.svg | 1 +
.../fontawesome/svgs/brands/foursquare.svg | 1 +
.../svgs/brands/free-code-camp.svg | 1 +
.../fontawesome/svgs/brands/freebsd.svg | 1 +
.../fontawesome/svgs/brands/fulcrum.svg | 1 +
.../svgs/brands/galactic-republic.svg | 1 +
.../svgs/brands/galactic-senate.svg | 1 +
.../fontawesome/svgs/brands/get-pocket.svg | 1 +
.../fontawesome/svgs/brands/gg-circle.svg | 1 +
.../plugins/fontawesome/svgs/brands/gg.svg | 1 +
.../fontawesome/svgs/brands/git-alt.svg | 1 +
.../fontawesome/svgs/brands/git-square.svg | 1 +
.../plugins/fontawesome/svgs/brands/git.svg | 1 +
.../fontawesome/svgs/brands/github-alt.svg | 1 +
.../fontawesome/svgs/brands/github-square.svg | 1 +
.../fontawesome/svgs/brands/github.svg | 1 +
.../fontawesome/svgs/brands/gitkraken.svg | 1 +
.../fontawesome/svgs/brands/gitlab.svg | 1 +
.../fontawesome/svgs/brands/gitter.svg | 1 +
.../fontawesome/svgs/brands/glide-g.svg | 1 +
.../plugins/fontawesome/svgs/brands/glide.svg | 1 +
.../fontawesome/svgs/brands/gofore.svg | 1 +
.../fontawesome/svgs/brands/goodreads-g.svg | 1 +
.../fontawesome/svgs/brands/goodreads.svg | 1 +
.../fontawesome/svgs/brands/google-drive.svg | 1 +
.../fontawesome/svgs/brands/google-pay.svg | 1 +
.../fontawesome/svgs/brands/google-play.svg | 1 +
.../fontawesome/svgs/brands/google-plus-g.svg | 1 +
.../svgs/brands/google-plus-square.svg | 1 +
.../fontawesome/svgs/brands/google-plus.svg | 1 +
.../fontawesome/svgs/brands/google-wallet.svg | 1 +
.../fontawesome/svgs/brands/google.svg | 1 +
.../fontawesome/svgs/brands/gratipay.svg | 1 +
.../plugins/fontawesome/svgs/brands/grav.svg | 1 +
.../fontawesome/svgs/brands/gripfire.svg | 1 +
.../plugins/fontawesome/svgs/brands/grunt.svg | 1 +
.../fontawesome/svgs/brands/guilded.svg | 1 +
.../plugins/fontawesome/svgs/brands/gulp.svg | 1 +
.../svgs/brands/hacker-news-square.svg | 1 +
.../fontawesome/svgs/brands/hacker-news.svg | 1 +
.../fontawesome/svgs/brands/hackerrank.svg | 1 +
.../plugins/fontawesome/svgs/brands/hips.svg | 1 +
.../fontawesome/svgs/brands/hire-a-helper.svg | 1 +
.../plugins/fontawesome/svgs/brands/hive.svg | 1 +
.../plugins/fontawesome/svgs/brands/hooli.svg | 1 +
.../fontawesome/svgs/brands/hornbill.svg | 1 +
.../fontawesome/svgs/brands/hotjar.svg | 1 +
.../plugins/fontawesome/svgs/brands/houzz.svg | 1 +
.../plugins/fontawesome/svgs/brands/html5.svg | 1 +
.../fontawesome/svgs/brands/hubspot.svg | 1 +
.../plugins/fontawesome/svgs/brands/ideal.svg | 1 +
.../plugins/fontawesome/svgs/brands/imdb.svg | 1 +
.../fontawesome/svgs/brands/innosoft.svg | 1 +
.../svgs/brands/instagram-square.svg | 1 +
.../fontawesome/svgs/brands/instagram.svg | 1 +
.../fontawesome/svgs/brands/instalod.svg | 1 +
.../fontawesome/svgs/brands/intercom.svg | 1 +
.../svgs/brands/internet-explorer.svg | 1 +
.../fontawesome/svgs/brands/invision.svg | 1 +
.../fontawesome/svgs/brands/ioxhost.svg | 1 +
.../fontawesome/svgs/brands/itch-io.svg | 1 +
.../fontawesome/svgs/brands/itunes-note.svg | 1 +
.../fontawesome/svgs/brands/itunes.svg | 1 +
.../plugins/fontawesome/svgs/brands/java.svg | 1 +
.../fontawesome/svgs/brands/jedi-order.svg | 1 +
.../fontawesome/svgs/brands/jenkins.svg | 1 +
.../plugins/fontawesome/svgs/brands/jira.svg | 1 +
.../plugins/fontawesome/svgs/brands/joget.svg | 1 +
.../fontawesome/svgs/brands/joomla.svg | 1 +
.../fontawesome/svgs/brands/js-square.svg | 1 +
.../plugins/fontawesome/svgs/brands/js.svg | 1 +
.../fontawesome/svgs/brands/jsfiddle.svg | 1 +
.../fontawesome/svgs/brands/kaggle.svg | 1 +
.../fontawesome/svgs/brands/keybase.svg | 1 +
.../fontawesome/svgs/brands/keycdn.svg | 1 +
.../fontawesome/svgs/brands/kickstarter-k.svg | 1 +
.../fontawesome/svgs/brands/kickstarter.svg | 1 +
.../fontawesome/svgs/brands/korvue.svg | 1 +
.../fontawesome/svgs/brands/laravel.svg | 1 +
.../fontawesome/svgs/brands/lastfm-square.svg | 1 +
.../fontawesome/svgs/brands/lastfm.svg | 1 +
.../fontawesome/svgs/brands/leanpub.svg | 1 +
.../plugins/fontawesome/svgs/brands/less.svg | 1 +
.../plugins/fontawesome/svgs/brands/line.svg | 1 +
.../fontawesome/svgs/brands/linkedin-in.svg | 1 +
.../fontawesome/svgs/brands/linkedin.svg | 1 +
.../fontawesome/svgs/brands/linode.svg | 1 +
.../plugins/fontawesome/svgs/brands/linux.svg | 1 +
.../plugins/fontawesome/svgs/brands/lyft.svg | 1 +
.../fontawesome/svgs/brands/magento.svg | 1 +
.../fontawesome/svgs/brands/mailchimp.svg | 1 +
.../fontawesome/svgs/brands/mandalorian.svg | 1 +
.../fontawesome/svgs/brands/markdown.svg | 1 +
.../fontawesome/svgs/brands/mastodon.svg | 1 +
.../fontawesome/svgs/brands/maxcdn.svg | 1 +
.../plugins/fontawesome/svgs/brands/mdb.svg | 1 +
.../fontawesome/svgs/brands/medapps.svg | 1 +
.../fontawesome/svgs/brands/medium-m.svg | 1 +
.../fontawesome/svgs/brands/medium.svg | 1 +
.../plugins/fontawesome/svgs/brands/medrt.svg | 1 +
.../fontawesome/svgs/brands/meetup.svg | 1 +
.../fontawesome/svgs/brands/megaport.svg | 1 +
.../fontawesome/svgs/brands/mendeley.svg | 1 +
.../fontawesome/svgs/brands/microblog.svg | 1 +
.../fontawesome/svgs/brands/microsoft.svg | 1 +
.../plugins/fontawesome/svgs/brands/mix.svg | 1 +
.../fontawesome/svgs/brands/mixcloud.svg | 1 +
.../plugins/fontawesome/svgs/brands/mixer.svg | 1 +
.../fontawesome/svgs/brands/mizuni.svg | 1 +
.../plugins/fontawesome/svgs/brands/modx.svg | 1 +
.../fontawesome/svgs/brands/monero.svg | 1 +
.../fontawesome/svgs/brands/napster.svg | 1 +
.../plugins/fontawesome/svgs/brands/neos.svg | 1 +
.../fontawesome/svgs/brands/nimblr.svg | 1 +
.../fontawesome/svgs/brands/node-js.svg | 1 +
.../plugins/fontawesome/svgs/brands/node.svg | 1 +
.../plugins/fontawesome/svgs/brands/npm.svg | 1 +
.../plugins/fontawesome/svgs/brands/ns8.svg | 1 +
.../fontawesome/svgs/brands/nutritionix.svg | 1 +
.../svgs/brands/octopus-deploy.svg | 1 +
.../svgs/brands/odnoklassniki-square.svg | 1 +
.../fontawesome/svgs/brands/odnoklassniki.svg | 1 +
.../fontawesome/svgs/brands/old-republic.svg | 1 +
.../fontawesome/svgs/brands/opencart.svg | 1 +
.../fontawesome/svgs/brands/openid.svg | 1 +
.../plugins/fontawesome/svgs/brands/opera.svg | 1 +
.../fontawesome/svgs/brands/optin-monster.svg | 1 +
.../plugins/fontawesome/svgs/brands/orcid.svg | 1 +
.../plugins/fontawesome/svgs/brands/osi.svg | 1 +
.../plugins/fontawesome/svgs/brands/page4.svg | 1 +
.../fontawesome/svgs/brands/pagelines.svg | 1 +
.../fontawesome/svgs/brands/palfed.svg | 1 +
.../fontawesome/svgs/brands/patreon.svg | 1 +
.../fontawesome/svgs/brands/paypal.svg | 1 +
.../fontawesome/svgs/brands/penny-arcade.svg | 1 +
.../fontawesome/svgs/brands/perbyte.svg | 1 +
.../fontawesome/svgs/brands/periscope.svg | 1 +
.../fontawesome/svgs/brands/phabricator.svg | 1 +
.../svgs/brands/phoenix-framework.svg | 1 +
.../svgs/brands/phoenix-squadron.svg | 1 +
.../plugins/fontawesome/svgs/brands/php.svg | 1 +
.../svgs/brands/pied-piper-alt.svg | 1 +
.../svgs/brands/pied-piper-hat.svg | 1 +
.../fontawesome/svgs/brands/pied-piper-pp.svg | 1 +
.../svgs/brands/pied-piper-square.svg | 1 +
.../fontawesome/svgs/brands/pied-piper.svg | 1 +
.../fontawesome/svgs/brands/pinterest-p.svg | 1 +
.../svgs/brands/pinterest-square.svg | 1 +
.../fontawesome/svgs/brands/pinterest.svg | 1 +
.../fontawesome/svgs/brands/playstation.svg | 1 +
.../fontawesome/svgs/brands/product-hunt.svg | 1 +
.../fontawesome/svgs/brands/pushed.svg | 1 +
.../fontawesome/svgs/brands/python.svg | 1 +
.../plugins/fontawesome/svgs/brands/qq.svg | 1 +
.../fontawesome/svgs/brands/quinscape.svg | 1 +
.../plugins/fontawesome/svgs/brands/quora.svg | 1 +
.../fontawesome/svgs/brands/r-project.svg | 1 +
.../fontawesome/svgs/brands/raspberry-pi.svg | 1 +
.../fontawesome/svgs/brands/ravelry.svg | 1 +
.../plugins/fontawesome/svgs/brands/react.svg | 1 +
.../fontawesome/svgs/brands/reacteurope.svg | 1 +
.../fontawesome/svgs/brands/readme.svg | 1 +
.../plugins/fontawesome/svgs/brands/rebel.svg | 1 +
.../fontawesome/svgs/brands/red-river.svg | 1 +
.../fontawesome/svgs/brands/reddit-alien.svg | 1 +
.../fontawesome/svgs/brands/reddit-square.svg | 1 +
.../fontawesome/svgs/brands/reddit.svg | 1 +
.../fontawesome/svgs/brands/redhat.svg | 1 +
.../fontawesome/svgs/brands/renren.svg | 1 +
.../fontawesome/svgs/brands/replyd.svg | 1 +
.../fontawesome/svgs/brands/researchgate.svg | 1 +
.../fontawesome/svgs/brands/resolving.svg | 1 +
.../plugins/fontawesome/svgs/brands/rev.svg | 1 +
.../fontawesome/svgs/brands/rocketchat.svg | 1 +
.../fontawesome/svgs/brands/rockrms.svg | 1 +
.../plugins/fontawesome/svgs/brands/rust.svg | 1 +
.../fontawesome/svgs/brands/safari.svg | 1 +
.../fontawesome/svgs/brands/salesforce.svg | 1 +
.../plugins/fontawesome/svgs/brands/sass.svg | 1 +
.../fontawesome/svgs/brands/schlix.svg | 1 +
.../fontawesome/svgs/brands/scribd.svg | 1 +
.../fontawesome/svgs/brands/searchengin.svg | 1 +
.../fontawesome/svgs/brands/sellcast.svg | 1 +
.../fontawesome/svgs/brands/sellsy.svg | 1 +
.../fontawesome/svgs/brands/servicestack.svg | 1 +
.../fontawesome/svgs/brands/shirtsinbulk.svg | 1 +
.../fontawesome/svgs/brands/shopify.svg | 1 +
.../fontawesome/svgs/brands/shopware.svg | 1 +
.../fontawesome/svgs/brands/simplybuilt.svg | 1 +
.../fontawesome/svgs/brands/sistrix.svg | 1 +
.../plugins/fontawesome/svgs/brands/sith.svg | 1 +
.../fontawesome/svgs/brands/sketch.svg | 1 +
.../fontawesome/svgs/brands/skyatlas.svg | 1 +
.../plugins/fontawesome/svgs/brands/skype.svg | 1 +
.../fontawesome/svgs/brands/slack-hash.svg | 1 +
.../plugins/fontawesome/svgs/brands/slack.svg | 1 +
.../fontawesome/svgs/brands/slideshare.svg | 1 +
.../svgs/brands/snapchat-ghost.svg | 1 +
.../svgs/brands/snapchat-square.svg | 1 +
.../fontawesome/svgs/brands/snapchat.svg | 1 +
.../fontawesome/svgs/brands/soundcloud.svg | 1 +
.../fontawesome/svgs/brands/sourcetree.svg | 1 +
.../fontawesome/svgs/brands/speakap.svg | 1 +
.../fontawesome/svgs/brands/speaker-deck.svg | 1 +
.../fontawesome/svgs/brands/spotify.svg | 1 +
.../fontawesome/svgs/brands/squarespace.svg | 1 +
.../svgs/brands/stack-exchange.svg | 1 +
.../svgs/brands/stack-overflow.svg | 1 +
.../fontawesome/svgs/brands/stackpath.svg | 1 +
.../fontawesome/svgs/brands/staylinked.svg | 1 +
.../fontawesome/svgs/brands/steam-square.svg | 1 +
.../fontawesome/svgs/brands/steam-symbol.svg | 1 +
.../plugins/fontawesome/svgs/brands/steam.svg | 1 +
.../fontawesome/svgs/brands/sticker-mule.svg | 1 +
.../fontawesome/svgs/brands/strava.svg | 1 +
.../fontawesome/svgs/brands/stripe-s.svg | 1 +
.../fontawesome/svgs/brands/stripe.svg | 1 +
.../fontawesome/svgs/brands/studiovinari.svg | 1 +
.../svgs/brands/stumbleupon-circle.svg | 1 +
.../fontawesome/svgs/brands/stumbleupon.svg | 1 +
.../fontawesome/svgs/brands/superpowers.svg | 1 +
.../fontawesome/svgs/brands/supple.svg | 1 +
.../plugins/fontawesome/svgs/brands/suse.svg | 1 +
.../plugins/fontawesome/svgs/brands/swift.svg | 1 +
.../fontawesome/svgs/brands/symfony.svg | 1 +
.../fontawesome/svgs/brands/teamspeak.svg | 1 +
.../svgs/brands/telegram-plane.svg | 1 +
.../fontawesome/svgs/brands/telegram.svg | 1 +
.../fontawesome/svgs/brands/tencent-weibo.svg | 1 +
.../fontawesome/svgs/brands/the-red-yeti.svg | 1 +
.../fontawesome/svgs/brands/themeco.svg | 1 +
.../fontawesome/svgs/brands/themeisle.svg | 1 +
.../fontawesome/svgs/brands/think-peaks.svg | 1 +
.../fontawesome/svgs/brands/tiktok.svg | 1 +
.../svgs/brands/trade-federation.svg | 1 +
.../fontawesome/svgs/brands/trello.svg | 1 +
.../fontawesome/svgs/brands/tripadvisor.svg | 1 +
.../fontawesome/svgs/brands/tumblr-square.svg | 1 +
.../fontawesome/svgs/brands/tumblr.svg | 1 +
.../fontawesome/svgs/brands/twitch.svg | 1 +
.../svgs/brands/twitter-square.svg | 1 +
.../fontawesome/svgs/brands/twitter.svg | 1 +
.../plugins/fontawesome/svgs/brands/typo3.svg | 1 +
.../plugins/fontawesome/svgs/brands/uber.svg | 1 +
.../fontawesome/svgs/brands/ubuntu.svg | 1 +
.../plugins/fontawesome/svgs/brands/uikit.svg | 1 +
.../fontawesome/svgs/brands/umbraco.svg | 1 +
.../fontawesome/svgs/brands/uncharted.svg | 1 +
.../fontawesome/svgs/brands/uniregistry.svg | 1 +
.../plugins/fontawesome/svgs/brands/unity.svg | 1 +
.../fontawesome/svgs/brands/unsplash.svg | 1 +
.../fontawesome/svgs/brands/untappd.svg | 1 +
.../plugins/fontawesome/svgs/brands/ups.svg | 1 +
.../plugins/fontawesome/svgs/brands/usb.svg | 1 +
.../plugins/fontawesome/svgs/brands/usps.svg | 1 +
.../fontawesome/svgs/brands/ussunnah.svg | 1 +
.../fontawesome/svgs/brands/vaadin.svg | 1 +
.../fontawesome/svgs/brands/viacoin.svg | 1 +
.../fontawesome/svgs/brands/viadeo-square.svg | 1 +
.../fontawesome/svgs/brands/viadeo.svg | 1 +
.../plugins/fontawesome/svgs/brands/viber.svg | 1 +
.../fontawesome/svgs/brands/vimeo-square.svg | 1 +
.../fontawesome/svgs/brands/vimeo-v.svg | 1 +
.../plugins/fontawesome/svgs/brands/vimeo.svg | 1 +
.../plugins/fontawesome/svgs/brands/vine.svg | 1 +
.../plugins/fontawesome/svgs/brands/vk.svg | 1 +
.../plugins/fontawesome/svgs/brands/vnv.svg | 1 +
.../plugins/fontawesome/svgs/brands/vuejs.svg | 1 +
.../svgs/brands/watchman-monitoring.svg | 1 +
.../plugins/fontawesome/svgs/brands/waze.svg | 1 +
.../fontawesome/svgs/brands/weebly.svg | 1 +
.../plugins/fontawesome/svgs/brands/weibo.svg | 1 +
.../fontawesome/svgs/brands/weixin.svg | 1 +
.../svgs/brands/whatsapp-square.svg | 1 +
.../fontawesome/svgs/brands/whatsapp.svg | 1 +
.../plugins/fontawesome/svgs/brands/whmcs.svg | 1 +
.../fontawesome/svgs/brands/wikipedia-w.svg | 1 +
.../fontawesome/svgs/brands/windows.svg | 1 +
.../plugins/fontawesome/svgs/brands/wix.svg | 1 +
.../svgs/brands/wizards-of-the-coast.svg | 1 +
.../plugins/fontawesome/svgs/brands/wodu.svg | 1 +
.../svgs/brands/wolf-pack-battalion.svg | 1 +
.../svgs/brands/wordpress-simple.svg | 1 +
.../fontawesome/svgs/brands/wordpress.svg | 1 +
.../fontawesome/svgs/brands/wpbeginner.svg | 1 +
.../fontawesome/svgs/brands/wpexplorer.svg | 1 +
.../fontawesome/svgs/brands/wpforms.svg | 1 +
.../fontawesome/svgs/brands/wpressr.svg | 1 +
.../plugins/fontawesome/svgs/brands/xbox.svg | 1 +
.../fontawesome/svgs/brands/xing-square.svg | 1 +
.../plugins/fontawesome/svgs/brands/xing.svg | 1 +
.../fontawesome/svgs/brands/y-combinator.svg | 1 +
.../plugins/fontawesome/svgs/brands/yahoo.svg | 1 +
.../fontawesome/svgs/brands/yammer.svg | 1 +
.../svgs/brands/yandex-international.svg | 1 +
.../fontawesome/svgs/brands/yandex.svg | 1 +
.../plugins/fontawesome/svgs/brands/yarn.svg | 1 +
.../plugins/fontawesome/svgs/brands/yelp.svg | 1 +
.../plugins/fontawesome/svgs/brands/yoast.svg | 1 +
.../svgs/brands/youtube-square.svg | 1 +
.../fontawesome/svgs/brands/youtube.svg | 1 +
.../plugins/fontawesome/svgs/brands/zhihu.svg | 1 +
.../fontawesome/svgs/regular/address-book.svg | 1 +
.../fontawesome/svgs/regular/address-card.svg | 1 +
.../fontawesome/svgs/regular/angry.svg | 1 +
.../svgs/regular/arrow-alt-circle-down.svg | 1 +
.../svgs/regular/arrow-alt-circle-left.svg | 1 +
.../svgs/regular/arrow-alt-circle-right.svg | 1 +
.../svgs/regular/arrow-alt-circle-up.svg | 1 +
.../fontawesome/svgs/regular/bell-slash.svg | 1 +
.../plugins/fontawesome/svgs/regular/bell.svg | 1 +
.../fontawesome/svgs/regular/bookmark.svg | 1 +
.../fontawesome/svgs/regular/building.svg | 1 +
.../fontawesome/svgs/regular/calendar-alt.svg | 1 +
.../svgs/regular/calendar-check.svg | 1 +
.../svgs/regular/calendar-minus.svg | 1 +
.../svgs/regular/calendar-plus.svg | 1 +
.../svgs/regular/calendar-times.svg | 1 +
.../fontawesome/svgs/regular/calendar.svg | 1 +
.../svgs/regular/caret-square-down.svg | 1 +
.../svgs/regular/caret-square-left.svg | 1 +
.../svgs/regular/caret-square-right.svg | 1 +
.../svgs/regular/caret-square-up.svg | 1 +
.../fontawesome/svgs/regular/chart-bar.svg | 1 +
.../fontawesome/svgs/regular/check-circle.svg | 1 +
.../fontawesome/svgs/regular/check-square.svg | 1 +
.../fontawesome/svgs/regular/circle.svg | 1 +
.../fontawesome/svgs/regular/clipboard.svg | 1 +
.../fontawesome/svgs/regular/clock.svg | 1 +
.../fontawesome/svgs/regular/clone.svg | 1 +
.../svgs/regular/closed-captioning.svg | 1 +
.../fontawesome/svgs/regular/comment-alt.svg | 1 +
.../fontawesome/svgs/regular/comment-dots.svg | 1 +
.../fontawesome/svgs/regular/comment.svg | 1 +
.../fontawesome/svgs/regular/comments.svg | 1 +
.../fontawesome/svgs/regular/compass.svg | 1 +
.../plugins/fontawesome/svgs/regular/copy.svg | 1 +
.../fontawesome/svgs/regular/copyright.svg | 1 +
.../fontawesome/svgs/regular/credit-card.svg | 1 +
.../fontawesome/svgs/regular/dizzy.svg | 1 +
.../fontawesome/svgs/regular/dot-circle.svg | 1 +
.../plugins/fontawesome/svgs/regular/edit.svg | 1 +
.../svgs/regular/envelope-open.svg | 1 +
.../fontawesome/svgs/regular/envelope.svg | 1 +
.../fontawesome/svgs/regular/eye-slash.svg | 1 +
.../plugins/fontawesome/svgs/regular/eye.svg | 1 +
.../fontawesome/svgs/regular/file-alt.svg | 1 +
.../fontawesome/svgs/regular/file-archive.svg | 1 +
.../fontawesome/svgs/regular/file-audio.svg | 1 +
.../fontawesome/svgs/regular/file-code.svg | 1 +
.../fontawesome/svgs/regular/file-excel.svg | 1 +
.../fontawesome/svgs/regular/file-image.svg | 1 +
.../fontawesome/svgs/regular/file-pdf.svg | 1 +
.../svgs/regular/file-powerpoint.svg | 1 +
.../fontawesome/svgs/regular/file-video.svg | 1 +
.../fontawesome/svgs/regular/file-word.svg | 1 +
.../plugins/fontawesome/svgs/regular/file.svg | 1 +
.../plugins/fontawesome/svgs/regular/flag.svg | 1 +
.../fontawesome/svgs/regular/flushed.svg | 1 +
.../fontawesome/svgs/regular/folder-open.svg | 1 +
.../fontawesome/svgs/regular/folder.svg | 1 +
.../svgs/regular/font-awesome-logo-full.svg | 1 +
.../fontawesome/svgs/regular/frown-open.svg | 1 +
.../fontawesome/svgs/regular/frown.svg | 1 +
.../fontawesome/svgs/regular/futbol.svg | 1 +
.../plugins/fontawesome/svgs/regular/gem.svg | 1 +
.../fontawesome/svgs/regular/grimace.svg | 1 +
.../fontawesome/svgs/regular/grin-alt.svg | 1 +
.../svgs/regular/grin-beam-sweat.svg | 1 +
.../fontawesome/svgs/regular/grin-beam.svg | 1 +
.../fontawesome/svgs/regular/grin-hearts.svg | 1 +
.../svgs/regular/grin-squint-tears.svg | 1 +
.../fontawesome/svgs/regular/grin-squint.svg | 1 +
.../fontawesome/svgs/regular/grin-stars.svg | 1 +
.../fontawesome/svgs/regular/grin-tears.svg | 1 +
.../svgs/regular/grin-tongue-squint.svg | 1 +
.../svgs/regular/grin-tongue-wink.svg | 1 +
.../fontawesome/svgs/regular/grin-tongue.svg | 1 +
.../fontawesome/svgs/regular/grin-wink.svg | 1 +
.../plugins/fontawesome/svgs/regular/grin.svg | 1 +
.../fontawesome/svgs/regular/hand-lizard.svg | 1 +
.../fontawesome/svgs/regular/hand-paper.svg | 1 +
.../fontawesome/svgs/regular/hand-peace.svg | 1 +
.../svgs/regular/hand-point-down.svg | 1 +
.../svgs/regular/hand-point-left.svg | 1 +
.../svgs/regular/hand-point-right.svg | 1 +
.../svgs/regular/hand-point-up.svg | 1 +
.../fontawesome/svgs/regular/hand-pointer.svg | 1 +
.../fontawesome/svgs/regular/hand-rock.svg | 1 +
.../svgs/regular/hand-scissors.svg | 1 +
.../fontawesome/svgs/regular/hand-spock.svg | 1 +
.../fontawesome/svgs/regular/handshake.svg | 1 +
.../plugins/fontawesome/svgs/regular/hdd.svg | 1 +
.../fontawesome/svgs/regular/heart.svg | 1 +
.../fontawesome/svgs/regular/hospital.svg | 1 +
.../fontawesome/svgs/regular/hourglass.svg | 1 +
.../fontawesome/svgs/regular/id-badge.svg | 1 +
.../fontawesome/svgs/regular/id-card.svg | 1 +
.../fontawesome/svgs/regular/image.svg | 1 +
.../fontawesome/svgs/regular/images.svg | 1 +
.../fontawesome/svgs/regular/keyboard.svg | 1 +
.../fontawesome/svgs/regular/kiss-beam.svg | 1 +
.../svgs/regular/kiss-wink-heart.svg | 1 +
.../plugins/fontawesome/svgs/regular/kiss.svg | 1 +
.../fontawesome/svgs/regular/laugh-beam.svg | 1 +
.../fontawesome/svgs/regular/laugh-squint.svg | 1 +
.../fontawesome/svgs/regular/laugh-wink.svg | 1 +
.../fontawesome/svgs/regular/laugh.svg | 1 +
.../fontawesome/svgs/regular/lemon.svg | 1 +
.../fontawesome/svgs/regular/life-ring.svg | 1 +
.../fontawesome/svgs/regular/lightbulb.svg | 1 +
.../fontawesome/svgs/regular/list-alt.svg | 1 +
.../plugins/fontawesome/svgs/regular/map.svg | 1 +
.../fontawesome/svgs/regular/meh-blank.svg | 1 +
.../svgs/regular/meh-rolling-eyes.svg | 1 +
.../plugins/fontawesome/svgs/regular/meh.svg | 1 +
.../fontawesome/svgs/regular/minus-square.svg | 1 +
.../svgs/regular/money-bill-alt.svg | 1 +
.../plugins/fontawesome/svgs/regular/moon.svg | 1 +
.../fontawesome/svgs/regular/newspaper.svg | 1 +
.../fontawesome/svgs/regular/object-group.svg | 1 +
.../svgs/regular/object-ungroup.svg | 1 +
.../fontawesome/svgs/regular/paper-plane.svg | 1 +
.../fontawesome/svgs/regular/pause-circle.svg | 1 +
.../fontawesome/svgs/regular/play-circle.svg | 1 +
.../fontawesome/svgs/regular/plus-square.svg | 1 +
.../svgs/regular/question-circle.svg | 1 +
.../fontawesome/svgs/regular/registered.svg | 1 +
.../fontawesome/svgs/regular/sad-cry.svg | 1 +
.../fontawesome/svgs/regular/sad-tear.svg | 1 +
.../plugins/fontawesome/svgs/regular/save.svg | 1 +
.../fontawesome/svgs/regular/share-square.svg | 1 +
.../fontawesome/svgs/regular/smile-beam.svg | 1 +
.../fontawesome/svgs/regular/smile-wink.svg | 1 +
.../fontawesome/svgs/regular/smile.svg | 1 +
.../fontawesome/svgs/regular/snowflake.svg | 1 +
.../fontawesome/svgs/regular/square.svg | 1 +
.../fontawesome/svgs/regular/star-half.svg | 1 +
.../plugins/fontawesome/svgs/regular/star.svg | 1 +
.../fontawesome/svgs/regular/sticky-note.svg | 1 +
.../fontawesome/svgs/regular/stop-circle.svg | 1 +
.../plugins/fontawesome/svgs/regular/sun.svg | 1 +
.../fontawesome/svgs/regular/surprise.svg | 1 +
.../fontawesome/svgs/regular/thumbs-down.svg | 1 +
.../fontawesome/svgs/regular/thumbs-up.svg | 1 +
.../fontawesome/svgs/regular/times-circle.svg | 1 +
.../fontawesome/svgs/regular/tired.svg | 1 +
.../fontawesome/svgs/regular/trash-alt.svg | 1 +
.../fontawesome/svgs/regular/user-circle.svg | 1 +
.../plugins/fontawesome/svgs/regular/user.svg | 1 +
.../fontawesome/svgs/regular/window-close.svg | 1 +
.../svgs/regular/window-maximize.svg | 1 +
.../svgs/regular/window-minimize.svg | 1 +
.../svgs/regular/window-restore.svg | 1 +
.../plugins/fontawesome/svgs/solid/ad.svg | 1 +
.../fontawesome/svgs/solid/address-book.svg | 1 +
.../fontawesome/svgs/solid/address-card.svg | 1 +
.../plugins/fontawesome/svgs/solid/adjust.svg | 1 +
.../fontawesome/svgs/solid/air-freshener.svg | 1 +
.../fontawesome/svgs/solid/align-center.svg | 1 +
.../fontawesome/svgs/solid/align-justify.svg | 1 +
.../fontawesome/svgs/solid/align-left.svg | 1 +
.../fontawesome/svgs/solid/align-right.svg | 1 +
.../fontawesome/svgs/solid/allergies.svg | 1 +
.../fontawesome/svgs/solid/ambulance.svg | 1 +
.../american-sign-language-interpreting.svg | 1 +
.../plugins/fontawesome/svgs/solid/anchor.svg | 1 +
.../svgs/solid/angle-double-down.svg | 1 +
.../svgs/solid/angle-double-left.svg | 1 +
.../svgs/solid/angle-double-right.svg | 1 +
.../svgs/solid/angle-double-up.svg | 1 +
.../fontawesome/svgs/solid/angle-down.svg | 1 +
.../fontawesome/svgs/solid/angle-left.svg | 1 +
.../fontawesome/svgs/solid/angle-right.svg | 1 +
.../fontawesome/svgs/solid/angle-up.svg | 1 +
.../plugins/fontawesome/svgs/solid/angry.svg | 1 +
.../plugins/fontawesome/svgs/solid/ankh.svg | 1 +
.../fontawesome/svgs/solid/apple-alt.svg | 1 +
.../fontawesome/svgs/solid/archive.svg | 1 +
.../fontawesome/svgs/solid/archway.svg | 1 +
.../svgs/solid/arrow-alt-circle-down.svg | 1 +
.../svgs/solid/arrow-alt-circle-left.svg | 1 +
.../svgs/solid/arrow-alt-circle-right.svg | 1 +
.../svgs/solid/arrow-alt-circle-up.svg | 1 +
.../svgs/solid/arrow-circle-down.svg | 1 +
.../svgs/solid/arrow-circle-left.svg | 1 +
.../svgs/solid/arrow-circle-right.svg | 1 +
.../svgs/solid/arrow-circle-up.svg | 1 +
.../fontawesome/svgs/solid/arrow-down.svg | 1 +
.../fontawesome/svgs/solid/arrow-left.svg | 1 +
.../fontawesome/svgs/solid/arrow-right.svg | 1 +
.../fontawesome/svgs/solid/arrow-up.svg | 1 +
.../fontawesome/svgs/solid/arrows-alt-h.svg | 1 +
.../fontawesome/svgs/solid/arrows-alt-v.svg | 1 +
.../fontawesome/svgs/solid/arrows-alt.svg | 1 +
.../solid/assistive-listening-systems.svg | 1 +
.../fontawesome/svgs/solid/asterisk.svg | 1 +
.../plugins/fontawesome/svgs/solid/at.svg | 1 +
.../plugins/fontawesome/svgs/solid/atlas.svg | 1 +
.../plugins/fontawesome/svgs/solid/atom.svg | 1 +
.../svgs/solid/audio-description.svg | 1 +
.../plugins/fontawesome/svgs/solid/award.svg | 1 +
.../fontawesome/svgs/solid/baby-carriage.svg | 1 +
.../plugins/fontawesome/svgs/solid/baby.svg | 1 +
.../fontawesome/svgs/solid/backspace.svg | 1 +
.../fontawesome/svgs/solid/backward.svg | 1 +
.../plugins/fontawesome/svgs/solid/bacon.svg | 1 +
.../fontawesome/svgs/solid/bacteria.svg | 1 +
.../fontawesome/svgs/solid/bacterium.svg | 1 +
.../plugins/fontawesome/svgs/solid/bahai.svg | 1 +
.../svgs/solid/balance-scale-left.svg | 1 +
.../svgs/solid/balance-scale-right.svg | 1 +
.../fontawesome/svgs/solid/balance-scale.svg | 1 +
.../plugins/fontawesome/svgs/solid/ban.svg | 1 +
.../fontawesome/svgs/solid/band-aid.svg | 1 +
.../fontawesome/svgs/solid/barcode.svg | 1 +
.../plugins/fontawesome/svgs/solid/bars.svg | 1 +
.../fontawesome/svgs/solid/baseball-ball.svg | 1 +
.../svgs/solid/basketball-ball.svg | 1 +
.../plugins/fontawesome/svgs/solid/bath.svg | 1 +
.../fontawesome/svgs/solid/battery-empty.svg | 1 +
.../fontawesome/svgs/solid/battery-full.svg | 1 +
.../fontawesome/svgs/solid/battery-half.svg | 1 +
.../svgs/solid/battery-quarter.svg | 1 +
.../svgs/solid/battery-three-quarters.svg | 1 +
.../plugins/fontawesome/svgs/solid/bed.svg | 1 +
.../plugins/fontawesome/svgs/solid/beer.svg | 1 +
.../fontawesome/svgs/solid/bell-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/bell.svg | 1 +
.../fontawesome/svgs/solid/bezier-curve.svg | 1 +
.../plugins/fontawesome/svgs/solid/bible.svg | 1 +
.../fontawesome/svgs/solid/bicycle.svg | 1 +
.../plugins/fontawesome/svgs/solid/biking.svg | 1 +
.../fontawesome/svgs/solid/binoculars.svg | 1 +
.../fontawesome/svgs/solid/biohazard.svg | 1 +
.../fontawesome/svgs/solid/birthday-cake.svg | 1 +
.../fontawesome/svgs/solid/blender-phone.svg | 1 +
.../fontawesome/svgs/solid/blender.svg | 1 +
.../plugins/fontawesome/svgs/solid/blind.svg | 1 +
.../plugins/fontawesome/svgs/solid/blog.svg | 1 +
.../plugins/fontawesome/svgs/solid/bold.svg | 1 +
.../plugins/fontawesome/svgs/solid/bolt.svg | 1 +
.../plugins/fontawesome/svgs/solid/bomb.svg | 1 +
.../plugins/fontawesome/svgs/solid/bone.svg | 1 +
.../plugins/fontawesome/svgs/solid/bong.svg | 1 +
.../fontawesome/svgs/solid/book-dead.svg | 1 +
.../fontawesome/svgs/solid/book-medical.svg | 1 +
.../fontawesome/svgs/solid/book-open.svg | 1 +
.../fontawesome/svgs/solid/book-reader.svg | 1 +
.../plugins/fontawesome/svgs/solid/book.svg | 1 +
.../fontawesome/svgs/solid/bookmark.svg | 1 +
.../fontawesome/svgs/solid/border-all.svg | 1 +
.../fontawesome/svgs/solid/border-none.svg | 1 +
.../fontawesome/svgs/solid/border-style.svg | 1 +
.../fontawesome/svgs/solid/bowling-ball.svg | 1 +
.../fontawesome/svgs/solid/box-open.svg | 1 +
.../fontawesome/svgs/solid/box-tissue.svg | 1 +
.../plugins/fontawesome/svgs/solid/box.svg | 1 +
.../plugins/fontawesome/svgs/solid/boxes.svg | 1 +
.../fontawesome/svgs/solid/braille.svg | 1 +
.../plugins/fontawesome/svgs/solid/brain.svg | 1 +
.../fontawesome/svgs/solid/bread-slice.svg | 1 +
.../svgs/solid/briefcase-medical.svg | 1 +
.../fontawesome/svgs/solid/briefcase.svg | 1 +
.../svgs/solid/broadcast-tower.svg | 1 +
.../plugins/fontawesome/svgs/solid/broom.svg | 1 +
.../plugins/fontawesome/svgs/solid/brush.svg | 1 +
.../plugins/fontawesome/svgs/solid/bug.svg | 1 +
.../fontawesome/svgs/solid/building.svg | 1 +
.../fontawesome/svgs/solid/bullhorn.svg | 1 +
.../fontawesome/svgs/solid/bullseye.svg | 1 +
.../plugins/fontawesome/svgs/solid/burn.svg | 1 +
.../fontawesome/svgs/solid/bus-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/bus.svg | 1 +
.../fontawesome/svgs/solid/business-time.svg | 1 +
.../fontawesome/svgs/solid/calculator.svg | 1 +
.../fontawesome/svgs/solid/calendar-alt.svg | 1 +
.../fontawesome/svgs/solid/calendar-check.svg | 1 +
.../fontawesome/svgs/solid/calendar-day.svg | 1 +
.../fontawesome/svgs/solid/calendar-minus.svg | 1 +
.../fontawesome/svgs/solid/calendar-plus.svg | 1 +
.../fontawesome/svgs/solid/calendar-times.svg | 1 +
.../fontawesome/svgs/solid/calendar-week.svg | 1 +
.../fontawesome/svgs/solid/calendar.svg | 1 +
.../fontawesome/svgs/solid/camera-retro.svg | 1 +
.../plugins/fontawesome/svgs/solid/camera.svg | 1 +
.../fontawesome/svgs/solid/campground.svg | 1 +
.../fontawesome/svgs/solid/candy-cane.svg | 1 +
.../fontawesome/svgs/solid/cannabis.svg | 1 +
.../fontawesome/svgs/solid/capsules.svg | 1 +
.../fontawesome/svgs/solid/car-alt.svg | 1 +
.../fontawesome/svgs/solid/car-battery.svg | 1 +
.../fontawesome/svgs/solid/car-crash.svg | 1 +
.../fontawesome/svgs/solid/car-side.svg | 1 +
.../plugins/fontawesome/svgs/solid/car.svg | 1 +
.../fontawesome/svgs/solid/caravan.svg | 1 +
.../fontawesome/svgs/solid/caret-down.svg | 1 +
.../fontawesome/svgs/solid/caret-left.svg | 1 +
.../fontawesome/svgs/solid/caret-right.svg | 1 +
.../svgs/solid/caret-square-down.svg | 1 +
.../svgs/solid/caret-square-left.svg | 1 +
.../svgs/solid/caret-square-right.svg | 1 +
.../svgs/solid/caret-square-up.svg | 1 +
.../fontawesome/svgs/solid/caret-up.svg | 1 +
.../plugins/fontawesome/svgs/solid/carrot.svg | 1 +
.../svgs/solid/cart-arrow-down.svg | 1 +
.../fontawesome/svgs/solid/cart-plus.svg | 1 +
.../fontawesome/svgs/solid/cash-register.svg | 1 +
.../plugins/fontawesome/svgs/solid/cat.svg | 1 +
.../fontawesome/svgs/solid/certificate.svg | 1 +
.../plugins/fontawesome/svgs/solid/chair.svg | 1 +
.../svgs/solid/chalkboard-teacher.svg | 1 +
.../fontawesome/svgs/solid/chalkboard.svg | 1 +
.../svgs/solid/charging-station.svg | 1 +
.../fontawesome/svgs/solid/chart-area.svg | 1 +
.../fontawesome/svgs/solid/chart-bar.svg | 1 +
.../fontawesome/svgs/solid/chart-line.svg | 1 +
.../fontawesome/svgs/solid/chart-pie.svg | 1 +
.../fontawesome/svgs/solid/check-circle.svg | 1 +
.../fontawesome/svgs/solid/check-double.svg | 1 +
.../fontawesome/svgs/solid/check-square.svg | 1 +
.../plugins/fontawesome/svgs/solid/check.svg | 1 +
.../plugins/fontawesome/svgs/solid/cheese.svg | 1 +
.../fontawesome/svgs/solid/chess-bishop.svg | 1 +
.../fontawesome/svgs/solid/chess-board.svg | 1 +
.../fontawesome/svgs/solid/chess-king.svg | 1 +
.../fontawesome/svgs/solid/chess-knight.svg | 1 +
.../fontawesome/svgs/solid/chess-pawn.svg | 1 +
.../fontawesome/svgs/solid/chess-queen.svg | 1 +
.../fontawesome/svgs/solid/chess-rook.svg | 1 +
.../plugins/fontawesome/svgs/solid/chess.svg | 1 +
.../svgs/solid/chevron-circle-down.svg | 1 +
.../svgs/solid/chevron-circle-left.svg | 1 +
.../svgs/solid/chevron-circle-right.svg | 1 +
.../svgs/solid/chevron-circle-up.svg | 1 +
.../fontawesome/svgs/solid/chevron-down.svg | 1 +
.../fontawesome/svgs/solid/chevron-left.svg | 1 +
.../fontawesome/svgs/solid/chevron-right.svg | 1 +
.../fontawesome/svgs/solid/chevron-up.svg | 1 +
.../plugins/fontawesome/svgs/solid/child.svg | 1 +
.../plugins/fontawesome/svgs/solid/church.svg | 1 +
.../fontawesome/svgs/solid/circle-notch.svg | 1 +
.../plugins/fontawesome/svgs/solid/circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/city.svg | 1 +
.../fontawesome/svgs/solid/clinic-medical.svg | 1 +
.../svgs/solid/clipboard-check.svg | 1 +
.../fontawesome/svgs/solid/clipboard-list.svg | 1 +
.../fontawesome/svgs/solid/clipboard.svg | 1 +
.../plugins/fontawesome/svgs/solid/clock.svg | 1 +
.../plugins/fontawesome/svgs/solid/clone.svg | 1 +
.../svgs/solid/closed-captioning.svg | 1 +
.../svgs/solid/cloud-download-alt.svg | 1 +
.../fontawesome/svgs/solid/cloud-meatball.svg | 1 +
.../svgs/solid/cloud-moon-rain.svg | 1 +
.../fontawesome/svgs/solid/cloud-moon.svg | 1 +
.../fontawesome/svgs/solid/cloud-rain.svg | 1 +
.../svgs/solid/cloud-showers-heavy.svg | 1 +
.../fontawesome/svgs/solid/cloud-sun-rain.svg | 1 +
.../fontawesome/svgs/solid/cloud-sun.svg | 1 +
.../svgs/solid/cloud-upload-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/cloud.svg | 1 +
.../fontawesome/svgs/solid/cocktail.svg | 1 +
.../fontawesome/svgs/solid/code-branch.svg | 1 +
.../plugins/fontawesome/svgs/solid/code.svg | 1 +
.../plugins/fontawesome/svgs/solid/coffee.svg | 1 +
.../plugins/fontawesome/svgs/solid/cog.svg | 1 +
.../plugins/fontawesome/svgs/solid/cogs.svg | 1 +
.../plugins/fontawesome/svgs/solid/coins.svg | 1 +
.../fontawesome/svgs/solid/columns.svg | 1 +
.../fontawesome/svgs/solid/comment-alt.svg | 1 +
.../fontawesome/svgs/solid/comment-dollar.svg | 1 +
.../fontawesome/svgs/solid/comment-dots.svg | 1 +
.../svgs/solid/comment-medical.svg | 1 +
.../fontawesome/svgs/solid/comment-slash.svg | 1 +
.../fontawesome/svgs/solid/comment.svg | 1 +
.../svgs/solid/comments-dollar.svg | 1 +
.../fontawesome/svgs/solid/comments.svg | 1 +
.../fontawesome/svgs/solid/compact-disc.svg | 1 +
.../fontawesome/svgs/solid/compass.svg | 1 +
.../fontawesome/svgs/solid/compress-alt.svg | 1 +
.../svgs/solid/compress-arrows-alt.svg | 1 +
.../fontawesome/svgs/solid/compress.svg | 1 +
.../fontawesome/svgs/solid/concierge-bell.svg | 1 +
.../fontawesome/svgs/solid/cookie-bite.svg | 1 +
.../plugins/fontawesome/svgs/solid/cookie.svg | 1 +
.../plugins/fontawesome/svgs/solid/copy.svg | 1 +
.../fontawesome/svgs/solid/copyright.svg | 1 +
.../plugins/fontawesome/svgs/solid/couch.svg | 1 +
.../fontawesome/svgs/solid/credit-card.svg | 1 +
.../fontawesome/svgs/solid/crop-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/crop.svg | 1 +
.../plugins/fontawesome/svgs/solid/cross.svg | 1 +
.../fontawesome/svgs/solid/crosshairs.svg | 1 +
.../plugins/fontawesome/svgs/solid/crow.svg | 1 +
.../plugins/fontawesome/svgs/solid/crown.svg | 1 +
.../plugins/fontawesome/svgs/solid/crutch.svg | 1 +
.../plugins/fontawesome/svgs/solid/cube.svg | 1 +
.../plugins/fontawesome/svgs/solid/cubes.svg | 1 +
.../plugins/fontawesome/svgs/solid/cut.svg | 1 +
.../fontawesome/svgs/solid/database.svg | 1 +
.../plugins/fontawesome/svgs/solid/deaf.svg | 1 +
.../fontawesome/svgs/solid/democrat.svg | 1 +
.../fontawesome/svgs/solid/desktop.svg | 1 +
.../fontawesome/svgs/solid/dharmachakra.svg | 1 +
.../fontawesome/svgs/solid/diagnoses.svg | 1 +
.../fontawesome/svgs/solid/dice-d20.svg | 1 +
.../fontawesome/svgs/solid/dice-d6.svg | 1 +
.../fontawesome/svgs/solid/dice-five.svg | 1 +
.../fontawesome/svgs/solid/dice-four.svg | 1 +
.../fontawesome/svgs/solid/dice-one.svg | 1 +
.../fontawesome/svgs/solid/dice-six.svg | 1 +
.../fontawesome/svgs/solid/dice-three.svg | 1 +
.../fontawesome/svgs/solid/dice-two.svg | 1 +
.../plugins/fontawesome/svgs/solid/dice.svg | 1 +
.../svgs/solid/digital-tachograph.svg | 1 +
.../fontawesome/svgs/solid/directions.svg | 1 +
.../fontawesome/svgs/solid/disease.svg | 1 +
.../plugins/fontawesome/svgs/solid/divide.svg | 1 +
.../plugins/fontawesome/svgs/solid/dizzy.svg | 1 +
.../plugins/fontawesome/svgs/solid/dna.svg | 1 +
.../plugins/fontawesome/svgs/solid/dog.svg | 1 +
.../fontawesome/svgs/solid/dollar-sign.svg | 1 +
.../fontawesome/svgs/solid/dolly-flatbed.svg | 1 +
.../plugins/fontawesome/svgs/solid/dolly.svg | 1 +
.../plugins/fontawesome/svgs/solid/donate.svg | 1 +
.../fontawesome/svgs/solid/door-closed.svg | 1 +
.../fontawesome/svgs/solid/door-open.svg | 1 +
.../fontawesome/svgs/solid/dot-circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/dove.svg | 1 +
.../fontawesome/svgs/solid/download.svg | 1 +
.../svgs/solid/drafting-compass.svg | 1 +
.../plugins/fontawesome/svgs/solid/dragon.svg | 1 +
.../fontawesome/svgs/solid/draw-polygon.svg | 1 +
.../fontawesome/svgs/solid/drum-steelpan.svg | 1 +
.../plugins/fontawesome/svgs/solid/drum.svg | 1 +
.../fontawesome/svgs/solid/drumstick-bite.svg | 1 +
.../fontawesome/svgs/solid/dumbbell.svg | 1 +
.../fontawesome/svgs/solid/dumpster-fire.svg | 1 +
.../fontawesome/svgs/solid/dumpster.svg | 1 +
.../fontawesome/svgs/solid/dungeon.svg | 1 +
.../plugins/fontawesome/svgs/solid/edit.svg | 1 +
.../plugins/fontawesome/svgs/solid/egg.svg | 1 +
.../plugins/fontawesome/svgs/solid/eject.svg | 1 +
.../fontawesome/svgs/solid/ellipsis-h.svg | 1 +
.../fontawesome/svgs/solid/ellipsis-v.svg | 1 +
.../svgs/solid/envelope-open-text.svg | 1 +
.../fontawesome/svgs/solid/envelope-open.svg | 1 +
.../svgs/solid/envelope-square.svg | 1 +
.../fontawesome/svgs/solid/envelope.svg | 1 +
.../plugins/fontawesome/svgs/solid/equals.svg | 1 +
.../plugins/fontawesome/svgs/solid/eraser.svg | 1 +
.../fontawesome/svgs/solid/ethernet.svg | 1 +
.../fontawesome/svgs/solid/euro-sign.svg | 1 +
.../fontawesome/svgs/solid/exchange-alt.svg | 1 +
.../svgs/solid/exclamation-circle.svg | 1 +
.../svgs/solid/exclamation-triangle.svg | 1 +
.../fontawesome/svgs/solid/exclamation.svg | 1 +
.../fontawesome/svgs/solid/expand-alt.svg | 1 +
.../svgs/solid/expand-arrows-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/expand.svg | 1 +
.../svgs/solid/external-link-alt.svg | 1 +
.../svgs/solid/external-link-square-alt.svg | 1 +
.../fontawesome/svgs/solid/eye-dropper.svg | 1 +
.../fontawesome/svgs/solid/eye-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/eye.svg | 1 +
.../plugins/fontawesome/svgs/solid/fan.svg | 1 +
.../fontawesome/svgs/solid/fast-backward.svg | 1 +
.../fontawesome/svgs/solid/fast-forward.svg | 1 +
.../plugins/fontawesome/svgs/solid/faucet.svg | 1 +
.../plugins/fontawesome/svgs/solid/fax.svg | 1 +
.../fontawesome/svgs/solid/feather-alt.svg | 1 +
.../fontawesome/svgs/solid/feather.svg | 1 +
.../plugins/fontawesome/svgs/solid/female.svg | 1 +
.../fontawesome/svgs/solid/fighter-jet.svg | 1 +
.../fontawesome/svgs/solid/file-alt.svg | 1 +
.../fontawesome/svgs/solid/file-archive.svg | 1 +
.../fontawesome/svgs/solid/file-audio.svg | 1 +
.../fontawesome/svgs/solid/file-code.svg | 1 +
.../fontawesome/svgs/solid/file-contract.svg | 1 +
.../fontawesome/svgs/solid/file-csv.svg | 1 +
.../fontawesome/svgs/solid/file-download.svg | 1 +
.../fontawesome/svgs/solid/file-excel.svg | 1 +
.../fontawesome/svgs/solid/file-export.svg | 1 +
.../fontawesome/svgs/solid/file-image.svg | 1 +
.../fontawesome/svgs/solid/file-import.svg | 1 +
.../svgs/solid/file-invoice-dollar.svg | 1 +
.../fontawesome/svgs/solid/file-invoice.svg | 1 +
.../svgs/solid/file-medical-alt.svg | 1 +
.../fontawesome/svgs/solid/file-medical.svg | 1 +
.../fontawesome/svgs/solid/file-pdf.svg | 1 +
.../svgs/solid/file-powerpoint.svg | 1 +
.../svgs/solid/file-prescription.svg | 1 +
.../fontawesome/svgs/solid/file-signature.svg | 1 +
.../fontawesome/svgs/solid/file-upload.svg | 1 +
.../fontawesome/svgs/solid/file-video.svg | 1 +
.../fontawesome/svgs/solid/file-word.svg | 1 +
.../plugins/fontawesome/svgs/solid/file.svg | 1 +
.../fontawesome/svgs/solid/fill-drip.svg | 1 +
.../plugins/fontawesome/svgs/solid/fill.svg | 1 +
.../plugins/fontawesome/svgs/solid/film.svg | 1 +
.../plugins/fontawesome/svgs/solid/filter.svg | 1 +
.../fontawesome/svgs/solid/fingerprint.svg | 1 +
.../fontawesome/svgs/solid/fire-alt.svg | 1 +
.../svgs/solid/fire-extinguisher.svg | 1 +
.../plugins/fontawesome/svgs/solid/fire.svg | 1 +
.../fontawesome/svgs/solid/first-aid.svg | 1 +
.../plugins/fontawesome/svgs/solid/fish.svg | 1 +
.../fontawesome/svgs/solid/fist-raised.svg | 1 +
.../fontawesome/svgs/solid/flag-checkered.svg | 1 +
.../fontawesome/svgs/solid/flag-usa.svg | 1 +
.../plugins/fontawesome/svgs/solid/flag.svg | 1 +
.../plugins/fontawesome/svgs/solid/flask.svg | 1 +
.../fontawesome/svgs/solid/flushed.svg | 1 +
.../fontawesome/svgs/solid/folder-minus.svg | 1 +
.../fontawesome/svgs/solid/folder-open.svg | 1 +
.../fontawesome/svgs/solid/folder-plus.svg | 1 +
.../plugins/fontawesome/svgs/solid/folder.svg | 1 +
.../svgs/solid/font-awesome-logo-full.svg | 1 +
.../plugins/fontawesome/svgs/solid/font.svg | 1 +
.../fontawesome/svgs/solid/football-ball.svg | 1 +
.../fontawesome/svgs/solid/forward.svg | 1 +
.../plugins/fontawesome/svgs/solid/frog.svg | 1 +
.../fontawesome/svgs/solid/frown-open.svg | 1 +
.../plugins/fontawesome/svgs/solid/frown.svg | 1 +
.../fontawesome/svgs/solid/funnel-dollar.svg | 1 +
.../plugins/fontawesome/svgs/solid/futbol.svg | 1 +
.../fontawesome/svgs/solid/gamepad.svg | 1 +
.../fontawesome/svgs/solid/gas-pump.svg | 1 +
.../plugins/fontawesome/svgs/solid/gavel.svg | 1 +
.../plugins/fontawesome/svgs/solid/gem.svg | 1 +
.../fontawesome/svgs/solid/genderless.svg | 1 +
.../plugins/fontawesome/svgs/solid/ghost.svg | 1 +
.../plugins/fontawesome/svgs/solid/gift.svg | 1 +
.../plugins/fontawesome/svgs/solid/gifts.svg | 1 +
.../fontawesome/svgs/solid/glass-cheers.svg | 1 +
.../svgs/solid/glass-martini-alt.svg | 1 +
.../fontawesome/svgs/solid/glass-martini.svg | 1 +
.../fontawesome/svgs/solid/glass-whiskey.svg | 1 +
.../fontawesome/svgs/solid/glasses.svg | 1 +
.../fontawesome/svgs/solid/globe-africa.svg | 1 +
.../fontawesome/svgs/solid/globe-americas.svg | 1 +
.../fontawesome/svgs/solid/globe-asia.svg | 1 +
.../fontawesome/svgs/solid/globe-europe.svg | 1 +
.../plugins/fontawesome/svgs/solid/globe.svg | 1 +
.../fontawesome/svgs/solid/golf-ball.svg | 1 +
.../fontawesome/svgs/solid/gopuram.svg | 1 +
.../fontawesome/svgs/solid/graduation-cap.svg | 1 +
.../svgs/solid/greater-than-equal.svg | 1 +
.../fontawesome/svgs/solid/greater-than.svg | 1 +
.../fontawesome/svgs/solid/grimace.svg | 1 +
.../fontawesome/svgs/solid/grin-alt.svg | 1 +
.../svgs/solid/grin-beam-sweat.svg | 1 +
.../fontawesome/svgs/solid/grin-beam.svg | 1 +
.../fontawesome/svgs/solid/grin-hearts.svg | 1 +
.../svgs/solid/grin-squint-tears.svg | 1 +
.../fontawesome/svgs/solid/grin-squint.svg | 1 +
.../fontawesome/svgs/solid/grin-stars.svg | 1 +
.../fontawesome/svgs/solid/grin-tears.svg | 1 +
.../svgs/solid/grin-tongue-squint.svg | 1 +
.../svgs/solid/grin-tongue-wink.svg | 1 +
.../fontawesome/svgs/solid/grin-tongue.svg | 1 +
.../fontawesome/svgs/solid/grin-wink.svg | 1 +
.../plugins/fontawesome/svgs/solid/grin.svg | 1 +
.../svgs/solid/grip-horizontal.svg | 1 +
.../svgs/solid/grip-lines-vertical.svg | 1 +
.../fontawesome/svgs/solid/grip-lines.svg | 1 +
.../fontawesome/svgs/solid/grip-vertical.svg | 1 +
.../plugins/fontawesome/svgs/solid/guitar.svg | 1 +
.../fontawesome/svgs/solid/h-square.svg | 1 +
.../fontawesome/svgs/solid/hamburger.svg | 1 +
.../plugins/fontawesome/svgs/solid/hammer.svg | 1 +
.../plugins/fontawesome/svgs/solid/hamsa.svg | 1 +
.../svgs/solid/hand-holding-heart.svg | 1 +
.../svgs/solid/hand-holding-medical.svg | 1 +
.../svgs/solid/hand-holding-usd.svg | 1 +
.../svgs/solid/hand-holding-water.svg | 1 +
.../fontawesome/svgs/solid/hand-holding.svg | 1 +
.../fontawesome/svgs/solid/hand-lizard.svg | 1 +
.../svgs/solid/hand-middle-finger.svg | 1 +
.../fontawesome/svgs/solid/hand-paper.svg | 1 +
.../fontawesome/svgs/solid/hand-peace.svg | 1 +
.../svgs/solid/hand-point-down.svg | 1 +
.../svgs/solid/hand-point-left.svg | 1 +
.../svgs/solid/hand-point-right.svg | 1 +
.../fontawesome/svgs/solid/hand-point-up.svg | 1 +
.../fontawesome/svgs/solid/hand-pointer.svg | 1 +
.../fontawesome/svgs/solid/hand-rock.svg | 1 +
.../fontawesome/svgs/solid/hand-scissors.svg | 1 +
.../fontawesome/svgs/solid/hand-sparkles.svg | 1 +
.../fontawesome/svgs/solid/hand-spock.svg | 1 +
.../fontawesome/svgs/solid/hands-helping.svg | 1 +
.../fontawesome/svgs/solid/hands-wash.svg | 1 +
.../plugins/fontawesome/svgs/solid/hands.svg | 1 +
.../svgs/solid/handshake-alt-slash.svg | 1 +
.../svgs/solid/handshake-slash.svg | 1 +
.../fontawesome/svgs/solid/handshake.svg | 1 +
.../fontawesome/svgs/solid/hanukiah.svg | 1 +
.../fontawesome/svgs/solid/hard-hat.svg | 1 +
.../fontawesome/svgs/solid/hashtag.svg | 1 +
.../svgs/solid/hat-cowboy-side.svg | 1 +
.../fontawesome/svgs/solid/hat-cowboy.svg | 1 +
.../fontawesome/svgs/solid/hat-wizard.svg | 1 +
.../plugins/fontawesome/svgs/solid/hdd.svg | 1 +
.../svgs/solid/head-side-cough-slash.svg | 1 +
.../svgs/solid/head-side-cough.svg | 1 +
.../fontawesome/svgs/solid/head-side-mask.svg | 1 +
.../svgs/solid/head-side-virus.svg | 1 +
.../fontawesome/svgs/solid/heading.svg | 1 +
.../fontawesome/svgs/solid/headphones-alt.svg | 1 +
.../fontawesome/svgs/solid/headphones.svg | 1 +
.../fontawesome/svgs/solid/headset.svg | 1 +
.../fontawesome/svgs/solid/heart-broken.svg | 1 +
.../plugins/fontawesome/svgs/solid/heart.svg | 1 +
.../fontawesome/svgs/solid/heartbeat.svg | 1 +
.../fontawesome/svgs/solid/helicopter.svg | 1 +
.../fontawesome/svgs/solid/highlighter.svg | 1 +
.../plugins/fontawesome/svgs/solid/hiking.svg | 1 +
.../plugins/fontawesome/svgs/solid/hippo.svg | 1 +
.../fontawesome/svgs/solid/history.svg | 1 +
.../fontawesome/svgs/solid/hockey-puck.svg | 1 +
.../fontawesome/svgs/solid/holly-berry.svg | 1 +
.../plugins/fontawesome/svgs/solid/home.svg | 1 +
.../fontawesome/svgs/solid/horse-head.svg | 1 +
.../plugins/fontawesome/svgs/solid/horse.svg | 1 +
.../fontawesome/svgs/solid/hospital-alt.svg | 1 +
.../svgs/solid/hospital-symbol.svg | 1 +
.../fontawesome/svgs/solid/hospital-user.svg | 1 +
.../fontawesome/svgs/solid/hospital.svg | 1 +
.../fontawesome/svgs/solid/hot-tub.svg | 1 +
.../plugins/fontawesome/svgs/solid/hotdog.svg | 1 +
.../plugins/fontawesome/svgs/solid/hotel.svg | 1 +
.../fontawesome/svgs/solid/hourglass-end.svg | 1 +
.../fontawesome/svgs/solid/hourglass-half.svg | 1 +
.../svgs/solid/hourglass-start.svg | 1 +
.../fontawesome/svgs/solid/hourglass.svg | 1 +
.../fontawesome/svgs/solid/house-damage.svg | 1 +
.../fontawesome/svgs/solid/house-user.svg | 1 +
.../fontawesome/svgs/solid/hryvnia.svg | 1 +
.../fontawesome/svgs/solid/i-cursor.svg | 1 +
.../fontawesome/svgs/solid/ice-cream.svg | 1 +
.../fontawesome/svgs/solid/icicles.svg | 1 +
.../plugins/fontawesome/svgs/solid/icons.svg | 1 +
.../fontawesome/svgs/solid/id-badge.svg | 1 +
.../fontawesome/svgs/solid/id-card-alt.svg | 1 +
.../fontawesome/svgs/solid/id-card.svg | 1 +
.../plugins/fontawesome/svgs/solid/igloo.svg | 1 +
.../plugins/fontawesome/svgs/solid/image.svg | 1 +
.../plugins/fontawesome/svgs/solid/images.svg | 1 +
.../plugins/fontawesome/svgs/solid/inbox.svg | 1 +
.../plugins/fontawesome/svgs/solid/indent.svg | 1 +
.../fontawesome/svgs/solid/industry.svg | 1 +
.../fontawesome/svgs/solid/infinity.svg | 1 +
.../fontawesome/svgs/solid/info-circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/info.svg | 1 +
.../plugins/fontawesome/svgs/solid/italic.svg | 1 +
.../plugins/fontawesome/svgs/solid/jedi.svg | 1 +
.../plugins/fontawesome/svgs/solid/joint.svg | 1 +
.../fontawesome/svgs/solid/journal-whills.svg | 1 +
.../plugins/fontawesome/svgs/solid/kaaba.svg | 1 +
.../plugins/fontawesome/svgs/solid/key.svg | 1 +
.../fontawesome/svgs/solid/keyboard.svg | 1 +
.../plugins/fontawesome/svgs/solid/khanda.svg | 1 +
.../fontawesome/svgs/solid/kiss-beam.svg | 1 +
.../svgs/solid/kiss-wink-heart.svg | 1 +
.../plugins/fontawesome/svgs/solid/kiss.svg | 1 +
.../fontawesome/svgs/solid/kiwi-bird.svg | 1 +
.../fontawesome/svgs/solid/landmark.svg | 1 +
.../fontawesome/svgs/solid/language.svg | 1 +
.../fontawesome/svgs/solid/laptop-code.svg | 1 +
.../fontawesome/svgs/solid/laptop-house.svg | 1 +
.../fontawesome/svgs/solid/laptop-medical.svg | 1 +
.../plugins/fontawesome/svgs/solid/laptop.svg | 1 +
.../fontawesome/svgs/solid/laugh-beam.svg | 1 +
.../fontawesome/svgs/solid/laugh-squint.svg | 1 +
.../fontawesome/svgs/solid/laugh-wink.svg | 1 +
.../plugins/fontawesome/svgs/solid/laugh.svg | 1 +
.../fontawesome/svgs/solid/layer-group.svg | 1 +
.../plugins/fontawesome/svgs/solid/leaf.svg | 1 +
.../plugins/fontawesome/svgs/solid/lemon.svg | 1 +
.../svgs/solid/less-than-equal.svg | 1 +
.../fontawesome/svgs/solid/less-than.svg | 1 +
.../fontawesome/svgs/solid/level-down-alt.svg | 1 +
.../fontawesome/svgs/solid/level-up-alt.svg | 1 +
.../fontawesome/svgs/solid/life-ring.svg | 1 +
.../fontawesome/svgs/solid/lightbulb.svg | 1 +
.../plugins/fontawesome/svgs/solid/link.svg | 1 +
.../fontawesome/svgs/solid/lira-sign.svg | 1 +
.../fontawesome/svgs/solid/list-alt.svg | 1 +
.../fontawesome/svgs/solid/list-ol.svg | 1 +
.../fontawesome/svgs/solid/list-ul.svg | 1 +
.../plugins/fontawesome/svgs/solid/list.svg | 1 +
.../fontawesome/svgs/solid/location-arrow.svg | 1 +
.../fontawesome/svgs/solid/lock-open.svg | 1 +
.../plugins/fontawesome/svgs/solid/lock.svg | 1 +
.../svgs/solid/long-arrow-alt-down.svg | 1 +
.../svgs/solid/long-arrow-alt-left.svg | 1 +
.../svgs/solid/long-arrow-alt-right.svg | 1 +
.../svgs/solid/long-arrow-alt-up.svg | 1 +
.../fontawesome/svgs/solid/low-vision.svg | 1 +
.../fontawesome/svgs/solid/luggage-cart.svg | 1 +
.../fontawesome/svgs/solid/lungs-virus.svg | 1 +
.../plugins/fontawesome/svgs/solid/lungs.svg | 1 +
.../plugins/fontawesome/svgs/solid/magic.svg | 1 +
.../plugins/fontawesome/svgs/solid/magnet.svg | 1 +
.../fontawesome/svgs/solid/mail-bulk.svg | 1 +
.../plugins/fontawesome/svgs/solid/male.svg | 1 +
.../fontawesome/svgs/solid/map-marked-alt.svg | 1 +
.../fontawesome/svgs/solid/map-marked.svg | 1 +
.../fontawesome/svgs/solid/map-marker-alt.svg | 1 +
.../fontawesome/svgs/solid/map-marker.svg | 1 +
.../fontawesome/svgs/solid/map-pin.svg | 1 +
.../fontawesome/svgs/solid/map-signs.svg | 1 +
.../plugins/fontawesome/svgs/solid/map.svg | 1 +
.../plugins/fontawesome/svgs/solid/marker.svg | 1 +
.../fontawesome/svgs/solid/mars-double.svg | 1 +
.../fontawesome/svgs/solid/mars-stroke-h.svg | 1 +
.../fontawesome/svgs/solid/mars-stroke-v.svg | 1 +
.../fontawesome/svgs/solid/mars-stroke.svg | 1 +
.../plugins/fontawesome/svgs/solid/mars.svg | 1 +
.../plugins/fontawesome/svgs/solid/mask.svg | 1 +
.../plugins/fontawesome/svgs/solid/medal.svg | 1 +
.../plugins/fontawesome/svgs/solid/medkit.svg | 1 +
.../fontawesome/svgs/solid/meh-blank.svg | 1 +
.../svgs/solid/meh-rolling-eyes.svg | 1 +
.../plugins/fontawesome/svgs/solid/meh.svg | 1 +
.../plugins/fontawesome/svgs/solid/memory.svg | 1 +
.../fontawesome/svgs/solid/menorah.svg | 1 +
.../fontawesome/svgs/solid/mercury.svg | 1 +
.../plugins/fontawesome/svgs/solid/meteor.svg | 1 +
.../fontawesome/svgs/solid/microchip.svg | 1 +
.../svgs/solid/microphone-alt-slash.svg | 1 +
.../fontawesome/svgs/solid/microphone-alt.svg | 1 +
.../svgs/solid/microphone-slash.svg | 1 +
.../fontawesome/svgs/solid/microphone.svg | 1 +
.../fontawesome/svgs/solid/microscope.svg | 1 +
.../fontawesome/svgs/solid/minus-circle.svg | 1 +
.../fontawesome/svgs/solid/minus-square.svg | 1 +
.../plugins/fontawesome/svgs/solid/minus.svg | 1 +
.../plugins/fontawesome/svgs/solid/mitten.svg | 1 +
.../fontawesome/svgs/solid/mobile-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/mobile.svg | 1 +
.../fontawesome/svgs/solid/money-bill-alt.svg | 1 +
.../svgs/solid/money-bill-wave-alt.svg | 1 +
.../svgs/solid/money-bill-wave.svg | 1 +
.../fontawesome/svgs/solid/money-bill.svg | 1 +
.../svgs/solid/money-check-alt.svg | 1 +
.../fontawesome/svgs/solid/money-check.svg | 1 +
.../fontawesome/svgs/solid/monument.svg | 1 +
.../plugins/fontawesome/svgs/solid/moon.svg | 1 +
.../fontawesome/svgs/solid/mortar-pestle.svg | 1 +
.../plugins/fontawesome/svgs/solid/mosque.svg | 1 +
.../fontawesome/svgs/solid/motorcycle.svg | 1 +
.../fontawesome/svgs/solid/mountain.svg | 1 +
.../fontawesome/svgs/solid/mouse-pointer.svg | 1 +
.../plugins/fontawesome/svgs/solid/mouse.svg | 1 +
.../fontawesome/svgs/solid/mug-hot.svg | 1 +
.../plugins/fontawesome/svgs/solid/music.svg | 1 +
.../fontawesome/svgs/solid/network-wired.svg | 1 +
.../plugins/fontawesome/svgs/solid/neuter.svg | 1 +
.../fontawesome/svgs/solid/newspaper.svg | 1 +
.../fontawesome/svgs/solid/not-equal.svg | 1 +
.../fontawesome/svgs/solid/notes-medical.svg | 1 +
.../fontawesome/svgs/solid/object-group.svg | 1 +
.../fontawesome/svgs/solid/object-ungroup.svg | 1 +
.../fontawesome/svgs/solid/oil-can.svg | 1 +
.../plugins/fontawesome/svgs/solid/om.svg | 1 +
.../plugins/fontawesome/svgs/solid/otter.svg | 1 +
.../fontawesome/svgs/solid/outdent.svg | 1 +
.../plugins/fontawesome/svgs/solid/pager.svg | 1 +
.../fontawesome/svgs/solid/paint-brush.svg | 1 +
.../fontawesome/svgs/solid/paint-roller.svg | 1 +
.../fontawesome/svgs/solid/palette.svg | 1 +
.../plugins/fontawesome/svgs/solid/pallet.svg | 1 +
.../fontawesome/svgs/solid/paper-plane.svg | 1 +
.../fontawesome/svgs/solid/paperclip.svg | 1 +
.../fontawesome/svgs/solid/parachute-box.svg | 1 +
.../fontawesome/svgs/solid/paragraph.svg | 1 +
.../fontawesome/svgs/solid/parking.svg | 1 +
.../fontawesome/svgs/solid/passport.svg | 1 +
.../fontawesome/svgs/solid/pastafarianism.svg | 1 +
.../plugins/fontawesome/svgs/solid/paste.svg | 1 +
.../fontawesome/svgs/solid/pause-circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/pause.svg | 1 +
.../plugins/fontawesome/svgs/solid/paw.svg | 1 +
.../plugins/fontawesome/svgs/solid/peace.svg | 1 +
.../fontawesome/svgs/solid/pen-alt.svg | 1 +
.../fontawesome/svgs/solid/pen-fancy.svg | 1 +
.../fontawesome/svgs/solid/pen-nib.svg | 1 +
.../fontawesome/svgs/solid/pen-square.svg | 1 +
.../plugins/fontawesome/svgs/solid/pen.svg | 1 +
.../fontawesome/svgs/solid/pencil-alt.svg | 1 +
.../fontawesome/svgs/solid/pencil-ruler.svg | 1 +
.../fontawesome/svgs/solid/people-arrows.svg | 1 +
.../fontawesome/svgs/solid/people-carry.svg | 1 +
.../fontawesome/svgs/solid/pepper-hot.svg | 1 +
.../fontawesome/svgs/solid/percent.svg | 1 +
.../fontawesome/svgs/solid/percentage.svg | 1 +
.../fontawesome/svgs/solid/person-booth.svg | 1 +
.../fontawesome/svgs/solid/phone-alt.svg | 1 +
.../fontawesome/svgs/solid/phone-slash.svg | 1 +
.../svgs/solid/phone-square-alt.svg | 1 +
.../fontawesome/svgs/solid/phone-square.svg | 1 +
.../fontawesome/svgs/solid/phone-volume.svg | 1 +
.../plugins/fontawesome/svgs/solid/phone.svg | 1 +
.../fontawesome/svgs/solid/photo-video.svg | 1 +
.../fontawesome/svgs/solid/piggy-bank.svg | 1 +
.../plugins/fontawesome/svgs/solid/pills.svg | 1 +
.../fontawesome/svgs/solid/pizza-slice.svg | 1 +
.../svgs/solid/place-of-worship.svg | 1 +
.../fontawesome/svgs/solid/plane-arrival.svg | 1 +
.../svgs/solid/plane-departure.svg | 1 +
.../fontawesome/svgs/solid/plane-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/plane.svg | 1 +
.../fontawesome/svgs/solid/play-circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/play.svg | 1 +
.../plugins/fontawesome/svgs/solid/plug.svg | 1 +
.../fontawesome/svgs/solid/plus-circle.svg | 1 +
.../fontawesome/svgs/solid/plus-square.svg | 1 +
.../plugins/fontawesome/svgs/solid/plus.svg | 1 +
.../fontawesome/svgs/solid/podcast.svg | 1 +
.../plugins/fontawesome/svgs/solid/poll-h.svg | 1 +
.../plugins/fontawesome/svgs/solid/poll.svg | 1 +
.../fontawesome/svgs/solid/poo-storm.svg | 1 +
.../plugins/fontawesome/svgs/solid/poo.svg | 1 +
.../plugins/fontawesome/svgs/solid/poop.svg | 1 +
.../fontawesome/svgs/solid/portrait.svg | 1 +
.../fontawesome/svgs/solid/pound-sign.svg | 1 +
.../fontawesome/svgs/solid/power-off.svg | 1 +
.../plugins/fontawesome/svgs/solid/pray.svg | 1 +
.../fontawesome/svgs/solid/praying-hands.svg | 1 +
.../svgs/solid/prescription-bottle-alt.svg | 1 +
.../svgs/solid/prescription-bottle.svg | 1 +
.../fontawesome/svgs/solid/prescription.svg | 1 +
.../plugins/fontawesome/svgs/solid/print.svg | 1 +
.../fontawesome/svgs/solid/procedures.svg | 1 +
.../svgs/solid/project-diagram.svg | 1 +
.../fontawesome/svgs/solid/pump-medical.svg | 1 +
.../fontawesome/svgs/solid/pump-soap.svg | 1 +
.../fontawesome/svgs/solid/puzzle-piece.svg | 1 +
.../plugins/fontawesome/svgs/solid/qrcode.svg | 1 +
.../svgs/solid/question-circle.svg | 1 +
.../fontawesome/svgs/solid/question.svg | 1 +
.../fontawesome/svgs/solid/quidditch.svg | 1 +
.../fontawesome/svgs/solid/quote-left.svg | 1 +
.../fontawesome/svgs/solid/quote-right.svg | 1 +
.../plugins/fontawesome/svgs/solid/quran.svg | 1 +
.../fontawesome/svgs/solid/radiation-alt.svg | 1 +
.../fontawesome/svgs/solid/radiation.svg | 1 +
.../fontawesome/svgs/solid/rainbow.svg | 1 +
.../plugins/fontawesome/svgs/solid/random.svg | 1 +
.../fontawesome/svgs/solid/receipt.svg | 1 +
.../fontawesome/svgs/solid/record-vinyl.svg | 1 +
.../fontawesome/svgs/solid/recycle.svg | 1 +
.../fontawesome/svgs/solid/redo-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/redo.svg | 1 +
.../fontawesome/svgs/solid/registered.svg | 1 +
.../fontawesome/svgs/solid/remove-format.svg | 1 +
.../fontawesome/svgs/solid/reply-all.svg | 1 +
.../plugins/fontawesome/svgs/solid/reply.svg | 1 +
.../fontawesome/svgs/solid/republican.svg | 1 +
.../fontawesome/svgs/solid/restroom.svg | 1 +
.../fontawesome/svgs/solid/retweet.svg | 1 +
.../plugins/fontawesome/svgs/solid/ribbon.svg | 1 +
.../plugins/fontawesome/svgs/solid/ring.svg | 1 +
.../plugins/fontawesome/svgs/solid/road.svg | 1 +
.../plugins/fontawesome/svgs/solid/robot.svg | 1 +
.../plugins/fontawesome/svgs/solid/rocket.svg | 1 +
.../plugins/fontawesome/svgs/solid/route.svg | 1 +
.../fontawesome/svgs/solid/rss-square.svg | 1 +
.../plugins/fontawesome/svgs/solid/rss.svg | 1 +
.../fontawesome/svgs/solid/ruble-sign.svg | 1 +
.../fontawesome/svgs/solid/ruler-combined.svg | 1 +
.../svgs/solid/ruler-horizontal.svg | 1 +
.../fontawesome/svgs/solid/ruler-vertical.svg | 1 +
.../plugins/fontawesome/svgs/solid/ruler.svg | 1 +
.../fontawesome/svgs/solid/running.svg | 1 +
.../fontawesome/svgs/solid/rupee-sign.svg | 1 +
.../fontawesome/svgs/solid/sad-cry.svg | 1 +
.../fontawesome/svgs/solid/sad-tear.svg | 1 +
.../fontawesome/svgs/solid/satellite-dish.svg | 1 +
.../fontawesome/svgs/solid/satellite.svg | 1 +
.../plugins/fontawesome/svgs/solid/save.svg | 1 +
.../plugins/fontawesome/svgs/solid/school.svg | 1 +
.../fontawesome/svgs/solid/screwdriver.svg | 1 +
.../plugins/fontawesome/svgs/solid/scroll.svg | 1 +
.../fontawesome/svgs/solid/sd-card.svg | 1 +
.../fontawesome/svgs/solid/search-dollar.svg | 1 +
.../svgs/solid/search-location.svg | 1 +
.../fontawesome/svgs/solid/search-minus.svg | 1 +
.../fontawesome/svgs/solid/search-plus.svg | 1 +
.../plugins/fontawesome/svgs/solid/search.svg | 1 +
.../fontawesome/svgs/solid/seedling.svg | 1 +
.../plugins/fontawesome/svgs/solid/server.svg | 1 +
.../plugins/fontawesome/svgs/solid/shapes.svg | 1 +
.../svgs/solid/share-alt-square.svg | 1 +
.../fontawesome/svgs/solid/share-alt.svg | 1 +
.../fontawesome/svgs/solid/share-square.svg | 1 +
.../plugins/fontawesome/svgs/solid/share.svg | 1 +
.../fontawesome/svgs/solid/shekel-sign.svg | 1 +
.../fontawesome/svgs/solid/shield-alt.svg | 1 +
.../fontawesome/svgs/solid/shield-virus.svg | 1 +
.../plugins/fontawesome/svgs/solid/ship.svg | 1 +
.../fontawesome/svgs/solid/shipping-fast.svg | 1 +
.../fontawesome/svgs/solid/shoe-prints.svg | 1 +
.../fontawesome/svgs/solid/shopping-bag.svg | 1 +
.../svgs/solid/shopping-basket.svg | 1 +
.../fontawesome/svgs/solid/shopping-cart.svg | 1 +
.../plugins/fontawesome/svgs/solid/shower.svg | 1 +
.../fontawesome/svgs/solid/shuttle-van.svg | 1 +
.../fontawesome/svgs/solid/sign-in-alt.svg | 1 +
.../fontawesome/svgs/solid/sign-language.svg | 1 +
.../fontawesome/svgs/solid/sign-out-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/sign.svg | 1 +
.../plugins/fontawesome/svgs/solid/signal.svg | 1 +
.../fontawesome/svgs/solid/signature.svg | 1 +
.../fontawesome/svgs/solid/sim-card.svg | 1 +
.../plugins/fontawesome/svgs/solid/sink.svg | 1 +
.../fontawesome/svgs/solid/sitemap.svg | 1 +
.../fontawesome/svgs/solid/skating.svg | 1 +
.../fontawesome/svgs/solid/skiing-nordic.svg | 1 +
.../plugins/fontawesome/svgs/solid/skiing.svg | 1 +
.../svgs/solid/skull-crossbones.svg | 1 +
.../plugins/fontawesome/svgs/solid/skull.svg | 1 +
.../plugins/fontawesome/svgs/solid/slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/sleigh.svg | 1 +
.../fontawesome/svgs/solid/sliders-h.svg | 1 +
.../fontawesome/svgs/solid/smile-beam.svg | 1 +
.../fontawesome/svgs/solid/smile-wink.svg | 1 +
.../plugins/fontawesome/svgs/solid/smile.svg | 1 +
.../plugins/fontawesome/svgs/solid/smog.svg | 1 +
.../fontawesome/svgs/solid/smoking-ban.svg | 1 +
.../fontawesome/svgs/solid/smoking.svg | 1 +
.../plugins/fontawesome/svgs/solid/sms.svg | 1 +
.../fontawesome/svgs/solid/snowboarding.svg | 1 +
.../fontawesome/svgs/solid/snowflake.svg | 1 +
.../fontawesome/svgs/solid/snowman.svg | 1 +
.../fontawesome/svgs/solid/snowplow.svg | 1 +
.../plugins/fontawesome/svgs/solid/soap.svg | 1 +
.../plugins/fontawesome/svgs/solid/socks.svg | 1 +
.../fontawesome/svgs/solid/solar-panel.svg | 1 +
.../svgs/solid/sort-alpha-down-alt.svg | 1 +
.../svgs/solid/sort-alpha-down.svg | 1 +
.../svgs/solid/sort-alpha-up-alt.svg | 1 +
.../fontawesome/svgs/solid/sort-alpha-up.svg | 1 +
.../svgs/solid/sort-amount-down-alt.svg | 1 +
.../svgs/solid/sort-amount-down.svg | 1 +
.../svgs/solid/sort-amount-up-alt.svg | 1 +
.../fontawesome/svgs/solid/sort-amount-up.svg | 1 +
.../fontawesome/svgs/solid/sort-down.svg | 1 +
.../svgs/solid/sort-numeric-down-alt.svg | 1 +
.../svgs/solid/sort-numeric-down.svg | 1 +
.../svgs/solid/sort-numeric-up-alt.svg | 1 +
.../svgs/solid/sort-numeric-up.svg | 1 +
.../fontawesome/svgs/solid/sort-up.svg | 1 +
.../plugins/fontawesome/svgs/solid/sort.svg | 1 +
.../plugins/fontawesome/svgs/solid/spa.svg | 1 +
.../fontawesome/svgs/solid/space-shuttle.svg | 1 +
.../fontawesome/svgs/solid/spell-check.svg | 1 +
.../plugins/fontawesome/svgs/solid/spider.svg | 1 +
.../fontawesome/svgs/solid/spinner.svg | 1 +
.../fontawesome/svgs/solid/splotch.svg | 1 +
.../fontawesome/svgs/solid/spray-can.svg | 1 +
.../fontawesome/svgs/solid/square-full.svg | 1 +
.../svgs/solid/square-root-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/square.svg | 1 +
.../plugins/fontawesome/svgs/solid/stamp.svg | 1 +
.../svgs/solid/star-and-crescent.svg | 1 +
.../fontawesome/svgs/solid/star-half-alt.svg | 1 +
.../fontawesome/svgs/solid/star-half.svg | 1 +
.../fontawesome/svgs/solid/star-of-david.svg | 1 +
.../fontawesome/svgs/solid/star-of-life.svg | 1 +
.../plugins/fontawesome/svgs/solid/star.svg | 1 +
.../fontawesome/svgs/solid/step-backward.svg | 1 +
.../fontawesome/svgs/solid/step-forward.svg | 1 +
.../fontawesome/svgs/solid/stethoscope.svg | 1 +
.../fontawesome/svgs/solid/sticky-note.svg | 1 +
.../fontawesome/svgs/solid/stop-circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/stop.svg | 1 +
.../fontawesome/svgs/solid/stopwatch-20.svg | 1 +
.../fontawesome/svgs/solid/stopwatch.svg | 1 +
.../svgs/solid/store-alt-slash.svg | 1 +
.../fontawesome/svgs/solid/store-alt.svg | 1 +
.../fontawesome/svgs/solid/store-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/store.svg | 1 +
.../plugins/fontawesome/svgs/solid/stream.svg | 1 +
.../fontawesome/svgs/solid/street-view.svg | 1 +
.../fontawesome/svgs/solid/strikethrough.svg | 1 +
.../fontawesome/svgs/solid/stroopwafel.svg | 1 +
.../fontawesome/svgs/solid/subscript.svg | 1 +
.../plugins/fontawesome/svgs/solid/subway.svg | 1 +
.../svgs/solid/suitcase-rolling.svg | 1 +
.../fontawesome/svgs/solid/suitcase.svg | 1 +
.../plugins/fontawesome/svgs/solid/sun.svg | 1 +
.../fontawesome/svgs/solid/superscript.svg | 1 +
.../fontawesome/svgs/solid/surprise.svg | 1 +
.../fontawesome/svgs/solid/swatchbook.svg | 1 +
.../fontawesome/svgs/solid/swimmer.svg | 1 +
.../fontawesome/svgs/solid/swimming-pool.svg | 1 +
.../fontawesome/svgs/solid/synagogue.svg | 1 +
.../fontawesome/svgs/solid/sync-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/sync.svg | 1 +
.../fontawesome/svgs/solid/syringe.svg | 1 +
.../fontawesome/svgs/solid/table-tennis.svg | 1 +
.../plugins/fontawesome/svgs/solid/table.svg | 1 +
.../fontawesome/svgs/solid/tablet-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/tablet.svg | 1 +
.../fontawesome/svgs/solid/tablets.svg | 1 +
.../fontawesome/svgs/solid/tachometer-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/tag.svg | 1 +
.../plugins/fontawesome/svgs/solid/tags.svg | 1 +
.../plugins/fontawesome/svgs/solid/tape.svg | 1 +
.../plugins/fontawesome/svgs/solid/tasks.svg | 1 +
.../plugins/fontawesome/svgs/solid/taxi.svg | 1 +
.../fontawesome/svgs/solid/teeth-open.svg | 1 +
.../plugins/fontawesome/svgs/solid/teeth.svg | 1 +
.../svgs/solid/temperature-high.svg | 1 +
.../svgs/solid/temperature-low.svg | 1 +
.../plugins/fontawesome/svgs/solid/tenge.svg | 1 +
.../fontawesome/svgs/solid/terminal.svg | 1 +
.../fontawesome/svgs/solid/text-height.svg | 1 +
.../fontawesome/svgs/solid/text-width.svg | 1 +
.../fontawesome/svgs/solid/th-large.svg | 1 +
.../fontawesome/svgs/solid/th-list.svg | 1 +
.../plugins/fontawesome/svgs/solid/th.svg | 1 +
.../fontawesome/svgs/solid/theater-masks.svg | 1 +
.../svgs/solid/thermometer-empty.svg | 1 +
.../svgs/solid/thermometer-full.svg | 1 +
.../svgs/solid/thermometer-half.svg | 1 +
.../svgs/solid/thermometer-quarter.svg | 1 +
.../svgs/solid/thermometer-three-quarters.svg | 1 +
.../fontawesome/svgs/solid/thermometer.svg | 1 +
.../fontawesome/svgs/solid/thumbs-down.svg | 1 +
.../fontawesome/svgs/solid/thumbs-up.svg | 1 +
.../fontawesome/svgs/solid/thumbtack.svg | 1 +
.../fontawesome/svgs/solid/ticket-alt.svg | 1 +
.../fontawesome/svgs/solid/times-circle.svg | 1 +
.../plugins/fontawesome/svgs/solid/times.svg | 1 +
.../fontawesome/svgs/solid/tint-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/tint.svg | 1 +
.../plugins/fontawesome/svgs/solid/tired.svg | 1 +
.../fontawesome/svgs/solid/toggle-off.svg | 1 +
.../fontawesome/svgs/solid/toggle-on.svg | 1 +
.../svgs/solid/toilet-paper-slash.svg | 1 +
.../fontawesome/svgs/solid/toilet-paper.svg | 1 +
.../plugins/fontawesome/svgs/solid/toilet.svg | 1 +
.../fontawesome/svgs/solid/toolbox.svg | 1 +
.../plugins/fontawesome/svgs/solid/tools.svg | 1 +
.../plugins/fontawesome/svgs/solid/tooth.svg | 1 +
.../plugins/fontawesome/svgs/solid/torah.svg | 1 +
.../fontawesome/svgs/solid/torii-gate.svg | 1 +
.../fontawesome/svgs/solid/tractor.svg | 1 +
.../fontawesome/svgs/solid/trademark.svg | 1 +
.../fontawesome/svgs/solid/traffic-light.svg | 1 +
.../fontawesome/svgs/solid/trailer.svg | 1 +
.../plugins/fontawesome/svgs/solid/train.svg | 1 +
.../plugins/fontawesome/svgs/solid/tram.svg | 1 +
.../svgs/solid/transgender-alt.svg | 1 +
.../fontawesome/svgs/solid/transgender.svg | 1 +
.../fontawesome/svgs/solid/trash-alt.svg | 1 +
.../svgs/solid/trash-restore-alt.svg | 1 +
.../fontawesome/svgs/solid/trash-restore.svg | 1 +
.../plugins/fontawesome/svgs/solid/trash.svg | 1 +
.../plugins/fontawesome/svgs/solid/tree.svg | 1 +
.../plugins/fontawesome/svgs/solid/trophy.svg | 1 +
.../fontawesome/svgs/solid/truck-loading.svg | 1 +
.../fontawesome/svgs/solid/truck-monster.svg | 1 +
.../fontawesome/svgs/solid/truck-moving.svg | 1 +
.../fontawesome/svgs/solid/truck-pickup.svg | 1 +
.../plugins/fontawesome/svgs/solid/truck.svg | 1 +
.../plugins/fontawesome/svgs/solid/tshirt.svg | 1 +
.../plugins/fontawesome/svgs/solid/tty.svg | 1 +
.../plugins/fontawesome/svgs/solid/tv.svg | 1 +
.../fontawesome/svgs/solid/umbrella-beach.svg | 1 +
.../fontawesome/svgs/solid/umbrella.svg | 1 +
.../fontawesome/svgs/solid/underline.svg | 1 +
.../fontawesome/svgs/solid/undo-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/undo.svg | 1 +
.../svgs/solid/universal-access.svg | 1 +
.../fontawesome/svgs/solid/university.svg | 1 +
.../plugins/fontawesome/svgs/solid/unlink.svg | 1 +
.../fontawesome/svgs/solid/unlock-alt.svg | 1 +
.../plugins/fontawesome/svgs/solid/unlock.svg | 1 +
.../plugins/fontawesome/svgs/solid/upload.svg | 1 +
.../fontawesome/svgs/solid/user-alt-slash.svg | 1 +
.../fontawesome/svgs/solid/user-alt.svg | 1 +
.../fontawesome/svgs/solid/user-astronaut.svg | 1 +
.../fontawesome/svgs/solid/user-check.svg | 1 +
.../fontawesome/svgs/solid/user-circle.svg | 1 +
.../fontawesome/svgs/solid/user-clock.svg | 1 +
.../fontawesome/svgs/solid/user-cog.svg | 1 +
.../fontawesome/svgs/solid/user-edit.svg | 1 +
.../fontawesome/svgs/solid/user-friends.svg | 1 +
.../fontawesome/svgs/solid/user-graduate.svg | 1 +
.../fontawesome/svgs/solid/user-injured.svg | 1 +
.../fontawesome/svgs/solid/user-lock.svg | 1 +
.../fontawesome/svgs/solid/user-md.svg | 1 +
.../fontawesome/svgs/solid/user-minus.svg | 1 +
.../fontawesome/svgs/solid/user-ninja.svg | 1 +
.../fontawesome/svgs/solid/user-nurse.svg | 1 +
.../fontawesome/svgs/solid/user-plus.svg | 1 +
.../fontawesome/svgs/solid/user-secret.svg | 1 +
.../fontawesome/svgs/solid/user-shield.svg | 1 +
.../fontawesome/svgs/solid/user-slash.svg | 1 +
.../fontawesome/svgs/solid/user-tag.svg | 1 +
.../fontawesome/svgs/solid/user-tie.svg | 1 +
.../fontawesome/svgs/solid/user-times.svg | 1 +
.../plugins/fontawesome/svgs/solid/user.svg | 1 +
.../fontawesome/svgs/solid/users-cog.svg | 1 +
.../fontawesome/svgs/solid/users-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/users.svg | 1 +
.../fontawesome/svgs/solid/utensil-spoon.svg | 1 +
.../fontawesome/svgs/solid/utensils.svg | 1 +
.../fontawesome/svgs/solid/vector-square.svg | 1 +
.../fontawesome/svgs/solid/venus-double.svg | 1 +
.../fontawesome/svgs/solid/venus-mars.svg | 1 +
.../plugins/fontawesome/svgs/solid/venus.svg | 1 +
.../fontawesome/svgs/solid/vest-patches.svg | 1 +
.../plugins/fontawesome/svgs/solid/vest.svg | 1 +
.../plugins/fontawesome/svgs/solid/vial.svg | 1 +
.../plugins/fontawesome/svgs/solid/vials.svg | 1 +
.../fontawesome/svgs/solid/video-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/video.svg | 1 +
.../plugins/fontawesome/svgs/solid/vihara.svg | 1 +
.../fontawesome/svgs/solid/virus-slash.svg | 1 +
.../plugins/fontawesome/svgs/solid/virus.svg | 1 +
.../fontawesome/svgs/solid/viruses.svg | 1 +
.../fontawesome/svgs/solid/voicemail.svg | 1 +
.../svgs/solid/volleyball-ball.svg | 1 +
.../fontawesome/svgs/solid/volume-down.svg | 1 +
.../fontawesome/svgs/solid/volume-mute.svg | 1 +
.../fontawesome/svgs/solid/volume-off.svg | 1 +
.../fontawesome/svgs/solid/volume-up.svg | 1 +
.../fontawesome/svgs/solid/vote-yea.svg | 1 +
.../fontawesome/svgs/solid/vr-cardboard.svg | 1 +
.../fontawesome/svgs/solid/walking.svg | 1 +
.../plugins/fontawesome/svgs/solid/wallet.svg | 1 +
.../fontawesome/svgs/solid/warehouse.svg | 1 +
.../plugins/fontawesome/svgs/solid/water.svg | 1 +
.../fontawesome/svgs/solid/wave-square.svg | 1 +
.../fontawesome/svgs/solid/weight-hanging.svg | 1 +
.../plugins/fontawesome/svgs/solid/weight.svg | 1 +
.../fontawesome/svgs/solid/wheelchair.svg | 1 +
.../plugins/fontawesome/svgs/solid/wifi.svg | 1 +
.../plugins/fontawesome/svgs/solid/wind.svg | 1 +
.../fontawesome/svgs/solid/window-close.svg | 1 +
.../svgs/solid/window-maximize.svg | 1 +
.../svgs/solid/window-minimize.svg | 1 +
.../fontawesome/svgs/solid/window-restore.svg | 1 +
.../fontawesome/svgs/solid/wine-bottle.svg | 1 +
.../fontawesome/svgs/solid/wine-glass-alt.svg | 1 +
.../fontawesome/svgs/solid/wine-glass.svg | 1 +
.../fontawesome/svgs/solid/won-sign.svg | 1 +
.../plugins/fontawesome/svgs/solid/wrench.svg | 1 +
.../plugins/fontawesome/svgs/solid/x-ray.svg | 1 +
.../fontawesome/svgs/solid/yen-sign.svg | 1 +
.../fontawesome/svgs/solid/yin-yang.svg | 1 +
.../fontawesome/webfonts/fa-brands-400.eot | Bin 0 -> 134346 bytes
.../fontawesome/webfonts/fa-brands-400.svg | 3717 +
.../fontawesome/webfonts/fa-brands-400.ttf | Bin 0 -> 134040 bytes
.../fontawesome/webfonts/fa-brands-400.woff | Bin 0 -> 90060 bytes
.../fontawesome/webfonts/fa-brands-400.woff2 | Bin 0 -> 76764 bytes
.../fontawesome/webfonts/fa-regular-400.eot | Bin 0 -> 34034 bytes
.../fontawesome/webfonts/fa-regular-400.svg | 801 +
.../fontawesome/webfonts/fa-regular-400.ttf | Bin 0 -> 33736 bytes
.../fontawesome/webfonts/fa-regular-400.woff | Bin 0 -> 16276 bytes
.../fontawesome/webfonts/fa-regular-400.woff2 | Bin 0 -> 13276 bytes
.../fontawesome/webfonts/fa-solid-900.eot | Bin 0 -> 203030 bytes
.../fontawesome/webfonts/fa-solid-900.svg | 5034 ++
.../fontawesome/webfonts/fa-solid-900.ttf | Bin 0 -> 202744 bytes
.../fontawesome/webfonts/fa-solid-900.woff | Bin 0 -> 101652 bytes
.../fontawesome/webfonts/fa-solid-900.woff2 | Bin 0 -> 78196 bytes
templates/assets/plugins/popper.min.js | 5 +
templates/assets/scss/.DS_Store | Bin 0 -> 8196 bytes
templates/assets/scss/app/.DS_Store | Bin 0 -> 6148 bytes
templates/assets/scss/app/_app.scss | 571 +
templates/assets/scss/app/_auth.scss | 150 +
templates/assets/scss/app/_base.scss | 202 +
templates/assets/scss/app/_header.scss | 235 +
templates/assets/scss/app/_mixins.scss | 90 +
templates/assets/scss/app/_sidepanel.scss | 255 +
templates/assets/scss/app/styles.scss | 20 +
templates/assets/scss/bootstrap/.DS_Store | Bin 0 -> 6148 bytes
.../scss/bootstrap/scss/_accordion.scss | 118 +
.../assets/scss/bootstrap/scss/_alert.scss | 57 +
.../assets/scss/bootstrap/scss/_badge.scss | 29 +
.../scss/bootstrap/scss/_breadcrumb.scss | 28 +
.../scss/bootstrap/scss/_button-group.scss | 139 +
.../assets/scss/bootstrap/scss/_buttons.scss | 111 +
.../assets/scss/bootstrap/scss/_card.scss | 215 +
.../assets/scss/bootstrap/scss/_carousel.scss | 229 +
.../assets/scss/bootstrap/scss/_close.scss | 40 +
.../scss/bootstrap/scss/_containers.scss | 41 +
.../assets/scss/bootstrap/scss/_dropdown.scss | 240 +
.../assets/scss/bootstrap/scss/_forms.scss | 9 +
.../scss/bootstrap/scss/_functions.scss | 205 +
.../assets/scss/bootstrap/scss/_grid.scss | 22 +
.../assets/scss/bootstrap/scss/_helpers.scss | 7 +
.../assets/scss/bootstrap/scss/_images.scss | 42 +
.../scss/bootstrap/scss/_list-group.scss | 174 +
.../assets/scss/bootstrap/scss/_mixins.scss | 42 +
.../assets/scss/bootstrap/scss/_modal.scss | 219 +
.../assets/scss/bootstrap/scss/_nav.scss | 139 +
.../assets/scss/bootstrap/scss/_navbar.scss | 306 +
.../scss/bootstrap/scss/_offcanvas.scss | 77 +
.../scss/bootstrap/scss/_pagination.scss | 64 +
.../assets/scss/bootstrap/scss/_popover.scss | 158 +
.../assets/scss/bootstrap/scss/_progress.scss | 48 +
.../assets/scss/bootstrap/scss/_reboot.scss | 621 +
.../assets/scss/bootstrap/scss/_root.scss | 16 +
.../assets/scss/bootstrap/scss/_spinners.scss | 69 +
.../assets/scss/bootstrap/scss/_tables.scss | 151 +
.../assets/scss/bootstrap/scss/_toasts.scss | 51 +
.../assets/scss/bootstrap/scss/_tooltip.scss | 115 +
.../scss/bootstrap/scss/_transitions.scss | 21 +
.../assets/scss/bootstrap/scss/_type.scss | 104 +
.../scss/bootstrap/scss/_utilities.scss | 594 +
.../scss/bootstrap/scss/_variables.scss | 1464 +
.../scss/bootstrap/scss/bootstrap-grid.scss | 65 +
.../scss/bootstrap/scss/bootstrap-reboot.scss | 15 +
.../bootstrap/scss/bootstrap-utilities.scss | 18 +
.../assets/scss/bootstrap/scss/bootstrap.scss | 52 +
.../scss/forms/_floating-labels.scss | 61 +
.../bootstrap/scss/forms/_form-check.scss | 152 +
.../bootstrap/scss/forms/_form-control.scss | 219 +
.../bootstrap/scss/forms/_form-range.scss | 91 +
.../bootstrap/scss/forms/_form-select.scss | 67 +
.../scss/bootstrap/scss/forms/_form-text.scss | 11 +
.../bootstrap/scss/forms/_input-group.scss | 121 +
.../scss/bootstrap/scss/forms/_labels.scss | 36 +
.../bootstrap/scss/forms/_validation.scss | 12 +
.../bootstrap/scss/helpers/_clearfix.scss | 3 +
.../scss/helpers/_colored-links.scss | 12 +
.../bootstrap/scss/helpers/_position.scss | 30 +
.../scss/bootstrap/scss/helpers/_ratio.scss | 26 +
.../scss/helpers/_stretched-link.scss | 15 +
.../scss/helpers/_text-truncation.scss | 7 +
.../scss/helpers/_visually-hidden.scss | 8 +
.../scss/bootstrap/scss/mixins/_alert.scss | 11 +
.../bootstrap/scss/mixins/_border-radius.scss | 78 +
.../bootstrap/scss/mixins/_box-shadow.scss | 18 +
.../bootstrap/scss/mixins/_breakpoints.scss | 127 +
.../scss/bootstrap/scss/mixins/_buttons.scss | 133 +
.../scss/bootstrap/scss/mixins/_caret.scss | 64 +
.../scss/bootstrap/scss/mixins/_clearfix.scss | 9 +
.../bootstrap/scss/mixins/_color-scheme.scss | 7 +
.../bootstrap/scss/mixins/_container.scss | 9 +
.../bootstrap/scss/mixins/_deprecate.scss | 10 +
.../scss/bootstrap/scss/mixins/_forms.scss | 144 +
.../bootstrap/scss/mixins/_gradients.scss | 47 +
.../scss/bootstrap/scss/mixins/_grid.scss | 125 +
.../scss/bootstrap/scss/mixins/_image.scss | 16 +
.../bootstrap/scss/mixins/_list-group.scss | 24 +
.../scss/bootstrap/scss/mixins/_lists.scss | 7 +
.../bootstrap/scss/mixins/_pagination.scss | 31 +
.../bootstrap/scss/mixins/_reset-text.scss | 17 +
.../scss/bootstrap/scss/mixins/_resize.scss | 6 +
.../scss/mixins/_table-variants.scss | 21 +
.../bootstrap/scss/mixins/_text-truncate.scss | 8 +
.../bootstrap/scss/mixins/_transition.scss | 26 +
.../bootstrap/scss/mixins/_utilities.scss | 68 +
.../scss/mixins/_visually-hidden.scss | 29 +
.../scss/bootstrap/scss/utilities/_api.scss | 47 +
.../scss/bootstrap/scss/vendor/_rfs.scss | 312 +
templates/assets/scss/config.codekit3 | 3609 +
templates/assets/scss/portal.scss | 49 +
templates/base.html | 31 +
1882 files changed, 220286 insertions(+), 73 deletions(-)
delete mode 100644 Drag_and_drop_upload/index.html
delete mode 100644 Drag_and_drop_upload/js.js
create mode 100644 templates/assets/.DS_Store
create mode 100644 templates/assets/css/.DS_Store
create mode 100644 templates/assets/css/portal.css
create mode 100644 templates/assets/images/.DS_Store
create mode 100644 templates/assets/images/app-logo.svg
create mode 100644 templates/assets/images/app-logo1.svg
create mode 100644 templates/assets/images/background/background-1.jpg
create mode 100644 templates/assets/images/background/background-1b.jpg
create mode 100644 templates/assets/images/background/background-2.jpg
create mode 100644 templates/assets/images/background/background-3.jpg
create mode 100644 templates/assets/images/doc-thumb-1.jpg
create mode 100644 templates/assets/images/doc-thumb-2.jpg
create mode 100644 templates/assets/images/portal-logo.svg
create mode 100644 templates/assets/images/profiles/profile-1.png
create mode 100644 templates/assets/images/profiles/profile-2.png
create mode 100644 templates/assets/images/profiles/profile-3.png
create mode 100644 templates/assets/images/profiles/profile-4.png
create mode 100644 templates/assets/images/profiles/profile-5.png
create mode 100644 templates/assets/images/profiles/profile-6.png
create mode 100644 templates/assets/images/user.png
create mode 100644 templates/assets/images/users/.DS_Store
create mode 100644 templates/assets/images/users/user-1.jpg
create mode 100644 templates/assets/images/users/user-2.jpg
create mode 100644 templates/assets/images/users/user-3.jpg
create mode 100644 templates/assets/images/users/user-4.jpg
create mode 100644 templates/assets/images/users/user-5.jpg
create mode 100644 templates/assets/images/users/user-6.jpg
create mode 100644 templates/assets/images/users/user-7.jpg
create mode 100644 templates/assets/images/users/user-8.jpg
create mode 100644 templates/assets/images/users/user-9.jpg
create mode 100644 templates/assets/js/.DS_Store
create mode 100644 templates/assets/js/app.js
create mode 100644 templates/assets/js/charts-demo.js
create mode 100644 templates/assets/js/index-charts.js
create mode 100644 templates/assets/plugins/.DS_Store
create mode 100644 templates/assets/plugins/bootstrap/.DS_Store
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.rtl.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.rtl.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.rtl.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-grid.rtl.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.rtl.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.rtl.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.rtl.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-reboot.rtl.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.rtl.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.rtl.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.rtl.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap-utilities.rtl.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.rtl.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.rtl.css.map
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.rtl.min.css
create mode 100644 templates/assets/plugins/bootstrap/css/bootstrap.rtl.min.css.map
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.bundle.js
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.bundle.js.map
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.bundle.min.js
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.bundle.min.js.map
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.esm.js
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.esm.js.map
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.esm.min.js
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.esm.min.js.map
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.js
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.js.map
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.min.js
create mode 100644 templates/assets/plugins/bootstrap/js/bootstrap.min.js.map
create mode 100644 templates/assets/plugins/chart.js/chart.min.js
create mode 100644 templates/assets/plugins/fontawesome/.DS_Store
create mode 100644 templates/assets/plugins/fontawesome/LICENSE.txt
create mode 100644 templates/assets/plugins/fontawesome/attribution.js
create mode 100644 templates/assets/plugins/fontawesome/css/all.css
create mode 100644 templates/assets/plugins/fontawesome/css/all.min.css
create mode 100644 templates/assets/plugins/fontawesome/css/brands.css
create mode 100644 templates/assets/plugins/fontawesome/css/brands.min.css
create mode 100644 templates/assets/plugins/fontawesome/css/fontawesome.css
create mode 100644 templates/assets/plugins/fontawesome/css/fontawesome.min.css
create mode 100644 templates/assets/plugins/fontawesome/css/regular.css
create mode 100644 templates/assets/plugins/fontawesome/css/regular.min.css
create mode 100644 templates/assets/plugins/fontawesome/css/solid.css
create mode 100644 templates/assets/plugins/fontawesome/css/solid.min.css
create mode 100644 templates/assets/plugins/fontawesome/css/svg-with-js.css
create mode 100644 templates/assets/plugins/fontawesome/css/svg-with-js.min.css
create mode 100644 templates/assets/plugins/fontawesome/css/v4-shims.css
create mode 100644 templates/assets/plugins/fontawesome/css/v4-shims.min.css
create mode 100644 templates/assets/plugins/fontawesome/js/all.js
create mode 100644 templates/assets/plugins/fontawesome/js/all.min.js
create mode 100644 templates/assets/plugins/fontawesome/js/brands.js
create mode 100644 templates/assets/plugins/fontawesome/js/brands.min.js
create mode 100644 templates/assets/plugins/fontawesome/js/conflict-detection.js
create mode 100644 templates/assets/plugins/fontawesome/js/conflict-detection.min.js
create mode 100644 templates/assets/plugins/fontawesome/js/fontawesome.js
create mode 100644 templates/assets/plugins/fontawesome/js/fontawesome.min.js
create mode 100644 templates/assets/plugins/fontawesome/js/regular.js
create mode 100644 templates/assets/plugins/fontawesome/js/regular.min.js
create mode 100644 templates/assets/plugins/fontawesome/js/solid.js
create mode 100644 templates/assets/plugins/fontawesome/js/solid.min.js
create mode 100644 templates/assets/plugins/fontawesome/js/v4-shims.js
create mode 100644 templates/assets/plugins/fontawesome/js/v4-shims.min.js
create mode 100644 templates/assets/plugins/fontawesome/less/_animated.less
create mode 100644 templates/assets/plugins/fontawesome/less/_bordered-pulled.less
create mode 100644 templates/assets/plugins/fontawesome/less/_core.less
create mode 100644 templates/assets/plugins/fontawesome/less/_fixed-width.less
create mode 100644 templates/assets/plugins/fontawesome/less/_icons.less
create mode 100644 templates/assets/plugins/fontawesome/less/_larger.less
create mode 100644 templates/assets/plugins/fontawesome/less/_list.less
create mode 100644 templates/assets/plugins/fontawesome/less/_mixins.less
create mode 100644 templates/assets/plugins/fontawesome/less/_rotated-flipped.less
create mode 100644 templates/assets/plugins/fontawesome/less/_screen-reader.less
create mode 100644 templates/assets/plugins/fontawesome/less/_shims.less
create mode 100644 templates/assets/plugins/fontawesome/less/_stacked.less
create mode 100644 templates/assets/plugins/fontawesome/less/_variables.less
create mode 100644 templates/assets/plugins/fontawesome/less/brands.less
create mode 100644 templates/assets/plugins/fontawesome/less/fontawesome.less
create mode 100644 templates/assets/plugins/fontawesome/less/regular.less
create mode 100644 templates/assets/plugins/fontawesome/less/solid.less
create mode 100644 templates/assets/plugins/fontawesome/less/v4-shims.less
create mode 100644 templates/assets/plugins/fontawesome/metadata/categories.yml
create mode 100644 templates/assets/plugins/fontawesome/metadata/icons.json
create mode 100644 templates/assets/plugins/fontawesome/metadata/icons.yml
create mode 100644 templates/assets/plugins/fontawesome/metadata/shims.json
create mode 100644 templates/assets/plugins/fontawesome/metadata/shims.yml
create mode 100644 templates/assets/plugins/fontawesome/metadata/sponsors.yml
create mode 100644 templates/assets/plugins/fontawesome/scss/_animated.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_bordered-pulled.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_core.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_fixed-width.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_icons.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_larger.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_list.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_mixins.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_rotated-flipped.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_screen-reader.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_shims.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_stacked.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/_variables.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/brands.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/fontawesome.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/regular.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/solid.scss
create mode 100644 templates/assets/plugins/fontawesome/scss/v4-shims.scss
create mode 100644 templates/assets/plugins/fontawesome/sprites/brands.svg
create mode 100644 templates/assets/plugins/fontawesome/sprites/regular.svg
create mode 100644 templates/assets/plugins/fontawesome/sprites/solid.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/500px.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/accessible-icon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/accusoft.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/acquisitions-incorporated.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/adn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/adversal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/affiliatetheme.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/airbnb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/algolia.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/alipay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/amazon-pay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/amazon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/amilia.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/android.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/angellist.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/angrycreative.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/angular.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/app-store-ios.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/app-store.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/apper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/apple-pay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/apple.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/artstation.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/asymmetrik.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/atlassian.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/audible.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/autoprefixer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/avianex.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/aviato.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/aws.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bandcamp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/battle-net.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/behance-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/behance.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bimobject.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bitbucket.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bitcoin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bity.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/black-tie.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/blackberry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/blogger-b.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/blogger.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bluetooth-b.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bluetooth.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/bootstrap.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/btc.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/buffer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/buromobelexperte.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/buy-n-large.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/buysellads.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/canadian-maple-leaf.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-amazon-pay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-amex.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-apple-pay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-diners-club.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-discover.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-jcb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-mastercard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-paypal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-stripe.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cc-visa.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/centercode.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/centos.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/chrome.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/chromecast.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cloudflare.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cloudscale.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cloudsmith.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cloudversify.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/codepen.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/codiepie.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/confluence.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/connectdevelop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/contao.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cotton-bureau.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cpanel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-by.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-nc-eu.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-nc-jp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-nc.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-nd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-pd-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-pd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-remix.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-sa.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-sampling-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-sampling.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-share.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons-zero.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/creative-commons.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/critical-role.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/css3-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/css3.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/cuttlefish.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/d-and-d-beyond.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/d-and-d.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dailymotion.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dashcube.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/deezer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/delicious.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/deploydog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/deskpro.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dev.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/deviantart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dhl.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/diaspora.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/digg.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/digital-ocean.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/discord.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/discourse.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dochub.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/docker.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/draft2digital.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dribbble-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dribbble.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dropbox.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/drupal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/dyalog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/earlybirds.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ebay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/edge-legacy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/edge.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/elementor.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ello.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ember.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/empire.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/envira.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/erlang.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ethereum.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/etsy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/evernote.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/expeditedssl.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/facebook-f.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/facebook-messenger.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/facebook-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/facebook.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fantasy-flight-games.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fedex.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fedora.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/figma.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/firefox-browser.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/firefox.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/first-order-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/first-order.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/firstdraft.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/flickr.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/flipboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fly.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/font-awesome-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/font-awesome-flag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/font-awesome-logo-full.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/font-awesome.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fonticons-fi.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fonticons.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fort-awesome-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fort-awesome.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/forumbee.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/foursquare.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/free-code-camp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/freebsd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/fulcrum.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/galactic-republic.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/galactic-senate.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/get-pocket.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gg-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gg.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/git-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/git-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/git.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/github-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/github-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/github.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gitkraken.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gitlab.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gitter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/glide-g.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/glide.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gofore.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/goodreads-g.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/goodreads.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-drive.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-pay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-play.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-plus-g.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-plus-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google-wallet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/google.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gratipay.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/grav.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gripfire.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/grunt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/guilded.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/gulp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hacker-news-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hacker-news.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hackerrank.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hips.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hire-a-helper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hive.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hooli.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hornbill.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hotjar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/houzz.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/html5.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/hubspot.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ideal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/imdb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/innosoft.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/instagram-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/instagram.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/instalod.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/intercom.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/internet-explorer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/invision.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ioxhost.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/itch-io.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/itunes-note.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/itunes.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/java.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/jedi-order.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/jenkins.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/jira.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/joget.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/joomla.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/js-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/js.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/jsfiddle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/kaggle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/keybase.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/keycdn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/kickstarter-k.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/kickstarter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/korvue.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/laravel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/lastfm-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/lastfm.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/leanpub.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/less.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/line.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/linkedin-in.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/linkedin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/linode.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/linux.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/lyft.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/magento.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mailchimp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mandalorian.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/markdown.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mastodon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/maxcdn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mdb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/medapps.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/medium-m.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/medium.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/medrt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/meetup.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/megaport.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mendeley.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/microblog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/microsoft.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mix.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mixcloud.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mixer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/mizuni.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/modx.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/monero.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/napster.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/neos.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/nimblr.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/node-js.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/node.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/npm.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ns8.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/nutritionix.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/octopus-deploy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/odnoklassniki-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/odnoklassniki.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/old-republic.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/opencart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/openid.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/opera.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/optin-monster.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/orcid.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/osi.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/page4.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pagelines.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/palfed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/patreon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/paypal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/penny-arcade.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/perbyte.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/periscope.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/phabricator.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/phoenix-framework.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/phoenix-squadron.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/php.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pied-piper-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pied-piper-hat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pied-piper-pp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pied-piper-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pied-piper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pinterest-p.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pinterest-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pinterest.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/playstation.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/product-hunt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/pushed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/python.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/qq.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/quinscape.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/quora.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/r-project.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/raspberry-pi.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ravelry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/react.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/reacteurope.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/readme.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/rebel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/red-river.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/reddit-alien.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/reddit-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/reddit.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/redhat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/renren.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/replyd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/researchgate.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/resolving.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/rev.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/rocketchat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/rockrms.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/rust.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/safari.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/salesforce.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/schlix.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/scribd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/searchengin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sellcast.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sellsy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/servicestack.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/shirtsinbulk.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/shopify.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/shopware.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/simplybuilt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sistrix.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sith.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sketch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/skyatlas.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/skype.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/slack-hash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/slack.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/slideshare.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/snapchat-ghost.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/snapchat-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/snapchat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/soundcloud.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sourcetree.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/speakap.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/speaker-deck.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/spotify.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/squarespace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stack-exchange.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stack-overflow.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stackpath.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/staylinked.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/steam-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/steam-symbol.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/steam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/sticker-mule.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/strava.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stripe-s.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stripe.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/studiovinari.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stumbleupon-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/stumbleupon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/superpowers.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/supple.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/suse.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/swift.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/symfony.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/teamspeak.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/telegram-plane.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/telegram.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/tencent-weibo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/the-red-yeti.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/themeco.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/themeisle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/think-peaks.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/tiktok.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/trade-federation.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/trello.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/tripadvisor.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/tumblr-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/tumblr.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/twitch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/twitter-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/twitter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/typo3.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/uber.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ubuntu.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/uikit.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/umbraco.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/uncharted.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/uniregistry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/unity.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/unsplash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/untappd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ups.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/usb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/usps.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/ussunnah.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vaadin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/viacoin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/viadeo-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/viadeo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/viber.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vimeo-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vimeo-v.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vimeo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vine.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vk.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vnv.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/vuejs.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/watchman-monitoring.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/waze.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/weebly.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/weibo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/weixin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/whatsapp-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/whatsapp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/whmcs.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wikipedia-w.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/windows.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wix.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wizards-of-the-coast.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wodu.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wolf-pack-battalion.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wordpress-simple.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wordpress.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wpbeginner.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wpexplorer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wpforms.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/wpressr.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/xbox.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/xing-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/xing.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/y-combinator.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yahoo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yammer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yandex-international.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yandex.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yarn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yelp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/yoast.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/youtube-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/youtube.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/brands/zhihu.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/address-book.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/address-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/angry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/arrow-alt-circle-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/arrow-alt-circle-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/arrow-alt-circle-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/arrow-alt-circle-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/bell-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/bell.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/bookmark.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/building.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/calendar-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/calendar-check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/calendar-minus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/calendar-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/calendar-times.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/calendar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/caret-square-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/caret-square-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/caret-square-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/caret-square-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/chart-bar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/check-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/check-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/clipboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/clock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/clone.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/closed-captioning.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/comment-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/comment-dots.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/comment.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/comments.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/compass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/copy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/copyright.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/credit-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/dizzy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/dot-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/edit.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/envelope-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/envelope.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/eye-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/eye.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-archive.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-audio.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-code.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-excel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-image.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-pdf.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-powerpoint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-video.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file-word.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/file.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/flag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/flushed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/folder-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/folder.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/font-awesome-logo-full.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/frown-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/frown.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/futbol.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/gem.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grimace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-beam-sweat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-hearts.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-squint-tears.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-squint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-stars.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-tears.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-tongue-squint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-tongue-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-tongue.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/grin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-lizard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-paper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-peace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-point-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-point-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-point-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-point-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-pointer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-rock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-scissors.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hand-spock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/handshake.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hdd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/heart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hospital.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/hourglass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/id-badge.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/id-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/image.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/images.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/keyboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/kiss-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/kiss-wink-heart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/kiss.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/laugh-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/laugh-squint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/laugh-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/laugh.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/lemon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/life-ring.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/lightbulb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/list-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/map.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/meh-blank.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/meh-rolling-eyes.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/meh.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/minus-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/money-bill-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/moon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/newspaper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/object-group.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/object-ungroup.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/paper-plane.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/pause-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/play-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/plus-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/question-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/registered.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/sad-cry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/sad-tear.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/save.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/share-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/smile-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/smile-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/smile.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/snowflake.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/star-half.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/star.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/sticky-note.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/stop-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/sun.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/surprise.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/thumbs-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/thumbs-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/times-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/tired.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/trash-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/user-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/user.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/window-close.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/window-maximize.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/window-minimize.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/regular/window-restore.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ad.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/address-book.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/address-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/adjust.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/air-freshener.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/align-center.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/align-justify.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/align-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/align-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/allergies.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ambulance.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/american-sign-language-interpreting.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/anchor.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-double-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-double-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-double-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-double-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angle-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/angry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ankh.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/apple-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/archive.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/archway.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-alt-circle-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-circle-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-circle-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-circle-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-circle-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrow-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrows-alt-h.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrows-alt-v.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/arrows-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/assistive-listening-systems.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/asterisk.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/at.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/atlas.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/atom.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/audio-description.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/award.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/baby-carriage.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/baby.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/backspace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/backward.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bacon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bacteria.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bacterium.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bahai.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/balance-scale-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/balance-scale-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/balance-scale.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ban.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/band-aid.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/barcode.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bars.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/baseball-ball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/basketball-ball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bath.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/battery-empty.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/battery-full.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/battery-half.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/battery-quarter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/battery-three-quarters.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/beer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bell-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bell.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bezier-curve.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bible.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bicycle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/biking.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/binoculars.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/biohazard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/birthday-cake.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/blender-phone.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/blender.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/blind.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/blog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bold.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bolt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bomb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bone.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bong.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/book-dead.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/book-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/book-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/book-reader.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/book.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bookmark.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/border-all.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/border-none.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/border-style.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bowling-ball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/box-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/box-tissue.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/box.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/boxes.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/braille.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/brain.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bread-slice.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/briefcase-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/briefcase.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/broadcast-tower.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/broom.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/brush.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bug.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/building.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bullhorn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bullseye.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/burn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bus-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/bus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/business-time.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calculator.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-day.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-minus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-times.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar-week.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/calendar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/camera-retro.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/camera.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/campground.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/candy-cane.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cannabis.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/capsules.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/car-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/car-battery.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/car-crash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/car-side.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/car.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caravan.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-square-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-square-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-square-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-square-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/caret-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/carrot.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cart-arrow-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cart-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cash-register.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/certificate.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chair.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chalkboard-teacher.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chalkboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/charging-station.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chart-area.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chart-bar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chart-line.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chart-pie.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/check-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/check-double.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/check-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cheese.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-bishop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-board.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-king.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-knight.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-pawn.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-queen.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess-rook.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chess.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-circle-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-circle-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-circle-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-circle-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/chevron-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/child.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/church.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/circle-notch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/city.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/clinic-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/clipboard-check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/clipboard-list.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/clipboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/clock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/clone.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/closed-captioning.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-download-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-meatball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-moon-rain.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-moon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-rain.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-showers-heavy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-sun-rain.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-sun.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud-upload-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cloud.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cocktail.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/code-branch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/code.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/coffee.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cogs.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/coins.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/columns.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comment-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comment-dollar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comment-dots.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comment-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comment-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comment.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comments-dollar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/comments.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/compact-disc.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/compass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/compress-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/compress-arrows-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/compress.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/concierge-bell.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cookie-bite.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cookie.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/copy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/copyright.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/couch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/credit-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/crop-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/crop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cross.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/crosshairs.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/crow.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/crown.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/crutch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cube.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cubes.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/cut.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/database.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/deaf.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/democrat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/desktop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dharmachakra.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/diagnoses.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-d20.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-d6.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-five.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-four.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-one.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-six.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-three.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice-two.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dice.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/digital-tachograph.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/directions.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/disease.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/divide.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dizzy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dna.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dollar-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dolly-flatbed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dolly.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/donate.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/door-closed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/door-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dot-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dove.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/download.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/drafting-compass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dragon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/draw-polygon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/drum-steelpan.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/drum.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/drumstick-bite.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dumbbell.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dumpster-fire.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dumpster.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/dungeon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/edit.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/egg.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/eject.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ellipsis-h.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ellipsis-v.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/envelope-open-text.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/envelope-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/envelope-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/envelope.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/equals.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/eraser.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ethernet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/euro-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/exchange-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/exclamation-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/exclamation-triangle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/exclamation.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/expand-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/expand-arrows-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/expand.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/external-link-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/external-link-square-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/eye-dropper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/eye-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/eye.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fan.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fast-backward.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fast-forward.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/faucet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fax.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/feather-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/feather.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/female.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fighter-jet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-archive.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-audio.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-code.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-contract.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-csv.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-download.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-excel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-export.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-image.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-import.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-invoice-dollar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-invoice.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-medical-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-pdf.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-powerpoint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-prescription.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-signature.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-upload.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-video.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file-word.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/file.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fill-drip.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fill.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/film.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/filter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fingerprint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fire-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fire-extinguisher.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fire.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/first-aid.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fish.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/fist-raised.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/flag-checkered.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/flag-usa.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/flag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/flask.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/flushed.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/folder-minus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/folder-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/folder-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/folder.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/font-awesome-logo-full.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/font.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/football-ball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/forward.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/frog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/frown-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/frown.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/funnel-dollar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/futbol.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gamepad.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gas-pump.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gavel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gem.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/genderless.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ghost.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gift.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gifts.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/glass-cheers.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/glass-martini-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/glass-martini.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/glass-whiskey.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/glasses.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/globe-africa.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/globe-americas.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/globe-asia.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/globe-europe.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/globe.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/golf-ball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/gopuram.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/graduation-cap.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/greater-than-equal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/greater-than.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grimace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-beam-sweat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-hearts.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-squint-tears.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-squint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-stars.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-tears.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-tongue-squint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-tongue-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-tongue.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grip-horizontal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grip-lines-vertical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grip-lines.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/grip-vertical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/guitar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/h-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hamburger.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hammer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hamsa.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-holding-heart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-holding-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-holding-usd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-holding-water.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-holding.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-lizard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-middle-finger.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-paper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-peace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-point-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-point-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-point-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-point-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-pointer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-rock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-scissors.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-sparkles.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hand-spock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hands-helping.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hands-wash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hands.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/handshake-alt-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/handshake-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/handshake.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hanukiah.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hard-hat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hashtag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hat-cowboy-side.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hat-cowboy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hat-wizard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hdd.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/head-side-cough-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/head-side-cough.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/head-side-mask.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/head-side-virus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/heading.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/headphones-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/headphones.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/headset.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/heart-broken.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/heart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/heartbeat.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/helicopter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/highlighter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hiking.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hippo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/history.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hockey-puck.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/holly-berry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/home.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/horse-head.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/horse.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hospital-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hospital-symbol.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hospital-user.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hospital.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hot-tub.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hotdog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hotel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hourglass-end.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hourglass-half.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hourglass-start.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hourglass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/house-damage.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/house-user.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/hryvnia.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/i-cursor.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ice-cream.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/icicles.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/icons.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/id-badge.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/id-card-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/id-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/igloo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/image.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/images.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/inbox.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/indent.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/industry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/infinity.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/info-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/info.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/italic.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/jedi.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/joint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/journal-whills.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/kaaba.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/key.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/keyboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/khanda.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/kiss-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/kiss-wink-heart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/kiss.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/kiwi-bird.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/landmark.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/language.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laptop-code.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laptop-house.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laptop-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laptop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laugh-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laugh-squint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laugh-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/laugh.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/layer-group.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/leaf.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lemon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/less-than-equal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/less-than.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/level-down-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/level-up-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/life-ring.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lightbulb.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/link.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lira-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/list-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/list-ol.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/list-ul.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/list.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/location-arrow.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lock-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/long-arrow-alt-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/low-vision.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/luggage-cart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lungs-virus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/lungs.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/magic.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/magnet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mail-bulk.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/male.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map-marked-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map-marked.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map-marker-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map-marker.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map-pin.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map-signs.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/map.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/marker.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mars-double.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mars-stroke-h.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mars-stroke-v.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mars-stroke.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mars.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mask.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/medal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/medkit.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/meh-blank.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/meh-rolling-eyes.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/meh.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/memory.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/menorah.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mercury.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/meteor.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/microchip.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/microphone-alt-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/microphone-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/microphone-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/microphone.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/microscope.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/minus-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/minus-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/minus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mitten.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mobile-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mobile.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/money-bill-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/money-bill-wave-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/money-bill-wave.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/money-bill.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/money-check-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/money-check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/monument.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/moon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mortar-pestle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mosque.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/motorcycle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mountain.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mouse-pointer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mouse.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/mug-hot.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/music.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/network-wired.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/neuter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/newspaper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/not-equal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/notes-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/object-group.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/object-ungroup.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/oil-can.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/om.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/otter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/outdent.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pager.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paint-brush.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paint-roller.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/palette.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pallet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paper-plane.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paperclip.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/parachute-box.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paragraph.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/parking.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/passport.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pastafarianism.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paste.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pause-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pause.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/paw.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/peace.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pen-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pen-fancy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pen-nib.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pen-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pen.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pencil-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pencil-ruler.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/people-arrows.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/people-carry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pepper-hot.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/percent.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/percentage.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/person-booth.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/phone-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/phone-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/phone-square-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/phone-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/phone-volume.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/phone.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/photo-video.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/piggy-bank.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pills.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pizza-slice.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/place-of-worship.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plane-arrival.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plane-departure.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plane-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plane.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/play-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/play.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plug.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plus-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plus-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/podcast.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/poll-h.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/poll.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/poo-storm.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/poo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/poop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/portrait.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pound-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/power-off.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pray.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/praying-hands.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/prescription-bottle-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/prescription-bottle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/prescription.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/print.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/procedures.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/project-diagram.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pump-medical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/pump-soap.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/puzzle-piece.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/qrcode.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/question-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/question.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/quidditch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/quote-left.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/quote-right.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/quran.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/radiation-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/radiation.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/rainbow.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/random.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/receipt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/record-vinyl.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/recycle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/redo-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/redo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/registered.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/remove-format.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/reply-all.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/reply.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/republican.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/restroom.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/retweet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ribbon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ring.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/road.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/robot.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/rocket.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/route.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/rss-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/rss.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ruble-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ruler-combined.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ruler-horizontal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ruler-vertical.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ruler.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/running.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/rupee-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sad-cry.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sad-tear.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/satellite-dish.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/satellite.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/save.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/school.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/screwdriver.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/scroll.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sd-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/search-dollar.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/search-location.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/search-minus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/search-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/search.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/seedling.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/server.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shapes.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/share-alt-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/share-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/share-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/share.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shekel-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shield-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shield-virus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ship.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shipping-fast.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shoe-prints.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shopping-bag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shopping-basket.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shopping-cart.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shower.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/shuttle-van.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sign-in-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sign-language.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sign-out-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/signal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/signature.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sim-card.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sitemap.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/skating.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/skiing-nordic.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/skiing.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/skull-crossbones.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/skull.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sleigh.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sliders-h.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/smile-beam.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/smile-wink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/smile.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/smog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/smoking-ban.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/smoking.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sms.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/snowboarding.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/snowflake.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/snowman.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/snowplow.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/soap.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/socks.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/solar-panel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-alpha-down-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-alpha-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-alpha-up-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-alpha-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-amount-down-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-amount-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-amount-up-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-amount-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-numeric-down-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-numeric-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-numeric-up-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-numeric-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sort.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/spa.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/space-shuttle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/spell-check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/spider.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/spinner.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/splotch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/spray-can.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/square-full.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/square-root-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stamp.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/star-and-crescent.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/star-half-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/star-half.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/star-of-david.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/star-of-life.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/star.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/step-backward.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/step-forward.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stethoscope.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sticky-note.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stop-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stop.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stopwatch-20.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stopwatch.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/store-alt-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/store-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/store-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/store.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stream.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/street-view.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/strikethrough.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/stroopwafel.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/subscript.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/subway.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/suitcase-rolling.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/suitcase.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sun.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/superscript.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/surprise.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/swatchbook.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/swimmer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/swimming-pool.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/synagogue.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sync-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/sync.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/syringe.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/table-tennis.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/table.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tablet-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tablet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tablets.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tachometer-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tags.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tape.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tasks.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/taxi.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/teeth-open.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/teeth.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/temperature-high.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/temperature-low.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tenge.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/terminal.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/text-height.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/text-width.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/th-large.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/th-list.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/th.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/theater-masks.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thermometer-empty.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thermometer-full.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thermometer-half.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thermometer-quarter.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thermometer-three-quarters.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thermometer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thumbs-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thumbs-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/thumbtack.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/ticket-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/times-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/times.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tint-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tint.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tired.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/toggle-off.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/toggle-on.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/toilet-paper-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/toilet-paper.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/toilet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/toolbox.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tools.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tooth.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/torah.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/torii-gate.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tractor.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trademark.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/traffic-light.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trailer.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/train.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tram.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/transgender-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/transgender.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trash-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trash-restore-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trash-restore.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tree.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/trophy.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/truck-loading.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/truck-monster.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/truck-moving.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/truck-pickup.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/truck.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tshirt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tty.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/tv.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/umbrella-beach.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/umbrella.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/underline.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/undo-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/undo.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/universal-access.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/university.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/unlink.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/unlock-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/unlock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/upload.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-alt-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-astronaut.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-check.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-circle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-clock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-cog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-edit.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-friends.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-graduate.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-injured.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-lock.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-md.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-minus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-ninja.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-nurse.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-plus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-secret.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-shield.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-tag.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-tie.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user-times.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/user.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/users-cog.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/users-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/users.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/utensil-spoon.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/utensils.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vector-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/venus-double.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/venus-mars.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/venus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vest-patches.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vest.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vial.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vials.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/video-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/video.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vihara.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/virus-slash.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/virus.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/viruses.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/voicemail.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/volleyball-ball.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/volume-down.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/volume-mute.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/volume-off.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/volume-up.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vote-yea.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/vr-cardboard.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/walking.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wallet.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/warehouse.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/water.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wave-square.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/weight-hanging.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/weight.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wheelchair.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wifi.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wind.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/window-close.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/window-maximize.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/window-minimize.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/window-restore.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wine-bottle.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wine-glass-alt.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wine-glass.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/won-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/wrench.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/x-ray.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/yen-sign.svg
create mode 100644 templates/assets/plugins/fontawesome/svgs/solid/yin-yang.svg
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-brands-400.eot
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-brands-400.svg
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-brands-400.ttf
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-brands-400.woff
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-brands-400.woff2
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-regular-400.eot
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-regular-400.svg
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-regular-400.ttf
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-regular-400.woff
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-regular-400.woff2
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-solid-900.eot
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-solid-900.svg
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-solid-900.ttf
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-solid-900.woff
create mode 100644 templates/assets/plugins/fontawesome/webfonts/fa-solid-900.woff2
create mode 100644 templates/assets/plugins/popper.min.js
create mode 100644 templates/assets/scss/.DS_Store
create mode 100644 templates/assets/scss/app/.DS_Store
create mode 100644 templates/assets/scss/app/_app.scss
create mode 100644 templates/assets/scss/app/_auth.scss
create mode 100644 templates/assets/scss/app/_base.scss
create mode 100644 templates/assets/scss/app/_header.scss
create mode 100644 templates/assets/scss/app/_mixins.scss
create mode 100644 templates/assets/scss/app/_sidepanel.scss
create mode 100644 templates/assets/scss/app/styles.scss
create mode 100644 templates/assets/scss/bootstrap/.DS_Store
create mode 100644 templates/assets/scss/bootstrap/scss/_accordion.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_alert.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_badge.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_breadcrumb.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_button-group.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_buttons.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_card.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_carousel.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_close.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_containers.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_dropdown.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_forms.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_functions.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_grid.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_helpers.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_images.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_list-group.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_mixins.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_modal.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_nav.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_navbar.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_offcanvas.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_pagination.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_popover.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_progress.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_reboot.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_root.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_spinners.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_tables.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_toasts.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_tooltip.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_transitions.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_type.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_utilities.scss
create mode 100644 templates/assets/scss/bootstrap/scss/_variables.scss
create mode 100644 templates/assets/scss/bootstrap/scss/bootstrap-grid.scss
create mode 100644 templates/assets/scss/bootstrap/scss/bootstrap-reboot.scss
create mode 100644 templates/assets/scss/bootstrap/scss/bootstrap-utilities.scss
create mode 100644 templates/assets/scss/bootstrap/scss/bootstrap.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_floating-labels.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_form-check.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_form-control.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_form-range.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_form-select.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_form-text.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_input-group.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_labels.scss
create mode 100644 templates/assets/scss/bootstrap/scss/forms/_validation.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_clearfix.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_colored-links.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_position.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_ratio.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_stretched-link.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_text-truncation.scss
create mode 100644 templates/assets/scss/bootstrap/scss/helpers/_visually-hidden.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_alert.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_border-radius.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_box-shadow.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_breakpoints.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_buttons.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_caret.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_clearfix.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_color-scheme.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_container.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_deprecate.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_forms.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_gradients.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_grid.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_image.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_list-group.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_lists.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_pagination.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_reset-text.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_resize.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_table-variants.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_text-truncate.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_transition.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_utilities.scss
create mode 100644 templates/assets/scss/bootstrap/scss/mixins/_visually-hidden.scss
create mode 100644 templates/assets/scss/bootstrap/scss/utilities/_api.scss
create mode 100644 templates/assets/scss/bootstrap/scss/vendor/_rfs.scss
create mode 100644 templates/assets/scss/config.codekit3
create mode 100644 templates/assets/scss/portal.scss
create mode 100644 templates/base.html
diff --git a/Drag_and_drop_upload/index.html b/Drag_and_drop_upload/index.html
deleted file mode 100644
index e7a1a72d5..000000000
--- a/Drag_and_drop_upload/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
- Subida de Archivos
-
-
-
-
-
-
-
-
-
Suba el archivo correspondiente
-
Recuerde que el archivo debe ser formato ".xlsx" .
- Tambien la informacion correspondiente debe estar en la primer hoja, sin informacion como encabezado solo nombres de columnas.
-
-
-
-
-
-
-
-
-
-
-
Subir
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Drag_and_drop_upload/js.js b/Drag_and_drop_upload/js.js
deleted file mode 100644
index f90e5642e..000000000
--- a/Drag_and_drop_upload/js.js
+++ /dev/null
@@ -1,31 +0,0 @@
-$("#input-ficons-5").fileinput({
- uploadUrl: "C:\Users\Marti\Documents\Drag_and_drop_upload",
- uploadAsync: false,
- previewFileIcon: ' ',
- preferIconicPreview: true, // esto hace que los archivos que se suban salgan con iconos sig
- previewFileIconSettings: {
- mov: ' ',
- mp3: ' ',
- img: ' ',
- model: ' ',
- xlsx: ' '
- },
- previewFileExtSettings: {
- // configure the logic for determining icon file extensions
- mov: function(ext) {
- return ext.match(/(avi|mpg|mkv|mov|mp4|3gp|webm|wmv)$/i);
- },
- mp3: function(ext) {
- return ext.match(/(mp3|wav)$/i);
- },
- img: function(ext) {
- return ext.match(/(jpg|gif|png|svg)$/i)
- },
- model: function(ext) {
- return ext.match(/(obj|fbx)$/i)
- },
- xlsx: function(ext) {
- return ext.match(/(xlsx|xls|txt)$/i)
- }
- }
-});
\ No newline at end of file
diff --git a/app.py b/app.py
index 89c98e24d..a2c9eb7f3 100644
--- a/app.py
+++ b/app.py
@@ -1,5 +1,8 @@
from flask import Flask, render_template
+from flask_bootstrap import Bootstrap
+
app = Flask(__name__)
+bootstrap = Bootstrap(app)
@app.route("/")
def hello():
diff --git a/templates/assets/.DS_Store b/templates/assets/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..b198f84d609ac75707725367e7a1cb6cf8894f77
GIT binary patch
literal 10244
zcmeHMYitx%6uxI$=uA7M(^6hbp$oMXp@A+frGvscoo#2gK%$93WhR+>
z?woVaoxR`r?mctw5<;LZ9`O?5A%qBcQz=VWT;rm4dXKqWmd1?|(4Tk%VWYQ?X_K}w
zPL9Gsz(K%4z(K%4z(L@qB7ixYUP2C+PU#@vAmAV{f&g6~Ja|*-v*Zw$Z0W#)edeRg
zL^ZpxF4GE1k0pJU9O4o!cma1s$z8$PVgPqXy~k?jv*Zw$+?{~6!2s*cVC_(Vy&e1a
zu;v7OTsozLfP=tT1nAy9gM^7mOs(6#fB(61)Y5DC{UOZ=p+@jEl(>dlkFK;^BR8=2
z_1JpNV6$^PQAsZel5V09Gt_VPS$&@h^=YaZtEe~&u8hoaPnP3s}Tj8bhN5^#OSXx;(Ekn
z{RFr{5JW-jl&1|0EUKy~_f#&b87%htGUv^GOuM>>MfAy{2L9M5(b&4I6qu
z-KliSc_sqUfR9a4C4qx(4I5g#S2sK5{BTeU$F*QgS*dBXG3xTnaMaMWCc{)?s-d^H
z#gy%_WJf8cwoRrHjn%WxI%PR-Dt9Z`mzq%g*dumTK;O2Zk9K3WC{Yt-iLZhWUOX^i
zO3|#+c?+v*SJV&Z$@v8n3ngh2!mP*CE>($c>{lbPp7x*_R`iIfcef@~Qw?cKvmWeK
z^5Hj8WL{IJx!rB?ka}NSjqQ+21Yx*9&d-x(x;>)&uFw&|U$Wka&>kbq;-2ZgO%OIy
zeSK8HlB=aM_wAw_6q-#$fp<|ZEf8f>Y~F@k;I3Y&QjjC!MlBdpG_Ike#Wpc#PxTT7d!+H!z1u0
z?1ksy1$Yr&g4f_3I0)~-A@~SBgL7~mzJM>`B3y>6@Du-$t|Z^rCx0}T@C(XRzMBba
zR=f6Ho6p6_=gHEXe?6biP2eP+Gn&ovP@lOkR3M=hYWbEVgVzf)rigA7z
zsXo1EhE%)}38`$q-u#fWDD?!^de-dXVwrM|Kh7yDmSn(bAu{XyGPJrZ+rkR8W#A0p
zwyMQau{;jR&OK|FN|Kz3vw>Sz+=15d$a`UU`ZV`c$uF%I>6Dbo4T*b0+I~*XlkdqD
za6uO2B3<1`)w!?$s$d1IhBdGb8eu)OKpSj=&Cr2F?FJRLGO{KZS$D$&@F46#%03QH
z!c*`xJOlfYurI?a@G86kZ^GM*x`*Ki9ED?W96p58a2CGi3?X)dkJXtKLro0OFIqldmQrH@1)s%wVcje0tvTx6>~4MNeiCrnPREal|p
zq$a~oxyVXkt#ny!R`gYxl2G&w(MDW#c&_}L`LV;^ai=`V$}&wsU1_09wyNREY)_*0
z#Ek2tm!;IH0|VZwDw2R=l`p&|Ns9jj*>Hc2Z8@L0+8ts`0H?t$?bjma9ybI;JpQJdeL@6
zTrw9dXcMYu$MN_;kK@@12kNY&A!hek?S{By?&!zdQS#ILfBesYzi^)A?EjtpzwNl%
LzAgDr@BjY<%S5A*
literal 0
HcmV?d00001
diff --git a/templates/assets/css/.DS_Store b/templates/assets/css/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
GIT binary patch
literal 6148
zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3
zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ
zLs35+`xjp>T0code {
+ color: inherit
+}
+
+kbd {
+ padding: .2rem .4rem;
+ font-size: 0.875em;
+ color: #fff;
+ background-color: #212529;
+ border-radius: .2rem
+}
+
+kbd kbd {
+ padding: 0;
+ font-size: 1em;
+ font-weight: 700
+}
+
+figure {
+ margin: 0 0 1rem
+}
+
+img,
+svg {
+ vertical-align: middle
+}
+
+table {
+ caption-side: bottom;
+ border-collapse: collapse
+}
+
+caption {
+ padding-top: .5rem;
+ padding-bottom: .5rem;
+ color: #6c757d;
+ text-align: left
+}
+
+th {
+ text-align: inherit;
+ text-align: -webkit-match-parent
+}
+
+thead,
+tbody,
+tfoot,
+tr,
+td,
+th {
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0
+}
+
+label {
+ display: inline-block
+}
+
+button {
+ border-radius: 0
+}
+
+button:focus:not(:focus-visible) {
+ outline: 0
+}
+
+input,
+button,
+select,
+optgroup,
+textarea {
+ margin: 0;
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit
+}
+
+button,
+select {
+ text-transform: none
+}
+
+[role=button] {
+ cursor: pointer
+}
+
+select {
+ word-wrap: normal
+}
+
+select:disabled {
+ opacity: 1
+}
+
+[list]::-webkit-calendar-picker-indicator {
+ display: none
+}
+
+button,
+[type=button],
+[type=reset],
+[type=submit] {
+ -webkit-appearance: button
+}
+
+button:not(:disabled),
+[type=button]:not(:disabled),
+[type=reset]:not(:disabled),
+[type=submit]:not(:disabled) {
+ cursor: pointer
+}
+
+::-moz-focus-inner {
+ padding: 0;
+ border-style: none
+}
+
+textarea {
+ resize: vertical
+}
+
+fieldset {
+ min-width: 0;
+ padding: 0;
+ margin: 0;
+ border: 0
+}
+
+legend {
+ float: left;
+ width: 100%;
+ padding: 0;
+ margin-bottom: .5rem;
+ font-size: calc(1.275rem + 0.3vw);
+ line-height: inherit
+}
+
+@media(min-width: 1200px) {
+ legend {
+ font-size: 1.5rem
+ }
+}
+
+legend+* {
+ clear: left
+}
+
+::-webkit-datetime-edit-fields-wrapper,
+::-webkit-datetime-edit-text,
+::-webkit-datetime-edit-minute,
+::-webkit-datetime-edit-hour-field,
+::-webkit-datetime-edit-day-field,
+::-webkit-datetime-edit-month-field,
+::-webkit-datetime-edit-year-field {
+ padding: 0
+}
+
+::-webkit-inner-spin-button {
+ height: auto
+}
+
+[type=search] {
+ outline-offset: -2px;
+ -webkit-appearance: textfield
+}
+
+::-webkit-search-decoration {
+ -webkit-appearance: none
+}
+
+::-webkit-color-swatch-wrapper {
+ padding: 0
+}
+
+::file-selector-button {
+ font: inherit
+}
+
+::-webkit-file-upload-button {
+ font: inherit;
+ -webkit-appearance: button
+}
+
+output {
+ display: inline-block
+}
+
+iframe {
+ border: 0
+}
+
+summary {
+ display: list-item;
+ cursor: pointer
+}
+
+progress {
+ vertical-align: baseline
+}
+
+[hidden] {
+ display: none !important
+}
+
+.lead {
+ font-size: 1.25rem;
+ font-weight: 300
+}
+
+.display-1 {
+ font-size: calc(1.625rem + 4.5vw);
+ font-weight: 300;
+ line-height: 1.2
+}
+
+@media(min-width: 1200px) {
+ .display-1 {
+ font-size: 5rem
+ }
+}
+
+.display-2 {
+ font-size: calc(1.575rem + 3.9vw);
+ font-weight: 300;
+ line-height: 1.2
+}
+
+@media(min-width: 1200px) {
+ .display-2 {
+ font-size: 4.5rem
+ }
+}
+
+.display-3 {
+ font-size: calc(1.525rem + 3.3vw);
+ font-weight: 300;
+ line-height: 1.2
+}
+
+@media(min-width: 1200px) {
+ .display-3 {
+ font-size: 4rem
+ }
+}
+
+.display-4 {
+ font-size: calc(1.475rem + 2.7vw);
+ font-weight: 300;
+ line-height: 1.2
+}
+
+@media(min-width: 1200px) {
+ .display-4 {
+ font-size: 3.5rem
+ }
+}
+
+.display-5 {
+ font-size: calc(1.425rem + 2.1vw);
+ font-weight: 300;
+ line-height: 1.2
+}
+
+@media(min-width: 1200px) {
+ .display-5 {
+ font-size: 3rem
+ }
+}
+
+.display-6 {
+ font-size: calc(1.375rem + 1.5vw);
+ font-weight: 300;
+ line-height: 1.2
+}
+
+@media(min-width: 1200px) {
+ .display-6 {
+ font-size: 2.5rem
+ }
+}
+
+.list-unstyled {
+ padding-left: 0;
+ list-style: none
+}
+
+.list-inline {
+ padding-left: 0;
+ list-style: none
+}
+
+.list-inline-item {
+ display: inline-block
+}
+
+.list-inline-item:not(:last-child) {
+ margin-right: .5rem
+}
+
+.initialism {
+ font-size: 0.875em;
+ text-transform: uppercase
+}
+
+.blockquote {
+ margin-bottom: 1rem;
+ font-size: 1.25rem
+}
+
+.blockquote>:last-child {
+ margin-bottom: 0
+}
+
+.blockquote-footer {
+ margin-top: -1rem;
+ margin-bottom: 1rem;
+ font-size: 0.875em;
+ color: #6c757d
+}
+
+.blockquote-footer::before {
+ content: "— "
+}
+
+.img-fluid {
+ max-width: 100%;
+ height: auto
+}
+
+.img-thumbnail {
+ padding: .25rem;
+ background-color: #fff;
+ border: 1px solid #dee2e6;
+ border-radius: .25rem;
+ max-width: 100%;
+ height: auto
+}
+
+.figure {
+ display: inline-block
+}
+
+.figure-img {
+ margin-bottom: .5rem;
+ line-height: 1
+}
+
+.figure-caption {
+ font-size: 0.875em;
+ color: #6c757d
+}
+
+.container,
+.container-fluid,
+.container-xxl,
+.container-xl,
+.container-lg,
+.container-md,
+.container-sm {
+ width: 100%;
+ padding-right: var(--bs-gutter-x, 0.75rem);
+ padding-left: var(--bs-gutter-x, 0.75rem);
+ margin-right: auto;
+ margin-left: auto
+}
+
+@media(min-width: 576px) {
+ .container-sm,
+ .container {
+ max-width: 540px
+ }
+}
+
+@media(min-width: 768px) {
+ .container-md,
+ .container-sm,
+ .container {
+ max-width: 720px
+ }
+}
+
+@media(min-width: 992px) {
+ .container-lg,
+ .container-md,
+ .container-sm,
+ .container {
+ max-width: 960px
+ }
+}
+
+@media(min-width: 1200px) {
+ .container-xl,
+ .container-lg,
+ .container-md,
+ .container-sm,
+ .container {
+ max-width: 1140px
+ }
+}
+
+@media(min-width: 1400px) {
+ .container-xxl,
+ .container-xl,
+ .container-lg,
+ .container-md,
+ .container-sm,
+ .container {
+ max-width: 1320px
+ }
+}
+
+.row {
+ --bs-gutter-x: 1.5rem;
+ --bs-gutter-y: 0;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-top: calc(var(--bs-gutter-y) * -1);
+ margin-right: calc(var(--bs-gutter-x) / -2);
+ margin-left: calc(var(--bs-gutter-x) / -2)
+}
+
+.row>* {
+ -webkit-flex-shrink: 0;
+ flex-shrink: 0;
+ width: 100%;
+ max-width: 100%;
+ padding-right: calc(var(--bs-gutter-x) / 2);
+ padding-left: calc(var(--bs-gutter-x) / 2);
+ margin-top: var(--bs-gutter-y)
+}
+
+.col {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%
+}
+
+.row-cols-auto>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+}
+
+.row-cols-1>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+}
+
+.row-cols-2>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+}
+
+.row-cols-3>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+}
+
+.row-cols-4>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+}
+
+.row-cols-5>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 20%
+}
+
+.row-cols-6>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+}
+
+.col-auto {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+}
+
+.col-1 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 8.3333333333%
+}
+
+.col-2 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+}
+
+.col-3 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+}
+
+.col-4 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+}
+
+.col-5 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 41.6666666667%
+}
+
+.col-6 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+}
+
+.col-7 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 58.3333333333%
+}
+
+.col-8 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 66.6666666667%
+}
+
+.col-9 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 75%
+}
+
+.col-10 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 83.3333333333%
+}
+
+.col-11 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 91.6666666667%
+}
+
+.col-12 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+}
+
+.offset-1 {
+ margin-left: 8.3333333333%
+}
+
+.offset-2 {
+ margin-left: 16.6666666667%
+}
+
+.offset-3 {
+ margin-left: 25%
+}
+
+.offset-4 {
+ margin-left: 33.3333333333%
+}
+
+.offset-5 {
+ margin-left: 41.6666666667%
+}
+
+.offset-6 {
+ margin-left: 50%
+}
+
+.offset-7 {
+ margin-left: 58.3333333333%
+}
+
+.offset-8 {
+ margin-left: 66.6666666667%
+}
+
+.offset-9 {
+ margin-left: 75%
+}
+
+.offset-10 {
+ margin-left: 83.3333333333%
+}
+
+.offset-11 {
+ margin-left: 91.6666666667%
+}
+
+.g-0,
+.gx-0 {
+ --bs-gutter-x: 0
+}
+
+.g-0,
+.gy-0 {
+ --bs-gutter-y: 0
+}
+
+.g-1,
+.gx-1 {
+ --bs-gutter-x: 0.25rem
+}
+
+.g-1,
+.gy-1 {
+ --bs-gutter-y: 0.25rem
+}
+
+.g-2,
+.gx-2 {
+ --bs-gutter-x: 0.5rem
+}
+
+.g-2,
+.gy-2 {
+ --bs-gutter-y: 0.5rem
+}
+
+.g-3,
+.gx-3 {
+ --bs-gutter-x: 1rem
+}
+
+.g-3,
+.gy-3 {
+ --bs-gutter-y: 1rem
+}
+
+.g-4,
+.gx-4 {
+ --bs-gutter-x: 1.5rem
+}
+
+.g-4,
+.gy-4 {
+ --bs-gutter-y: 1.5rem
+}
+
+.g-5,
+.gx-5 {
+ --bs-gutter-x: 3rem
+}
+
+.g-5,
+.gy-5 {
+ --bs-gutter-y: 3rem
+}
+
+@media(min-width: 576px) {
+ .col-sm {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%
+ }
+ .row-cols-sm-auto>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .row-cols-sm-1>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .row-cols-sm-2>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .row-cols-sm-3>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .row-cols-sm-4>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .row-cols-sm-5>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 20%
+ }
+ .row-cols-sm-6>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-sm-auto {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .col-sm-1 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 8.3333333333%
+ }
+ .col-sm-2 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-sm-3 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .col-sm-4 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .col-sm-5 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 41.6666666667%
+ }
+ .col-sm-6 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .col-sm-7 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 58.3333333333%
+ }
+ .col-sm-8 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 66.6666666667%
+ }
+ .col-sm-9 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 75%
+ }
+ .col-sm-10 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 83.3333333333%
+ }
+ .col-sm-11 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 91.6666666667%
+ }
+ .col-sm-12 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .offset-sm-0 {
+ margin-left: 0
+ }
+ .offset-sm-1 {
+ margin-left: 8.3333333333%
+ }
+ .offset-sm-2 {
+ margin-left: 16.6666666667%
+ }
+ .offset-sm-3 {
+ margin-left: 25%
+ }
+ .offset-sm-4 {
+ margin-left: 33.3333333333%
+ }
+ .offset-sm-5 {
+ margin-left: 41.6666666667%
+ }
+ .offset-sm-6 {
+ margin-left: 50%
+ }
+ .offset-sm-7 {
+ margin-left: 58.3333333333%
+ }
+ .offset-sm-8 {
+ margin-left: 66.6666666667%
+ }
+ .offset-sm-9 {
+ margin-left: 75%
+ }
+ .offset-sm-10 {
+ margin-left: 83.3333333333%
+ }
+ .offset-sm-11 {
+ margin-left: 91.6666666667%
+ }
+ .g-sm-0,
+ .gx-sm-0 {
+ --bs-gutter-x: 0
+ }
+ .g-sm-0,
+ .gy-sm-0 {
+ --bs-gutter-y: 0
+ }
+ .g-sm-1,
+ .gx-sm-1 {
+ --bs-gutter-x: 0.25rem
+ }
+ .g-sm-1,
+ .gy-sm-1 {
+ --bs-gutter-y: 0.25rem
+ }
+ .g-sm-2,
+ .gx-sm-2 {
+ --bs-gutter-x: 0.5rem
+ }
+ .g-sm-2,
+ .gy-sm-2 {
+ --bs-gutter-y: 0.5rem
+ }
+ .g-sm-3,
+ .gx-sm-3 {
+ --bs-gutter-x: 1rem
+ }
+ .g-sm-3,
+ .gy-sm-3 {
+ --bs-gutter-y: 1rem
+ }
+ .g-sm-4,
+ .gx-sm-4 {
+ --bs-gutter-x: 1.5rem
+ }
+ .g-sm-4,
+ .gy-sm-4 {
+ --bs-gutter-y: 1.5rem
+ }
+ .g-sm-5,
+ .gx-sm-5 {
+ --bs-gutter-x: 3rem
+ }
+ .g-sm-5,
+ .gy-sm-5 {
+ --bs-gutter-y: 3rem
+ }
+}
+
+@media(min-width: 768px) {
+ .col-md {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%
+ }
+ .row-cols-md-auto>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .row-cols-md-1>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .row-cols-md-2>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .row-cols-md-3>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .row-cols-md-4>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .row-cols-md-5>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 20%
+ }
+ .row-cols-md-6>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-md-auto {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .col-md-1 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 8.3333333333%
+ }
+ .col-md-2 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-md-3 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .col-md-4 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .col-md-5 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 41.6666666667%
+ }
+ .col-md-6 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .col-md-7 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 58.3333333333%
+ }
+ .col-md-8 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 66.6666666667%
+ }
+ .col-md-9 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 75%
+ }
+ .col-md-10 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 83.3333333333%
+ }
+ .col-md-11 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 91.6666666667%
+ }
+ .col-md-12 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .offset-md-0 {
+ margin-left: 0
+ }
+ .offset-md-1 {
+ margin-left: 8.3333333333%
+ }
+ .offset-md-2 {
+ margin-left: 16.6666666667%
+ }
+ .offset-md-3 {
+ margin-left: 25%
+ }
+ .offset-md-4 {
+ margin-left: 33.3333333333%
+ }
+ .offset-md-5 {
+ margin-left: 41.6666666667%
+ }
+ .offset-md-6 {
+ margin-left: 50%
+ }
+ .offset-md-7 {
+ margin-left: 58.3333333333%
+ }
+ .offset-md-8 {
+ margin-left: 66.6666666667%
+ }
+ .offset-md-9 {
+ margin-left: 75%
+ }
+ .offset-md-10 {
+ margin-left: 83.3333333333%
+ }
+ .offset-md-11 {
+ margin-left: 91.6666666667%
+ }
+ .g-md-0,
+ .gx-md-0 {
+ --bs-gutter-x: 0
+ }
+ .g-md-0,
+ .gy-md-0 {
+ --bs-gutter-y: 0
+ }
+ .g-md-1,
+ .gx-md-1 {
+ --bs-gutter-x: 0.25rem
+ }
+ .g-md-1,
+ .gy-md-1 {
+ --bs-gutter-y: 0.25rem
+ }
+ .g-md-2,
+ .gx-md-2 {
+ --bs-gutter-x: 0.5rem
+ }
+ .g-md-2,
+ .gy-md-2 {
+ --bs-gutter-y: 0.5rem
+ }
+ .g-md-3,
+ .gx-md-3 {
+ --bs-gutter-x: 1rem
+ }
+ .g-md-3,
+ .gy-md-3 {
+ --bs-gutter-y: 1rem
+ }
+ .g-md-4,
+ .gx-md-4 {
+ --bs-gutter-x: 1.5rem
+ }
+ .g-md-4,
+ .gy-md-4 {
+ --bs-gutter-y: 1.5rem
+ }
+ .g-md-5,
+ .gx-md-5 {
+ --bs-gutter-x: 3rem
+ }
+ .g-md-5,
+ .gy-md-5 {
+ --bs-gutter-y: 3rem
+ }
+}
+
+@media(min-width: 992px) {
+ .col-lg {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%
+ }
+ .row-cols-lg-auto>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .row-cols-lg-1>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .row-cols-lg-2>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .row-cols-lg-3>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .row-cols-lg-4>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .row-cols-lg-5>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 20%
+ }
+ .row-cols-lg-6>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-lg-auto {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .col-lg-1 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 8.3333333333%
+ }
+ .col-lg-2 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-lg-3 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .col-lg-4 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .col-lg-5 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 41.6666666667%
+ }
+ .col-lg-6 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .col-lg-7 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 58.3333333333%
+ }
+ .col-lg-8 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 66.6666666667%
+ }
+ .col-lg-9 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 75%
+ }
+ .col-lg-10 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 83.3333333333%
+ }
+ .col-lg-11 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 91.6666666667%
+ }
+ .col-lg-12 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .offset-lg-0 {
+ margin-left: 0
+ }
+ .offset-lg-1 {
+ margin-left: 8.3333333333%
+ }
+ .offset-lg-2 {
+ margin-left: 16.6666666667%
+ }
+ .offset-lg-3 {
+ margin-left: 25%
+ }
+ .offset-lg-4 {
+ margin-left: 33.3333333333%
+ }
+ .offset-lg-5 {
+ margin-left: 41.6666666667%
+ }
+ .offset-lg-6 {
+ margin-left: 50%
+ }
+ .offset-lg-7 {
+ margin-left: 58.3333333333%
+ }
+ .offset-lg-8 {
+ margin-left: 66.6666666667%
+ }
+ .offset-lg-9 {
+ margin-left: 75%
+ }
+ .offset-lg-10 {
+ margin-left: 83.3333333333%
+ }
+ .offset-lg-11 {
+ margin-left: 91.6666666667%
+ }
+ .g-lg-0,
+ .gx-lg-0 {
+ --bs-gutter-x: 0
+ }
+ .g-lg-0,
+ .gy-lg-0 {
+ --bs-gutter-y: 0
+ }
+ .g-lg-1,
+ .gx-lg-1 {
+ --bs-gutter-x: 0.25rem
+ }
+ .g-lg-1,
+ .gy-lg-1 {
+ --bs-gutter-y: 0.25rem
+ }
+ .g-lg-2,
+ .gx-lg-2 {
+ --bs-gutter-x: 0.5rem
+ }
+ .g-lg-2,
+ .gy-lg-2 {
+ --bs-gutter-y: 0.5rem
+ }
+ .g-lg-3,
+ .gx-lg-3 {
+ --bs-gutter-x: 1rem
+ }
+ .g-lg-3,
+ .gy-lg-3 {
+ --bs-gutter-y: 1rem
+ }
+ .g-lg-4,
+ .gx-lg-4 {
+ --bs-gutter-x: 1.5rem
+ }
+ .g-lg-4,
+ .gy-lg-4 {
+ --bs-gutter-y: 1.5rem
+ }
+ .g-lg-5,
+ .gx-lg-5 {
+ --bs-gutter-x: 3rem
+ }
+ .g-lg-5,
+ .gy-lg-5 {
+ --bs-gutter-y: 3rem
+ }
+}
+
+@media(min-width: 1200px) {
+ .col-xl {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%
+ }
+ .row-cols-xl-auto>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .row-cols-xl-1>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .row-cols-xl-2>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .row-cols-xl-3>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .row-cols-xl-4>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .row-cols-xl-5>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 20%
+ }
+ .row-cols-xl-6>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-xl-auto {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .col-xl-1 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 8.3333333333%
+ }
+ .col-xl-2 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-xl-3 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .col-xl-4 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .col-xl-5 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 41.6666666667%
+ }
+ .col-xl-6 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .col-xl-7 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 58.3333333333%
+ }
+ .col-xl-8 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 66.6666666667%
+ }
+ .col-xl-9 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 75%
+ }
+ .col-xl-10 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 83.3333333333%
+ }
+ .col-xl-11 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 91.6666666667%
+ }
+ .col-xl-12 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .offset-xl-0 {
+ margin-left: 0
+ }
+ .offset-xl-1 {
+ margin-left: 8.3333333333%
+ }
+ .offset-xl-2 {
+ margin-left: 16.6666666667%
+ }
+ .offset-xl-3 {
+ margin-left: 25%
+ }
+ .offset-xl-4 {
+ margin-left: 33.3333333333%
+ }
+ .offset-xl-5 {
+ margin-left: 41.6666666667%
+ }
+ .offset-xl-6 {
+ margin-left: 50%
+ }
+ .offset-xl-7 {
+ margin-left: 58.3333333333%
+ }
+ .offset-xl-8 {
+ margin-left: 66.6666666667%
+ }
+ .offset-xl-9 {
+ margin-left: 75%
+ }
+ .offset-xl-10 {
+ margin-left: 83.3333333333%
+ }
+ .offset-xl-11 {
+ margin-left: 91.6666666667%
+ }
+ .g-xl-0,
+ .gx-xl-0 {
+ --bs-gutter-x: 0
+ }
+ .g-xl-0,
+ .gy-xl-0 {
+ --bs-gutter-y: 0
+ }
+ .g-xl-1,
+ .gx-xl-1 {
+ --bs-gutter-x: 0.25rem
+ }
+ .g-xl-1,
+ .gy-xl-1 {
+ --bs-gutter-y: 0.25rem
+ }
+ .g-xl-2,
+ .gx-xl-2 {
+ --bs-gutter-x: 0.5rem
+ }
+ .g-xl-2,
+ .gy-xl-2 {
+ --bs-gutter-y: 0.5rem
+ }
+ .g-xl-3,
+ .gx-xl-3 {
+ --bs-gutter-x: 1rem
+ }
+ .g-xl-3,
+ .gy-xl-3 {
+ --bs-gutter-y: 1rem
+ }
+ .g-xl-4,
+ .gx-xl-4 {
+ --bs-gutter-x: 1.5rem
+ }
+ .g-xl-4,
+ .gy-xl-4 {
+ --bs-gutter-y: 1.5rem
+ }
+ .g-xl-5,
+ .gx-xl-5 {
+ --bs-gutter-x: 3rem
+ }
+ .g-xl-5,
+ .gy-xl-5 {
+ --bs-gutter-y: 3rem
+ }
+}
+
+@media(min-width: 1400px) {
+ .col-xxl {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%
+ }
+ .row-cols-xxl-auto>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .row-cols-xxl-1>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .row-cols-xxl-2>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .row-cols-xxl-3>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .row-cols-xxl-4>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .row-cols-xxl-5>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 20%
+ }
+ .row-cols-xxl-6>* {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-xxl-auto {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto
+ }
+ .col-xxl-1 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 8.3333333333%
+ }
+ .col-xxl-2 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 16.6666666667%
+ }
+ .col-xxl-3 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 25%
+ }
+ .col-xxl-4 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 33.3333333333%
+ }
+ .col-xxl-5 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 41.6666666667%
+ }
+ .col-xxl-6 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 50%
+ }
+ .col-xxl-7 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 58.3333333333%
+ }
+ .col-xxl-8 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 66.6666666667%
+ }
+ .col-xxl-9 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 75%
+ }
+ .col-xxl-10 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 83.3333333333%
+ }
+ .col-xxl-11 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 91.6666666667%
+ }
+ .col-xxl-12 {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: 100%
+ }
+ .offset-xxl-0 {
+ margin-left: 0
+ }
+ .offset-xxl-1 {
+ margin-left: 8.3333333333%
+ }
+ .offset-xxl-2 {
+ margin-left: 16.6666666667%
+ }
+ .offset-xxl-3 {
+ margin-left: 25%
+ }
+ .offset-xxl-4 {
+ margin-left: 33.3333333333%
+ }
+ .offset-xxl-5 {
+ margin-left: 41.6666666667%
+ }
+ .offset-xxl-6 {
+ margin-left: 50%
+ }
+ .offset-xxl-7 {
+ margin-left: 58.3333333333%
+ }
+ .offset-xxl-8 {
+ margin-left: 66.6666666667%
+ }
+ .offset-xxl-9 {
+ margin-left: 75%
+ }
+ .offset-xxl-10 {
+ margin-left: 83.3333333333%
+ }
+ .offset-xxl-11 {
+ margin-left: 91.6666666667%
+ }
+ .g-xxl-0,
+ .gx-xxl-0 {
+ --bs-gutter-x: 0
+ }
+ .g-xxl-0,
+ .gy-xxl-0 {
+ --bs-gutter-y: 0
+ }
+ .g-xxl-1,
+ .gx-xxl-1 {
+ --bs-gutter-x: 0.25rem
+ }
+ .g-xxl-1,
+ .gy-xxl-1 {
+ --bs-gutter-y: 0.25rem
+ }
+ .g-xxl-2,
+ .gx-xxl-2 {
+ --bs-gutter-x: 0.5rem
+ }
+ .g-xxl-2,
+ .gy-xxl-2 {
+ --bs-gutter-y: 0.5rem
+ }
+ .g-xxl-3,
+ .gx-xxl-3 {
+ --bs-gutter-x: 1rem
+ }
+ .g-xxl-3,
+ .gy-xxl-3 {
+ --bs-gutter-y: 1rem
+ }
+ .g-xxl-4,
+ .gx-xxl-4 {
+ --bs-gutter-x: 1.5rem
+ }
+ .g-xxl-4,
+ .gy-xxl-4 {
+ --bs-gutter-y: 1.5rem
+ }
+ .g-xxl-5,
+ .gx-xxl-5 {
+ --bs-gutter-x: 3rem
+ }
+ .g-xxl-5,
+ .gy-xxl-5 {
+ --bs-gutter-y: 3rem
+ }
+}
+
+.table {
+ --bs-table-bg: transparent;
+ --bs-table-accent-bg: transparent;
+ --bs-table-striped-color: #212529;
+ --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
+ --bs-table-active-color: #212529;
+ --bs-table-active-bg: rgba(0, 0, 0, 0.1);
+ --bs-table-hover-color: #212529;
+ --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
+ width: 100%;
+ margin-bottom: 1rem;
+ color: #212529;
+ vertical-align: top;
+ border-color: #dee2e6
+}
+
+.table>:not(caption)>*>* {
+ padding: .5rem .5rem;
+ background-color: var(--bs-table-bg);
+ border-bottom-width: 1px;
+ box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
+}
+
+.table>tbody {
+ vertical-align: inherit
+}
+
+.table>thead {
+ vertical-align: bottom
+}
+
+.table>:not(:last-child)>:last-child>* {
+ border-bottom-color: currentColor
+}
+
+.caption-top {
+ caption-side: top
+}
+
+.table-sm>:not(caption)>*>* {
+ padding: .25rem .25rem
+}
+
+.table-bordered>:not(caption)>* {
+ border-width: 1px 0
+}
+
+.table-bordered>:not(caption)>*>* {
+ border-width: 0 1px
+}
+
+.table-borderless>:not(caption)>*>* {
+ border-bottom-width: 0
+}
+
+.table-striped>tbody>tr:nth-of-type(odd) {
+ --bs-table-accent-bg: var(--bs-table-striped-bg);
+ color: var(--bs-table-striped-color)
+}
+
+.table-active {
+ --bs-table-accent-bg: var(--bs-table-active-bg);
+ color: var(--bs-table-active-color)
+}
+
+.table-hover>tbody>tr:hover {
+ --bs-table-accent-bg: var(--bs-table-hover-bg);
+ color: var(--bs-table-hover-color)
+}
+
+.table-primary {
+ --bs-table-bg: #cfe2ff;
+ --bs-table-striped-bg: #c5d7f2;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #bacbe6;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #bfd1ec;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #bacbe6
+}
+
+.table-secondary {
+ --bs-table-bg: #e2e3e5;
+ --bs-table-striped-bg: #d7d8da;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #cbccce;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #d1d2d4;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #cbccce
+}
+
+.table-success {
+ --bs-table-bg: #d1e7dd;
+ --bs-table-striped-bg: #c7dbd2;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #bcd0c7;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #c1d6cc;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #bcd0c7
+}
+
+.table-info {
+ --bs-table-bg: #cff4fc;
+ --bs-table-striped-bg: #c5e8ef;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #badce3;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #bfe2e9;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #badce3
+}
+
+.table-warning {
+ --bs-table-bg: #fff3cd;
+ --bs-table-striped-bg: #f2e7c3;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #e6dbb9;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #ece1be;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #e6dbb9
+}
+
+.table-danger {
+ --bs-table-bg: #f8d7da;
+ --bs-table-striped-bg: #eccccf;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #dfc2c4;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #e5c7ca;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #dfc2c4
+}
+
+.table-light {
+ --bs-table-bg: #f8f9fa;
+ --bs-table-striped-bg: #ecedee;
+ --bs-table-striped-color: #000;
+ --bs-table-active-bg: #dfe0e1;
+ --bs-table-active-color: #000;
+ --bs-table-hover-bg: #e5e6e7;
+ --bs-table-hover-color: #000;
+ color: #000;
+ border-color: #dfe0e1
+}
+
+.table-dark {
+ --bs-table-bg: #212529;
+ --bs-table-striped-bg: #2c3034;
+ --bs-table-striped-color: #fff;
+ --bs-table-active-bg: #373b3e;
+ --bs-table-active-color: #fff;
+ --bs-table-hover-bg: #323539;
+ --bs-table-hover-color: #fff;
+ color: #fff;
+ border-color: #373b3e
+}
+
+.table-responsive {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch
+}
+
+@media(max-width: 575.98px) {
+ .table-responsive-sm {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch
+ }
+}
+
+@media(max-width: 767.98px) {
+ .table-responsive-md {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch
+ }
+}
+
+@media(max-width: 991.98px) {
+ .table-responsive-lg {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch
+ }
+}
+
+@media(max-width: 1199.98px) {
+ .table-responsive-xl {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch
+ }
+}
+
+@media(max-width: 1399.98px) {
+ .table-responsive-xxl {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch
+ }
+}
+
+.form-label {
+ margin-bottom: .5rem
+}
+
+.col-form-label {
+ padding-top: calc(0.375rem + 1px);
+ padding-bottom: calc(0.375rem + 1px);
+ margin-bottom: 0;
+ font-size: inherit;
+ line-height: 1.5
+}
+
+.col-form-label-lg {
+ padding-top: calc(0.5rem + 1px);
+ padding-bottom: calc(0.5rem + 1px);
+ font-size: 1.25rem
+}
+
+.col-form-label-sm {
+ padding-top: calc(0.25rem + 1px);
+ padding-bottom: calc(0.25rem + 1px);
+ font-size: 0.875rem
+}
+
+.form-text {
+ margin-top: .25rem;
+ font-size: 0.875em;
+ color: #6c757d
+}
+
+.form-control {
+ display: block;
+ width: 100%;
+ padding: .375rem .75rem;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #ced4da;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ border-radius: .25rem;
+ transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-control {
+ transition: none
+ }
+}
+
+.form-control[type=file] {
+ overflow: hidden
+}
+
+.form-control[type=file]:not(:disabled):not([readonly]) {
+ cursor: pointer
+}
+
+.form-control:focus {
+ color: #212529;
+ background-color: #fff;
+ border-color: #86b7fe;
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.form-control::-webkit-date-and-time-value {
+ height: 1.5em
+}
+
+.form-control::-webkit-input-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control::-moz-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control:-ms-input-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control::placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control:disabled,
+.form-control[readonly] {
+ background-color: #e9ecef;
+ opacity: 1
+}
+
+.form-control::file-selector-button {
+ padding: .375rem .75rem;
+ margin: -0.375rem -0.75rem;
+ -webkit-margin-end: .75rem;
+ margin-inline-end: .75rem;
+ color: #212529;
+ background-color: #e9ecef;
+ pointer-events: none;
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0;
+ border-inline-end-width: 1px;
+ border-radius: 0;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-control::file-selector-button {
+ transition: none
+ }
+}
+
+.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
+ background-color: #dde0e3
+}
+
+.form-control::-webkit-file-upload-button {
+ padding: .375rem .75rem;
+ margin: -0.375rem -0.75rem;
+ -webkit-margin-end: .75rem;
+ margin-inline-end: .75rem;
+ color: #212529;
+ background-color: #e9ecef;
+ pointer-events: none;
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0;
+ border-inline-end-width: 1px;
+ border-radius: 0;
+ -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-control::-webkit-file-upload-button {
+ -webkit-transition: none;
+ transition: none
+ }
+}
+
+.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
+ background-color: #dde0e3
+}
+
+.form-control-plaintext {
+ display: block;
+ width: 100%;
+ padding: .375rem 0;
+ margin-bottom: 0;
+ line-height: 1.5;
+ color: #212529;
+ background-color: transparent;
+ border: solid transparent;
+ border-width: 1px 0
+}
+
+.form-control-plaintext.form-control-sm,
+.form-control-plaintext.form-control-lg {
+ padding-right: 0;
+ padding-left: 0
+}
+
+.form-control-sm {
+ min-height: calc(1.5em + 0.5rem + 2px);
+ padding: .25rem .5rem;
+ font-size: 0.875rem;
+ border-radius: .2rem
+}
+
+.form-control-sm::file-selector-button {
+ padding: .25rem .5rem;
+ margin: -0.25rem -0.5rem;
+ -webkit-margin-end: .5rem;
+ margin-inline-end: .5rem
+}
+
+.form-control-sm::-webkit-file-upload-button {
+ padding: .25rem .5rem;
+ margin: -0.25rem -0.5rem;
+ -webkit-margin-end: .5rem;
+ margin-inline-end: .5rem
+}
+
+.form-control-lg {
+ min-height: calc(1.5em + 1rem + 2px);
+ padding: .5rem 1rem;
+ font-size: 1.25rem;
+ border-radius: .3rem
+}
+
+.form-control-lg::file-selector-button {
+ padding: .5rem 1rem;
+ margin: -0.5rem -1rem;
+ -webkit-margin-end: 1rem;
+ margin-inline-end: 1rem
+}
+
+.form-control-lg::-webkit-file-upload-button {
+ padding: .5rem 1rem;
+ margin: -0.5rem -1rem;
+ -webkit-margin-end: 1rem;
+ margin-inline-end: 1rem
+}
+
+textarea.form-control {
+ min-height: calc(1.5em + 0.75rem + 2px)
+}
+
+textarea.form-control-sm {
+ min-height: calc(1.5em + 0.5rem + 2px)
+}
+
+textarea.form-control-lg {
+ min-height: calc(1.5em + 1rem + 2px)
+}
+
+.form-control-color {
+ max-width: 3rem;
+ height: auto;
+ padding: .375rem
+}
+
+.form-control-color:not(:disabled):not([readonly]) {
+ cursor: pointer
+}
+
+.form-control-color::-moz-color-swatch {
+ height: 1.5em;
+ border-radius: .25rem
+}
+
+.form-control-color::-webkit-color-swatch {
+ height: 1.5em;
+ border-radius: .25rem
+}
+
+.form-select {
+ display: block;
+ width: 100%;
+ padding: .375rem 2.25rem .375rem .75rem;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ background-color: #fff;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-position: right .75rem center;
+ background-size: 16px 12px;
+ border: 1px solid #ced4da;
+ border-radius: .25rem;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none
+}
+
+.form-select:focus {
+ border-color: #86b7fe;
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.form-select[multiple],
+.form-select[size]:not([size="1"]) {
+ padding-right: .75rem;
+ background-image: none
+}
+
+.form-select:disabled {
+ background-color: #e9ecef
+}
+
+.form-select:-moz-focusring {
+ color: transparent;
+ text-shadow: 0 0 0 #212529
+}
+
+.form-select-sm {
+ padding-top: .25rem;
+ padding-bottom: .25rem;
+ padding-left: .5rem;
+ font-size: 0.875rem
+}
+
+.form-select-lg {
+ padding-top: .5rem;
+ padding-bottom: .5rem;
+ padding-left: 1rem;
+ font-size: 1.25rem
+}
+
+.form-check {
+ display: block;
+ min-height: 1.5rem;
+ padding-left: 1.5em;
+ margin-bottom: .125rem
+}
+
+.form-check .form-check-input {
+ float: left;
+ margin-left: -1.5em
+}
+
+.form-check-input {
+ width: 1em;
+ height: 1em;
+ margin-top: .25em;
+ vertical-align: top;
+ background-color: #fff;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: contain;
+ border: 1px solid rgba(0, 0, 0, .25);
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-print-color-adjust: exact;
+ color-adjust: exact
+}
+
+.form-check-input[type=checkbox] {
+ border-radius: .25em
+}
+
+.form-check-input[type=radio] {
+ border-radius: 50%
+}
+
+.form-check-input:active {
+ -webkit-filter: brightness(90%);
+ filter: brightness(90%)
+}
+
+.form-check-input:focus {
+ border-color: #86b7fe;
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.form-check-input:checked {
+ background-color: #0d6efd;
+ border-color: #0d6efd
+}
+
+.form-check-input:checked[type=checkbox] {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
+}
+
+.form-check-input:checked[type=radio] {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
+}
+
+.form-check-input[type=checkbox]:indeterminate {
+ background-color: #0d6efd;
+ border-color: #0d6efd;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
+}
+
+.form-check-input:disabled {
+ pointer-events: none;
+ -webkit-filter: none;
+ filter: none;
+ opacity: .5
+}
+
+.form-check-input[disabled]~.form-check-label,
+.form-check-input:disabled~.form-check-label {
+ opacity: .5
+}
+
+.form-switch {
+ padding-left: 2.5em
+}
+
+.form-switch .form-check-input {
+ width: 2em;
+ margin-left: -2.5em;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
+ background-position: left center;
+ border-radius: 2em;
+ transition: background-position .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-switch .form-check-input {
+ transition: none
+ }
+}
+
+.form-switch .form-check-input:focus {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
+}
+
+.form-switch .form-check-input:checked {
+ background-position: right center;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
+}
+
+.form-check-inline {
+ display: inline-block;
+ margin-right: 1rem
+}
+
+.btn-check {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none
+}
+
+.btn-check[disabled]+.btn,
+.btn-check:disabled+.btn {
+ pointer-events: none;
+ -webkit-filter: none;
+ filter: none;
+ opacity: .65
+}
+
+.form-range {
+ width: 100%;
+ height: 1.5rem;
+ padding: 0;
+ background-color: transparent;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none
+}
+
+.form-range:focus {
+ outline: 0
+}
+
+.form-range:focus::-webkit-slider-thumb {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.form-range:focus::-moz-range-thumb {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.form-range::-moz-focus-outer {
+ border: 0
+}
+
+.form-range::-webkit-slider-thumb {
+ width: 1rem;
+ height: 1rem;
+ margin-top: -0.25rem;
+ background-color: #0d6efd;
+ border: 0;
+ border-radius: 1rem;
+ -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
+ transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
+ -webkit-appearance: none;
+ appearance: none
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-range::-webkit-slider-thumb {
+ -webkit-transition: none;
+ transition: none
+ }
+}
+
+.form-range::-webkit-slider-thumb:active {
+ background-color: #b6d4fe
+}
+
+.form-range::-webkit-slider-runnable-track {
+ width: 100%;
+ height: .5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: #dee2e6;
+ border-color: transparent;
+ border-radius: 1rem
+}
+
+.form-range::-moz-range-thumb {
+ width: 1rem;
+ height: 1rem;
+ background-color: #0d6efd;
+ border: 0;
+ border-radius: 1rem;
+ -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
+ transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
+ -moz-appearance: none;
+ appearance: none
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-range::-moz-range-thumb {
+ -moz-transition: none;
+ transition: none
+ }
+}
+
+.form-range::-moz-range-thumb:active {
+ background-color: #b6d4fe
+}
+
+.form-range::-moz-range-track {
+ width: 100%;
+ height: .5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: #dee2e6;
+ border-color: transparent;
+ border-radius: 1rem
+}
+
+.form-range:disabled {
+ pointer-events: none
+}
+
+.form-range:disabled::-webkit-slider-thumb {
+ background-color: #adb5bd
+}
+
+.form-range:disabled::-moz-range-thumb {
+ background-color: #adb5bd
+}
+
+.form-floating {
+ position: relative
+}
+
+.form-floating>.form-control,
+.form-floating>.form-select {
+ height: calc(3.5rem + 2px);
+ padding: 1rem .75rem
+}
+
+.form-floating>label {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%;
+ padding: 1rem .75rem;
+ pointer-events: none;
+ border: 1px solid transparent;
+ -webkit-transform-origin: 0 0;
+ transform-origin: 0 0;
+ transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
+ transition: opacity .1s ease-in-out, transform .1s ease-in-out;
+ transition: opacity .1s ease-in-out, transform .1s ease-in-out, -webkit-transform .1s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .form-floating>label {
+ transition: none
+ }
+}
+
+.form-floating>.form-control::-webkit-input-placeholder {
+ color: transparent
+}
+
+.form-floating>.form-control::-moz-placeholder {
+ color: transparent
+}
+
+.form-floating>.form-control:-ms-input-placeholder {
+ color: transparent
+}
+
+.form-floating>.form-control::placeholder {
+ color: transparent
+}
+
+.form-floating>.form-control:not(:-moz-placeholder-shown) {
+ padding-top: 1.625rem;
+ padding-bottom: .625rem
+}
+
+.form-floating>.form-control:not(:-ms-input-placeholder) {
+ padding-top: 1.625rem;
+ padding-bottom: .625rem
+}
+
+.form-floating>.form-control:focus,
+.form-floating>.form-control:not(:placeholder-shown) {
+ padding-top: 1.625rem;
+ padding-bottom: .625rem
+}
+
+.form-floating>.form-control:-webkit-autofill {
+ padding-top: 1.625rem;
+ padding-bottom: .625rem
+}
+
+.form-floating>.form-select {
+ padding-top: 1.625rem;
+ padding-bottom: .625rem
+}
+
+.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
+ opacity: .65;
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
+}
+
+.form-floating>.form-control:not(:-ms-input-placeholder)~label {
+ opacity: .65;
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
+}
+
+.form-floating>.form-control:focus~label,
+.form-floating>.form-control:not(:placeholder-shown)~label,
+.form-floating>.form-select~label {
+ opacity: .65;
+ -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
+}
+
+.form-floating>.form-control:-webkit-autofill~label {
+ opacity: .65;
+ -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
+}
+
+.input-group {
+ position: relative;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-align-items: stretch;
+ align-items: stretch;
+ width: 100%
+}
+
+.input-group>.form-control,
+.input-group>.form-select {
+ position: relative;
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+ width: 1%;
+ min-width: 0
+}
+
+.input-group>.form-control:focus,
+.input-group>.form-select:focus {
+ z-index: 3
+}
+
+.input-group .btn {
+ position: relative;
+ z-index: 2
+}
+
+.input-group .btn:focus {
+ z-index: 3
+}
+
+.input-group-text {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ align-items: center;
+ padding: .375rem .75rem;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: center;
+ white-space: nowrap;
+ background-color: #e9ecef;
+ border: 1px solid #ced4da;
+ border-radius: .25rem
+}
+
+.input-group-lg>.form-control,
+.input-group-lg>.form-select,
+.input-group-lg>.input-group-text,
+.input-group-lg>.btn {
+ padding: .5rem 1rem;
+ font-size: 1.25rem;
+ border-radius: .3rem
+}
+
+.input-group-sm>.form-control,
+.input-group-sm>.form-select,
+.input-group-sm>.input-group-text,
+.input-group-sm>.btn {
+ padding: .25rem .5rem;
+ font-size: 0.875rem;
+ border-radius: .2rem
+}
+
+.input-group-lg>.form-select,
+.input-group-sm>.form-select {
+ padding-right: 3rem
+}
+
+.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
+.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
+.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
+ margin-left: -1px;
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.valid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: .25rem;
+ font-size: 0.875em;
+ color: #198754
+}
+
+.valid-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%;
+ padding: .25rem .5rem;
+ margin-top: .1rem;
+ font-size: 0.875rem;
+ color: #fff;
+ background-color: rgba(25, 135, 84, .9);
+ border-radius: .25rem
+}
+
+.was-validated :valid~.valid-feedback,
+.was-validated :valid~.valid-tooltip,
+.is-valid~.valid-feedback,
+.is-valid~.valid-tooltip {
+ display: block
+}
+
+.was-validated .form-control:valid,
+.form-control.is-valid {
+ border-color: #198754;
+ padding-right: calc(1.5em + 0.75rem);
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-position: right calc(0.375em + 0.1875rem) center;
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
+}
+
+.was-validated .form-control:valid:focus,
+.form-control.is-valid:focus {
+ border-color: #198754;
+ box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
+}
+
+.was-validated textarea.form-control:valid,
+textarea.form-control.is-valid {
+ padding-right: calc(1.5em + 0.75rem);
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)
+}
+
+.was-validated .form-select:valid,
+.form-select.is-valid {
+ border-color: #198754
+}
+
+.was-validated .form-select:valid:not([multiple]):not([size]),
+.was-validated .form-select:valid:not([multiple])[size="1"],
+.form-select.is-valid:not([multiple]):not([size]),
+.form-select.is-valid:not([multiple])[size="1"] {
+ padding-right: 4.125rem;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
+ background-position: right .75rem center, center right 2.25rem;
+ background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
+}
+
+.was-validated .form-select:valid:focus,
+.form-select.is-valid:focus {
+ border-color: #198754;
+ box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
+}
+
+.was-validated .form-check-input:valid,
+.form-check-input.is-valid {
+ border-color: #198754
+}
+
+.was-validated .form-check-input:valid:checked,
+.form-check-input.is-valid:checked {
+ background-color: #198754
+}
+
+.was-validated .form-check-input:valid:focus,
+.form-check-input.is-valid:focus {
+ box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25)
+}
+
+.was-validated .form-check-input:valid~.form-check-label,
+.form-check-input.is-valid~.form-check-label {
+ color: #198754
+}
+
+.form-check-inline .form-check-input~.valid-feedback {
+ margin-left: .5em
+}
+
+.was-validated .input-group .form-control:valid,
+.input-group .form-control.is-valid,
+.was-validated .input-group .form-select:valid,
+.input-group .form-select.is-valid {
+ z-index: 1
+}
+
+.was-validated .input-group .form-control:valid:focus,
+.input-group .form-control.is-valid:focus,
+.was-validated .input-group .form-select:valid:focus,
+.input-group .form-select.is-valid:focus {
+ z-index: 3
+}
+
+.invalid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: .25rem;
+ font-size: 0.875em;
+ color: #dc3545
+}
+
+.invalid-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%;
+ padding: .25rem .5rem;
+ margin-top: .1rem;
+ font-size: 0.875rem;
+ color: #fff;
+ background-color: rgba(220, 53, 69, .9);
+ border-radius: .25rem
+}
+
+.was-validated :invalid~.invalid-feedback,
+.was-validated :invalid~.invalid-tooltip,
+.is-invalid~.invalid-feedback,
+.is-invalid~.invalid-tooltip {
+ display: block
+}
+
+.was-validated .form-control:invalid,
+.form-control.is-invalid {
+ border-color: #dc3545;
+ padding-right: calc(1.5em + 0.75rem);
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-position: right calc(0.375em + 0.1875rem) center;
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
+}
+
+.was-validated .form-control:invalid:focus,
+.form-control.is-invalid:focus {
+ border-color: #dc3545;
+ box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
+}
+
+.was-validated textarea.form-control:invalid,
+textarea.form-control.is-invalid {
+ padding-right: calc(1.5em + 0.75rem);
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)
+}
+
+.was-validated .form-select:invalid,
+.form-select.is-invalid {
+ border-color: #dc3545
+}
+
+.was-validated .form-select:invalid:not([multiple]):not([size]),
+.was-validated .form-select:invalid:not([multiple])[size="1"],
+.form-select.is-invalid:not([multiple]):not([size]),
+.form-select.is-invalid:not([multiple])[size="1"] {
+ padding-right: 4.125rem;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
+ background-position: right .75rem center, center right 2.25rem;
+ background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
+}
+
+.was-validated .form-select:invalid:focus,
+.form-select.is-invalid:focus {
+ border-color: #dc3545;
+ box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
+}
+
+.was-validated .form-check-input:invalid,
+.form-check-input.is-invalid {
+ border-color: #dc3545
+}
+
+.was-validated .form-check-input:invalid:checked,
+.form-check-input.is-invalid:checked {
+ background-color: #dc3545
+}
+
+.was-validated .form-check-input:invalid:focus,
+.form-check-input.is-invalid:focus {
+ box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25)
+}
+
+.was-validated .form-check-input:invalid~.form-check-label,
+.form-check-input.is-invalid~.form-check-label {
+ color: #dc3545
+}
+
+.form-check-inline .form-check-input~.invalid-feedback {
+ margin-left: .5em
+}
+
+.was-validated .input-group .form-control:invalid,
+.input-group .form-control.is-invalid,
+.was-validated .input-group .form-select:invalid,
+.input-group .form-select.is-invalid {
+ z-index: 2
+}
+
+.was-validated .input-group .form-control:invalid:focus,
+.input-group .form-control.is-invalid:focus,
+.was-validated .input-group .form-select:invalid:focus,
+.input-group .form-select.is-invalid:focus {
+ z-index: 3
+}
+
+.btn {
+ display: inline-block;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: center;
+ text-decoration: none;
+ vertical-align: middle;
+ cursor: pointer;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ background-color: transparent;
+ border: 1px solid transparent;
+ padding: .375rem .75rem;
+ font-size: 1rem;
+ border-radius: .25rem;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .btn {
+ transition: none
+ }
+}
+
+.btn:hover {
+ color: #212529
+}
+
+.btn-check:focus+.btn,
+.btn:focus {
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.btn:disabled,
+.btn.disabled,
+fieldset:disabled .btn {
+ pointer-events: none;
+ opacity: .65
+}
+
+.btn-primary {
+ color: #000;
+ background-color: #15a362;
+ border-color: #15a362
+}
+
+.btn-primary:hover {
+ color: #000;
+ background-color: #38b17a;
+ border-color: #2cac72
+}
+
+.btn-check:focus+.btn-primary,
+.btn-primary:focus {
+ color: #000;
+ background-color: #38b17a;
+ border-color: #2cac72;
+ box-shadow: 0 0 0 .25rem rgba(18, 139, 83, .5)
+}
+
+.btn-check:checked+.btn-primary,
+.btn-check:active+.btn-primary,
+.btn-primary:active,
+.btn-primary.active,
+.show>.btn-primary.dropdown-toggle {
+ color: #000;
+ background-color: #44b581;
+ border-color: #2cac72
+}
+
+.btn-check:checked+.btn-primary:focus,
+.btn-check:active+.btn-primary:focus,
+.btn-primary:active:focus,
+.btn-primary.active:focus,
+.show>.btn-primary.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .25rem rgba(18, 139, 83, .5)
+}
+
+.btn-primary:disabled,
+.btn-primary.disabled {
+ color: #000;
+ background-color: #15a362;
+ border-color: #15a362
+}
+
+.btn-secondary {
+ color: #fff;
+ background-color: #5d6778;
+ border-color: #5d6778
+}
+
+.btn-secondary:hover {
+ color: #fff;
+ background-color: #4f5866;
+ border-color: #4a5260
+}
+
+.btn-check:focus+.btn-secondary,
+.btn-secondary:focus {
+ color: #fff;
+ background-color: #4f5866;
+ border-color: #4a5260;
+ box-shadow: 0 0 0 .25rem rgba(117, 126, 140, .5)
+}
+
+.btn-check:checked+.btn-secondary,
+.btn-check:active+.btn-secondary,
+.btn-secondary:active,
+.btn-secondary.active,
+.show>.btn-secondary.dropdown-toggle {
+ color: #fff;
+ background-color: #4a5260;
+ border-color: #464d5a
+}
+
+.btn-check:checked+.btn-secondary:focus,
+.btn-check:active+.btn-secondary:focus,
+.btn-secondary:active:focus,
+.btn-secondary.active:focus,
+.show>.btn-secondary.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .25rem rgba(117, 126, 140, .5)
+}
+
+.btn-secondary:disabled,
+.btn-secondary.disabled {
+ color: #fff;
+ background-color: #5d6778;
+ border-color: #5d6778
+}
+
+.btn-success {
+ color: #000;
+ background-color: #5cb377;
+ border-color: #5cb377
+}
+
+.btn-success:hover {
+ color: #000;
+ background-color: #74be8b;
+ border-color: #6cbb85
+}
+
+.btn-check:focus+.btn-success,
+.btn-success:focus {
+ color: #000;
+ background-color: #74be8b;
+ border-color: #6cbb85;
+ box-shadow: 0 0 0 .25rem rgba(78, 152, 101, .5)
+}
+
+.btn-check:checked+.btn-success,
+.btn-check:active+.btn-success,
+.btn-success:active,
+.btn-success.active,
+.show>.btn-success.dropdown-toggle {
+ color: #000;
+ background-color: #7dc292;
+ border-color: #6cbb85
+}
+
+.btn-check:checked+.btn-success:focus,
+.btn-check:active+.btn-success:focus,
+.btn-success:active:focus,
+.btn-success.active:focus,
+.show>.btn-success.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .25rem rgba(78, 152, 101, .5)
+}
+
+.btn-success:disabled,
+.btn-success.disabled {
+ color: #000;
+ background-color: #5cb377;
+ border-color: #5cb377
+}
+
+.btn-danger {
+ color: #000;
+ background-color: #d26d69;
+ border-color: #d26d69
+}
+
+.btn-danger:hover {
+ color: #000;
+ background-color: #d98380;
+ border-color: #d77c78
+}
+
+.btn-check:focus+.btn-danger,
+.btn-danger:focus {
+ color: #000;
+ background-color: #d98380;
+ border-color: #d77c78;
+ box-shadow: 0 0 0 .25rem rgba(179, 93, 89, .5)
+}
+
+.btn-check:checked+.btn-danger,
+.btn-check:active+.btn-danger,
+.btn-danger:active,
+.btn-danger.active,
+.show>.btn-danger.dropdown-toggle {
+ color: #000;
+ background-color: #db8a87;
+ border-color: #d77c78
+}
+
+.btn-check:checked+.btn-danger:focus,
+.btn-check:active+.btn-danger:focus,
+.btn-danger:active:focus,
+.btn-danger.active:focus,
+.show>.btn-danger.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .25rem rgba(179, 93, 89, .5)
+}
+
+.btn-danger:disabled,
+.btn-danger.disabled {
+ color: #000;
+ background-color: #d26d69;
+ border-color: #d26d69
+}
+
+.btn-warning {
+ color: #000;
+ background-color: #eebf41;
+ border-color: #eebf41
+}
+
+.btn-warning:hover {
+ color: #000;
+ background-color: #f1c95e;
+ border-color: #f0c554
+}
+
+.btn-check:focus+.btn-warning,
+.btn-warning:focus {
+ color: #000;
+ background-color: #f1c95e;
+ border-color: #f0c554;
+ box-shadow: 0 0 0 .25rem rgba(202, 162, 55, .5)
+}
+
+.btn-check:checked+.btn-warning,
+.btn-check:active+.btn-warning,
+.btn-warning:active,
+.btn-warning.active,
+.show>.btn-warning.dropdown-toggle {
+ color: #000;
+ background-color: #f1cc67;
+ border-color: #f0c554
+}
+
+.btn-check:checked+.btn-warning:focus,
+.btn-check:active+.btn-warning:focus,
+.btn-warning:active:focus,
+.btn-warning.active:focus,
+.show>.btn-warning.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .25rem rgba(202, 162, 55, .5)
+}
+
+.btn-warning:disabled,
+.btn-warning.disabled {
+ color: #000;
+ background-color: #eebf41;
+ border-color: #eebf41
+}
+
+.btn-info {
+ color: #000;
+ background-color: #5b99ea;
+ border-color: #5b99ea
+}
+
+.btn-info:hover {
+ color: #000;
+ background-color: #74a8ed;
+ border-color: #6ba3ec
+}
+
+.btn-check:focus+.btn-info,
+.btn-info:focus {
+ color: #000;
+ background-color: #74a8ed;
+ border-color: #6ba3ec;
+ box-shadow: 0 0 0 .25rem rgba(77, 130, 199, .5)
+}
+
+.btn-check:checked+.btn-info,
+.btn-check:active+.btn-info,
+.btn-info:active,
+.btn-info.active,
+.show>.btn-info.dropdown-toggle {
+ color: #000;
+ background-color: #7cadee;
+ border-color: #6ba3ec
+}
+
+.btn-check:checked+.btn-info:focus,
+.btn-check:active+.btn-info:focus,
+.btn-info:active:focus,
+.btn-info.active:focus,
+.show>.btn-info.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .25rem rgba(77, 130, 199, .5)
+}
+
+.btn-info:disabled,
+.btn-info.disabled {
+ color: #000;
+ background-color: #5b99ea;
+ border-color: #5b99ea
+}
+
+.btn-outline-primary {
+ color: #15a362;
+ border-color: #15a362
+}
+
+.btn-outline-primary:hover {
+ color: #000;
+ background-color: #15a362;
+ border-color: #15a362
+}
+
+.btn-check:focus+.btn-outline-primary,
+.btn-outline-primary:focus {
+ box-shadow: 0 0 0 .25rem rgba(21, 163, 98, .5)
+}
+
+.btn-check:checked+.btn-outline-primary,
+.btn-check:active+.btn-outline-primary,
+.btn-outline-primary:active,
+.btn-outline-primary.active,
+.btn-outline-primary.dropdown-toggle.show {
+ color: #000;
+ background-color: #15a362;
+ border-color: #15a362
+}
+
+.btn-check:checked+.btn-outline-primary:focus,
+.btn-check:active+.btn-outline-primary:focus,
+.btn-outline-primary:active:focus,
+.btn-outline-primary.active:focus,
+.btn-outline-primary.dropdown-toggle.show:focus {
+ box-shadow: 0 0 0 .25rem rgba(21, 163, 98, .5)
+}
+
+.btn-outline-primary:disabled,
+.btn-outline-primary.disabled {
+ color: #15a362;
+ background-color: transparent
+}
+
+.btn-outline-secondary {
+ color: #5d6778;
+ border-color: #5d6778
+}
+
+.btn-outline-secondary:hover {
+ color: #fff;
+ background-color: #5d6778;
+ border-color: #5d6778
+}
+
+.btn-check:focus+.btn-outline-secondary,
+.btn-outline-secondary:focus {
+ box-shadow: 0 0 0 .25rem rgba(93, 103, 120, .5)
+}
+
+.btn-check:checked+.btn-outline-secondary,
+.btn-check:active+.btn-outline-secondary,
+.btn-outline-secondary:active,
+.btn-outline-secondary.active,
+.btn-outline-secondary.dropdown-toggle.show {
+ color: #fff;
+ background-color: #5d6778;
+ border-color: #5d6778
+}
+
+.btn-check:checked+.btn-outline-secondary:focus,
+.btn-check:active+.btn-outline-secondary:focus,
+.btn-outline-secondary:active:focus,
+.btn-outline-secondary.active:focus,
+.btn-outline-secondary.dropdown-toggle.show:focus {
+ box-shadow: 0 0 0 .25rem rgba(93, 103, 120, .5)
+}
+
+.btn-outline-secondary:disabled,
+.btn-outline-secondary.disabled {
+ color: #5d6778;
+ background-color: transparent
+}
+
+.btn-outline-success {
+ color: #5cb377;
+ border-color: #5cb377
+}
+
+.btn-outline-success:hover {
+ color: #000;
+ background-color: #5cb377;
+ border-color: #5cb377
+}
+
+.btn-check:focus+.btn-outline-success,
+.btn-outline-success:focus {
+ box-shadow: 0 0 0 .25rem rgba(92, 179, 119, .5)
+}
+
+.btn-check:checked+.btn-outline-success,
+.btn-check:active+.btn-outline-success,
+.btn-outline-success:active,
+.btn-outline-success.active,
+.btn-outline-success.dropdown-toggle.show {
+ color: #000;
+ background-color: #5cb377;
+ border-color: #5cb377
+}
+
+.btn-check:checked+.btn-outline-success:focus,
+.btn-check:active+.btn-outline-success:focus,
+.btn-outline-success:active:focus,
+.btn-outline-success.active:focus,
+.btn-outline-success.dropdown-toggle.show:focus {
+ box-shadow: 0 0 0 .25rem rgba(92, 179, 119, .5)
+}
+
+.btn-outline-success:disabled,
+.btn-outline-success.disabled {
+ color: #5cb377;
+ background-color: transparent
+}
+
+.btn-outline-danger {
+ color: #d26d69;
+ border-color: #d26d69
+}
+
+.btn-outline-danger:hover {
+ color: #000;
+ background-color: #d26d69;
+ border-color: #d26d69
+}
+
+.btn-check:focus+.btn-outline-danger,
+.btn-outline-danger:focus {
+ box-shadow: 0 0 0 .25rem rgba(210, 109, 105, .5)
+}
+
+.btn-check:checked+.btn-outline-danger,
+.btn-check:active+.btn-outline-danger,
+.btn-outline-danger:active,
+.btn-outline-danger.active,
+.btn-outline-danger.dropdown-toggle.show {
+ color: #000;
+ background-color: #d26d69;
+ border-color: #d26d69
+}
+
+.btn-check:checked+.btn-outline-danger:focus,
+.btn-check:active+.btn-outline-danger:focus,
+.btn-outline-danger:active:focus,
+.btn-outline-danger.active:focus,
+.btn-outline-danger.dropdown-toggle.show:focus {
+ box-shadow: 0 0 0 .25rem rgba(210, 109, 105, .5)
+}
+
+.btn-outline-danger:disabled,
+.btn-outline-danger.disabled {
+ color: #d26d69;
+ background-color: transparent
+}
+
+.btn-outline-warning {
+ color: #eebf41;
+ border-color: #eebf41
+}
+
+.btn-outline-warning:hover {
+ color: #000;
+ background-color: #eebf41;
+ border-color: #eebf41
+}
+
+.btn-check:focus+.btn-outline-warning,
+.btn-outline-warning:focus {
+ box-shadow: 0 0 0 .25rem rgba(238, 191, 65, .5)
+}
+
+.btn-check:checked+.btn-outline-warning,
+.btn-check:active+.btn-outline-warning,
+.btn-outline-warning:active,
+.btn-outline-warning.active,
+.btn-outline-warning.dropdown-toggle.show {
+ color: #000;
+ background-color: #eebf41;
+ border-color: #eebf41
+}
+
+.btn-check:checked+.btn-outline-warning:focus,
+.btn-check:active+.btn-outline-warning:focus,
+.btn-outline-warning:active:focus,
+.btn-outline-warning.active:focus,
+.btn-outline-warning.dropdown-toggle.show:focus {
+ box-shadow: 0 0 0 .25rem rgba(238, 191, 65, .5)
+}
+
+.btn-outline-warning:disabled,
+.btn-outline-warning.disabled {
+ color: #eebf41;
+ background-color: transparent
+}
+
+.btn-outline-info {
+ color: #5b99ea;
+ border-color: #5b99ea
+}
+
+.btn-outline-info:hover {
+ color: #000;
+ background-color: #5b99ea;
+ border-color: #5b99ea
+}
+
+.btn-check:focus+.btn-outline-info,
+.btn-outline-info:focus {
+ box-shadow: 0 0 0 .25rem rgba(91, 153, 234, .5)
+}
+
+.btn-check:checked+.btn-outline-info,
+.btn-check:active+.btn-outline-info,
+.btn-outline-info:active,
+.btn-outline-info.active,
+.btn-outline-info.dropdown-toggle.show {
+ color: #000;
+ background-color: #5b99ea;
+ border-color: #5b99ea
+}
+
+.btn-check:checked+.btn-outline-info:focus,
+.btn-check:active+.btn-outline-info:focus,
+.btn-outline-info:active:focus,
+.btn-outline-info.active:focus,
+.btn-outline-info.dropdown-toggle.show:focus {
+ box-shadow: 0 0 0 .25rem rgba(91, 153, 234, .5)
+}
+
+.btn-outline-info:disabled,
+.btn-outline-info.disabled {
+ color: #5b99ea;
+ background-color: transparent
+}
+
+.btn-link {
+ font-weight: 400;
+ color: #0d6efd;
+ text-decoration: underline
+}
+
+.btn-link:hover {
+ color: #0a58ca
+}
+
+.btn-link:disabled,
+.btn-link.disabled {
+ color: #6c757d
+}
+
+.btn-lg,
+.btn-group-lg>.btn {
+ padding: .5rem 1rem;
+ font-size: 1.25rem;
+ border-radius: .3rem
+}
+
+.btn-sm,
+.btn-group-sm>.btn {
+ padding: .25rem .5rem;
+ font-size: 0.875rem;
+ border-radius: .2rem
+}
+
+.fade {
+ transition: opacity .15s linear
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .fade {
+ transition: none
+ }
+}
+
+.fade:not(.show) {
+ opacity: 0
+}
+
+.collapse:not(.show) {
+ display: none
+}
+
+.collapsing {
+ height: 0;
+ overflow: hidden;
+ transition: height .35s ease
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .collapsing {
+ transition: none
+ }
+}
+
+.dropup,
+.dropend,
+.dropdown,
+.dropstart {
+ position: relative
+}
+
+.dropdown-toggle {
+ white-space: nowrap
+}
+
+.dropdown-toggle::after {
+ display: inline-block;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: .3em solid;
+ border-right: .3em solid transparent;
+ border-bottom: 0;
+ border-left: .3em solid transparent
+}
+
+.dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropdown-menu {
+ position: absolute;
+ z-index: 1000;
+ display: none;
+ min-width: 10rem;
+ padding: .5rem 0;
+ margin: 0;
+ font-size: 1rem;
+ color: #212529;
+ text-align: left;
+ list-style: none;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, .15);
+ border-radius: .25rem
+}
+
+.dropdown-menu[data-bs-popper] {
+ top: 100%;
+ left: 0;
+ margin-top: .125rem
+}
+
+.dropdown-menu-start {
+ --bs-position: start
+}
+
+.dropdown-menu-start[data-bs-popper] {
+ right: auto/* rtl:ignore */
+ ;
+ left: 0/* rtl:ignore */
+}
+
+.dropdown-menu-end {
+ --bs-position: end
+}
+
+.dropdown-menu-end[data-bs-popper] {
+ right: 0/* rtl:ignore */
+ ;
+ left: auto/* rtl:ignore */
+}
+
+@media(min-width: 576px) {
+ .dropdown-menu-sm-start {
+ --bs-position: start
+ }
+ .dropdown-menu-sm-start[data-bs-popper] {
+ right: auto/* rtl:ignore */
+ ;
+ left: 0/* rtl:ignore */
+ }
+ .dropdown-menu-sm-end {
+ --bs-position: end
+ }
+ .dropdown-menu-sm-end[data-bs-popper] {
+ right: 0/* rtl:ignore */
+ ;
+ left: auto/* rtl:ignore */
+ }
+}
+
+@media(min-width: 768px) {
+ .dropdown-menu-md-start {
+ --bs-position: start
+ }
+ .dropdown-menu-md-start[data-bs-popper] {
+ right: auto/* rtl:ignore */
+ ;
+ left: 0/* rtl:ignore */
+ }
+ .dropdown-menu-md-end {
+ --bs-position: end
+ }
+ .dropdown-menu-md-end[data-bs-popper] {
+ right: 0/* rtl:ignore */
+ ;
+ left: auto/* rtl:ignore */
+ }
+}
+
+@media(min-width: 992px) {
+ .dropdown-menu-lg-start {
+ --bs-position: start
+ }
+ .dropdown-menu-lg-start[data-bs-popper] {
+ right: auto/* rtl:ignore */
+ ;
+ left: 0/* rtl:ignore */
+ }
+ .dropdown-menu-lg-end {
+ --bs-position: end
+ }
+ .dropdown-menu-lg-end[data-bs-popper] {
+ right: 0/* rtl:ignore */
+ ;
+ left: auto/* rtl:ignore */
+ }
+}
+
+@media(min-width: 1200px) {
+ .dropdown-menu-xl-start {
+ --bs-position: start
+ }
+ .dropdown-menu-xl-start[data-bs-popper] {
+ right: auto/* rtl:ignore */
+ ;
+ left: 0/* rtl:ignore */
+ }
+ .dropdown-menu-xl-end {
+ --bs-position: end
+ }
+ .dropdown-menu-xl-end[data-bs-popper] {
+ right: 0/* rtl:ignore */
+ ;
+ left: auto/* rtl:ignore */
+ }
+}
+
+@media(min-width: 1400px) {
+ .dropdown-menu-xxl-start {
+ --bs-position: start
+ }
+ .dropdown-menu-xxl-start[data-bs-popper] {
+ right: auto/* rtl:ignore */
+ ;
+ left: 0/* rtl:ignore */
+ }
+ .dropdown-menu-xxl-end {
+ --bs-position: end
+ }
+ .dropdown-menu-xxl-end[data-bs-popper] {
+ right: 0/* rtl:ignore */
+ ;
+ left: auto/* rtl:ignore */
+ }
+}
+
+.dropup .dropdown-menu[data-bs-popper] {
+ top: auto;
+ bottom: 100%;
+ margin-top: 0;
+ margin-bottom: .125rem
+}
+
+.dropup .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: 0;
+ border-right: .3em solid transparent;
+ border-bottom: .3em solid;
+ border-left: .3em solid transparent
+}
+
+.dropup .dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropend .dropdown-menu[data-bs-popper] {
+ top: 0;
+ right: auto;
+ left: 100%;
+ margin-top: 0;
+ margin-left: .125rem
+}
+
+.dropend .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: .3em solid transparent;
+ border-right: 0;
+ border-bottom: .3em solid transparent;
+ border-left: .3em solid
+}
+
+.dropend .dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropend .dropdown-toggle::after {
+ vertical-align: 0
+}
+
+.dropstart .dropdown-menu[data-bs-popper] {
+ top: 0;
+ right: 100%;
+ left: auto;
+ margin-top: 0;
+ margin-right: .125rem
+}
+
+.dropstart .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: ""
+}
+
+.dropstart .dropdown-toggle::after {
+ display: none
+}
+
+.dropstart .dropdown-toggle::before {
+ display: inline-block;
+ margin-right: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: .3em solid transparent;
+ border-right: .3em solid;
+ border-bottom: .3em solid transparent
+}
+
+.dropstart .dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropstart .dropdown-toggle::before {
+ vertical-align: 0
+}
+
+.dropdown-divider {
+ height: 0;
+ margin: .5rem 0;
+ overflow: hidden;
+ border-top: 1px solid rgba(0, 0, 0, .15)
+}
+
+.dropdown-item {
+ display: block;
+ width: 100%;
+ padding: .25rem 1rem;
+ clear: both;
+ font-weight: 400;
+ color: #212529;
+ text-align: inherit;
+ text-decoration: none;
+ white-space: nowrap;
+ background-color: transparent;
+ border: 0
+}
+
+.dropdown-item:hover,
+.dropdown-item:focus {
+ color: #1e2125;
+ background-color: #e9ecef
+}
+
+.dropdown-item.active,
+.dropdown-item:active {
+ color: #fff;
+ text-decoration: none;
+ background-color: #0d6efd
+}
+
+.dropdown-item.disabled,
+.dropdown-item:disabled {
+ color: #adb5bd;
+ pointer-events: none;
+ background-color: transparent
+}
+
+.dropdown-menu.show {
+ display: block
+}
+
+.dropdown-header {
+ display: block;
+ padding: .5rem 1rem;
+ margin-bottom: 0;
+ font-size: 0.875rem;
+ color: #6c757d;
+ white-space: nowrap
+}
+
+.dropdown-item-text {
+ display: block;
+ padding: .25rem 1rem;
+ color: #212529
+}
+
+.dropdown-menu-dark {
+ color: #dee2e6;
+ background-color: #343a40;
+ border-color: rgba(0, 0, 0, .15)
+}
+
+.dropdown-menu-dark .dropdown-item {
+ color: #dee2e6
+}
+
+.dropdown-menu-dark .dropdown-item:hover,
+.dropdown-menu-dark .dropdown-item:focus {
+ color: #fff;
+ background-color: rgba(255, 255, 255, .15)
+}
+
+.dropdown-menu-dark .dropdown-item.active,
+.dropdown-menu-dark .dropdown-item:active {
+ color: #fff;
+ background-color: #0d6efd
+}
+
+.dropdown-menu-dark .dropdown-item.disabled,
+.dropdown-menu-dark .dropdown-item:disabled {
+ color: #adb5bd
+}
+
+.dropdown-menu-dark .dropdown-divider {
+ border-color: rgba(0, 0, 0, .15)
+}
+
+.dropdown-menu-dark .dropdown-item-text {
+ color: #dee2e6
+}
+
+.dropdown-menu-dark .dropdown-header {
+ color: #adb5bd
+}
+
+.btn-group,
+.btn-group-vertical {
+ position: relative;
+ display: -webkit-inline-flex;
+ display: inline-flex;
+ vertical-align: middle
+}
+
+.btn-group>.btn,
+.btn-group-vertical>.btn {
+ position: relative;
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto
+}
+
+.btn-group>.btn-check:checked+.btn,
+.btn-group>.btn-check:focus+.btn,
+.btn-group>.btn:hover,
+.btn-group>.btn:focus,
+.btn-group>.btn:active,
+.btn-group>.btn.active,
+.btn-group-vertical>.btn-check:checked+.btn,
+.btn-group-vertical>.btn-check:focus+.btn,
+.btn-group-vertical>.btn:hover,
+.btn-group-vertical>.btn:focus,
+.btn-group-vertical>.btn:active,
+.btn-group-vertical>.btn.active {
+ z-index: 1
+}
+
+.btn-toolbar {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+}
+
+.btn-toolbar .input-group {
+ width: auto
+}
+
+.btn-group>.btn:not(:first-child),
+.btn-group>.btn-group:not(:first-child) {
+ margin-left: -1px
+}
+
+.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
+.btn-group>.btn-group:not(:last-child)>.btn {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.btn-group>.btn:nth-child(n+3),
+.btn-group>:not(.btn-check)+.btn,
+.btn-group>.btn-group:not(:first-child)>.btn {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.dropdown-toggle-split {
+ padding-right: .5625rem;
+ padding-left: .5625rem
+}
+
+.dropdown-toggle-split::after,
+.dropup .dropdown-toggle-split::after,
+.dropend .dropdown-toggle-split::after {
+ margin-left: 0
+}
+
+.dropstart .dropdown-toggle-split::before {
+ margin-right: 0
+}
+
+.btn-sm+.dropdown-toggle-split,
+.btn-group-sm>.btn+.dropdown-toggle-split {
+ padding-right: .375rem;
+ padding-left: .375rem
+}
+
+.btn-lg+.dropdown-toggle-split,
+.btn-group-lg>.btn+.dropdown-toggle-split {
+ padding-right: .75rem;
+ padding-left: .75rem
+}
+
+.btn-group-vertical {
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ -webkit-align-items: flex-start;
+ align-items: flex-start;
+ -webkit-justify-content: center;
+ justify-content: center
+}
+
+.btn-group-vertical>.btn,
+.btn-group-vertical>.btn-group {
+ width: 100%
+}
+
+.btn-group-vertical>.btn:not(:first-child),
+.btn-group-vertical>.btn-group:not(:first-child) {
+ margin-top: -1px
+}
+
+.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
+.btn-group-vertical>.btn-group:not(:last-child)>.btn {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.btn-group-vertical>.btn~.btn,
+.btn-group-vertical>.btn-group:not(:first-child)>.btn {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0
+}
+
+.nav {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none
+}
+
+.nav-link {
+ display: block;
+ padding: .5rem 1rem;
+ color: #0d6efd;
+ text-decoration: none;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .nav-link {
+ transition: none
+ }
+}
+
+.nav-link:hover,
+.nav-link:focus {
+ color: #0a58ca
+}
+
+.nav-link.disabled {
+ color: #6c757d;
+ pointer-events: none;
+ cursor: default
+}
+
+.nav-tabs {
+ border-bottom: 1px solid #dee2e6
+}
+
+.nav-tabs .nav-link {
+ margin-bottom: -1px;
+ background: none;
+ border: 1px solid transparent;
+ border-top-left-radius: .25rem;
+ border-top-right-radius: .25rem
+}
+
+.nav-tabs .nav-link:hover,
+.nav-tabs .nav-link:focus {
+ border-color: #e9ecef #e9ecef #dee2e6;
+ isolation: isolate
+}
+
+.nav-tabs .nav-link.disabled {
+ color: #6c757d;
+ background-color: transparent;
+ border-color: transparent
+}
+
+.nav-tabs .nav-link.active,
+.nav-tabs .nav-item.show .nav-link {
+ color: #495057;
+ background-color: #fff;
+ border-color: #dee2e6 #dee2e6 #fff
+}
+
+.nav-tabs .dropdown-menu {
+ margin-top: -1px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0
+}
+
+.nav-pills .nav-link {
+ background: none;
+ border: 0;
+ border-radius: .25rem
+}
+
+.nav-pills .nav-link.active,
+.nav-pills .show>.nav-link {
+ color: #fff;
+ background-color: #0d6efd
+}
+
+.nav-fill>.nav-link,
+.nav-fill .nav-item {
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+ text-align: center
+}
+
+.nav-justified>.nav-link,
+.nav-justified .nav-item {
+ -webkit-flex-basis: 0;
+ flex-basis: 0;
+ -webkit-flex-grow: 1;
+ flex-grow: 1;
+ text-align: center
+}
+
+.nav-fill .nav-item .nav-link,
+.nav-justified .nav-item .nav-link {
+ width: 100%
+}
+
+.tab-content>.tab-pane {
+ display: none
+}
+
+.tab-content>.active {
+ display: block
+}
+
+.navbar {
+ position: relative;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-align-items: center;
+ align-items: center;
+ -webkit-justify-content: space-between;
+ justify-content: space-between;
+ padding-top: .5rem;
+ padding-bottom: .5rem
+}
+
+.navbar>.container,
+.navbar>.container-fluid,
+.navbar>.container-sm,
+.navbar>.container-md,
+.navbar>.container-lg,
+.navbar>.container-xl,
+.navbar>.container-xxl {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: inherit;
+ flex-wrap: inherit;
+ -webkit-align-items: center;
+ align-items: center;
+ -webkit-justify-content: space-between;
+ justify-content: space-between
+}
+
+.navbar-brand {
+ padding-top: .3125rem;
+ padding-bottom: .3125rem;
+ margin-right: 1rem;
+ font-size: 1.25rem;
+ text-decoration: none;
+ white-space: nowrap
+}
+
+.navbar-nav {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none
+}
+
+.navbar-nav .nav-link {
+ padding-right: 0;
+ padding-left: 0
+}
+
+.navbar-nav .dropdown-menu {
+ position: static
+}
+
+.navbar-text {
+ padding-top: .5rem;
+ padding-bottom: .5rem
+}
+
+.navbar-collapse {
+ -webkit-flex-basis: 100%;
+ flex-basis: 100%;
+ -webkit-flex-grow: 1;
+ flex-grow: 1;
+ -webkit-align-items: center;
+ align-items: center
+}
+
+.navbar-toggler {
+ padding: .25rem .75rem;
+ font-size: 1.25rem;
+ line-height: 1;
+ background-color: transparent;
+ border: 1px solid transparent;
+ border-radius: .25rem;
+ transition: box-shadow .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .navbar-toggler {
+ transition: none
+ }
+}
+
+.navbar-toggler:hover {
+ text-decoration: none
+}
+
+.navbar-toggler:focus {
+ text-decoration: none;
+ outline: 0;
+ box-shadow: 0 0 0 .25rem
+}
+
+.navbar-toggler-icon {
+ display: inline-block;
+ width: 1.5em;
+ height: 1.5em;
+ vertical-align: middle;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: 100%
+}
+
+.navbar-nav-scroll {
+ max-height: var(--bs-scroll-height, 75vh);
+ overflow-y: auto
+}
+
+@media(min-width: 576px) {
+ .navbar-expand-sm {
+ -webkit-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+ }
+ .navbar-expand-sm .navbar-nav {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-sm .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-sm .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-sm .navbar-nav-scroll {
+ overflow: visible
+ }
+ .navbar-expand-sm .navbar-collapse {
+ display: -webkit-flex !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-sm .navbar-toggler {
+ display: none
+ }
+}
+
+@media(min-width: 768px) {
+ .navbar-expand-md {
+ -webkit-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+ }
+ .navbar-expand-md .navbar-nav {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-md .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-md .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-md .navbar-nav-scroll {
+ overflow: visible
+ }
+ .navbar-expand-md .navbar-collapse {
+ display: -webkit-flex !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-md .navbar-toggler {
+ display: none
+ }
+}
+
+@media(min-width: 992px) {
+ .navbar-expand-lg {
+ -webkit-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+ }
+ .navbar-expand-lg .navbar-nav {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-lg .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-lg .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-lg .navbar-nav-scroll {
+ overflow: visible
+ }
+ .navbar-expand-lg .navbar-collapse {
+ display: -webkit-flex !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-lg .navbar-toggler {
+ display: none
+ }
+}
+
+@media(min-width: 1200px) {
+ .navbar-expand-xl {
+ -webkit-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+ }
+ .navbar-expand-xl .navbar-nav {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-xl .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-xl .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-xl .navbar-nav-scroll {
+ overflow: visible
+ }
+ .navbar-expand-xl .navbar-collapse {
+ display: -webkit-flex !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-xl .navbar-toggler {
+ display: none
+ }
+}
+
+@media(min-width: 1400px) {
+ .navbar-expand-xxl {
+ -webkit-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+ }
+ .navbar-expand-xxl .navbar-nav {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-xxl .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-xxl .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-xxl .navbar-nav-scroll {
+ overflow: visible
+ }
+ .navbar-expand-xxl .navbar-collapse {
+ display: -webkit-flex !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-xxl .navbar-toggler {
+ display: none
+ }
+}
+
+.navbar-expand {
+ -webkit-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start
+}
+
+.navbar-expand .navbar-nav {
+ -webkit-flex-direction: row;
+ flex-direction: row
+}
+
+.navbar-expand .navbar-nav .dropdown-menu {
+ position: absolute
+}
+
+.navbar-expand .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+}
+
+.navbar-expand .navbar-nav-scroll {
+ overflow: visible
+}
+
+.navbar-expand .navbar-collapse {
+ display: -webkit-flex !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ flex-basis: auto
+}
+
+.navbar-expand .navbar-toggler {
+ display: none
+}
+
+.navbar-light .navbar-brand {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-brand:hover,
+.navbar-light .navbar-brand:focus {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-nav .nav-link {
+ color: rgba(0, 0, 0, .55)
+}
+
+.navbar-light .navbar-nav .nav-link:hover,
+.navbar-light .navbar-nav .nav-link:focus {
+ color: rgba(0, 0, 0, .7)
+}
+
+.navbar-light .navbar-nav .nav-link.disabled {
+ color: rgba(0, 0, 0, .3)
+}
+
+.navbar-light .navbar-nav .show>.nav-link,
+.navbar-light .navbar-nav .nav-link.active {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-toggler {
+ color: rgba(0, 0, 0, .55);
+ border-color: rgba(0, 0, 0, .1)
+}
+
+.navbar-light .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
+}
+
+.navbar-light .navbar-text {
+ color: rgba(0, 0, 0, .55)
+}
+
+.navbar-light .navbar-text a,
+.navbar-light .navbar-text a:hover,
+.navbar-light .navbar-text a:focus {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-dark .navbar-brand {
+ color: #fff
+}
+
+.navbar-dark .navbar-brand:hover,
+.navbar-dark .navbar-brand:focus {
+ color: #fff
+}
+
+.navbar-dark .navbar-nav .nav-link {
+ color: rgba(255, 255, 255, .55)
+}
+
+.navbar-dark .navbar-nav .nav-link:hover,
+.navbar-dark .navbar-nav .nav-link:focus {
+ color: rgba(255, 255, 255, .75)
+}
+
+.navbar-dark .navbar-nav .nav-link.disabled {
+ color: rgba(255, 255, 255, .25)
+}
+
+.navbar-dark .navbar-nav .show>.nav-link,
+.navbar-dark .navbar-nav .nav-link.active {
+ color: #fff
+}
+
+.navbar-dark .navbar-toggler {
+ color: rgba(255, 255, 255, .55);
+ border-color: rgba(255, 255, 255, .1)
+}
+
+.navbar-dark .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
+}
+
+.navbar-dark .navbar-text {
+ color: rgba(255, 255, 255, .55)
+}
+
+.navbar-dark .navbar-text a,
+.navbar-dark .navbar-text a:hover,
+.navbar-dark .navbar-text a:focus {
+ color: #fff
+}
+
+.card {
+ position: relative;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ min-width: 0;
+ word-wrap: break-word;
+ background-color: #fff;
+ background-clip: border-box;
+ border: 1px solid rgba(0, 0, 0, .125);
+ border-radius: .25rem
+}
+
+.card>hr {
+ margin-right: 0;
+ margin-left: 0
+}
+
+.card>.list-group {
+ border-top: inherit;
+ border-bottom: inherit
+}
+
+.card>.list-group:first-child {
+ border-top-width: 0;
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px)
+}
+
+.card>.list-group:last-child {
+ border-bottom-width: 0;
+ border-bottom-right-radius: calc(0.25rem - 1px);
+ border-bottom-left-radius: calc(0.25rem - 1px)
+}
+
+.card>.card-header+.list-group,
+.card>.list-group+.card-footer {
+ border-top: 0
+}
+
+.card-body {
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1rem 1rem
+}
+
+.card-title {
+ margin-bottom: .5rem
+}
+
+.card-subtitle {
+ margin-top: -0.25rem;
+ margin-bottom: 0
+}
+
+.card-text:last-child {
+ margin-bottom: 0
+}
+
+.card-link:hover {
+ text-decoration: none
+}
+
+.card-link+.card-link {
+ margin-left: 1rem
+}
+
+.card-header {
+ padding: .5rem 1rem;
+ margin-bottom: 0;
+ background-color: rgba(0, 0, 0, .03);
+ border-bottom: 1px solid rgba(0, 0, 0, .125)
+}
+
+.card-header:first-child {
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0
+}
+
+.card-footer {
+ padding: .5rem 1rem;
+ background-color: rgba(0, 0, 0, .03);
+ border-top: 1px solid rgba(0, 0, 0, .125)
+}
+
+.card-footer:last-child {
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)
+}
+
+.card-header-tabs {
+ margin-right: -0.5rem;
+ margin-bottom: -0.5rem;
+ margin-left: -0.5rem;
+ border-bottom: 0
+}
+
+.card-header-pills {
+ margin-right: -0.5rem;
+ margin-left: -0.5rem
+}
+
+.card-img-overlay {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 1rem;
+ border-radius: calc(0.25rem - 1px)
+}
+
+.card-img,
+.card-img-top,
+.card-img-bottom {
+ width: 100%
+}
+
+.card-img,
+.card-img-top {
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px)
+}
+
+.card-img,
+.card-img-bottom {
+ border-bottom-right-radius: calc(0.25rem - 1px);
+ border-bottom-left-radius: calc(0.25rem - 1px)
+}
+
+.card-group>.card {
+ margin-bottom: .75rem
+}
+
+@media(min-width: 576px) {
+ .card-group {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-flow: row wrap;
+ flex-flow: row wrap
+ }
+ .card-group>.card {
+ -webkit-flex: 1 0 0%;
+ flex: 1 0 0%;
+ margin-bottom: 0
+ }
+ .card-group>.card+.card {
+ margin-left: 0;
+ border-left: 0
+ }
+ .card-group>.card:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+ }
+ .card-group>.card:not(:last-child) .card-img-top,
+ .card-group>.card:not(:last-child) .card-header {
+ border-top-right-radius: 0
+ }
+ .card-group>.card:not(:last-child) .card-img-bottom,
+ .card-group>.card:not(:last-child) .card-footer {
+ border-bottom-right-radius: 0
+ }
+ .card-group>.card:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+ }
+ .card-group>.card:not(:first-child) .card-img-top,
+ .card-group>.card:not(:first-child) .card-header {
+ border-top-left-radius: 0
+ }
+ .card-group>.card:not(:first-child) .card-img-bottom,
+ .card-group>.card:not(:first-child) .card-footer {
+ border-bottom-left-radius: 0
+ }
+}
+
+.accordion-button {
+ position: relative;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ align-items: center;
+ width: 100%;
+ padding: 1rem 1.25rem;
+ font-size: 1rem;
+ color: #212529;
+ text-align: left;
+ background-color: #fff;
+ border: 0;
+ border-radius: 0;
+ overflow-anchor: none;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .accordion-button {
+ transition: none
+ }
+}
+
+.accordion-button:not(.collapsed) {
+ color: #0c63e4;
+ background-color: #e7f1ff;
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125)
+}
+
+.accordion-button:not(.collapsed)::after {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
+ -webkit-transform: rotate(-180deg);
+ transform: rotate(-180deg)
+}
+
+.accordion-button::after {
+ -webkit-flex-shrink: 0;
+ flex-shrink: 0;
+ width: 1.25rem;
+ height: 1.25rem;
+ margin-left: auto;
+ content: "";
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-size: 1.25rem;
+ transition: -webkit-transform .2s ease-in-out;
+ transition: transform .2s ease-in-out;
+ transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .accordion-button::after {
+ transition: none
+ }
+}
+
+.accordion-button:hover {
+ z-index: 2
+}
+
+.accordion-button:focus {
+ z-index: 3;
+ border-color: #86b7fe;
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.accordion-header {
+ margin-bottom: 0
+}
+
+.accordion-item {
+ background-color: #fff;
+ border: 1px solid rgba(0, 0, 0, .125)
+}
+
+.accordion-item:first-of-type {
+ border-top-left-radius: .25rem;
+ border-top-right-radius: .25rem
+}
+
+.accordion-item:first-of-type .accordion-button {
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px)
+}
+
+.accordion-item:not(:first-of-type) {
+ border-top: 0
+}
+
+.accordion-item:last-of-type {
+ border-bottom-right-radius: .25rem;
+ border-bottom-left-radius: .25rem
+}
+
+.accordion-item:last-of-type .accordion-button.collapsed {
+ border-bottom-right-radius: calc(0.25rem - 1px);
+ border-bottom-left-radius: calc(0.25rem - 1px)
+}
+
+.accordion-item:last-of-type .accordion-collapse {
+ border-bottom-right-radius: .25rem;
+ border-bottom-left-radius: .25rem
+}
+
+.accordion-body {
+ padding: 1rem 1.25rem
+}
+
+.accordion-flush .accordion-collapse {
+ border-width: 0
+}
+
+.accordion-flush .accordion-item {
+ border-right: 0;
+ border-left: 0;
+ border-radius: 0
+}
+
+.accordion-flush .accordion-item:first-child {
+ border-top: 0
+}
+
+.accordion-flush .accordion-item:last-child {
+ border-bottom: 0
+}
+
+.accordion-flush .accordion-item .accordion-button {
+ border-radius: 0
+}
+
+.breadcrumb {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding: 0 0;
+ margin-bottom: 1rem;
+ list-style: none
+}
+
+.breadcrumb-item+.breadcrumb-item {
+ padding-left: .5rem
+}
+
+.breadcrumb-item+.breadcrumb-item::before {
+ float: left;
+ padding-right: .5rem;
+ color: #6c757d;
+ content: var(--bs-breadcrumb-divider, "/")/* rtl: var(--bs-breadcrumb-divider, "/") */
+}
+
+.breadcrumb-item.active {
+ color: #6c757d
+}
+
+.pagination {
+ display: -webkit-flex;
+ display: flex;
+ padding-left: 0;
+ list-style: none
+}
+
+.page-link {
+ position: relative;
+ display: block;
+ color: #0d6efd;
+ text-decoration: none;
+ background-color: #fff;
+ border: 1px solid #dee2e6;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .page-link {
+ transition: none
+ }
+}
+
+.page-link:hover {
+ z-index: 2;
+ color: #0a58ca;
+ background-color: #e9ecef;
+ border-color: #dee2e6
+}
+
+.page-link:focus {
+ z-index: 3;
+ color: #0a58ca;
+ background-color: #e9ecef;
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
+}
+
+.page-item:not(:first-child) .page-link {
+ margin-left: -1px
+}
+
+.page-item.active .page-link {
+ z-index: 3;
+ color: #fff;
+ background-color: #0d6efd;
+ border-color: #0d6efd
+}
+
+.page-item.disabled .page-link {
+ color: #6c757d;
+ pointer-events: none;
+ background-color: #fff;
+ border-color: #dee2e6
+}
+
+.page-link {
+ padding: .375rem .75rem
+}
+
+.page-item:first-child .page-link {
+ border-top-left-radius: .25rem;
+ border-bottom-left-radius: .25rem
+}
+
+.page-item:last-child .page-link {
+ border-top-right-radius: .25rem;
+ border-bottom-right-radius: .25rem
+}
+
+.pagination-lg .page-link {
+ padding: .75rem 1.5rem;
+ font-size: 1.25rem
+}
+
+.pagination-lg .page-item:first-child .page-link {
+ border-top-left-radius: .3rem;
+ border-bottom-left-radius: .3rem
+}
+
+.pagination-lg .page-item:last-child .page-link {
+ border-top-right-radius: .3rem;
+ border-bottom-right-radius: .3rem
+}
+
+.pagination-sm .page-link {
+ padding: .25rem .5rem;
+ font-size: 0.875rem
+}
+
+.pagination-sm .page-item:first-child .page-link {
+ border-top-left-radius: .2rem;
+ border-bottom-left-radius: .2rem
+}
+
+.pagination-sm .page-item:last-child .page-link {
+ border-top-right-radius: .2rem;
+ border-bottom-right-radius: .2rem
+}
+
+.badge {
+ display: inline-block;
+ padding: .35em .65em;
+ font-size: 0.75em;
+ font-weight: 700;
+ line-height: 1;
+ color: #fff;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ border-radius: .25rem
+}
+
+.badge:empty {
+ display: none
+}
+
+.btn .badge {
+ position: relative;
+ top: -1px
+}
+
+.alert {
+ position: relative;
+ padding: 1rem 1rem;
+ margin-bottom: 1rem;
+ border: 1px solid transparent;
+ border-radius: .25rem
+}
+
+.alert-heading {
+ color: inherit
+}
+
+.alert-link {
+ font-weight: 700
+}
+
+.alert-dismissible {
+ padding-right: 3rem
+}
+
+.alert-dismissible .btn-close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ z-index: 2;
+ padding: 1.25rem 1rem
+}
+
+.alert-primary {
+ color: #0d623b;
+ background-color: #d0ede0;
+ border-color: #b9e3d0
+}
+
+.alert-primary .alert-link {
+ color: #0a4e2f
+}
+
+.alert-secondary {
+ color: #383e48;
+ background-color: #dfe1e4;
+ border-color: #ced1d7
+}
+
+.alert-secondary .alert-link {
+ color: #2d323a
+}
+
+.alert-success {
+ color: #376b47;
+ background-color: #def0e4;
+ border-color: #cee8d6
+}
+
+.alert-success .alert-link {
+ color: #2c5639
+}
+
+.alert-danger {
+ color: #7e413f;
+ background-color: #f6e2e1;
+ border-color: #f2d3d2
+}
+
+.alert-danger .alert-link {
+ color: #653432
+}
+
+.alert-warning {
+ color: #5f4c1a;
+ background-color: #fcf2d9;
+ border-color: #faecc6
+}
+
+.alert-warning .alert-link {
+ color: #4c3d15
+}
+
+.alert-info {
+ color: #375c8c;
+ background-color: #deebfb;
+ border-color: #cee0f9
+}
+
+.alert-info .alert-link {
+ color: #2c4a70
+}
+
+@-webkit-keyframes progress-bar-stripes {
+ 0% {
+ background-position-x: 1rem
+ }
+}
+
+@keyframes progress-bar-stripes {
+ 0% {
+ background-position-x: 1rem
+ }
+}
+
+.progress {
+ display: -webkit-flex;
+ display: flex;
+ height: 1rem;
+ overflow: hidden;
+ font-size: 0.75rem;
+ background-color: #e9ecef;
+ border-radius: .25rem
+}
+
+.progress-bar {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ -webkit-justify-content: center;
+ justify-content: center;
+ overflow: hidden;
+ color: #fff;
+ text-align: center;
+ white-space: nowrap;
+ background-color: #0d6efd;
+ transition: width .6s ease
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .progress-bar {
+ transition: none
+ }
+}
+
+.progress-bar-striped {
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-size: 1rem 1rem
+}
+
+.progress-bar-animated {
+ -webkit-animation: 1s linear infinite progress-bar-stripes;
+ animation: 1s linear infinite progress-bar-stripes
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .progress-bar-animated {
+ -webkit-animation: none;
+ animation: none
+ }
+}
+
+.list-group {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0;
+ border-radius: .25rem
+}
+
+.list-group-numbered {
+ list-style-type: none;
+ counter-reset: section
+}
+
+.list-group-numbered>li::before {
+ content: counters(section, ".") ". ";
+ counter-increment: section
+}
+
+.list-group-item-action {
+ width: 100%;
+ color: #495057;
+ text-align: inherit
+}
+
+.list-group-item-action:hover,
+.list-group-item-action:focus {
+ z-index: 1;
+ color: #495057;
+ text-decoration: none;
+ background-color: #f8f9fa
+}
+
+.list-group-item-action:active {
+ color: #212529;
+ background-color: #e9ecef
+}
+
+.list-group-item {
+ position: relative;
+ display: block;
+ padding: .5rem 1rem;
+ color: #212529;
+ text-decoration: none;
+ background-color: #fff;
+ border: 1px solid rgba(0, 0, 0, .125)
+}
+
+.list-group-item:first-child {
+ border-top-left-radius: inherit;
+ border-top-right-radius: inherit
+}
+
+.list-group-item:last-child {
+ border-bottom-right-radius: inherit;
+ border-bottom-left-radius: inherit
+}
+
+.list-group-item.disabled,
+.list-group-item:disabled {
+ color: #6c757d;
+ pointer-events: none;
+ background-color: #fff
+}
+
+.list-group-item.active {
+ z-index: 2;
+ color: #fff;
+ background-color: #0d6efd;
+ border-color: #0d6efd
+}
+
+.list-group-item+.list-group-item {
+ border-top-width: 0
+}
+
+.list-group-item+.list-group-item.active {
+ margin-top: -1px;
+ border-top-width: 1px
+}
+
+.list-group-horizontal {
+ -webkit-flex-direction: row;
+ flex-direction: row
+}
+
+.list-group-horizontal>.list-group-item:first-child {
+ border-bottom-left-radius: .25rem;
+ border-top-right-radius: 0
+}
+
+.list-group-horizontal>.list-group-item:last-child {
+ border-top-right-radius: .25rem;
+ border-bottom-left-radius: 0
+}
+
+.list-group-horizontal>.list-group-item.active {
+ margin-top: 0
+}
+
+.list-group-horizontal>.list-group-item+.list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0
+}
+
+.list-group-horizontal>.list-group-item+.list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px
+}
+
+@media(min-width: 576px) {
+ .list-group-horizontal-sm {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .list-group-horizontal-sm>.list-group-item:first-child {
+ border-bottom-left-radius: .25rem;
+ border-top-right-radius: 0
+ }
+ .list-group-horizontal-sm>.list-group-item:last-child {
+ border-top-right-radius: .25rem;
+ border-bottom-left-radius: 0
+ }
+ .list-group-horizontal-sm>.list-group-item.active {
+ margin-top: 0
+ }
+ .list-group-horizontal-sm>.list-group-item+.list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0
+ }
+ .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px
+ }
+}
+
+@media(min-width: 768px) {
+ .list-group-horizontal-md {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .list-group-horizontal-md>.list-group-item:first-child {
+ border-bottom-left-radius: .25rem;
+ border-top-right-radius: 0
+ }
+ .list-group-horizontal-md>.list-group-item:last-child {
+ border-top-right-radius: .25rem;
+ border-bottom-left-radius: 0
+ }
+ .list-group-horizontal-md>.list-group-item.active {
+ margin-top: 0
+ }
+ .list-group-horizontal-md>.list-group-item+.list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0
+ }
+ .list-group-horizontal-md>.list-group-item+.list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px
+ }
+}
+
+@media(min-width: 992px) {
+ .list-group-horizontal-lg {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .list-group-horizontal-lg>.list-group-item:first-child {
+ border-bottom-left-radius: .25rem;
+ border-top-right-radius: 0
+ }
+ .list-group-horizontal-lg>.list-group-item:last-child {
+ border-top-right-radius: .25rem;
+ border-bottom-left-radius: 0
+ }
+ .list-group-horizontal-lg>.list-group-item.active {
+ margin-top: 0
+ }
+ .list-group-horizontal-lg>.list-group-item+.list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0
+ }
+ .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px
+ }
+}
+
+@media(min-width: 1200px) {
+ .list-group-horizontal-xl {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .list-group-horizontal-xl>.list-group-item:first-child {
+ border-bottom-left-radius: .25rem;
+ border-top-right-radius: 0
+ }
+ .list-group-horizontal-xl>.list-group-item:last-child {
+ border-top-right-radius: .25rem;
+ border-bottom-left-radius: 0
+ }
+ .list-group-horizontal-xl>.list-group-item.active {
+ margin-top: 0
+ }
+ .list-group-horizontal-xl>.list-group-item+.list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0
+ }
+ .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px
+ }
+}
+
+@media(min-width: 1400px) {
+ .list-group-horizontal-xxl {
+ -webkit-flex-direction: row;
+ flex-direction: row
+ }
+ .list-group-horizontal-xxl>.list-group-item:first-child {
+ border-bottom-left-radius: .25rem;
+ border-top-right-radius: 0
+ }
+ .list-group-horizontal-xxl>.list-group-item:last-child {
+ border-top-right-radius: .25rem;
+ border-bottom-left-radius: 0
+ }
+ .list-group-horizontal-xxl>.list-group-item.active {
+ margin-top: 0
+ }
+ .list-group-horizontal-xxl>.list-group-item+.list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0
+ }
+ .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px
+ }
+}
+
+.list-group-flush {
+ border-radius: 0
+}
+
+.list-group-flush>.list-group-item {
+ border-width: 0 0 1px
+}
+
+.list-group-flush>.list-group-item:last-child {
+ border-bottom-width: 0
+}
+
+.list-group-item-primary {
+ color: #0d623b;
+ background-color: #d0ede0
+}
+
+.list-group-item-primary.list-group-item-action:hover,
+.list-group-item-primary.list-group-item-action:focus {
+ color: #0d623b;
+ background-color: #bbd5ca
+}
+
+.list-group-item-primary.list-group-item-action.active {
+ color: #fff;
+ background-color: #0d623b;
+ border-color: #0d623b
+}
+
+.list-group-item-secondary {
+ color: #383e48;
+ background-color: #dfe1e4
+}
+
+.list-group-item-secondary.list-group-item-action:hover,
+.list-group-item-secondary.list-group-item-action:focus {
+ color: #383e48;
+ background-color: #c9cbcd
+}
+
+.list-group-item-secondary.list-group-item-action.active {
+ color: #fff;
+ background-color: #383e48;
+ border-color: #383e48
+}
+
+.list-group-item-success {
+ color: #376b47;
+ background-color: #def0e4
+}
+
+.list-group-item-success.list-group-item-action:hover,
+.list-group-item-success.list-group-item-action:focus {
+ color: #376b47;
+ background-color: #c8d8cd
+}
+
+.list-group-item-success.list-group-item-action.active {
+ color: #fff;
+ background-color: #376b47;
+ border-color: #376b47
+}
+
+.list-group-item-danger {
+ color: #7e413f;
+ background-color: #f6e2e1
+}
+
+.list-group-item-danger.list-group-item-action:hover,
+.list-group-item-danger.list-group-item-action:focus {
+ color: #7e413f;
+ background-color: #ddcbcb
+}
+
+.list-group-item-danger.list-group-item-action.active {
+ color: #fff;
+ background-color: #7e413f;
+ border-color: #7e413f
+}
+
+.list-group-item-warning {
+ color: #5f4c1a;
+ background-color: #fcf2d9
+}
+
+.list-group-item-warning.list-group-item-action:hover,
+.list-group-item-warning.list-group-item-action:focus {
+ color: #5f4c1a;
+ background-color: #e3dac3
+}
+
+.list-group-item-warning.list-group-item-action.active {
+ color: #fff;
+ background-color: #5f4c1a;
+ border-color: #5f4c1a
+}
+
+.list-group-item-info {
+ color: #375c8c;
+ background-color: #deebfb
+}
+
+.list-group-item-info.list-group-item-action:hover,
+.list-group-item-info.list-group-item-action:focus {
+ color: #375c8c;
+ background-color: #c8d4e2
+}
+
+.list-group-item-info.list-group-item-action.active {
+ color: #fff;
+ background-color: #375c8c;
+ border-color: #375c8c
+}
+
+.btn-close {
+ box-sizing: content-box;
+ width: 1em;
+ height: 1em;
+ padding: .25em .25em;
+ color: #000;
+ background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
+ border: 0;
+ border-radius: .25rem;
+ opacity: .5
+}
+
+.btn-close:hover {
+ color: #000;
+ text-decoration: none;
+ opacity: .75
+}
+
+.btn-close:focus {
+ outline: 0;
+ box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
+ opacity: 1
+}
+
+.btn-close:disabled,
+.btn-close.disabled {
+ pointer-events: none;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ opacity: .25
+}
+
+.btn-close-white {
+ -webkit-filter: invert(1) grayscale(100%) brightness(200%);
+ filter: invert(1) grayscale(100%) brightness(200%)
+}
+
+.toast {
+ width: 350px;
+ max-width: 100%;
+ font-size: 0.875rem;
+ pointer-events: auto;
+ background-color: rgba(255, 255, 255, .85);
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, .1);
+ box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
+ border-radius: .25rem
+}
+
+.toast:not(.showing):not(.show) {
+ opacity: 0
+}
+
+.toast.hide {
+ display: none
+}
+
+.toast-container {
+ width: -webkit-max-content;
+ width: -moz-max-content;
+ width: max-content;
+ max-width: 100%;
+ pointer-events: none
+}
+
+.toast-container>:not(:last-child) {
+ margin-bottom: .75rem
+}
+
+.toast-header {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ align-items: center;
+ padding: .5rem .75rem;
+ color: #6c757d;
+ background-color: rgba(255, 255, 255, .85);
+ background-clip: padding-box;
+ border-bottom: 1px solid rgba(0, 0, 0, .05);
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px)
+}
+
+.toast-header .btn-close {
+ margin-right: -0.375rem;
+ margin-left: .75rem
+}
+
+.toast-body {
+ padding: .75rem;
+ word-wrap: break-word
+}
+
+.modal {
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ display: none;
+ width: 100%;
+ height: 100%;
+ overflow-x: hidden;
+ overflow-y: auto;
+ outline: 0
+}
+
+.modal-dialog {
+ position: relative;
+ width: auto;
+ margin: .5rem;
+ pointer-events: none
+}
+
+.modal.fade .modal-dialog {
+ transition: -webkit-transform .3s ease-out;
+ transition: transform .3s ease-out;
+ transition: transform .3s ease-out, -webkit-transform .3s ease-out;
+ -webkit-transform: translate(0, -50px);
+ transform: translate(0, -50px)
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .modal.fade .modal-dialog {
+ transition: none
+ }
+}
+
+.modal.show .modal-dialog {
+ -webkit-transform: none;
+ transform: none
+}
+
+.modal.modal-static .modal-dialog {
+ -webkit-transform: scale(1.02);
+ transform: scale(1.02)
+}
+
+.modal-dialog-scrollable {
+ height: calc(100% - 1rem)
+}
+
+.modal-dialog-scrollable .modal-content {
+ max-height: 100%;
+ overflow: hidden
+}
+
+.modal-dialog-scrollable .modal-body {
+ overflow-y: auto
+}
+
+.modal-dialog-centered {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ align-items: center;
+ min-height: calc(100% - 1rem)
+}
+
+.modal-content {
+ position: relative;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ width: 100%;
+ pointer-events: auto;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, .2);
+ border-radius: .3rem;
+ outline: 0
+}
+
+.modal-backdrop {
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 1040;
+ width: 100vw;
+ height: 100vh;
+ background-color: #000
+}
+
+.modal-backdrop.fade {
+ opacity: 0
+}
+
+.modal-backdrop.show {
+ opacity: .5
+}
+
+.modal-header {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-shrink: 0;
+ flex-shrink: 0;
+ -webkit-align-items: center;
+ align-items: center;
+ -webkit-justify-content: space-between;
+ justify-content: space-between;
+ padding: 1rem 1rem;
+ border-bottom: 1px solid #dee2e6;
+ border-top-left-radius: calc(0.3rem - 1px);
+ border-top-right-radius: calc(0.3rem - 1px)
+}
+
+.modal-header .btn-close {
+ padding: .5rem .5rem;
+ margin: -0.5rem -0.5rem -0.5rem auto
+}
+
+.modal-title {
+ margin-bottom: 0;
+ line-height: 1.5
+}
+
+.modal-body {
+ position: relative;
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1rem
+}
+
+.modal-footer {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-flex-shrink: 0;
+ flex-shrink: 0;
+ -webkit-align-items: center;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ justify-content: flex-end;
+ padding: .75rem;
+ border-top: 1px solid #dee2e6;
+ border-bottom-right-radius: calc(0.3rem - 1px);
+ border-bottom-left-radius: calc(0.3rem - 1px)
+}
+
+.modal-footer>* {
+ margin: .25rem
+}
+
+@media(min-width: 576px) {
+ .modal-dialog {
+ max-width: 500px;
+ margin: 1.75rem auto
+ }
+ .modal-dialog-scrollable {
+ height: calc(100% - 3.5rem)
+ }
+ .modal-dialog-centered {
+ min-height: calc(100% - 3.5rem)
+ }
+ .modal-sm {
+ max-width: 300px
+ }
+}
+
+@media(min-width: 992px) {
+ .modal-lg,
+ .modal-xl {
+ max-width: 800px
+ }
+}
+
+@media(min-width: 1200px) {
+ .modal-xl {
+ max-width: 1140px
+ }
+}
+
+.modal-fullscreen {
+ width: 100vw;
+ max-width: none;
+ height: 100%;
+ margin: 0
+}
+
+.modal-fullscreen .modal-content {
+ height: 100%;
+ border: 0;
+ border-radius: 0
+}
+
+.modal-fullscreen .modal-header {
+ border-radius: 0
+}
+
+.modal-fullscreen .modal-body {
+ overflow-y: auto
+}
+
+.modal-fullscreen .modal-footer {
+ border-radius: 0
+}
+
+@media(max-width: 575.98px) {
+ .modal-fullscreen-sm-down {
+ width: 100vw;
+ max-width: none;
+ height: 100%;
+ margin: 0
+ }
+ .modal-fullscreen-sm-down .modal-content {
+ height: 100%;
+ border: 0;
+ border-radius: 0
+ }
+ .modal-fullscreen-sm-down .modal-header {
+ border-radius: 0
+ }
+ .modal-fullscreen-sm-down .modal-body {
+ overflow-y: auto
+ }
+ .modal-fullscreen-sm-down .modal-footer {
+ border-radius: 0
+ }
+}
+
+@media(max-width: 767.98px) {
+ .modal-fullscreen-md-down {
+ width: 100vw;
+ max-width: none;
+ height: 100%;
+ margin: 0
+ }
+ .modal-fullscreen-md-down .modal-content {
+ height: 100%;
+ border: 0;
+ border-radius: 0
+ }
+ .modal-fullscreen-md-down .modal-header {
+ border-radius: 0
+ }
+ .modal-fullscreen-md-down .modal-body {
+ overflow-y: auto
+ }
+ .modal-fullscreen-md-down .modal-footer {
+ border-radius: 0
+ }
+}
+
+@media(max-width: 991.98px) {
+ .modal-fullscreen-lg-down {
+ width: 100vw;
+ max-width: none;
+ height: 100%;
+ margin: 0
+ }
+ .modal-fullscreen-lg-down .modal-content {
+ height: 100%;
+ border: 0;
+ border-radius: 0
+ }
+ .modal-fullscreen-lg-down .modal-header {
+ border-radius: 0
+ }
+ .modal-fullscreen-lg-down .modal-body {
+ overflow-y: auto
+ }
+ .modal-fullscreen-lg-down .modal-footer {
+ border-radius: 0
+ }
+}
+
+@media(max-width: 1199.98px) {
+ .modal-fullscreen-xl-down {
+ width: 100vw;
+ max-width: none;
+ height: 100%;
+ margin: 0
+ }
+ .modal-fullscreen-xl-down .modal-content {
+ height: 100%;
+ border: 0;
+ border-radius: 0
+ }
+ .modal-fullscreen-xl-down .modal-header {
+ border-radius: 0
+ }
+ .modal-fullscreen-xl-down .modal-body {
+ overflow-y: auto
+ }
+ .modal-fullscreen-xl-down .modal-footer {
+ border-radius: 0
+ }
+}
+
+@media(max-width: 1399.98px) {
+ .modal-fullscreen-xxl-down {
+ width: 100vw;
+ max-width: none;
+ height: 100%;
+ margin: 0
+ }
+ .modal-fullscreen-xxl-down .modal-content {
+ height: 100%;
+ border: 0;
+ border-radius: 0
+ }
+ .modal-fullscreen-xxl-down .modal-header {
+ border-radius: 0
+ }
+ .modal-fullscreen-xxl-down .modal-body {
+ overflow-y: auto
+ }
+ .modal-fullscreen-xxl-down .modal-footer {
+ border-radius: 0
+ }
+}
+
+.tooltip {
+ position: absolute;
+ z-index: 1080;
+ display: block;
+ margin: 0;
+ font-family: var(--bs-font-sans-serif);
+ font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: 0.875rem;
+ word-wrap: break-word;
+ opacity: 0
+}
+
+.tooltip.show {
+ opacity: .9
+}
+
+.tooltip .tooltip-arrow {
+ position: absolute;
+ display: block;
+ width: .8rem;
+ height: .4rem
+}
+
+.tooltip .tooltip-arrow::before {
+ position: absolute;
+ content: "";
+ border-color: transparent;
+ border-style: solid
+}
+
+.bs-tooltip-top,
+.bs-tooltip-auto[data-popper-placement^=top] {
+ padding: .4rem 0
+}
+
+.bs-tooltip-top .tooltip-arrow,
+.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
+ bottom: 0
+}
+
+.bs-tooltip-top .tooltip-arrow::before,
+.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
+ top: -1px;
+ border-width: .4rem .4rem 0;
+ border-top-color: #000
+}
+
+.bs-tooltip-end,
+.bs-tooltip-auto[data-popper-placement^=right] {
+ padding: 0 .4rem
+}
+
+.bs-tooltip-end .tooltip-arrow,
+.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
+ left: 0;
+ width: .4rem;
+ height: .8rem
+}
+
+.bs-tooltip-end .tooltip-arrow::before,
+.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
+ right: -1px;
+ border-width: .4rem .4rem .4rem 0;
+ border-right-color: #000
+}
+
+.bs-tooltip-bottom,
+.bs-tooltip-auto[data-popper-placement^=bottom] {
+ padding: .4rem 0
+}
+
+.bs-tooltip-bottom .tooltip-arrow,
+.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
+ top: 0
+}
+
+.bs-tooltip-bottom .tooltip-arrow::before,
+.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
+ bottom: -1px;
+ border-width: 0 .4rem .4rem;
+ border-bottom-color: #000
+}
+
+.bs-tooltip-start,
+.bs-tooltip-auto[data-popper-placement^=left] {
+ padding: 0 .4rem
+}
+
+.bs-tooltip-start .tooltip-arrow,
+.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
+ right: 0;
+ width: .4rem;
+ height: .8rem
+}
+
+.bs-tooltip-start .tooltip-arrow::before,
+.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
+ left: -1px;
+ border-width: .4rem 0 .4rem .4rem;
+ border-left-color: #000
+}
+
+.tooltip-inner {
+ max-width: 200px;
+ padding: .25rem .5rem;
+ color: #fff;
+ text-align: center;
+ background-color: #000;
+ border-radius: .25rem
+}
+
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0/* rtl:ignore */
+ ;
+ z-index: 1070;
+ display: block;
+ max-width: 276px;
+ font-family: var(--bs-font-sans-serif);
+ font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: 0.875rem;
+ word-wrap: break-word;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, .2);
+ border-radius: .3rem
+}
+
+.popover .popover-arrow {
+ position: absolute;
+ display: block;
+ width: 1rem;
+ height: .5rem
+}
+
+.popover .popover-arrow::before,
+.popover .popover-arrow::after {
+ position: absolute;
+ display: block;
+ content: "";
+ border-color: transparent;
+ border-style: solid
+}
+
+.bs-popover-top>.popover-arrow,
+.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
+ bottom: calc(-0.5rem - 1px)
+}
+
+.bs-popover-top>.popover-arrow::before,
+.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
+ bottom: 0;
+ border-width: .5rem .5rem 0;
+ border-top-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-top>.popover-arrow::after,
+.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
+ bottom: 1px;
+ border-width: .5rem .5rem 0;
+ border-top-color: #fff
+}
+
+.bs-popover-end>.popover-arrow,
+.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
+ left: calc(-0.5rem - 1px);
+ width: .5rem;
+ height: 1rem
+}
+
+.bs-popover-end>.popover-arrow::before,
+.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
+ left: 0;
+ border-width: .5rem .5rem .5rem 0;
+ border-right-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-end>.popover-arrow::after,
+.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
+ left: 1px;
+ border-width: .5rem .5rem .5rem 0;
+ border-right-color: #fff
+}
+
+.bs-popover-bottom>.popover-arrow,
+.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
+ top: calc(-0.5rem - 1px)
+}
+
+.bs-popover-bottom>.popover-arrow::before,
+.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
+ top: 0;
+ border-width: 0 .5rem .5rem .5rem;
+ border-bottom-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-bottom>.popover-arrow::after,
+.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
+ top: 1px;
+ border-width: 0 .5rem .5rem .5rem;
+ border-bottom-color: #fff
+}
+
+.bs-popover-bottom .popover-header::before,
+.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
+ position: absolute;
+ top: 0;
+ left: 50%;
+ display: block;
+ width: 1rem;
+ margin-left: -0.5rem;
+ content: "";
+ border-bottom: 1px solid #f0f0f0
+}
+
+.bs-popover-start>.popover-arrow,
+.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
+ right: calc(-0.5rem - 1px);
+ width: .5rem;
+ height: 1rem
+}
+
+.bs-popover-start>.popover-arrow::before,
+.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
+ right: 0;
+ border-width: .5rem 0 .5rem .5rem;
+ border-left-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-start>.popover-arrow::after,
+.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
+ right: 1px;
+ border-width: .5rem 0 .5rem .5rem;
+ border-left-color: #fff
+}
+
+.popover-header {
+ padding: .5rem 1rem;
+ margin-bottom: 0;
+ font-size: 1rem;
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #d8d8d8;
+ border-top-left-radius: calc(0.3rem - 1px);
+ border-top-right-radius: calc(0.3rem - 1px)
+}
+
+.popover-header:empty {
+ display: none
+}
+
+.popover-body {
+ padding: 1rem 1rem;
+ color: #212529
+}
+
+.carousel {
+ position: relative
+}
+
+.carousel.pointer-event {
+ touch-action: pan-y
+}
+
+.carousel-inner {
+ position: relative;
+ width: 100%;
+ overflow: hidden
+}
+
+.carousel-inner::after {
+ display: block;
+ clear: both;
+ content: ""
+}
+
+.carousel-item {
+ position: relative;
+ display: none;
+ float: left;
+ width: 100%;
+ margin-right: -100%;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ transition: -webkit-transform .6s ease-in-out;
+ transition: transform .6s ease-in-out;
+ transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .carousel-item {
+ transition: none
+ }
+}
+
+.carousel-item.active,
+.carousel-item-next,
+.carousel-item-prev {
+ display: block
+}
+
+.carousel-item-next:not(.carousel-item-start),
+.active.carousel-item-end {
+ -webkit-transform: translateX(100%);
+ transform: translateX(100%)
+}
+
+.carousel-item-prev:not(.carousel-item-end),
+.active.carousel-item-start {
+ -webkit-transform: translateX(-100%);
+ transform: translateX(-100%)
+}
+
+.carousel-fade .carousel-item {
+ opacity: 0;
+ transition-property: opacity;
+ -webkit-transform: none;
+ transform: none
+}
+
+.carousel-fade .carousel-item.active,
+.carousel-fade .carousel-item-next.carousel-item-start,
+.carousel-fade .carousel-item-prev.carousel-item-end {
+ z-index: 1;
+ opacity: 1
+}
+
+.carousel-fade .active.carousel-item-start,
+.carousel-fade .active.carousel-item-end {
+ z-index: 0;
+ opacity: 0;
+ transition: opacity 0s .6s
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .carousel-fade .active.carousel-item-start,
+ .carousel-fade .active.carousel-item-end {
+ transition: none
+ }
+}
+
+.carousel-control-prev,
+.carousel-control-next {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ z-index: 1;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ align-items: center;
+ -webkit-justify-content: center;
+ justify-content: center;
+ width: 15%;
+ padding: 0;
+ color: #fff;
+ text-align: center;
+ background: none;
+ border: 0;
+ opacity: .5;
+ transition: opacity .15s ease
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .carousel-control-prev,
+ .carousel-control-next {
+ transition: none
+ }
+}
+
+.carousel-control-prev:hover,
+.carousel-control-prev:focus,
+.carousel-control-next:hover,
+.carousel-control-next:focus {
+ color: #fff;
+ text-decoration: none;
+ outline: 0;
+ opacity: .9
+}
+
+.carousel-control-prev {
+ left: 0
+}
+
+.carousel-control-next {
+ right: 0
+}
+
+.carousel-control-prev-icon,
+.carousel-control-next-icon {
+ display: inline-block;
+ width: 2rem;
+ height: 2rem;
+ background-repeat: no-repeat;
+ background-position: 50%;
+ background-size: 100% 100%
+}
+
+.carousel-control-prev-icon {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
+}
+
+.carousel-control-next-icon {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
+}
+
+.carousel-indicators {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 2;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-justify-content: center;
+ justify-content: center;
+ padding: 0;
+ margin-right: 15%;
+ margin-bottom: 1rem;
+ margin-left: 15%;
+ list-style: none
+}
+
+.carousel-indicators [data-bs-target] {
+ box-sizing: content-box;
+ -webkit-flex: 0 1 auto;
+ flex: 0 1 auto;
+ width: 30px;
+ height: 3px;
+ padding: 0;
+ margin-right: 3px;
+ margin-left: 3px;
+ text-indent: -999px;
+ cursor: pointer;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 0;
+ border-top: 10px solid transparent;
+ border-bottom: 10px solid transparent;
+ opacity: .5;
+ transition: opacity .6s ease
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .carousel-indicators [data-bs-target] {
+ transition: none
+ }
+}
+
+.carousel-indicators .active {
+ opacity: 1
+}
+
+.carousel-caption {
+ position: absolute;
+ right: 15%;
+ bottom: 1.25rem;
+ left: 15%;
+ padding-top: 1.25rem;
+ padding-bottom: 1.25rem;
+ color: #fff;
+ text-align: center
+}
+
+.carousel-dark .carousel-control-prev-icon,
+.carousel-dark .carousel-control-next-icon {
+ -webkit-filter: invert(1) grayscale(100);
+ filter: invert(1) grayscale(100)
+}
+
+.carousel-dark .carousel-indicators [data-bs-target] {
+ background-color: #000
+}
+
+.carousel-dark .carousel-caption {
+ color: #000
+}
+
+@-webkit-keyframes spinner-border {
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg)/* rtl:ignore */
+ }
+}
+
+@keyframes spinner-border {
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg)/* rtl:ignore */
+ }
+}
+
+.spinner-border {
+ display: inline-block;
+ width: 2rem;
+ height: 2rem;
+ vertical-align: -0.125em;
+ border: .25em solid currentColor;
+ border-right-color: transparent;
+ border-radius: 50%;
+ -webkit-animation: .75s linear infinite spinner-border;
+ animation: .75s linear infinite spinner-border
+}
+
+.spinner-border-sm {
+ width: 1rem;
+ height: 1rem;
+ border-width: .2em
+}
+
+@-webkit-keyframes spinner-grow {
+ 0% {
+ -webkit-transform: scale(0);
+ transform: scale(0)
+ }
+ 50% {
+ opacity: 1;
+ -webkit-transform: none;
+ transform: none
+ }
+}
+
+@keyframes spinner-grow {
+ 0% {
+ -webkit-transform: scale(0);
+ transform: scale(0)
+ }
+ 50% {
+ opacity: 1;
+ -webkit-transform: none;
+ transform: none
+ }
+}
+
+.spinner-grow {
+ display: inline-block;
+ width: 2rem;
+ height: 2rem;
+ vertical-align: -0.125em;
+ background-color: currentColor;
+ border-radius: 50%;
+ opacity: 0;
+ -webkit-animation: .75s linear infinite spinner-grow;
+ animation: .75s linear infinite spinner-grow
+}
+
+.spinner-grow-sm {
+ width: 1rem;
+ height: 1rem
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .spinner-border,
+ .spinner-grow {
+ -webkit-animation-duration: 1.5s;
+ animation-duration: 1.5s
+ }
+}
+
+.offcanvas {
+ position: fixed;
+ bottom: 0;
+ z-index: 1050;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ max-width: 100%;
+ visibility: hidden;
+ background-color: #fff;
+ background-clip: padding-box;
+ outline: 0;
+ transition: -webkit-transform .3s ease-in-out;
+ transition: transform .3s ease-in-out;
+ transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .offcanvas {
+ transition: none
+ }
+}
+
+.offcanvas-header {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ align-items: center;
+ -webkit-justify-content: space-between;
+ justify-content: space-between;
+ padding: 1rem 1rem
+}
+
+.offcanvas-header .btn-close {
+ padding: .5rem .5rem;
+ margin: -0.5rem -0.5rem -0.5rem auto
+}
+
+.offcanvas-title {
+ margin-bottom: 0;
+ line-height: 1.5
+}
+
+.offcanvas-body {
+ -webkit-flex-grow: 1;
+ flex-grow: 1;
+ padding: 1rem 1rem;
+ overflow-y: auto
+}
+
+.offcanvas-start {
+ top: 0;
+ left: 0;
+ width: 400px;
+ border-right: 1px solid rgba(0, 0, 0, .2);
+ -webkit-transform: translateX(-100%);
+ transform: translateX(-100%)
+}
+
+.offcanvas-end {
+ top: 0;
+ right: 0;
+ width: 400px;
+ border-left: 1px solid rgba(0, 0, 0, .2);
+ -webkit-transform: translateX(100%);
+ transform: translateX(100%)
+}
+
+.offcanvas-top {
+ top: 0;
+ right: 0;
+ left: 0;
+ height: 30vh;
+ max-height: 100%;
+ border-bottom: 1px solid rgba(0, 0, 0, .2);
+ -webkit-transform: translateY(-100%);
+ transform: translateY(-100%)
+}
+
+.offcanvas-bottom {
+ right: 0;
+ left: 0;
+ height: 30vh;
+ max-height: 100%;
+ border-top: 1px solid rgba(0, 0, 0, .2);
+ -webkit-transform: translateY(100%);
+ transform: translateY(100%)
+}
+
+.offcanvas.show {
+ -webkit-transform: none;
+ transform: none
+}
+
+.clearfix::after {
+ display: block;
+ clear: both;
+ content: ""
+}
+
+.link-primary {
+ color: #15a362
+}
+
+.link-primary:hover,
+.link-primary:focus {
+ color: #44b581
+}
+
+.link-secondary {
+ color: #5d6778
+}
+
+.link-secondary:hover,
+.link-secondary:focus {
+ color: #4a5260
+}
+
+.link-success {
+ color: #5cb377
+}
+
+.link-success:hover,
+.link-success:focus {
+ color: #7dc292
+}
+
+.link-danger {
+ color: #d26d69
+}
+
+.link-danger:hover,
+.link-danger:focus {
+ color: #db8a87
+}
+
+.link-warning {
+ color: #eebf41
+}
+
+.link-warning:hover,
+.link-warning:focus {
+ color: #f1cc67
+}
+
+.link-info {
+ color: #5b99ea
+}
+
+.link-info:hover,
+.link-info:focus {
+ color: #7cadee
+}
+
+.ratio {
+ position: relative;
+ width: 100%
+}
+
+.ratio::before {
+ display: block;
+ padding-top: var(--bs-aspect-ratio);
+ content: ""
+}
+
+.ratio>* {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%
+}
+
+.ratio-1x1 {
+ --bs-aspect-ratio: 100%
+}
+
+.ratio-4x3 {
+ --bs-aspect-ratio: calc(3 / 4 * 100%)
+}
+
+.ratio-16x9 {
+ --bs-aspect-ratio: calc(9 / 16 * 100%)
+}
+
+.ratio-21x9 {
+ --bs-aspect-ratio: calc(9 / 21 * 100%)
+}
+
+.fixed-top {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: 1030
+}
+
+.fixed-bottom {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1030
+}
+
+.sticky-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+}
+
+@media(min-width: 576px) {
+ .sticky-sm-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+ }
+}
+
+@media(min-width: 768px) {
+ .sticky-md-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+ }
+}
+
+@media(min-width: 992px) {
+ .sticky-lg-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+ }
+}
+
+@media(min-width: 1200px) {
+ .sticky-xl-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+ }
+}
+
+@media(min-width: 1400px) {
+ .sticky-xxl-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+ }
+}
+
+.visually-hidden,
+.visually-hidden-focusable:not(:focus):not(:focus-within) {
+ position: absolute !important;
+ width: 1px !important;
+ height: 1px !important;
+ padding: 0 !important;
+ margin: -1px !important;
+ overflow: hidden !important;
+ clip: rect(0, 0, 0, 0) !important;
+ white-space: nowrap !important;
+ border: 0 !important
+}
+
+.stretched-link::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ content: ""
+}
+
+.text-truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap
+}
+
+.align-baseline {
+ vertical-align: baseline !important
+}
+
+.align-top {
+ vertical-align: top !important
+}
+
+.align-middle {
+ vertical-align: middle !important
+}
+
+.align-bottom {
+ vertical-align: bottom !important
+}
+
+.align-text-bottom {
+ vertical-align: text-bottom !important
+}
+
+.align-text-top {
+ vertical-align: text-top !important
+}
+
+.float-start {
+ float: left !important
+}
+
+.float-end {
+ float: right !important
+}
+
+.float-none {
+ float: none !important
+}
+
+.overflow-auto {
+ overflow: auto !important
+}
+
+.overflow-hidden {
+ overflow: hidden !important
+}
+
+.overflow-visible {
+ overflow: visible !important
+}
+
+.overflow-scroll {
+ overflow: scroll !important
+}
+
+.d-inline {
+ display: inline !important
+}
+
+.d-inline-block {
+ display: inline-block !important
+}
+
+.d-block {
+ display: block !important
+}
+
+.d-grid {
+ display: grid !important
+}
+
+.d-table {
+ display: table !important
+}
+
+.d-table-row {
+ display: table-row !important
+}
+
+.d-table-cell {
+ display: table-cell !important
+}
+
+.d-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+}
+
+.d-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+}
+
+.d-none {
+ display: none !important
+}
+
+.shadow {
+ box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
+}
+
+.shadow-sm {
+ box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
+}
+
+.shadow-lg {
+ box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
+}
+
+.shadow-none {
+ box-shadow: none !important
+}
+
+.position-static {
+ position: static !important
+}
+
+.position-relative {
+ position: relative !important
+}
+
+.position-absolute {
+ position: absolute !important
+}
+
+.position-fixed {
+ position: fixed !important
+}
+
+.position-sticky {
+ position: -webkit-sticky !important;
+ position: sticky !important
+}
+
+.top-0 {
+ top: 0 !important
+}
+
+.top-50 {
+ top: 50% !important
+}
+
+.top-100 {
+ top: 100% !important
+}
+
+.bottom-0 {
+ bottom: 0 !important
+}
+
+.bottom-50 {
+ bottom: 50% !important
+}
+
+.bottom-100 {
+ bottom: 100% !important
+}
+
+.start-0 {
+ left: 0 !important
+}
+
+.start-50 {
+ left: 50% !important
+}
+
+.start-100 {
+ left: 100% !important
+}
+
+.end-0 {
+ right: 0 !important
+}
+
+.end-50 {
+ right: 50% !important
+}
+
+.end-100 {
+ right: 100% !important
+}
+
+.translate-middle {
+ -webkit-transform: translate(-50%, -50%) !important;
+ transform: translate(-50%, -50%) !important
+}
+
+.translate-middle-x {
+ -webkit-transform: translateX(-50%) !important;
+ transform: translateX(-50%) !important
+}
+
+.translate-middle-y {
+ -webkit-transform: translateY(-50%) !important;
+ transform: translateY(-50%) !important
+}
+
+.border {
+ border: 1px solid #dee2e6 !important
+}
+
+.border-0 {
+ border: 0 !important
+}
+
+.border-top {
+ border-top: 1px solid #dee2e6 !important
+}
+
+.border-top-0 {
+ border-top: 0 !important
+}
+
+.border-end {
+ border-right: 1px solid #dee2e6 !important
+}
+
+.border-end-0 {
+ border-right: 0 !important
+}
+
+.border-bottom {
+ border-bottom: 1px solid #dee2e6 !important
+}
+
+.border-bottom-0 {
+ border-bottom: 0 !important
+}
+
+.border-start {
+ border-left: 1px solid #dee2e6 !important
+}
+
+.border-start-0 {
+ border-left: 0 !important
+}
+
+.border-primary {
+ border-color: #15a362 !important
+}
+
+.border-secondary {
+ border-color: #5d6778 !important
+}
+
+.border-success {
+ border-color: #5cb377 !important
+}
+
+.border-danger {
+ border-color: #d26d69 !important
+}
+
+.border-warning {
+ border-color: #eebf41 !important
+}
+
+.border-info {
+ border-color: #5b99ea !important
+}
+
+.border-white {
+ border-color: #fff !important
+}
+
+.border-1 {
+ border-width: 1px !important
+}
+
+.border-2 {
+ border-width: 2px !important
+}
+
+.border-3 {
+ border-width: 3px !important
+}
+
+.border-4 {
+ border-width: 4px !important
+}
+
+.border-5 {
+ border-width: 5px !important
+}
+
+.w-25 {
+ width: 25% !important
+}
+
+.w-50 {
+ width: 50% !important
+}
+
+.w-75 {
+ width: 75% !important
+}
+
+.w-100 {
+ width: 100% !important
+}
+
+.w-auto {
+ width: auto !important
+}
+
+.mw-100 {
+ max-width: 100% !important
+}
+
+.vw-100 {
+ width: 100vw !important
+}
+
+.min-vw-100 {
+ min-width: 100vw !important
+}
+
+.h-25 {
+ height: 25% !important
+}
+
+.h-50 {
+ height: 50% !important
+}
+
+.h-75 {
+ height: 75% !important
+}
+
+.h-100 {
+ height: 100% !important
+}
+
+.h-auto {
+ height: auto !important
+}
+
+.mh-100 {
+ max-height: 100% !important
+}
+
+.vh-100 {
+ height: 100vh !important
+}
+
+.min-vh-100 {
+ min-height: 100vh !important
+}
+
+.flex-fill {
+ -webkit-flex: 1 1 auto !important;
+ flex: 1 1 auto !important
+}
+
+.flex-row {
+ -webkit-flex-direction: row !important;
+ flex-direction: row !important
+}
+
+.flex-column {
+ -webkit-flex-direction: column !important;
+ flex-direction: column !important
+}
+
+.flex-row-reverse {
+ -webkit-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important
+}
+
+.flex-column-reverse {
+ -webkit-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important
+}
+
+.flex-grow-0 {
+ -webkit-flex-grow: 0 !important;
+ flex-grow: 0 !important
+}
+
+.flex-grow-1 {
+ -webkit-flex-grow: 1 !important;
+ flex-grow: 1 !important
+}
+
+.flex-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ flex-shrink: 0 !important
+}
+
+.flex-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ flex-shrink: 1 !important
+}
+
+.flex-wrap {
+ -webkit-flex-wrap: wrap !important;
+ flex-wrap: wrap !important
+}
+
+.flex-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important
+}
+
+.flex-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important
+}
+
+.gap-0 {
+ gap: 0 !important
+}
+
+.gap-1 {
+ gap: .25rem !important
+}
+
+.gap-2 {
+ gap: .5rem !important
+}
+
+.gap-3 {
+ gap: 1rem !important
+}
+
+.gap-4 {
+ gap: 1.5rem !important
+}
+
+.gap-5 {
+ gap: 3rem !important
+}
+
+.justify-content-start {
+ -webkit-justify-content: flex-start !important;
+ justify-content: flex-start !important
+}
+
+.justify-content-end {
+ -webkit-justify-content: flex-end !important;
+ justify-content: flex-end !important
+}
+
+.justify-content-center {
+ -webkit-justify-content: center !important;
+ justify-content: center !important
+}
+
+.justify-content-between {
+ -webkit-justify-content: space-between !important;
+ justify-content: space-between !important
+}
+
+.justify-content-around {
+ -webkit-justify-content: space-around !important;
+ justify-content: space-around !important
+}
+
+.justify-content-evenly {
+ -webkit-justify-content: space-evenly !important;
+ justify-content: space-evenly !important
+}
+
+.align-items-start {
+ -webkit-align-items: flex-start !important;
+ align-items: flex-start !important
+}
+
+.align-items-end {
+ -webkit-align-items: flex-end !important;
+ align-items: flex-end !important
+}
+
+.align-items-center {
+ -webkit-align-items: center !important;
+ align-items: center !important
+}
+
+.align-items-baseline {
+ -webkit-align-items: baseline !important;
+ align-items: baseline !important
+}
+
+.align-items-stretch {
+ -webkit-align-items: stretch !important;
+ align-items: stretch !important
+}
+
+.align-content-start {
+ -webkit-align-content: flex-start !important;
+ align-content: flex-start !important
+}
+
+.align-content-end {
+ -webkit-align-content: flex-end !important;
+ align-content: flex-end !important
+}
+
+.align-content-center {
+ -webkit-align-content: center !important;
+ align-content: center !important
+}
+
+.align-content-between {
+ -webkit-align-content: space-between !important;
+ align-content: space-between !important
+}
+
+.align-content-around {
+ -webkit-align-content: space-around !important;
+ align-content: space-around !important
+}
+
+.align-content-stretch {
+ -webkit-align-content: stretch !important;
+ align-content: stretch !important
+}
+
+.align-self-auto {
+ -webkit-align-self: auto !important;
+ align-self: auto !important
+}
+
+.align-self-start {
+ -webkit-align-self: flex-start !important;
+ align-self: flex-start !important
+}
+
+.align-self-end {
+ -webkit-align-self: flex-end !important;
+ align-self: flex-end !important
+}
+
+.align-self-center {
+ -webkit-align-self: center !important;
+ align-self: center !important
+}
+
+.align-self-baseline {
+ -webkit-align-self: baseline !important;
+ align-self: baseline !important
+}
+
+.align-self-stretch {
+ -webkit-align-self: stretch !important;
+ align-self: stretch !important
+}
+
+.order-first {
+ -webkit-order: -1 !important;
+ order: -1 !important
+}
+
+.order-0 {
+ -webkit-order: 0 !important;
+ order: 0 !important
+}
+
+.order-1 {
+ -webkit-order: 1 !important;
+ order: 1 !important
+}
+
+.order-2 {
+ -webkit-order: 2 !important;
+ order: 2 !important
+}
+
+.order-3 {
+ -webkit-order: 3 !important;
+ order: 3 !important
+}
+
+.order-4 {
+ -webkit-order: 4 !important;
+ order: 4 !important
+}
+
+.order-5 {
+ -webkit-order: 5 !important;
+ order: 5 !important
+}
+
+.order-last {
+ -webkit-order: 6 !important;
+ order: 6 !important
+}
+
+.m-0 {
+ margin: 0 !important
+}
+
+.m-1 {
+ margin: .25rem !important
+}
+
+.m-2 {
+ margin: .5rem !important
+}
+
+.m-3 {
+ margin: 1rem !important
+}
+
+.m-4 {
+ margin: 1.5rem !important
+}
+
+.m-5 {
+ margin: 3rem !important
+}
+
+.m-auto {
+ margin: auto !important
+}
+
+.mx-0 {
+ margin-right: 0 !important;
+ margin-left: 0 !important
+}
+
+.mx-1 {
+ margin-right: .25rem !important;
+ margin-left: .25rem !important
+}
+
+.mx-2 {
+ margin-right: .5rem !important;
+ margin-left: .5rem !important
+}
+
+.mx-3 {
+ margin-right: 1rem !important;
+ margin-left: 1rem !important
+}
+
+.mx-4 {
+ margin-right: 1.5rem !important;
+ margin-left: 1.5rem !important
+}
+
+.mx-5 {
+ margin-right: 3rem !important;
+ margin-left: 3rem !important
+}
+
+.mx-auto {
+ margin-right: auto !important;
+ margin-left: auto !important
+}
+
+.my-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important
+}
+
+.my-1 {
+ margin-top: .25rem !important;
+ margin-bottom: .25rem !important
+}
+
+.my-2 {
+ margin-top: .5rem !important;
+ margin-bottom: .5rem !important
+}
+
+.my-3 {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important
+}
+
+.my-4 {
+ margin-top: 1.5rem !important;
+ margin-bottom: 1.5rem !important
+}
+
+.my-5 {
+ margin-top: 3rem !important;
+ margin-bottom: 3rem !important
+}
+
+.my-auto {
+ margin-top: auto !important;
+ margin-bottom: auto !important
+}
+
+.mt-0 {
+ margin-top: 0 !important
+}
+
+.mt-1 {
+ margin-top: .25rem !important
+}
+
+.mt-2 {
+ margin-top: .5rem !important
+}
+
+.mt-3 {
+ margin-top: 1rem !important
+}
+
+.mt-4 {
+ margin-top: 1.5rem !important
+}
+
+.mt-5 {
+ margin-top: 3rem !important
+}
+
+.mt-auto {
+ margin-top: auto !important
+}
+
+.me-0 {
+ margin-right: 0 !important
+}
+
+.me-1 {
+ margin-right: .25rem !important
+}
+
+.me-2 {
+ margin-right: .5rem !important
+}
+
+.me-3 {
+ margin-right: 1rem !important
+}
+
+.me-4 {
+ margin-right: 1.5rem !important
+}
+
+.me-5 {
+ margin-right: 3rem !important
+}
+
+.me-auto {
+ margin-right: auto !important
+}
+
+.mb-0 {
+ margin-bottom: 0 !important
+}
+
+.mb-1 {
+ margin-bottom: .25rem !important
+}
+
+.mb-2 {
+ margin-bottom: .5rem !important
+}
+
+.mb-3 {
+ margin-bottom: 1rem !important
+}
+
+.mb-4 {
+ margin-bottom: 1.5rem !important
+}
+
+.mb-5 {
+ margin-bottom: 3rem !important
+}
+
+.mb-auto {
+ margin-bottom: auto !important
+}
+
+.ms-0 {
+ margin-left: 0 !important
+}
+
+.ms-1 {
+ margin-left: .25rem !important
+}
+
+.ms-2 {
+ margin-left: .5rem !important
+}
+
+.ms-3 {
+ margin-left: 1rem !important
+}
+
+.ms-4 {
+ margin-left: 1.5rem !important
+}
+
+.ms-5 {
+ margin-left: 3rem !important
+}
+
+.ms-auto {
+ margin-left: auto !important
+}
+
+.p-0 {
+ padding: 0 !important
+}
+
+.p-1 {
+ padding: .25rem !important
+}
+
+.p-2 {
+ padding: .5rem !important
+}
+
+.p-3 {
+ padding: 1rem !important
+}
+
+.p-4 {
+ padding: 1.5rem !important
+}
+
+.p-5 {
+ padding: 3rem !important
+}
+
+.px-0 {
+ padding-right: 0 !important;
+ padding-left: 0 !important
+}
+
+.px-1 {
+ padding-right: .25rem !important;
+ padding-left: .25rem !important
+}
+
+.px-2 {
+ padding-right: .5rem !important;
+ padding-left: .5rem !important
+}
+
+.px-3 {
+ padding-right: 1rem !important;
+ padding-left: 1rem !important
+}
+
+.px-4 {
+ padding-right: 1.5rem !important;
+ padding-left: 1.5rem !important
+}
+
+.px-5 {
+ padding-right: 3rem !important;
+ padding-left: 3rem !important
+}
+
+.py-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important
+}
+
+.py-1 {
+ padding-top: .25rem !important;
+ padding-bottom: .25rem !important
+}
+
+.py-2 {
+ padding-top: .5rem !important;
+ padding-bottom: .5rem !important
+}
+
+.py-3 {
+ padding-top: 1rem !important;
+ padding-bottom: 1rem !important
+}
+
+.py-4 {
+ padding-top: 1.5rem !important;
+ padding-bottom: 1.5rem !important
+}
+
+.py-5 {
+ padding-top: 3rem !important;
+ padding-bottom: 3rem !important
+}
+
+.pt-0 {
+ padding-top: 0 !important
+}
+
+.pt-1 {
+ padding-top: .25rem !important
+}
+
+.pt-2 {
+ padding-top: .5rem !important
+}
+
+.pt-3 {
+ padding-top: 1rem !important
+}
+
+.pt-4 {
+ padding-top: 1.5rem !important
+}
+
+.pt-5 {
+ padding-top: 3rem !important
+}
+
+.pe-0 {
+ padding-right: 0 !important
+}
+
+.pe-1 {
+ padding-right: .25rem !important
+}
+
+.pe-2 {
+ padding-right: .5rem !important
+}
+
+.pe-3 {
+ padding-right: 1rem !important
+}
+
+.pe-4 {
+ padding-right: 1.5rem !important
+}
+
+.pe-5 {
+ padding-right: 3rem !important
+}
+
+.pb-0 {
+ padding-bottom: 0 !important
+}
+
+.pb-1 {
+ padding-bottom: .25rem !important
+}
+
+.pb-2 {
+ padding-bottom: .5rem !important
+}
+
+.pb-3 {
+ padding-bottom: 1rem !important
+}
+
+.pb-4 {
+ padding-bottom: 1.5rem !important
+}
+
+.pb-5 {
+ padding-bottom: 3rem !important
+}
+
+.ps-0 {
+ padding-left: 0 !important
+}
+
+.ps-1 {
+ padding-left: .25rem !important
+}
+
+.ps-2 {
+ padding-left: .5rem !important
+}
+
+.ps-3 {
+ padding-left: 1rem !important
+}
+
+.ps-4 {
+ padding-left: 1.5rem !important
+}
+
+.ps-5 {
+ padding-left: 3rem !important
+}
+
+.font-monospace {
+ font-family: var(--bs-font-monospace) !important
+}
+
+.fs-1 {
+ font-size: calc(1.375rem + 1.5vw) !important
+}
+
+.fs-2 {
+ font-size: calc(1.325rem + 0.9vw) !important
+}
+
+.fs-3 {
+ font-size: calc(1.3rem + 0.6vw) !important
+}
+
+.fs-4 {
+ font-size: calc(1.275rem + 0.3vw) !important
+}
+
+.fs-5 {
+ font-size: 1.25rem !important
+}
+
+.fs-6 {
+ font-size: 1rem !important
+}
+
+.fst-italic {
+ font-style: italic !important
+}
+
+.fst-normal {
+ font-style: normal !important
+}
+
+.fw-light {
+ font-weight: 300 !important
+}
+
+.fw-lighter {
+ font-weight: lighter !important
+}
+
+.fw-normal {
+ font-weight: 400 !important
+}
+
+.fw-bold {
+ font-weight: 700 !important
+}
+
+.fw-bolder {
+ font-weight: bolder !important
+}
+
+.lh-1 {
+ line-height: 1 !important
+}
+
+.lh-sm {
+ line-height: 1.25 !important
+}
+
+.lh-base {
+ line-height: 1.5 !important
+}
+
+.lh-lg {
+ line-height: 2 !important
+}
+
+.text-start {
+ text-align: left !important
+}
+
+.text-end {
+ text-align: right !important
+}
+
+.text-center {
+ text-align: center !important
+}
+
+.text-decoration-none {
+ text-decoration: none !important
+}
+
+.text-decoration-underline {
+ text-decoration: underline !important
+}
+
+.text-decoration-line-through {
+ text-decoration: line-through !important
+}
+
+.text-lowercase {
+ text-transform: lowercase !important
+}
+
+.text-uppercase {
+ text-transform: uppercase !important
+}
+
+.text-capitalize {
+ text-transform: capitalize !important
+}
+
+.text-wrap {
+ white-space: normal !important
+}
+
+.text-nowrap {
+ white-space: nowrap !important
+}
+
+.text-break {
+ word-wrap: break-word !important;
+ word-break: break-word !important
+}
+
+.text-primary {
+ color: #15a362 !important
+}
+
+.text-secondary {
+ color: #5d6778 !important
+}
+
+.text-success {
+ color: #5cb377 !important
+}
+
+.text-danger {
+ color: #d26d69 !important
+}
+
+.text-warning {
+ color: #eebf41 !important
+}
+
+.text-info {
+ color: #5b99ea !important
+}
+
+.text-white {
+ color: #fff !important
+}
+
+.text-body {
+ color: #212529 !important
+}
+
+.text-muted {
+ color: #6c757d !important
+}
+
+.text-black-50 {
+ color: rgba(0, 0, 0, .5) !important
+}
+
+.text-white-50 {
+ color: rgba(255, 255, 255, .5) !important
+}
+
+.text-reset {
+ color: inherit !important
+}
+
+.bg-primary {
+ background-color: #15a362 !important
+}
+
+.bg-secondary {
+ background-color: #5d6778 !important
+}
+
+.bg-success {
+ background-color: #5cb377 !important
+}
+
+.bg-danger {
+ background-color: #d26d69 !important
+}
+
+.bg-warning {
+ background-color: #eebf41 !important
+}
+
+.bg-info {
+ background-color: #5b99ea !important
+}
+
+.bg-body {
+ background-color: #fff !important
+}
+
+.bg-white {
+ background-color: #fff !important
+}
+
+.bg-transparent {
+ background-color: transparent !important
+}
+
+.bg-gradient {
+ background-image: var(--bs-gradient) !important
+}
+
+.user-select-all {
+ -webkit-user-select: all !important;
+ -moz-user-select: all !important;
+ user-select: all !important
+}
+
+.user-select-auto {
+ -webkit-user-select: auto !important;
+ -moz-user-select: auto !important;
+ -ms-user-select: auto !important;
+ user-select: auto !important
+}
+
+.user-select-none {
+ -webkit-user-select: none !important;
+ -moz-user-select: none !important;
+ -ms-user-select: none !important;
+ user-select: none !important
+}
+
+.pe-none {
+ pointer-events: none !important
+}
+
+.pe-auto {
+ pointer-events: auto !important
+}
+
+.rounded {
+ border-radius: .25rem !important
+}
+
+.rounded-0 {
+ border-radius: 0 !important
+}
+
+.rounded-1 {
+ border-radius: .2rem !important
+}
+
+.rounded-2 {
+ border-radius: .25rem !important
+}
+
+.rounded-3 {
+ border-radius: .3rem !important
+}
+
+.rounded-circle {
+ border-radius: 50% !important
+}
+
+.rounded-pill {
+ border-radius: 50rem !important
+}
+
+.rounded-top {
+ border-top-left-radius: .25rem !important;
+ border-top-right-radius: .25rem !important
+}
+
+.rounded-end {
+ border-top-right-radius: .25rem !important;
+ border-bottom-right-radius: .25rem !important
+}
+
+.rounded-bottom {
+ border-bottom-right-radius: .25rem !important;
+ border-bottom-left-radius: .25rem !important
+}
+
+.rounded-start {
+ border-bottom-left-radius: .25rem !important;
+ border-top-left-radius: .25rem !important
+}
+
+.visible {
+ visibility: visible !important
+}
+
+.invisible {
+ visibility: hidden !important
+}
+
+@media(min-width: 576px) {
+ .float-sm-start {
+ float: left !important
+ }
+ .float-sm-end {
+ float: right !important
+ }
+ .float-sm-none {
+ float: none !important
+ }
+ .d-sm-inline {
+ display: inline !important
+ }
+ .d-sm-inline-block {
+ display: inline-block !important
+ }
+ .d-sm-block {
+ display: block !important
+ }
+ .d-sm-grid {
+ display: grid !important
+ }
+ .d-sm-table {
+ display: table !important
+ }
+ .d-sm-table-row {
+ display: table-row !important
+ }
+ .d-sm-table-cell {
+ display: table-cell !important
+ }
+ .d-sm-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+ }
+ .d-sm-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+ }
+ .d-sm-none {
+ display: none !important
+ }
+ .flex-sm-fill {
+ -webkit-flex: 1 1 auto !important;
+ flex: 1 1 auto !important
+ }
+ .flex-sm-row {
+ -webkit-flex-direction: row !important;
+ flex-direction: row !important
+ }
+ .flex-sm-column {
+ -webkit-flex-direction: column !important;
+ flex-direction: column !important
+ }
+ .flex-sm-row-reverse {
+ -webkit-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important
+ }
+ .flex-sm-column-reverse {
+ -webkit-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important
+ }
+ .flex-sm-grow-0 {
+ -webkit-flex-grow: 0 !important;
+ flex-grow: 0 !important
+ }
+ .flex-sm-grow-1 {
+ -webkit-flex-grow: 1 !important;
+ flex-grow: 1 !important
+ }
+ .flex-sm-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ flex-shrink: 0 !important
+ }
+ .flex-sm-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ flex-shrink: 1 !important
+ }
+ .flex-sm-wrap {
+ -webkit-flex-wrap: wrap !important;
+ flex-wrap: wrap !important
+ }
+ .flex-sm-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important
+ }
+ .flex-sm-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important
+ }
+ .gap-sm-0 {
+ gap: 0 !important
+ }
+ .gap-sm-1 {
+ gap: .25rem !important
+ }
+ .gap-sm-2 {
+ gap: .5rem !important
+ }
+ .gap-sm-3 {
+ gap: 1rem !important
+ }
+ .gap-sm-4 {
+ gap: 1.5rem !important
+ }
+ .gap-sm-5 {
+ gap: 3rem !important
+ }
+ .justify-content-sm-start {
+ -webkit-justify-content: flex-start !important;
+ justify-content: flex-start !important
+ }
+ .justify-content-sm-end {
+ -webkit-justify-content: flex-end !important;
+ justify-content: flex-end !important
+ }
+ .justify-content-sm-center {
+ -webkit-justify-content: center !important;
+ justify-content: center !important
+ }
+ .justify-content-sm-between {
+ -webkit-justify-content: space-between !important;
+ justify-content: space-between !important
+ }
+ .justify-content-sm-around {
+ -webkit-justify-content: space-around !important;
+ justify-content: space-around !important
+ }
+ .justify-content-sm-evenly {
+ -webkit-justify-content: space-evenly !important;
+ justify-content: space-evenly !important
+ }
+ .align-items-sm-start {
+ -webkit-align-items: flex-start !important;
+ align-items: flex-start !important
+ }
+ .align-items-sm-end {
+ -webkit-align-items: flex-end !important;
+ align-items: flex-end !important
+ }
+ .align-items-sm-center {
+ -webkit-align-items: center !important;
+ align-items: center !important
+ }
+ .align-items-sm-baseline {
+ -webkit-align-items: baseline !important;
+ align-items: baseline !important
+ }
+ .align-items-sm-stretch {
+ -webkit-align-items: stretch !important;
+ align-items: stretch !important
+ }
+ .align-content-sm-start {
+ -webkit-align-content: flex-start !important;
+ align-content: flex-start !important
+ }
+ .align-content-sm-end {
+ -webkit-align-content: flex-end !important;
+ align-content: flex-end !important
+ }
+ .align-content-sm-center {
+ -webkit-align-content: center !important;
+ align-content: center !important
+ }
+ .align-content-sm-between {
+ -webkit-align-content: space-between !important;
+ align-content: space-between !important
+ }
+ .align-content-sm-around {
+ -webkit-align-content: space-around !important;
+ align-content: space-around !important
+ }
+ .align-content-sm-stretch {
+ -webkit-align-content: stretch !important;
+ align-content: stretch !important
+ }
+ .align-self-sm-auto {
+ -webkit-align-self: auto !important;
+ align-self: auto !important
+ }
+ .align-self-sm-start {
+ -webkit-align-self: flex-start !important;
+ align-self: flex-start !important
+ }
+ .align-self-sm-end {
+ -webkit-align-self: flex-end !important;
+ align-self: flex-end !important
+ }
+ .align-self-sm-center {
+ -webkit-align-self: center !important;
+ align-self: center !important
+ }
+ .align-self-sm-baseline {
+ -webkit-align-self: baseline !important;
+ align-self: baseline !important
+ }
+ .align-self-sm-stretch {
+ -webkit-align-self: stretch !important;
+ align-self: stretch !important
+ }
+ .order-sm-first {
+ -webkit-order: -1 !important;
+ order: -1 !important
+ }
+ .order-sm-0 {
+ -webkit-order: 0 !important;
+ order: 0 !important
+ }
+ .order-sm-1 {
+ -webkit-order: 1 !important;
+ order: 1 !important
+ }
+ .order-sm-2 {
+ -webkit-order: 2 !important;
+ order: 2 !important
+ }
+ .order-sm-3 {
+ -webkit-order: 3 !important;
+ order: 3 !important
+ }
+ .order-sm-4 {
+ -webkit-order: 4 !important;
+ order: 4 !important
+ }
+ .order-sm-5 {
+ -webkit-order: 5 !important;
+ order: 5 !important
+ }
+ .order-sm-last {
+ -webkit-order: 6 !important;
+ order: 6 !important
+ }
+ .m-sm-0 {
+ margin: 0 !important
+ }
+ .m-sm-1 {
+ margin: .25rem !important
+ }
+ .m-sm-2 {
+ margin: .5rem !important
+ }
+ .m-sm-3 {
+ margin: 1rem !important
+ }
+ .m-sm-4 {
+ margin: 1.5rem !important
+ }
+ .m-sm-5 {
+ margin: 3rem !important
+ }
+ .m-sm-auto {
+ margin: auto !important
+ }
+ .mx-sm-0 {
+ margin-right: 0 !important;
+ margin-left: 0 !important
+ }
+ .mx-sm-1 {
+ margin-right: .25rem !important;
+ margin-left: .25rem !important
+ }
+ .mx-sm-2 {
+ margin-right: .5rem !important;
+ margin-left: .5rem !important
+ }
+ .mx-sm-3 {
+ margin-right: 1rem !important;
+ margin-left: 1rem !important
+ }
+ .mx-sm-4 {
+ margin-right: 1.5rem !important;
+ margin-left: 1.5rem !important
+ }
+ .mx-sm-5 {
+ margin-right: 3rem !important;
+ margin-left: 3rem !important
+ }
+ .mx-sm-auto {
+ margin-right: auto !important;
+ margin-left: auto !important
+ }
+ .my-sm-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important
+ }
+ .my-sm-1 {
+ margin-top: .25rem !important;
+ margin-bottom: .25rem !important
+ }
+ .my-sm-2 {
+ margin-top: .5rem !important;
+ margin-bottom: .5rem !important
+ }
+ .my-sm-3 {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important
+ }
+ .my-sm-4 {
+ margin-top: 1.5rem !important;
+ margin-bottom: 1.5rem !important
+ }
+ .my-sm-5 {
+ margin-top: 3rem !important;
+ margin-bottom: 3rem !important
+ }
+ .my-sm-auto {
+ margin-top: auto !important;
+ margin-bottom: auto !important
+ }
+ .mt-sm-0 {
+ margin-top: 0 !important
+ }
+ .mt-sm-1 {
+ margin-top: .25rem !important
+ }
+ .mt-sm-2 {
+ margin-top: .5rem !important
+ }
+ .mt-sm-3 {
+ margin-top: 1rem !important
+ }
+ .mt-sm-4 {
+ margin-top: 1.5rem !important
+ }
+ .mt-sm-5 {
+ margin-top: 3rem !important
+ }
+ .mt-sm-auto {
+ margin-top: auto !important
+ }
+ .me-sm-0 {
+ margin-right: 0 !important
+ }
+ .me-sm-1 {
+ margin-right: .25rem !important
+ }
+ .me-sm-2 {
+ margin-right: .5rem !important
+ }
+ .me-sm-3 {
+ margin-right: 1rem !important
+ }
+ .me-sm-4 {
+ margin-right: 1.5rem !important
+ }
+ .me-sm-5 {
+ margin-right: 3rem !important
+ }
+ .me-sm-auto {
+ margin-right: auto !important
+ }
+ .mb-sm-0 {
+ margin-bottom: 0 !important
+ }
+ .mb-sm-1 {
+ margin-bottom: .25rem !important
+ }
+ .mb-sm-2 {
+ margin-bottom: .5rem !important
+ }
+ .mb-sm-3 {
+ margin-bottom: 1rem !important
+ }
+ .mb-sm-4 {
+ margin-bottom: 1.5rem !important
+ }
+ .mb-sm-5 {
+ margin-bottom: 3rem !important
+ }
+ .mb-sm-auto {
+ margin-bottom: auto !important
+ }
+ .ms-sm-0 {
+ margin-left: 0 !important
+ }
+ .ms-sm-1 {
+ margin-left: .25rem !important
+ }
+ .ms-sm-2 {
+ margin-left: .5rem !important
+ }
+ .ms-sm-3 {
+ margin-left: 1rem !important
+ }
+ .ms-sm-4 {
+ margin-left: 1.5rem !important
+ }
+ .ms-sm-5 {
+ margin-left: 3rem !important
+ }
+ .ms-sm-auto {
+ margin-left: auto !important
+ }
+ .p-sm-0 {
+ padding: 0 !important
+ }
+ .p-sm-1 {
+ padding: .25rem !important
+ }
+ .p-sm-2 {
+ padding: .5rem !important
+ }
+ .p-sm-3 {
+ padding: 1rem !important
+ }
+ .p-sm-4 {
+ padding: 1.5rem !important
+ }
+ .p-sm-5 {
+ padding: 3rem !important
+ }
+ .px-sm-0 {
+ padding-right: 0 !important;
+ padding-left: 0 !important
+ }
+ .px-sm-1 {
+ padding-right: .25rem !important;
+ padding-left: .25rem !important
+ }
+ .px-sm-2 {
+ padding-right: .5rem !important;
+ padding-left: .5rem !important
+ }
+ .px-sm-3 {
+ padding-right: 1rem !important;
+ padding-left: 1rem !important
+ }
+ .px-sm-4 {
+ padding-right: 1.5rem !important;
+ padding-left: 1.5rem !important
+ }
+ .px-sm-5 {
+ padding-right: 3rem !important;
+ padding-left: 3rem !important
+ }
+ .py-sm-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important
+ }
+ .py-sm-1 {
+ padding-top: .25rem !important;
+ padding-bottom: .25rem !important
+ }
+ .py-sm-2 {
+ padding-top: .5rem !important;
+ padding-bottom: .5rem !important
+ }
+ .py-sm-3 {
+ padding-top: 1rem !important;
+ padding-bottom: 1rem !important
+ }
+ .py-sm-4 {
+ padding-top: 1.5rem !important;
+ padding-bottom: 1.5rem !important
+ }
+ .py-sm-5 {
+ padding-top: 3rem !important;
+ padding-bottom: 3rem !important
+ }
+ .pt-sm-0 {
+ padding-top: 0 !important
+ }
+ .pt-sm-1 {
+ padding-top: .25rem !important
+ }
+ .pt-sm-2 {
+ padding-top: .5rem !important
+ }
+ .pt-sm-3 {
+ padding-top: 1rem !important
+ }
+ .pt-sm-4 {
+ padding-top: 1.5rem !important
+ }
+ .pt-sm-5 {
+ padding-top: 3rem !important
+ }
+ .pe-sm-0 {
+ padding-right: 0 !important
+ }
+ .pe-sm-1 {
+ padding-right: .25rem !important
+ }
+ .pe-sm-2 {
+ padding-right: .5rem !important
+ }
+ .pe-sm-3 {
+ padding-right: 1rem !important
+ }
+ .pe-sm-4 {
+ padding-right: 1.5rem !important
+ }
+ .pe-sm-5 {
+ padding-right: 3rem !important
+ }
+ .pb-sm-0 {
+ padding-bottom: 0 !important
+ }
+ .pb-sm-1 {
+ padding-bottom: .25rem !important
+ }
+ .pb-sm-2 {
+ padding-bottom: .5rem !important
+ }
+ .pb-sm-3 {
+ padding-bottom: 1rem !important
+ }
+ .pb-sm-4 {
+ padding-bottom: 1.5rem !important
+ }
+ .pb-sm-5 {
+ padding-bottom: 3rem !important
+ }
+ .ps-sm-0 {
+ padding-left: 0 !important
+ }
+ .ps-sm-1 {
+ padding-left: .25rem !important
+ }
+ .ps-sm-2 {
+ padding-left: .5rem !important
+ }
+ .ps-sm-3 {
+ padding-left: 1rem !important
+ }
+ .ps-sm-4 {
+ padding-left: 1.5rem !important
+ }
+ .ps-sm-5 {
+ padding-left: 3rem !important
+ }
+ .text-sm-start {
+ text-align: left !important
+ }
+ .text-sm-end {
+ text-align: right !important
+ }
+ .text-sm-center {
+ text-align: center !important
+ }
+}
+
+@media(min-width: 768px) {
+ .float-md-start {
+ float: left !important
+ }
+ .float-md-end {
+ float: right !important
+ }
+ .float-md-none {
+ float: none !important
+ }
+ .d-md-inline {
+ display: inline !important
+ }
+ .d-md-inline-block {
+ display: inline-block !important
+ }
+ .d-md-block {
+ display: block !important
+ }
+ .d-md-grid {
+ display: grid !important
+ }
+ .d-md-table {
+ display: table !important
+ }
+ .d-md-table-row {
+ display: table-row !important
+ }
+ .d-md-table-cell {
+ display: table-cell !important
+ }
+ .d-md-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+ }
+ .d-md-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+ }
+ .d-md-none {
+ display: none !important
+ }
+ .flex-md-fill {
+ -webkit-flex: 1 1 auto !important;
+ flex: 1 1 auto !important
+ }
+ .flex-md-row {
+ -webkit-flex-direction: row !important;
+ flex-direction: row !important
+ }
+ .flex-md-column {
+ -webkit-flex-direction: column !important;
+ flex-direction: column !important
+ }
+ .flex-md-row-reverse {
+ -webkit-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important
+ }
+ .flex-md-column-reverse {
+ -webkit-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important
+ }
+ .flex-md-grow-0 {
+ -webkit-flex-grow: 0 !important;
+ flex-grow: 0 !important
+ }
+ .flex-md-grow-1 {
+ -webkit-flex-grow: 1 !important;
+ flex-grow: 1 !important
+ }
+ .flex-md-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ flex-shrink: 0 !important
+ }
+ .flex-md-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ flex-shrink: 1 !important
+ }
+ .flex-md-wrap {
+ -webkit-flex-wrap: wrap !important;
+ flex-wrap: wrap !important
+ }
+ .flex-md-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important
+ }
+ .flex-md-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important
+ }
+ .gap-md-0 {
+ gap: 0 !important
+ }
+ .gap-md-1 {
+ gap: .25rem !important
+ }
+ .gap-md-2 {
+ gap: .5rem !important
+ }
+ .gap-md-3 {
+ gap: 1rem !important
+ }
+ .gap-md-4 {
+ gap: 1.5rem !important
+ }
+ .gap-md-5 {
+ gap: 3rem !important
+ }
+ .justify-content-md-start {
+ -webkit-justify-content: flex-start !important;
+ justify-content: flex-start !important
+ }
+ .justify-content-md-end {
+ -webkit-justify-content: flex-end !important;
+ justify-content: flex-end !important
+ }
+ .justify-content-md-center {
+ -webkit-justify-content: center !important;
+ justify-content: center !important
+ }
+ .justify-content-md-between {
+ -webkit-justify-content: space-between !important;
+ justify-content: space-between !important
+ }
+ .justify-content-md-around {
+ -webkit-justify-content: space-around !important;
+ justify-content: space-around !important
+ }
+ .justify-content-md-evenly {
+ -webkit-justify-content: space-evenly !important;
+ justify-content: space-evenly !important
+ }
+ .align-items-md-start {
+ -webkit-align-items: flex-start !important;
+ align-items: flex-start !important
+ }
+ .align-items-md-end {
+ -webkit-align-items: flex-end !important;
+ align-items: flex-end !important
+ }
+ .align-items-md-center {
+ -webkit-align-items: center !important;
+ align-items: center !important
+ }
+ .align-items-md-baseline {
+ -webkit-align-items: baseline !important;
+ align-items: baseline !important
+ }
+ .align-items-md-stretch {
+ -webkit-align-items: stretch !important;
+ align-items: stretch !important
+ }
+ .align-content-md-start {
+ -webkit-align-content: flex-start !important;
+ align-content: flex-start !important
+ }
+ .align-content-md-end {
+ -webkit-align-content: flex-end !important;
+ align-content: flex-end !important
+ }
+ .align-content-md-center {
+ -webkit-align-content: center !important;
+ align-content: center !important
+ }
+ .align-content-md-between {
+ -webkit-align-content: space-between !important;
+ align-content: space-between !important
+ }
+ .align-content-md-around {
+ -webkit-align-content: space-around !important;
+ align-content: space-around !important
+ }
+ .align-content-md-stretch {
+ -webkit-align-content: stretch !important;
+ align-content: stretch !important
+ }
+ .align-self-md-auto {
+ -webkit-align-self: auto !important;
+ align-self: auto !important
+ }
+ .align-self-md-start {
+ -webkit-align-self: flex-start !important;
+ align-self: flex-start !important
+ }
+ .align-self-md-end {
+ -webkit-align-self: flex-end !important;
+ align-self: flex-end !important
+ }
+ .align-self-md-center {
+ -webkit-align-self: center !important;
+ align-self: center !important
+ }
+ .align-self-md-baseline {
+ -webkit-align-self: baseline !important;
+ align-self: baseline !important
+ }
+ .align-self-md-stretch {
+ -webkit-align-self: stretch !important;
+ align-self: stretch !important
+ }
+ .order-md-first {
+ -webkit-order: -1 !important;
+ order: -1 !important
+ }
+ .order-md-0 {
+ -webkit-order: 0 !important;
+ order: 0 !important
+ }
+ .order-md-1 {
+ -webkit-order: 1 !important;
+ order: 1 !important
+ }
+ .order-md-2 {
+ -webkit-order: 2 !important;
+ order: 2 !important
+ }
+ .order-md-3 {
+ -webkit-order: 3 !important;
+ order: 3 !important
+ }
+ .order-md-4 {
+ -webkit-order: 4 !important;
+ order: 4 !important
+ }
+ .order-md-5 {
+ -webkit-order: 5 !important;
+ order: 5 !important
+ }
+ .order-md-last {
+ -webkit-order: 6 !important;
+ order: 6 !important
+ }
+ .m-md-0 {
+ margin: 0 !important
+ }
+ .m-md-1 {
+ margin: .25rem !important
+ }
+ .m-md-2 {
+ margin: .5rem !important
+ }
+ .m-md-3 {
+ margin: 1rem !important
+ }
+ .m-md-4 {
+ margin: 1.5rem !important
+ }
+ .m-md-5 {
+ margin: 3rem !important
+ }
+ .m-md-auto {
+ margin: auto !important
+ }
+ .mx-md-0 {
+ margin-right: 0 !important;
+ margin-left: 0 !important
+ }
+ .mx-md-1 {
+ margin-right: .25rem !important;
+ margin-left: .25rem !important
+ }
+ .mx-md-2 {
+ margin-right: .5rem !important;
+ margin-left: .5rem !important
+ }
+ .mx-md-3 {
+ margin-right: 1rem !important;
+ margin-left: 1rem !important
+ }
+ .mx-md-4 {
+ margin-right: 1.5rem !important;
+ margin-left: 1.5rem !important
+ }
+ .mx-md-5 {
+ margin-right: 3rem !important;
+ margin-left: 3rem !important
+ }
+ .mx-md-auto {
+ margin-right: auto !important;
+ margin-left: auto !important
+ }
+ .my-md-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important
+ }
+ .my-md-1 {
+ margin-top: .25rem !important;
+ margin-bottom: .25rem !important
+ }
+ .my-md-2 {
+ margin-top: .5rem !important;
+ margin-bottom: .5rem !important
+ }
+ .my-md-3 {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important
+ }
+ .my-md-4 {
+ margin-top: 1.5rem !important;
+ margin-bottom: 1.5rem !important
+ }
+ .my-md-5 {
+ margin-top: 3rem !important;
+ margin-bottom: 3rem !important
+ }
+ .my-md-auto {
+ margin-top: auto !important;
+ margin-bottom: auto !important
+ }
+ .mt-md-0 {
+ margin-top: 0 !important
+ }
+ .mt-md-1 {
+ margin-top: .25rem !important
+ }
+ .mt-md-2 {
+ margin-top: .5rem !important
+ }
+ .mt-md-3 {
+ margin-top: 1rem !important
+ }
+ .mt-md-4 {
+ margin-top: 1.5rem !important
+ }
+ .mt-md-5 {
+ margin-top: 3rem !important
+ }
+ .mt-md-auto {
+ margin-top: auto !important
+ }
+ .me-md-0 {
+ margin-right: 0 !important
+ }
+ .me-md-1 {
+ margin-right: .25rem !important
+ }
+ .me-md-2 {
+ margin-right: .5rem !important
+ }
+ .me-md-3 {
+ margin-right: 1rem !important
+ }
+ .me-md-4 {
+ margin-right: 1.5rem !important
+ }
+ .me-md-5 {
+ margin-right: 3rem !important
+ }
+ .me-md-auto {
+ margin-right: auto !important
+ }
+ .mb-md-0 {
+ margin-bottom: 0 !important
+ }
+ .mb-md-1 {
+ margin-bottom: .25rem !important
+ }
+ .mb-md-2 {
+ margin-bottom: .5rem !important
+ }
+ .mb-md-3 {
+ margin-bottom: 1rem !important
+ }
+ .mb-md-4 {
+ margin-bottom: 1.5rem !important
+ }
+ .mb-md-5 {
+ margin-bottom: 3rem !important
+ }
+ .mb-md-auto {
+ margin-bottom: auto !important
+ }
+ .ms-md-0 {
+ margin-left: 0 !important
+ }
+ .ms-md-1 {
+ margin-left: .25rem !important
+ }
+ .ms-md-2 {
+ margin-left: .5rem !important
+ }
+ .ms-md-3 {
+ margin-left: 1rem !important
+ }
+ .ms-md-4 {
+ margin-left: 1.5rem !important
+ }
+ .ms-md-5 {
+ margin-left: 3rem !important
+ }
+ .ms-md-auto {
+ margin-left: auto !important
+ }
+ .p-md-0 {
+ padding: 0 !important
+ }
+ .p-md-1 {
+ padding: .25rem !important
+ }
+ .p-md-2 {
+ padding: .5rem !important
+ }
+ .p-md-3 {
+ padding: 1rem !important
+ }
+ .p-md-4 {
+ padding: 1.5rem !important
+ }
+ .p-md-5 {
+ padding: 3rem !important
+ }
+ .px-md-0 {
+ padding-right: 0 !important;
+ padding-left: 0 !important
+ }
+ .px-md-1 {
+ padding-right: .25rem !important;
+ padding-left: .25rem !important
+ }
+ .px-md-2 {
+ padding-right: .5rem !important;
+ padding-left: .5rem !important
+ }
+ .px-md-3 {
+ padding-right: 1rem !important;
+ padding-left: 1rem !important
+ }
+ .px-md-4 {
+ padding-right: 1.5rem !important;
+ padding-left: 1.5rem !important
+ }
+ .px-md-5 {
+ padding-right: 3rem !important;
+ padding-left: 3rem !important
+ }
+ .py-md-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important
+ }
+ .py-md-1 {
+ padding-top: .25rem !important;
+ padding-bottom: .25rem !important
+ }
+ .py-md-2 {
+ padding-top: .5rem !important;
+ padding-bottom: .5rem !important
+ }
+ .py-md-3 {
+ padding-top: 1rem !important;
+ padding-bottom: 1rem !important
+ }
+ .py-md-4 {
+ padding-top: 1.5rem !important;
+ padding-bottom: 1.5rem !important
+ }
+ .py-md-5 {
+ padding-top: 3rem !important;
+ padding-bottom: 3rem !important
+ }
+ .pt-md-0 {
+ padding-top: 0 !important
+ }
+ .pt-md-1 {
+ padding-top: .25rem !important
+ }
+ .pt-md-2 {
+ padding-top: .5rem !important
+ }
+ .pt-md-3 {
+ padding-top: 1rem !important
+ }
+ .pt-md-4 {
+ padding-top: 1.5rem !important
+ }
+ .pt-md-5 {
+ padding-top: 3rem !important
+ }
+ .pe-md-0 {
+ padding-right: 0 !important
+ }
+ .pe-md-1 {
+ padding-right: .25rem !important
+ }
+ .pe-md-2 {
+ padding-right: .5rem !important
+ }
+ .pe-md-3 {
+ padding-right: 1rem !important
+ }
+ .pe-md-4 {
+ padding-right: 1.5rem !important
+ }
+ .pe-md-5 {
+ padding-right: 3rem !important
+ }
+ .pb-md-0 {
+ padding-bottom: 0 !important
+ }
+ .pb-md-1 {
+ padding-bottom: .25rem !important
+ }
+ .pb-md-2 {
+ padding-bottom: .5rem !important
+ }
+ .pb-md-3 {
+ padding-bottom: 1rem !important
+ }
+ .pb-md-4 {
+ padding-bottom: 1.5rem !important
+ }
+ .pb-md-5 {
+ padding-bottom: 3rem !important
+ }
+ .ps-md-0 {
+ padding-left: 0 !important
+ }
+ .ps-md-1 {
+ padding-left: .25rem !important
+ }
+ .ps-md-2 {
+ padding-left: .5rem !important
+ }
+ .ps-md-3 {
+ padding-left: 1rem !important
+ }
+ .ps-md-4 {
+ padding-left: 1.5rem !important
+ }
+ .ps-md-5 {
+ padding-left: 3rem !important
+ }
+ .text-md-start {
+ text-align: left !important
+ }
+ .text-md-end {
+ text-align: right !important
+ }
+ .text-md-center {
+ text-align: center !important
+ }
+}
+
+@media(min-width: 992px) {
+ .float-lg-start {
+ float: left !important
+ }
+ .float-lg-end {
+ float: right !important
+ }
+ .float-lg-none {
+ float: none !important
+ }
+ .d-lg-inline {
+ display: inline !important
+ }
+ .d-lg-inline-block {
+ display: inline-block !important
+ }
+ .d-lg-block {
+ display: block !important
+ }
+ .d-lg-grid {
+ display: grid !important
+ }
+ .d-lg-table {
+ display: table !important
+ }
+ .d-lg-table-row {
+ display: table-row !important
+ }
+ .d-lg-table-cell {
+ display: table-cell !important
+ }
+ .d-lg-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+ }
+ .d-lg-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+ }
+ .d-lg-none {
+ display: none !important
+ }
+ .flex-lg-fill {
+ -webkit-flex: 1 1 auto !important;
+ flex: 1 1 auto !important
+ }
+ .flex-lg-row {
+ -webkit-flex-direction: row !important;
+ flex-direction: row !important
+ }
+ .flex-lg-column {
+ -webkit-flex-direction: column !important;
+ flex-direction: column !important
+ }
+ .flex-lg-row-reverse {
+ -webkit-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important
+ }
+ .flex-lg-column-reverse {
+ -webkit-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important
+ }
+ .flex-lg-grow-0 {
+ -webkit-flex-grow: 0 !important;
+ flex-grow: 0 !important
+ }
+ .flex-lg-grow-1 {
+ -webkit-flex-grow: 1 !important;
+ flex-grow: 1 !important
+ }
+ .flex-lg-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ flex-shrink: 0 !important
+ }
+ .flex-lg-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ flex-shrink: 1 !important
+ }
+ .flex-lg-wrap {
+ -webkit-flex-wrap: wrap !important;
+ flex-wrap: wrap !important
+ }
+ .flex-lg-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important
+ }
+ .flex-lg-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important
+ }
+ .gap-lg-0 {
+ gap: 0 !important
+ }
+ .gap-lg-1 {
+ gap: .25rem !important
+ }
+ .gap-lg-2 {
+ gap: .5rem !important
+ }
+ .gap-lg-3 {
+ gap: 1rem !important
+ }
+ .gap-lg-4 {
+ gap: 1.5rem !important
+ }
+ .gap-lg-5 {
+ gap: 3rem !important
+ }
+ .justify-content-lg-start {
+ -webkit-justify-content: flex-start !important;
+ justify-content: flex-start !important
+ }
+ .justify-content-lg-end {
+ -webkit-justify-content: flex-end !important;
+ justify-content: flex-end !important
+ }
+ .justify-content-lg-center {
+ -webkit-justify-content: center !important;
+ justify-content: center !important
+ }
+ .justify-content-lg-between {
+ -webkit-justify-content: space-between !important;
+ justify-content: space-between !important
+ }
+ .justify-content-lg-around {
+ -webkit-justify-content: space-around !important;
+ justify-content: space-around !important
+ }
+ .justify-content-lg-evenly {
+ -webkit-justify-content: space-evenly !important;
+ justify-content: space-evenly !important
+ }
+ .align-items-lg-start {
+ -webkit-align-items: flex-start !important;
+ align-items: flex-start !important
+ }
+ .align-items-lg-end {
+ -webkit-align-items: flex-end !important;
+ align-items: flex-end !important
+ }
+ .align-items-lg-center {
+ -webkit-align-items: center !important;
+ align-items: center !important
+ }
+ .align-items-lg-baseline {
+ -webkit-align-items: baseline !important;
+ align-items: baseline !important
+ }
+ .align-items-lg-stretch {
+ -webkit-align-items: stretch !important;
+ align-items: stretch !important
+ }
+ .align-content-lg-start {
+ -webkit-align-content: flex-start !important;
+ align-content: flex-start !important
+ }
+ .align-content-lg-end {
+ -webkit-align-content: flex-end !important;
+ align-content: flex-end !important
+ }
+ .align-content-lg-center {
+ -webkit-align-content: center !important;
+ align-content: center !important
+ }
+ .align-content-lg-between {
+ -webkit-align-content: space-between !important;
+ align-content: space-between !important
+ }
+ .align-content-lg-around {
+ -webkit-align-content: space-around !important;
+ align-content: space-around !important
+ }
+ .align-content-lg-stretch {
+ -webkit-align-content: stretch !important;
+ align-content: stretch !important
+ }
+ .align-self-lg-auto {
+ -webkit-align-self: auto !important;
+ align-self: auto !important
+ }
+ .align-self-lg-start {
+ -webkit-align-self: flex-start !important;
+ align-self: flex-start !important
+ }
+ .align-self-lg-end {
+ -webkit-align-self: flex-end !important;
+ align-self: flex-end !important
+ }
+ .align-self-lg-center {
+ -webkit-align-self: center !important;
+ align-self: center !important
+ }
+ .align-self-lg-baseline {
+ -webkit-align-self: baseline !important;
+ align-self: baseline !important
+ }
+ .align-self-lg-stretch {
+ -webkit-align-self: stretch !important;
+ align-self: stretch !important
+ }
+ .order-lg-first {
+ -webkit-order: -1 !important;
+ order: -1 !important
+ }
+ .order-lg-0 {
+ -webkit-order: 0 !important;
+ order: 0 !important
+ }
+ .order-lg-1 {
+ -webkit-order: 1 !important;
+ order: 1 !important
+ }
+ .order-lg-2 {
+ -webkit-order: 2 !important;
+ order: 2 !important
+ }
+ .order-lg-3 {
+ -webkit-order: 3 !important;
+ order: 3 !important
+ }
+ .order-lg-4 {
+ -webkit-order: 4 !important;
+ order: 4 !important
+ }
+ .order-lg-5 {
+ -webkit-order: 5 !important;
+ order: 5 !important
+ }
+ .order-lg-last {
+ -webkit-order: 6 !important;
+ order: 6 !important
+ }
+ .m-lg-0 {
+ margin: 0 !important
+ }
+ .m-lg-1 {
+ margin: .25rem !important
+ }
+ .m-lg-2 {
+ margin: .5rem !important
+ }
+ .m-lg-3 {
+ margin: 1rem !important
+ }
+ .m-lg-4 {
+ margin: 1.5rem !important
+ }
+ .m-lg-5 {
+ margin: 3rem !important
+ }
+ .m-lg-auto {
+ margin: auto !important
+ }
+ .mx-lg-0 {
+ margin-right: 0 !important;
+ margin-left: 0 !important
+ }
+ .mx-lg-1 {
+ margin-right: .25rem !important;
+ margin-left: .25rem !important
+ }
+ .mx-lg-2 {
+ margin-right: .5rem !important;
+ margin-left: .5rem !important
+ }
+ .mx-lg-3 {
+ margin-right: 1rem !important;
+ margin-left: 1rem !important
+ }
+ .mx-lg-4 {
+ margin-right: 1.5rem !important;
+ margin-left: 1.5rem !important
+ }
+ .mx-lg-5 {
+ margin-right: 3rem !important;
+ margin-left: 3rem !important
+ }
+ .mx-lg-auto {
+ margin-right: auto !important;
+ margin-left: auto !important
+ }
+ .my-lg-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important
+ }
+ .my-lg-1 {
+ margin-top: .25rem !important;
+ margin-bottom: .25rem !important
+ }
+ .my-lg-2 {
+ margin-top: .5rem !important;
+ margin-bottom: .5rem !important
+ }
+ .my-lg-3 {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important
+ }
+ .my-lg-4 {
+ margin-top: 1.5rem !important;
+ margin-bottom: 1.5rem !important
+ }
+ .my-lg-5 {
+ margin-top: 3rem !important;
+ margin-bottom: 3rem !important
+ }
+ .my-lg-auto {
+ margin-top: auto !important;
+ margin-bottom: auto !important
+ }
+ .mt-lg-0 {
+ margin-top: 0 !important
+ }
+ .mt-lg-1 {
+ margin-top: .25rem !important
+ }
+ .mt-lg-2 {
+ margin-top: .5rem !important
+ }
+ .mt-lg-3 {
+ margin-top: 1rem !important
+ }
+ .mt-lg-4 {
+ margin-top: 1.5rem !important
+ }
+ .mt-lg-5 {
+ margin-top: 3rem !important
+ }
+ .mt-lg-auto {
+ margin-top: auto !important
+ }
+ .me-lg-0 {
+ margin-right: 0 !important
+ }
+ .me-lg-1 {
+ margin-right: .25rem !important
+ }
+ .me-lg-2 {
+ margin-right: .5rem !important
+ }
+ .me-lg-3 {
+ margin-right: 1rem !important
+ }
+ .me-lg-4 {
+ margin-right: 1.5rem !important
+ }
+ .me-lg-5 {
+ margin-right: 3rem !important
+ }
+ .me-lg-auto {
+ margin-right: auto !important
+ }
+ .mb-lg-0 {
+ margin-bottom: 0 !important
+ }
+ .mb-lg-1 {
+ margin-bottom: .25rem !important
+ }
+ .mb-lg-2 {
+ margin-bottom: .5rem !important
+ }
+ .mb-lg-3 {
+ margin-bottom: 1rem !important
+ }
+ .mb-lg-4 {
+ margin-bottom: 1.5rem !important
+ }
+ .mb-lg-5 {
+ margin-bottom: 3rem !important
+ }
+ .mb-lg-auto {
+ margin-bottom: auto !important
+ }
+ .ms-lg-0 {
+ margin-left: 0 !important
+ }
+ .ms-lg-1 {
+ margin-left: .25rem !important
+ }
+ .ms-lg-2 {
+ margin-left: .5rem !important
+ }
+ .ms-lg-3 {
+ margin-left: 1rem !important
+ }
+ .ms-lg-4 {
+ margin-left: 1.5rem !important
+ }
+ .ms-lg-5 {
+ margin-left: 3rem !important
+ }
+ .ms-lg-auto {
+ margin-left: auto !important
+ }
+ .p-lg-0 {
+ padding: 0 !important
+ }
+ .p-lg-1 {
+ padding: .25rem !important
+ }
+ .p-lg-2 {
+ padding: .5rem !important
+ }
+ .p-lg-3 {
+ padding: 1rem !important
+ }
+ .p-lg-4 {
+ padding: 1.5rem !important
+ }
+ .p-lg-5 {
+ padding: 3rem !important
+ }
+ .px-lg-0 {
+ padding-right: 0 !important;
+ padding-left: 0 !important
+ }
+ .px-lg-1 {
+ padding-right: .25rem !important;
+ padding-left: .25rem !important
+ }
+ .px-lg-2 {
+ padding-right: .5rem !important;
+ padding-left: .5rem !important
+ }
+ .px-lg-3 {
+ padding-right: 1rem !important;
+ padding-left: 1rem !important
+ }
+ .px-lg-4 {
+ padding-right: 1.5rem !important;
+ padding-left: 1.5rem !important
+ }
+ .px-lg-5 {
+ padding-right: 3rem !important;
+ padding-left: 3rem !important
+ }
+ .py-lg-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important
+ }
+ .py-lg-1 {
+ padding-top: .25rem !important;
+ padding-bottom: .25rem !important
+ }
+ .py-lg-2 {
+ padding-top: .5rem !important;
+ padding-bottom: .5rem !important
+ }
+ .py-lg-3 {
+ padding-top: 1rem !important;
+ padding-bottom: 1rem !important
+ }
+ .py-lg-4 {
+ padding-top: 1.5rem !important;
+ padding-bottom: 1.5rem !important
+ }
+ .py-lg-5 {
+ padding-top: 3rem !important;
+ padding-bottom: 3rem !important
+ }
+ .pt-lg-0 {
+ padding-top: 0 !important
+ }
+ .pt-lg-1 {
+ padding-top: .25rem !important
+ }
+ .pt-lg-2 {
+ padding-top: .5rem !important
+ }
+ .pt-lg-3 {
+ padding-top: 1rem !important
+ }
+ .pt-lg-4 {
+ padding-top: 1.5rem !important
+ }
+ .pt-lg-5 {
+ padding-top: 3rem !important
+ }
+ .pe-lg-0 {
+ padding-right: 0 !important
+ }
+ .pe-lg-1 {
+ padding-right: .25rem !important
+ }
+ .pe-lg-2 {
+ padding-right: .5rem !important
+ }
+ .pe-lg-3 {
+ padding-right: 1rem !important
+ }
+ .pe-lg-4 {
+ padding-right: 1.5rem !important
+ }
+ .pe-lg-5 {
+ padding-right: 3rem !important
+ }
+ .pb-lg-0 {
+ padding-bottom: 0 !important
+ }
+ .pb-lg-1 {
+ padding-bottom: .25rem !important
+ }
+ .pb-lg-2 {
+ padding-bottom: .5rem !important
+ }
+ .pb-lg-3 {
+ padding-bottom: 1rem !important
+ }
+ .pb-lg-4 {
+ padding-bottom: 1.5rem !important
+ }
+ .pb-lg-5 {
+ padding-bottom: 3rem !important
+ }
+ .ps-lg-0 {
+ padding-left: 0 !important
+ }
+ .ps-lg-1 {
+ padding-left: .25rem !important
+ }
+ .ps-lg-2 {
+ padding-left: .5rem !important
+ }
+ .ps-lg-3 {
+ padding-left: 1rem !important
+ }
+ .ps-lg-4 {
+ padding-left: 1.5rem !important
+ }
+ .ps-lg-5 {
+ padding-left: 3rem !important
+ }
+ .text-lg-start {
+ text-align: left !important
+ }
+ .text-lg-end {
+ text-align: right !important
+ }
+ .text-lg-center {
+ text-align: center !important
+ }
+}
+
+@media(min-width: 1200px) {
+ .float-xl-start {
+ float: left !important
+ }
+ .float-xl-end {
+ float: right !important
+ }
+ .float-xl-none {
+ float: none !important
+ }
+ .d-xl-inline {
+ display: inline !important
+ }
+ .d-xl-inline-block {
+ display: inline-block !important
+ }
+ .d-xl-block {
+ display: block !important
+ }
+ .d-xl-grid {
+ display: grid !important
+ }
+ .d-xl-table {
+ display: table !important
+ }
+ .d-xl-table-row {
+ display: table-row !important
+ }
+ .d-xl-table-cell {
+ display: table-cell !important
+ }
+ .d-xl-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+ }
+ .d-xl-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+ }
+ .d-xl-none {
+ display: none !important
+ }
+ .flex-xl-fill {
+ -webkit-flex: 1 1 auto !important;
+ flex: 1 1 auto !important
+ }
+ .flex-xl-row {
+ -webkit-flex-direction: row !important;
+ flex-direction: row !important
+ }
+ .flex-xl-column {
+ -webkit-flex-direction: column !important;
+ flex-direction: column !important
+ }
+ .flex-xl-row-reverse {
+ -webkit-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important
+ }
+ .flex-xl-column-reverse {
+ -webkit-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important
+ }
+ .flex-xl-grow-0 {
+ -webkit-flex-grow: 0 !important;
+ flex-grow: 0 !important
+ }
+ .flex-xl-grow-1 {
+ -webkit-flex-grow: 1 !important;
+ flex-grow: 1 !important
+ }
+ .flex-xl-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ flex-shrink: 0 !important
+ }
+ .flex-xl-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ flex-shrink: 1 !important
+ }
+ .flex-xl-wrap {
+ -webkit-flex-wrap: wrap !important;
+ flex-wrap: wrap !important
+ }
+ .flex-xl-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important
+ }
+ .flex-xl-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important
+ }
+ .gap-xl-0 {
+ gap: 0 !important
+ }
+ .gap-xl-1 {
+ gap: .25rem !important
+ }
+ .gap-xl-2 {
+ gap: .5rem !important
+ }
+ .gap-xl-3 {
+ gap: 1rem !important
+ }
+ .gap-xl-4 {
+ gap: 1.5rem !important
+ }
+ .gap-xl-5 {
+ gap: 3rem !important
+ }
+ .justify-content-xl-start {
+ -webkit-justify-content: flex-start !important;
+ justify-content: flex-start !important
+ }
+ .justify-content-xl-end {
+ -webkit-justify-content: flex-end !important;
+ justify-content: flex-end !important
+ }
+ .justify-content-xl-center {
+ -webkit-justify-content: center !important;
+ justify-content: center !important
+ }
+ .justify-content-xl-between {
+ -webkit-justify-content: space-between !important;
+ justify-content: space-between !important
+ }
+ .justify-content-xl-around {
+ -webkit-justify-content: space-around !important;
+ justify-content: space-around !important
+ }
+ .justify-content-xl-evenly {
+ -webkit-justify-content: space-evenly !important;
+ justify-content: space-evenly !important
+ }
+ .align-items-xl-start {
+ -webkit-align-items: flex-start !important;
+ align-items: flex-start !important
+ }
+ .align-items-xl-end {
+ -webkit-align-items: flex-end !important;
+ align-items: flex-end !important
+ }
+ .align-items-xl-center {
+ -webkit-align-items: center !important;
+ align-items: center !important
+ }
+ .align-items-xl-baseline {
+ -webkit-align-items: baseline !important;
+ align-items: baseline !important
+ }
+ .align-items-xl-stretch {
+ -webkit-align-items: stretch !important;
+ align-items: stretch !important
+ }
+ .align-content-xl-start {
+ -webkit-align-content: flex-start !important;
+ align-content: flex-start !important
+ }
+ .align-content-xl-end {
+ -webkit-align-content: flex-end !important;
+ align-content: flex-end !important
+ }
+ .align-content-xl-center {
+ -webkit-align-content: center !important;
+ align-content: center !important
+ }
+ .align-content-xl-between {
+ -webkit-align-content: space-between !important;
+ align-content: space-between !important
+ }
+ .align-content-xl-around {
+ -webkit-align-content: space-around !important;
+ align-content: space-around !important
+ }
+ .align-content-xl-stretch {
+ -webkit-align-content: stretch !important;
+ align-content: stretch !important
+ }
+ .align-self-xl-auto {
+ -webkit-align-self: auto !important;
+ align-self: auto !important
+ }
+ .align-self-xl-start {
+ -webkit-align-self: flex-start !important;
+ align-self: flex-start !important
+ }
+ .align-self-xl-end {
+ -webkit-align-self: flex-end !important;
+ align-self: flex-end !important
+ }
+ .align-self-xl-center {
+ -webkit-align-self: center !important;
+ align-self: center !important
+ }
+ .align-self-xl-baseline {
+ -webkit-align-self: baseline !important;
+ align-self: baseline !important
+ }
+ .align-self-xl-stretch {
+ -webkit-align-self: stretch !important;
+ align-self: stretch !important
+ }
+ .order-xl-first {
+ -webkit-order: -1 !important;
+ order: -1 !important
+ }
+ .order-xl-0 {
+ -webkit-order: 0 !important;
+ order: 0 !important
+ }
+ .order-xl-1 {
+ -webkit-order: 1 !important;
+ order: 1 !important
+ }
+ .order-xl-2 {
+ -webkit-order: 2 !important;
+ order: 2 !important
+ }
+ .order-xl-3 {
+ -webkit-order: 3 !important;
+ order: 3 !important
+ }
+ .order-xl-4 {
+ -webkit-order: 4 !important;
+ order: 4 !important
+ }
+ .order-xl-5 {
+ -webkit-order: 5 !important;
+ order: 5 !important
+ }
+ .order-xl-last {
+ -webkit-order: 6 !important;
+ order: 6 !important
+ }
+ .m-xl-0 {
+ margin: 0 !important
+ }
+ .m-xl-1 {
+ margin: .25rem !important
+ }
+ .m-xl-2 {
+ margin: .5rem !important
+ }
+ .m-xl-3 {
+ margin: 1rem !important
+ }
+ .m-xl-4 {
+ margin: 1.5rem !important
+ }
+ .m-xl-5 {
+ margin: 3rem !important
+ }
+ .m-xl-auto {
+ margin: auto !important
+ }
+ .mx-xl-0 {
+ margin-right: 0 !important;
+ margin-left: 0 !important
+ }
+ .mx-xl-1 {
+ margin-right: .25rem !important;
+ margin-left: .25rem !important
+ }
+ .mx-xl-2 {
+ margin-right: .5rem !important;
+ margin-left: .5rem !important
+ }
+ .mx-xl-3 {
+ margin-right: 1rem !important;
+ margin-left: 1rem !important
+ }
+ .mx-xl-4 {
+ margin-right: 1.5rem !important;
+ margin-left: 1.5rem !important
+ }
+ .mx-xl-5 {
+ margin-right: 3rem !important;
+ margin-left: 3rem !important
+ }
+ .mx-xl-auto {
+ margin-right: auto !important;
+ margin-left: auto !important
+ }
+ .my-xl-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important
+ }
+ .my-xl-1 {
+ margin-top: .25rem !important;
+ margin-bottom: .25rem !important
+ }
+ .my-xl-2 {
+ margin-top: .5rem !important;
+ margin-bottom: .5rem !important
+ }
+ .my-xl-3 {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important
+ }
+ .my-xl-4 {
+ margin-top: 1.5rem !important;
+ margin-bottom: 1.5rem !important
+ }
+ .my-xl-5 {
+ margin-top: 3rem !important;
+ margin-bottom: 3rem !important
+ }
+ .my-xl-auto {
+ margin-top: auto !important;
+ margin-bottom: auto !important
+ }
+ .mt-xl-0 {
+ margin-top: 0 !important
+ }
+ .mt-xl-1 {
+ margin-top: .25rem !important
+ }
+ .mt-xl-2 {
+ margin-top: .5rem !important
+ }
+ .mt-xl-3 {
+ margin-top: 1rem !important
+ }
+ .mt-xl-4 {
+ margin-top: 1.5rem !important
+ }
+ .mt-xl-5 {
+ margin-top: 3rem !important
+ }
+ .mt-xl-auto {
+ margin-top: auto !important
+ }
+ .me-xl-0 {
+ margin-right: 0 !important
+ }
+ .me-xl-1 {
+ margin-right: .25rem !important
+ }
+ .me-xl-2 {
+ margin-right: .5rem !important
+ }
+ .me-xl-3 {
+ margin-right: 1rem !important
+ }
+ .me-xl-4 {
+ margin-right: 1.5rem !important
+ }
+ .me-xl-5 {
+ margin-right: 3rem !important
+ }
+ .me-xl-auto {
+ margin-right: auto !important
+ }
+ .mb-xl-0 {
+ margin-bottom: 0 !important
+ }
+ .mb-xl-1 {
+ margin-bottom: .25rem !important
+ }
+ .mb-xl-2 {
+ margin-bottom: .5rem !important
+ }
+ .mb-xl-3 {
+ margin-bottom: 1rem !important
+ }
+ .mb-xl-4 {
+ margin-bottom: 1.5rem !important
+ }
+ .mb-xl-5 {
+ margin-bottom: 3rem !important
+ }
+ .mb-xl-auto {
+ margin-bottom: auto !important
+ }
+ .ms-xl-0 {
+ margin-left: 0 !important
+ }
+ .ms-xl-1 {
+ margin-left: .25rem !important
+ }
+ .ms-xl-2 {
+ margin-left: .5rem !important
+ }
+ .ms-xl-3 {
+ margin-left: 1rem !important
+ }
+ .ms-xl-4 {
+ margin-left: 1.5rem !important
+ }
+ .ms-xl-5 {
+ margin-left: 3rem !important
+ }
+ .ms-xl-auto {
+ margin-left: auto !important
+ }
+ .p-xl-0 {
+ padding: 0 !important
+ }
+ .p-xl-1 {
+ padding: .25rem !important
+ }
+ .p-xl-2 {
+ padding: .5rem !important
+ }
+ .p-xl-3 {
+ padding: 1rem !important
+ }
+ .p-xl-4 {
+ padding: 1.5rem !important
+ }
+ .p-xl-5 {
+ padding: 3rem !important
+ }
+ .px-xl-0 {
+ padding-right: 0 !important;
+ padding-left: 0 !important
+ }
+ .px-xl-1 {
+ padding-right: .25rem !important;
+ padding-left: .25rem !important
+ }
+ .px-xl-2 {
+ padding-right: .5rem !important;
+ padding-left: .5rem !important
+ }
+ .px-xl-3 {
+ padding-right: 1rem !important;
+ padding-left: 1rem !important
+ }
+ .px-xl-4 {
+ padding-right: 1.5rem !important;
+ padding-left: 1.5rem !important
+ }
+ .px-xl-5 {
+ padding-right: 3rem !important;
+ padding-left: 3rem !important
+ }
+ .py-xl-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important
+ }
+ .py-xl-1 {
+ padding-top: .25rem !important;
+ padding-bottom: .25rem !important
+ }
+ .py-xl-2 {
+ padding-top: .5rem !important;
+ padding-bottom: .5rem !important
+ }
+ .py-xl-3 {
+ padding-top: 1rem !important;
+ padding-bottom: 1rem !important
+ }
+ .py-xl-4 {
+ padding-top: 1.5rem !important;
+ padding-bottom: 1.5rem !important
+ }
+ .py-xl-5 {
+ padding-top: 3rem !important;
+ padding-bottom: 3rem !important
+ }
+ .pt-xl-0 {
+ padding-top: 0 !important
+ }
+ .pt-xl-1 {
+ padding-top: .25rem !important
+ }
+ .pt-xl-2 {
+ padding-top: .5rem !important
+ }
+ .pt-xl-3 {
+ padding-top: 1rem !important
+ }
+ .pt-xl-4 {
+ padding-top: 1.5rem !important
+ }
+ .pt-xl-5 {
+ padding-top: 3rem !important
+ }
+ .pe-xl-0 {
+ padding-right: 0 !important
+ }
+ .pe-xl-1 {
+ padding-right: .25rem !important
+ }
+ .pe-xl-2 {
+ padding-right: .5rem !important
+ }
+ .pe-xl-3 {
+ padding-right: 1rem !important
+ }
+ .pe-xl-4 {
+ padding-right: 1.5rem !important
+ }
+ .pe-xl-5 {
+ padding-right: 3rem !important
+ }
+ .pb-xl-0 {
+ padding-bottom: 0 !important
+ }
+ .pb-xl-1 {
+ padding-bottom: .25rem !important
+ }
+ .pb-xl-2 {
+ padding-bottom: .5rem !important
+ }
+ .pb-xl-3 {
+ padding-bottom: 1rem !important
+ }
+ .pb-xl-4 {
+ padding-bottom: 1.5rem !important
+ }
+ .pb-xl-5 {
+ padding-bottom: 3rem !important
+ }
+ .ps-xl-0 {
+ padding-left: 0 !important
+ }
+ .ps-xl-1 {
+ padding-left: .25rem !important
+ }
+ .ps-xl-2 {
+ padding-left: .5rem !important
+ }
+ .ps-xl-3 {
+ padding-left: 1rem !important
+ }
+ .ps-xl-4 {
+ padding-left: 1.5rem !important
+ }
+ .ps-xl-5 {
+ padding-left: 3rem !important
+ }
+ .text-xl-start {
+ text-align: left !important
+ }
+ .text-xl-end {
+ text-align: right !important
+ }
+ .text-xl-center {
+ text-align: center !important
+ }
+}
+
+@media(min-width: 1400px) {
+ .float-xxl-start {
+ float: left !important
+ }
+ .float-xxl-end {
+ float: right !important
+ }
+ .float-xxl-none {
+ float: none !important
+ }
+ .d-xxl-inline {
+ display: inline !important
+ }
+ .d-xxl-inline-block {
+ display: inline-block !important
+ }
+ .d-xxl-block {
+ display: block !important
+ }
+ .d-xxl-grid {
+ display: grid !important
+ }
+ .d-xxl-table {
+ display: table !important
+ }
+ .d-xxl-table-row {
+ display: table-row !important
+ }
+ .d-xxl-table-cell {
+ display: table-cell !important
+ }
+ .d-xxl-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+ }
+ .d-xxl-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+ }
+ .d-xxl-none {
+ display: none !important
+ }
+ .flex-xxl-fill {
+ -webkit-flex: 1 1 auto !important;
+ flex: 1 1 auto !important
+ }
+ .flex-xxl-row {
+ -webkit-flex-direction: row !important;
+ flex-direction: row !important
+ }
+ .flex-xxl-column {
+ -webkit-flex-direction: column !important;
+ flex-direction: column !important
+ }
+ .flex-xxl-row-reverse {
+ -webkit-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important
+ }
+ .flex-xxl-column-reverse {
+ -webkit-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important
+ }
+ .flex-xxl-grow-0 {
+ -webkit-flex-grow: 0 !important;
+ flex-grow: 0 !important
+ }
+ .flex-xxl-grow-1 {
+ -webkit-flex-grow: 1 !important;
+ flex-grow: 1 !important
+ }
+ .flex-xxl-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ flex-shrink: 0 !important
+ }
+ .flex-xxl-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ flex-shrink: 1 !important
+ }
+ .flex-xxl-wrap {
+ -webkit-flex-wrap: wrap !important;
+ flex-wrap: wrap !important
+ }
+ .flex-xxl-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important
+ }
+ .flex-xxl-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important
+ }
+ .gap-xxl-0 {
+ gap: 0 !important
+ }
+ .gap-xxl-1 {
+ gap: .25rem !important
+ }
+ .gap-xxl-2 {
+ gap: .5rem !important
+ }
+ .gap-xxl-3 {
+ gap: 1rem !important
+ }
+ .gap-xxl-4 {
+ gap: 1.5rem !important
+ }
+ .gap-xxl-5 {
+ gap: 3rem !important
+ }
+ .justify-content-xxl-start {
+ -webkit-justify-content: flex-start !important;
+ justify-content: flex-start !important
+ }
+ .justify-content-xxl-end {
+ -webkit-justify-content: flex-end !important;
+ justify-content: flex-end !important
+ }
+ .justify-content-xxl-center {
+ -webkit-justify-content: center !important;
+ justify-content: center !important
+ }
+ .justify-content-xxl-between {
+ -webkit-justify-content: space-between !important;
+ justify-content: space-between !important
+ }
+ .justify-content-xxl-around {
+ -webkit-justify-content: space-around !important;
+ justify-content: space-around !important
+ }
+ .justify-content-xxl-evenly {
+ -webkit-justify-content: space-evenly !important;
+ justify-content: space-evenly !important
+ }
+ .align-items-xxl-start {
+ -webkit-align-items: flex-start !important;
+ align-items: flex-start !important
+ }
+ .align-items-xxl-end {
+ -webkit-align-items: flex-end !important;
+ align-items: flex-end !important
+ }
+ .align-items-xxl-center {
+ -webkit-align-items: center !important;
+ align-items: center !important
+ }
+ .align-items-xxl-baseline {
+ -webkit-align-items: baseline !important;
+ align-items: baseline !important
+ }
+ .align-items-xxl-stretch {
+ -webkit-align-items: stretch !important;
+ align-items: stretch !important
+ }
+ .align-content-xxl-start {
+ -webkit-align-content: flex-start !important;
+ align-content: flex-start !important
+ }
+ .align-content-xxl-end {
+ -webkit-align-content: flex-end !important;
+ align-content: flex-end !important
+ }
+ .align-content-xxl-center {
+ -webkit-align-content: center !important;
+ align-content: center !important
+ }
+ .align-content-xxl-between {
+ -webkit-align-content: space-between !important;
+ align-content: space-between !important
+ }
+ .align-content-xxl-around {
+ -webkit-align-content: space-around !important;
+ align-content: space-around !important
+ }
+ .align-content-xxl-stretch {
+ -webkit-align-content: stretch !important;
+ align-content: stretch !important
+ }
+ .align-self-xxl-auto {
+ -webkit-align-self: auto !important;
+ align-self: auto !important
+ }
+ .align-self-xxl-start {
+ -webkit-align-self: flex-start !important;
+ align-self: flex-start !important
+ }
+ .align-self-xxl-end {
+ -webkit-align-self: flex-end !important;
+ align-self: flex-end !important
+ }
+ .align-self-xxl-center {
+ -webkit-align-self: center !important;
+ align-self: center !important
+ }
+ .align-self-xxl-baseline {
+ -webkit-align-self: baseline !important;
+ align-self: baseline !important
+ }
+ .align-self-xxl-stretch {
+ -webkit-align-self: stretch !important;
+ align-self: stretch !important
+ }
+ .order-xxl-first {
+ -webkit-order: -1 !important;
+ order: -1 !important
+ }
+ .order-xxl-0 {
+ -webkit-order: 0 !important;
+ order: 0 !important
+ }
+ .order-xxl-1 {
+ -webkit-order: 1 !important;
+ order: 1 !important
+ }
+ .order-xxl-2 {
+ -webkit-order: 2 !important;
+ order: 2 !important
+ }
+ .order-xxl-3 {
+ -webkit-order: 3 !important;
+ order: 3 !important
+ }
+ .order-xxl-4 {
+ -webkit-order: 4 !important;
+ order: 4 !important
+ }
+ .order-xxl-5 {
+ -webkit-order: 5 !important;
+ order: 5 !important
+ }
+ .order-xxl-last {
+ -webkit-order: 6 !important;
+ order: 6 !important
+ }
+ .m-xxl-0 {
+ margin: 0 !important
+ }
+ .m-xxl-1 {
+ margin: .25rem !important
+ }
+ .m-xxl-2 {
+ margin: .5rem !important
+ }
+ .m-xxl-3 {
+ margin: 1rem !important
+ }
+ .m-xxl-4 {
+ margin: 1.5rem !important
+ }
+ .m-xxl-5 {
+ margin: 3rem !important
+ }
+ .m-xxl-auto {
+ margin: auto !important
+ }
+ .mx-xxl-0 {
+ margin-right: 0 !important;
+ margin-left: 0 !important
+ }
+ .mx-xxl-1 {
+ margin-right: .25rem !important;
+ margin-left: .25rem !important
+ }
+ .mx-xxl-2 {
+ margin-right: .5rem !important;
+ margin-left: .5rem !important
+ }
+ .mx-xxl-3 {
+ margin-right: 1rem !important;
+ margin-left: 1rem !important
+ }
+ .mx-xxl-4 {
+ margin-right: 1.5rem !important;
+ margin-left: 1.5rem !important
+ }
+ .mx-xxl-5 {
+ margin-right: 3rem !important;
+ margin-left: 3rem !important
+ }
+ .mx-xxl-auto {
+ margin-right: auto !important;
+ margin-left: auto !important
+ }
+ .my-xxl-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important
+ }
+ .my-xxl-1 {
+ margin-top: .25rem !important;
+ margin-bottom: .25rem !important
+ }
+ .my-xxl-2 {
+ margin-top: .5rem !important;
+ margin-bottom: .5rem !important
+ }
+ .my-xxl-3 {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important
+ }
+ .my-xxl-4 {
+ margin-top: 1.5rem !important;
+ margin-bottom: 1.5rem !important
+ }
+ .my-xxl-5 {
+ margin-top: 3rem !important;
+ margin-bottom: 3rem !important
+ }
+ .my-xxl-auto {
+ margin-top: auto !important;
+ margin-bottom: auto !important
+ }
+ .mt-xxl-0 {
+ margin-top: 0 !important
+ }
+ .mt-xxl-1 {
+ margin-top: .25rem !important
+ }
+ .mt-xxl-2 {
+ margin-top: .5rem !important
+ }
+ .mt-xxl-3 {
+ margin-top: 1rem !important
+ }
+ .mt-xxl-4 {
+ margin-top: 1.5rem !important
+ }
+ .mt-xxl-5 {
+ margin-top: 3rem !important
+ }
+ .mt-xxl-auto {
+ margin-top: auto !important
+ }
+ .me-xxl-0 {
+ margin-right: 0 !important
+ }
+ .me-xxl-1 {
+ margin-right: .25rem !important
+ }
+ .me-xxl-2 {
+ margin-right: .5rem !important
+ }
+ .me-xxl-3 {
+ margin-right: 1rem !important
+ }
+ .me-xxl-4 {
+ margin-right: 1.5rem !important
+ }
+ .me-xxl-5 {
+ margin-right: 3rem !important
+ }
+ .me-xxl-auto {
+ margin-right: auto !important
+ }
+ .mb-xxl-0 {
+ margin-bottom: 0 !important
+ }
+ .mb-xxl-1 {
+ margin-bottom: .25rem !important
+ }
+ .mb-xxl-2 {
+ margin-bottom: .5rem !important
+ }
+ .mb-xxl-3 {
+ margin-bottom: 1rem !important
+ }
+ .mb-xxl-4 {
+ margin-bottom: 1.5rem !important
+ }
+ .mb-xxl-5 {
+ margin-bottom: 3rem !important
+ }
+ .mb-xxl-auto {
+ margin-bottom: auto !important
+ }
+ .ms-xxl-0 {
+ margin-left: 0 !important
+ }
+ .ms-xxl-1 {
+ margin-left: .25rem !important
+ }
+ .ms-xxl-2 {
+ margin-left: .5rem !important
+ }
+ .ms-xxl-3 {
+ margin-left: 1rem !important
+ }
+ .ms-xxl-4 {
+ margin-left: 1.5rem !important
+ }
+ .ms-xxl-5 {
+ margin-left: 3rem !important
+ }
+ .ms-xxl-auto {
+ margin-left: auto !important
+ }
+ .p-xxl-0 {
+ padding: 0 !important
+ }
+ .p-xxl-1 {
+ padding: .25rem !important
+ }
+ .p-xxl-2 {
+ padding: .5rem !important
+ }
+ .p-xxl-3 {
+ padding: 1rem !important
+ }
+ .p-xxl-4 {
+ padding: 1.5rem !important
+ }
+ .p-xxl-5 {
+ padding: 3rem !important
+ }
+ .px-xxl-0 {
+ padding-right: 0 !important;
+ padding-left: 0 !important
+ }
+ .px-xxl-1 {
+ padding-right: .25rem !important;
+ padding-left: .25rem !important
+ }
+ .px-xxl-2 {
+ padding-right: .5rem !important;
+ padding-left: .5rem !important
+ }
+ .px-xxl-3 {
+ padding-right: 1rem !important;
+ padding-left: 1rem !important
+ }
+ .px-xxl-4 {
+ padding-right: 1.5rem !important;
+ padding-left: 1.5rem !important
+ }
+ .px-xxl-5 {
+ padding-right: 3rem !important;
+ padding-left: 3rem !important
+ }
+ .py-xxl-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important
+ }
+ .py-xxl-1 {
+ padding-top: .25rem !important;
+ padding-bottom: .25rem !important
+ }
+ .py-xxl-2 {
+ padding-top: .5rem !important;
+ padding-bottom: .5rem !important
+ }
+ .py-xxl-3 {
+ padding-top: 1rem !important;
+ padding-bottom: 1rem !important
+ }
+ .py-xxl-4 {
+ padding-top: 1.5rem !important;
+ padding-bottom: 1.5rem !important
+ }
+ .py-xxl-5 {
+ padding-top: 3rem !important;
+ padding-bottom: 3rem !important
+ }
+ .pt-xxl-0 {
+ padding-top: 0 !important
+ }
+ .pt-xxl-1 {
+ padding-top: .25rem !important
+ }
+ .pt-xxl-2 {
+ padding-top: .5rem !important
+ }
+ .pt-xxl-3 {
+ padding-top: 1rem !important
+ }
+ .pt-xxl-4 {
+ padding-top: 1.5rem !important
+ }
+ .pt-xxl-5 {
+ padding-top: 3rem !important
+ }
+ .pe-xxl-0 {
+ padding-right: 0 !important
+ }
+ .pe-xxl-1 {
+ padding-right: .25rem !important
+ }
+ .pe-xxl-2 {
+ padding-right: .5rem !important
+ }
+ .pe-xxl-3 {
+ padding-right: 1rem !important
+ }
+ .pe-xxl-4 {
+ padding-right: 1.5rem !important
+ }
+ .pe-xxl-5 {
+ padding-right: 3rem !important
+ }
+ .pb-xxl-0 {
+ padding-bottom: 0 !important
+ }
+ .pb-xxl-1 {
+ padding-bottom: .25rem !important
+ }
+ .pb-xxl-2 {
+ padding-bottom: .5rem !important
+ }
+ .pb-xxl-3 {
+ padding-bottom: 1rem !important
+ }
+ .pb-xxl-4 {
+ padding-bottom: 1.5rem !important
+ }
+ .pb-xxl-5 {
+ padding-bottom: 3rem !important
+ }
+ .ps-xxl-0 {
+ padding-left: 0 !important
+ }
+ .ps-xxl-1 {
+ padding-left: .25rem !important
+ }
+ .ps-xxl-2 {
+ padding-left: .5rem !important
+ }
+ .ps-xxl-3 {
+ padding-left: 1rem !important
+ }
+ .ps-xxl-4 {
+ padding-left: 1.5rem !important
+ }
+ .ps-xxl-5 {
+ padding-left: 3rem !important
+ }
+ .text-xxl-start {
+ text-align: left !important
+ }
+ .text-xxl-end {
+ text-align: right !important
+ }
+ .text-xxl-center {
+ text-align: center !important
+ }
+}
+
+@media(min-width: 1200px) {
+ .fs-1 {
+ font-size: 2.5rem !important
+ }
+ .fs-2 {
+ font-size: 2rem !important
+ }
+ .fs-3 {
+ font-size: 1.75rem !important
+ }
+ .fs-4 {
+ font-size: 1.5rem !important
+ }
+}
+
+@media print {
+ .d-print-inline {
+ display: inline !important
+ }
+ .d-print-inline-block {
+ display: inline-block !important
+ }
+ .d-print-block {
+ display: block !important
+ }
+ .d-print-grid {
+ display: grid !important
+ }
+ .d-print-table {
+ display: table !important
+ }
+ .d-print-table-row {
+ display: table-row !important
+ }
+ .d-print-table-cell {
+ display: table-cell !important
+ }
+ .d-print-flex {
+ display: -webkit-flex !important;
+ display: flex !important
+ }
+ .d-print-inline-flex {
+ display: -webkit-inline-flex !important;
+ display: inline-flex !important
+ }
+ .d-print-none {
+ display: none !important
+ }
+}
+
+
+
+ /*!
+ * Portal - Bootstrap 5 Admin Dashboard Template for Developers
+ * Version: 2.0
+ * Author: Xiaoying Riley
+ * Copyright: 3rd Wave Media Ltd.
+ * Website: http://themes.3rdwavemedia.com/
+ * Twitter: @3rdwave_themes
+*/
+
+
+
+body {
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ color: #5d6778
+}
+
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3,
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+ color: #252930;
+ font-weight: 600
+}
+
+a {
+ color: #15a362;
+ text-decoration: none
+}
+
+a:hover {
+ color: #128c54
+}
+
+hr {
+ background: #adb4c0
+}
+
+.text-muted {
+ color: #9fa7b5 !important
+}
+
+.table-dark {
+ background: #252930;
+ color: #fff
+}
+
+.table-bordered th,
+.table-bordered td {
+ border-color: #e7e9ed
+}
+
+.table th,
+.table td {
+ border-color: #e7e9ed
+}
+
+.table thead th {
+ border-color: #e7e9ed
+}
+
+.table-striped tbody tr:nth-of-type(odd) {
+ background-color: #f5f5f5
+}
+
+.table-dark th,
+.table-dark td,
+.table-dark thead th {
+ border-color: #515a6a
+}
+
+.table-hover>tbody>tr:hover {
+ background-color: #fff
+}
+
+.popover {
+ border-color: #dee1fc
+}
+
+.bs-popover-left>.arrow::before,
+.bs-popover-auto[x-placement^=left]>.arrow::before {
+ border-left-color: #dee1fc
+}
+
+.bs-popover-right>.arrow::before,
+.bs-popover-auto[x-placement^=right]>.arrow::before {
+ border-right-color: #dee1fc
+}
+
+.bs-popover-top>.arrow::before,
+.bs-popover-auto[data-popper-placement^=top]>.arrow::before,
+.bs-popover-auto[x-placement^=top]>.arrow::before {
+ border-top-color: #dee1fc
+}
+
+.bs-popover-bottom>.arrow::before,
+.bs-popover-auto[data-popper-placement^=bottom]>.arrow::before,
+.bs-popover-auto[x-placement^=bottom]>.arrow::before {
+ border-bottom-color: #dee1fc
+}
+
+a.app-link {
+ color: #252930;
+ text-decoration: underline;
+ -webkit-text-decoration-color: rgba(37, 41, 48, .3);
+ text-decoration-color: rgba(37, 41, 48, .3)
+}
+
+a.app-link:hover {
+ color: #15a362;
+ -webkit-text-decoration-color: rgba(21, 163, 98, .8);
+ text-decoration-color: rgba(21, 163, 98, .8)
+}
+
+button.close:focus {
+ outline: none;
+ box-shadow: none
+}
+
+.btn {
+ font-weight: 600;
+ padding: .4rem 1rem;
+ font-size: .875rem;
+ border: none
+}
+
+.btn:hover,
+.btn:active,
+.btn:focus {
+ text-decoration: none
+}
+
+.btn .bi {
+ position: relative;
+ top: -2px
+}
+
+.btn:focus,
+.btn.focus {
+ box-shadow: none !important
+}
+
+.app-btn-primary {
+ background: #409dd9;
+ color: #fff;
+ border-color: #15a362
+}
+
+.app-btn-primary:hover {
+ color: #fff;
+ background: #18ba70;
+ border-color: #18ba70
+}
+
+.app-btn-secondary {
+ background: #fff;
+ color: #5d6778;
+ border: 1px solid #bcc1cb
+}
+
+.app-btn-secondary:hover {
+ color: #15a362;
+ border: 1px solid #15a362;
+ background: #fff
+}
+
+.btn-light {
+ background: #f5f6fe;
+ color: #15a362
+}
+
+.btn-light:hover {
+ background: #f5f6fe;
+ color: #15a362
+}
+
+.form-control {
+ padding-top: .6rem;
+ padding-bottom: .6rem;
+ height: 2.5rem;
+ border-color: #e7e9ed;
+ color: #5d6778
+}
+
+.form-control:focus {
+ box-shadow: none;
+ outline: none;
+ color: #5d6778
+}
+
+.form-check-input:checked {
+ background-color: #15a362;
+ border-color: #15a362
+}
+
+.dropdown-menu {
+ border-color: #e7e9ed
+}
+
+.dropdown-menu .dropdown-item {
+ padding: .5rem 1rem
+}
+
+.dropdown-menu .dropdown-item:hover {
+ color: #252930
+}
+
+.dropdown-menu .dropdown-item:hover,
+.dropdown-menu .dropdown-item:focus {
+ background: #fafbff
+}
+
+.dropdown-menu .dropdown-item.active,
+.dropdown-menu .dropdown-item:active {
+ background: #fafbff
+}
+
+.dropdown-divider {
+ border-top-color: #e7e9ed;
+ -webkit-opacity: 1;
+ -moz-opacity: 1;
+ opacity: 1
+}
+
+.dropdown-toggle.no-toggle-arrow:after {
+ display: none !important
+}
+
+.app-header {
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
+ border-bottom: 1px solid #e7e9ed;
+ height: 56px;
+ background: #fff
+}
+
+.app-header-inner {
+ position: relative
+}
+
+.app-search-form {
+ position: relative;
+ max-width: 600px
+}
+
+.app-search-form .search-input {
+ font-size: .875rem;
+ border-radius: .25rem;
+ padding-right: 3rem;
+ padding-left: 1rem
+}
+
+.app-search-form .search-input:focus {
+ border-color: #e7e9ed
+}
+
+.app-search-form .search-btn {
+ color: #828d9f;
+ background: none;
+ border: none;
+ position: absolute;
+ right: 0;
+ top: 0;
+ margin-right: 0;
+ padding: .5rem 1rem
+}
+
+.app-search-form .search-btn:active,
+.app-search-form .search-btn:focus,
+.app-search-form .search-btn:hover {
+ outline: none !important;
+ color: #15a362;
+ box-shadow: none
+}
+
+.app-utility-item {
+ display: inline-block;
+ margin-right: 1.25rem
+}
+
+.app-utility-item:last-child {
+ margin-right: 0
+}
+
+.app-utility-item>a {
+ color: #5d6778
+}
+
+.app-utility-item>a:hover {
+ color: #252930
+}
+
+.app-utility-item .dropdown-toggle {
+ position: relative
+}
+
+.app-utility-item .dropdown-menu {
+ font-size: .875rem;
+ margin: 0
+}
+
+.app-utility-item .dropdown-menu.show {
+ top: 23px !important
+}
+
+.app-utility-item .icon {
+ font-size: 1.25rem;
+ width: 24px;
+ height: 24px
+}
+
+.app-utility-item .icon-badge {
+ display: inline-block;
+ border-radius: 50%;
+ position: absolute;
+ right: -0.45rem;
+ top: -0.3rem;
+ width: 20px;
+ height: 20px;
+ font-size: .6rem;
+ font-weight: bold;
+ padding-top: 1px;
+ color: #fff;
+ text-align: center
+}
+
+.app-utility-item .icon-badge.icon-badge {
+ background: #ec776c;
+ border: 2px solid #fff
+}
+
+.app-notifications-dropdown .dropdown-menu {
+ width: 300px
+}
+
+.app-notifications-dropdown .dropdown-menu .dropdown-menu-header {
+ border-bottom: 1px solid #e7e9ed
+}
+
+.app-notifications-dropdown .dropdown-menu .dropdown-menu-title {
+ font-size: 1rem
+}
+
+.app-notifications-dropdown .dropdown-menu .profile-image {
+ width: 36px;
+ height: 36px
+}
+
+.app-notifications-dropdown .dropdown-menu .info {
+ padding-right: 80px;
+ position: relative
+}
+
+.app-notifications-dropdown .dropdown-menu .meta {
+ color: #828d9f;
+ position: absolute;
+ right: 0;
+ top: 0;
+ font-size: .75rem
+}
+
+.app-notifications-dropdown .dropdown-menu .dropdown-menu-footer {
+ border-top: 1px solid #e7e9ed
+}
+
+.app-notifications-dropdown .dropdown-menu .item {
+ min-width: 250px;
+ position: relative;
+ border-bottom: 1px solid #e7e9ed
+}
+
+.app-notifications-dropdown .dropdown-menu .item:last-child {
+ border-bottom: none
+}
+
+.app-notifications-dropdown .dropdown-menu .item:hover {
+ background: #f5f5f5
+}
+
+.app-notifications-dropdown .dropdown-menu .link-mask {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ display: block;
+ left: 0;
+ top: 0
+}
+
+.app-notifications-dropdown .app-icon-holder {
+ display: inline-block;
+ background: #edfdf6;
+ color: #15a362;
+ width: 36px;
+ height: 36px;
+ padding-top: 4px;
+ font-size: 1rem;
+ text-align: center;
+ border-radius: 50%
+}
+
+.app-notifications-dropdown .app-icon-holder.icon-holder-mono {
+ background: #f5f6fe;
+ color: #828d9f
+}
+
+.app-notifications-dropdown .app-icon-holder svg {
+ width: 20px;
+ height: 20px
+}
+
+.app-user-dropdown {
+ display: inline-block
+}
+
+.app-user-dropdown img {
+ width: 36px;
+ height: 36px
+}
+
+@media(min-width: 576px) {
+ .app-notifications-dropdown .dropdown-menu {
+ width: 400px
+ }
+}
+
+@media(min-width: 1200px) {
+ .app-header-inner {
+ margin-left: 250px
+ }
+}
+
+@media(max-width: 575.98px) {
+ .search-mobile-trigger {
+ cursor: pointer;
+ -webkit-opacity: .8;
+ -moz-opacity: .8;
+ opacity: .8
+ }
+ .search-mobile-trigger:hover {
+ color: #15a362;
+ -webkit-opacity: 1;
+ -moz-opacity: 1;
+ opacity: 1
+ }
+ .app-search-box {
+ display: none;
+ position: absolute;
+ left: 0;
+ top: 56px;
+ padding: 0;
+ height: 100vh;
+ background: rgba(0, 0, 0, .5);
+ transition: all .4s ease-in-out
+ }
+}
+
+@media(max-width: 575.98px)and (prefers-reduced-motion: reduce) {
+ .app-search-box {
+ transition: none
+ }
+}
+
+@media(max-width: 575.98px) {
+ .app-search-box .app-search-form .search-input {
+ border-radius: 0;
+ padding-top: 1.5rem;
+ padding-bottom: 1.5rem
+ }
+ .app-search-box .app-search-form .search-btn {
+ top: 7px
+ }
+}
+
+@media(max-width: 575.98px) {
+ .app-search-box.is-visible {
+ display: block
+ }
+}
+
+.app-sidepanel {
+ position: fixed;
+ min-height: 100vh;
+ height: 100%;
+ left: 0;
+ top: 0;
+ font-size: .875rem;
+ border-right: 1px solid #e7e9ed
+}
+
+.app-sidepanel .panel-drop {
+ display: none
+}
+
+.app-sidepanel .sidepanel-inner {
+ position: relative;
+ z-index: 10;
+ background: #fff;
+ box-shadow: rgba(0, 0, 0, .05) 0px 8px 15px;
+ width: 250px;
+ height: 100%
+}
+
+.app-sidepanel .sidepanel-close {
+ display: none;
+ position: absolute;
+ z-index: 20;
+ right: -2rem;
+ top: 0;
+ color: #fff;
+ font-size: 2rem
+}
+
+.app-sidepanel.sidepanel-hidden {
+ left: -400px
+}
+
+.app-sidepanel.sidepanel-visible {
+ left: 0
+}
+
+.app-sidepanel .app-nav-main {
+ overflow-y: auto;
+ scrollbar-color: rgba(0, 0, 0, .1) #e7e9ed;
+ scrollbar-width: thin
+}
+
+.app-sidepanel .app-nav-main::-webkit-scrollbar {
+ width: 6px;
+ background-color: #e7e9ed
+}
+
+.app-sidepanel .app-nav-main::-webkit-scrollbar-thumb {
+ background-color: rgba(0, 0, 0, .1);
+ border-radius: .5rem
+}
+
+.app-branding {
+ height: 60px;
+ padding-top: 1rem;
+ padding-left: 1rem;
+ margin-bottom: 1rem
+}
+
+.app-branding .logo-icon {
+ width: 36px;
+ height: 36px
+}
+
+.app-branding .logo-text {
+ color: #252930;
+ font-size: 1.25rem;
+ font-weight: 600;
+ vertical-align: middle
+}
+
+.app-nav {
+ color: #5d6778;
+ display: block;
+ padding: 0;
+ width: 100%
+}
+
+.app-nav .app-menu {
+ margin-bottom: 0
+}
+
+.app-nav .nav-item {
+ display: block;
+ color: #5d6778;
+ background: #fff
+}
+
+.app-nav .nav-link {
+ display: block;
+ padding: .875rem 1rem;
+ color: #252930;
+ position: relative;
+ display: block;
+ padding-left: 3rem;
+ border-left: 3px solid transparent
+}
+
+.app-nav .nav-link.active {
+ color: #15a362;
+ background: #edfdf6;
+ border-left: 3px solid #15a362;
+ font-weight: 500
+}
+
+.app-nav .nav-link.submenu-toggle.active {
+ background: none;
+ border-color: transparent
+}
+
+.app-nav .nav-link:hover {
+ color: #15a362
+}
+
+.app-nav .nav-icon {
+ position: absolute;
+ left: 1rem;
+ top: .7rem
+}
+
+.app-nav .nav-icon .bi {
+ width: 1.25rem;
+ height: 1.25rem
+}
+
+.app-nav .submenu-arrow {
+ position: absolute;
+ right: 1rem;
+ top: .7rem;
+ color: #828d9f
+}
+
+.app-nav .submenu-arrow svg {
+ width: 14px;
+ height: 14px
+}
+
+.app-nav .submenu-toggle {
+ transition: all .4s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .app-nav .submenu-toggle {
+ transition: none
+ }
+}
+
+.app-nav .submenu-toggle[aria-expanded=true] .submenu-arrow {
+ color: #252930
+}
+
+.app-nav .submenu-toggle[aria-expanded=true] .submenu-arrow svg {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+ transform: rotate(180deg);
+ -webkit-transform: rotate(180deg)
+}
+
+.app-nav .submenu-item {
+ margin-bottom: 0
+}
+
+.app-nav .submenu-link {
+ color: #5d6778;
+ font-size: .875rem;
+ margin-left: 2rem;
+ padding: .5rem 1rem;
+ padding-left: 1rem;
+ position: relative;
+ display: block;
+ margin-bottom: 0
+}
+
+.app-nav .submenu-link:before {
+ background-color: #e7e9ed;
+ content: " ";
+ display: inline-block;
+ height: inherit;
+ left: 0;
+ position: absolute;
+ width: 2px;
+ height: 100%;
+ margin-top: -0.5rem
+}
+
+.app-nav .submenu-link:hover {
+ color: #252930
+}
+
+.app-nav .submenu-link.active {
+ color: #15a362
+}
+
+.app-nav .submenu-link.active:before {
+ background-color: #15a362
+}
+
+.app-sidepanel-footer {
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ border-top: 1px solid #e7e9ed;
+ background: #f5f6fe
+}
+
+.app-sidepanel-footer .app-nav-footer {
+ margin-bottom: 0
+}
+
+@media(max-width: 1199.98px) {
+ .app-sidepanel {
+ transition: all .4s ease-in-out;
+ left: -400px
+ }
+}
+
+@media(max-width: 1199.98px)and (prefers-reduced-motion: reduce) {
+ .app-sidepanel {
+ transition: none
+ }
+}
+
+@media(max-width: 1199.98px) {
+ .app-sidepanel.sidepanel-visible {
+ display: block
+ }
+}
+
+@media(max-width: 1199.98px) {
+ .sidepanel-visible .sidepanel-close {
+ display: inline-block
+ }
+}
+
+@media(max-width: 1199.98px) {
+ .sidepanel-visible .sidepanel-drop {
+ position: fixed;
+ display: block;
+ min-height: 100vh;
+ height: 100%;
+ width: 100%;
+ min-width: 100vw;
+ left: 0;
+ top: 0;
+ background: rgba(0, 0, 0, .35)
+ }
+}
+
+@media(min-width: 1200px) {
+ .app-wrapper {
+ margin-left: 250px
+ }
+}
+
+.app {
+ min-height: 100vh;
+ height: 100%;
+ width: 100%;
+ background: #f5f6fe;
+ padding-top: 56px;
+ overflow-x: hidden
+}
+
+.app-footer .copyright {
+ font-size: .8125rem
+}
+
+.app-wrapper {
+ transition: all .4s ease-in-out
+}
+
+@media(prefers-reduced-motion: reduce) {
+ .app-wrapper {
+ transition: none
+ }
+}
+
+.app-page-title {
+ font-size: 1.5rem;
+ font-weight: bolder;
+ margin-bottom: 1.5rem
+}
+
+.app-card {
+ position: relative;
+ background: #fff;
+ border-radius: .25rem
+}
+
+.app-card.border-left-decoration {
+ border-left: 3px solid #15a362
+}
+
+.app-card .app-card-link-mask {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ display: block;
+ left: 0;
+ top: 0
+}
+
+.app-card .app-card-header {
+ border-bottom: 1px solid #e7e9ed
+}
+
+.app-card .app-card-title {
+ font-size: 1.125rem;
+ margin-bottom: 0
+}
+
+.app-card .card-header-action {
+ font-size: .875rem
+}
+
+.app-card .card-header-action a:hover {
+ text-decoration: underline
+}
+
+.app-card .form-select-holder {
+ display: inline-block
+}
+
+.app-card .btn-close {
+ padding: 1rem
+}
+
+.app-card .btn-close:focus {
+ box-shadow: none
+}
+
+.app-card-stat {
+ text-align: center
+}
+
+.app-card-stat .stats-type {
+ font-size: .875rem;
+ color: #828d9f;
+ text-transform: uppercase
+}
+
+.app-card-stat .stats-figure {
+ font-size: 2rem;
+ color: #252930
+}
+
+.app-card-stat .stats-meta {
+ font-size: .875rem;
+ color: #828d9f
+}
+
+.app-card-progress-list .item {
+ position: relative;
+ border-bottom: 1px solid #e7e9ed
+}
+
+.app-card-progress-list .item:hover .title {
+ color: #252930
+}
+
+.app-card-progress-list .item:last-child {
+ border: none
+}
+
+.app-card-progress-list .item .title {
+ font-size: .875rem;
+ font-weight: 500
+}
+
+.app-card-progress-list .item .meta {
+ font-size: .875rem;
+ color: #828d9f
+}
+
+.app-card-progress-list .item-link-mask {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ display: block;
+ left: 0;
+ top: 0
+}
+
+.app-card-progress-list .progress {
+ height: .5rem
+}
+
+.app-card-stats-table .table {
+ font-size: .875rem
+}
+
+.app-card-stats-table .meta {
+ color: #828d9f;
+ font-weight: 500;
+ font-size: .875rem
+}
+
+.app-card-stats-table .stat-cell {
+ text-align: right
+}
+
+.app-card-basic {
+ height: 100%
+}
+
+.app-card-basic .title {
+ font-size: 1rem
+}
+
+.app-card .app-icon-holder {
+ display: inline-block;
+ background: #edfdf6;
+ color: #15a362;
+ width: 50px;
+ height: 50px;
+ padding-top: 10px;
+ font-size: 1rem;
+ text-align: center;
+ border-radius: 50%
+}
+
+.app-card .app-icon-holder.icon-holder-mono {
+ background: #f5f6fe;
+ color: #828d9f
+}
+
+.app-card .app-icon-holder svg {
+ width: 24px;
+ height: 24px
+}
+
+.app-card .app-card-body.has-card-actions {
+ position: relative;
+ padding-right: 1rem !important
+}
+
+.app-card .app-card-body .app-card-actions {
+ display: inline-block;
+ width: 30px;
+ height: 30px;
+ text-align: center;
+ border-radius: 50%;
+ position: absolute;
+ z-index: 10;
+ right: .75rem;
+ top: .75rem
+}
+
+.app-card .app-card-body .app-card-actions:hover {
+ background: #f5f6fe
+}
+
+.app-card .app-card-body .app-card-actions .dropdown-menu {
+ font-size: .8125rem
+}
+
+.app-card-doc:hover {
+ box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
+}
+
+.app-card-doc .app-card-thumb-holder {
+ background: #e9eaf1;
+ text-align: center;
+ position: relative;
+ height: 112px
+}
+
+.app-card-doc .app-card-thumb-holder .app-card-thumb {
+ overflow: hidden;
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background: #000
+}
+
+.app-card-doc .app-card-thumb-holder .thumb-image {
+ -webkit-opacity: .7;
+ -moz-opacity: .7;
+ opacity: .7;
+ width: 100%;
+ height: auto
+}
+
+.app-card-doc .app-card-thumb-holder:hover {
+ background: #fafbff
+}
+
+.app-card-doc .app-card-thumb-holder:hover .thumb-image {
+ -webkit-opacity: 1;
+ -moz-opacity: 1;
+ opacity: 1
+}
+
+.app-card-doc .app-card-thumb-holder .badge {
+ position: absolute;
+ right: .5rem;
+ top: .5rem
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder {
+ font-size: 40px;
+ display: inline-block;
+ margin: 0 auto;
+ width: 80px;
+ height: 80px;
+ border-radius: 50%;
+ background: #fff;
+ padding-top: 10px
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder .pdf-file {
+ color: #da2d27
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder .text-file {
+ color: #66a0fd
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder .excel-file {
+ color: #0da95f
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder .ppt-file {
+ color: #f4b400
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder .video-file {
+ color: #935dc1
+}
+
+.app-card-doc .app-card-thumb-holder .icon-holder .zip-file {
+ color: #252930
+}
+
+.app-card-doc .app-doc-title {
+ font-size: .875rem
+}
+
+.app-card-doc .app-doc-title a {
+ color: #252930
+}
+
+.app-card-doc .app-doc-title.truncate {
+ max-width: calc(100% - 30px);
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap
+}
+
+.app-card-doc .app-doc-meta {
+ font-size: .75rem
+}
+
+.table-search-form .form-control {
+ height: 2rem;
+ min-width: auto
+}
+
+.app-dropdown-menu {
+ font-size: .875rem
+}
+
+.app-card-orders-table .table {
+ font-size: .875rem
+}
+
+.app-card-orders-table .table .cell {
+ border-color: #e7e9ed;
+ color: #5d6778;
+ vertical-align: middle
+}
+
+.app-card-orders-table .cell span {
+ display: inline-block
+}
+
+.app-card-orders-table .cell .note {
+ display: block;
+ color: #828d9f;
+ font-size: .75rem
+}
+
+.app-card-orders-table .btn-sm,
+.app-card-orders-table .btn-group-sm>.btn {
+ padding: .125rem .5rem;
+ font-size: .75rem
+}
+
+.app-card-orders-table .truncate {
+ max-width: 250px;
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap
+}
+
+.app-nav-tabs {
+ background: #fff;
+ padding: 0
+}
+
+.app-nav-tabs .nav-link {
+ color: #5d6778;
+ font-size: .875rem;
+ font-weight: bold
+}
+
+.app-nav-tabs .nav-link.active {
+ color: #15a362;
+ border-bottom: 2px solid #15a362
+}
+
+.app-nav-tabs .nav-link.active:hover {
+ background: none
+}
+
+.app-nav-tabs .nav-link:hover {
+ background: #edfdf6;
+ color: #15a362
+}
+
+.app-pagination .pagination {
+ font-size: .875rem
+}
+
+.app-pagination .pagination .page-link {
+ color: #5d6778;
+ padding: .25rem .5rem
+}
+
+.app-pagination .pagination .page-item.active .page-link {
+ background: #747f94;
+ color: #fff;
+ border-color: #747f94
+}
+
+.app-pagination .pagination .page-item.disabled .page-link {
+ color: #9fa7b5
+}
+
+.app-card-accordion .app-card-title {
+ font-size: 1.125rem
+}
+
+.app-card-accordion .faq-accordion .accordion-item {
+ border-radius: 0;
+ border: none;
+ border-bottom: 1px solid #e7e9ed
+}
+
+.app-card-accordion .faq-accordion .accordion-item:last-child {
+ border-bottom: none
+}
+
+.app-card-accordion .faq-accordion .accordion-header {
+ border: none
+}
+
+.app-card-accordion .faq-accordion .accordion-button {
+ padding: 1rem;
+ border-radius: 0;
+ border: none;
+ box-shadow: none;
+ background: none;
+ padding-left: 0;
+ font-size: 1rem;
+ text-decoration: none;
+ color: #15a362
+}
+
+.app-card-accordion .faq-accordion .accordion-button:after {
+ display: none
+}
+
+.app-card-accordion .faq-accordion .accordion-body {
+ padding-left: 0;
+ padding-right: 0;
+ padding-top: 0;
+ font-size: 1rem
+}
+
+.app-card-account {
+ height: 100%
+}
+
+.app-card-account .item {
+ font-size: .875rem
+}
+
+.app-card-account .item .profile-image {
+ width: 60px;
+ height: 60px
+}
+
+.app-card-account .item .btn-sm,
+.app-card-account .item .btn-group-sm>.btn {
+ padding: .125rem .5rem;
+ font-size: .75rem
+}
+
+.settings-section .section-title {
+ font-size: 1.25rem
+}
+
+.settings-section .section-intro {
+ font-size: .875rem
+}
+
+.app-card-settings {
+ font-size: 1rem
+}
+
+.app-card-settings .form-label {
+ font-weight: bold
+}
+
+.app-card-settings .form-control {
+ font-size: 1rem
+}
+
+.app-404-page {
+ padding-top: 2rem
+}
+
+.app-404-page .page-title {
+ font-size: 3rem;
+ line-height: .8;
+ font-weight: bold
+}
+
+.app-404-page .page-title span {
+ font-size: 1.5rem
+}
+
+.chart-container {
+ position: relative
+}
+
+.app-table-hover>tbody>tr:hover {
+ background-color: #fafbff
+}
+
+.app-card-notification .notification-type .badge {
+ font-size: .65rem;
+ text-transform: uppercase
+}
+
+.app-card-notification .profile-image {
+ width: 60px;
+ height: 60px
+}
+
+.app-card-notification .notification-title {
+ font-size: 1.125rem
+}
+
+.app-card-notification .notification-content {
+ font-size: .875rem
+}
+
+.app-card-notification .notification-meta {
+ font-size: .75rem;
+ color: #828d9f
+}
+
+.app-card-notification .action-link {
+ font-size: .875rem
+}
+
+.app-card-notification .app-card-footer {
+ background: #fafbff
+}
+
+@media(min-width: 1200px) {
+ .table-search-form .form-control {
+ min-width: 300px
+ }
+}
+
+@media(max-width: 575.98px) {
+ .app-card-stat .stats-figure {
+ font-size: 1.125rem
+ }
+ .app-card-stat .stats-type {
+ font-size: .75rem
+ }
+}
+
+.app-login .auth-background-holder {
+ background: url("../images/background/background-1.jpg") no-repeat center center;
+ background-size: cover;
+ height: 100vh;
+ min-height: 100%
+}
+
+.app-signup .auth-background-holder {
+ background: url("../images/background/background-2.jpg") no-repeat center center;
+ background-size: cover;
+ height: 100vh;
+ min-height: 100%
+}
+
+.app-reset-password .auth-background-holder {
+ background: url("../images/background/background-3.jpg") no-repeat center center;
+ background-size: cover;
+ height: 100vh;
+ min-height: 100%
+}
+
+.auth-main-col,
+.auth-background-col {
+ position: relative
+}
+
+.auth-background-mask {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ left: 0;
+ top: 0;
+ z-index: 10;
+ background: rgba(0, 0, 0, .1)
+}
+
+.auth-background-overlay {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ left: 0;
+ top: 0;
+ z-index: 11
+}
+
+.auth-background-overlay .overlay-title {
+ color: #fff;
+ font-size: 1rem;
+ font-weight: bold
+}
+
+.auth-background-overlay .overlay-content {
+ background: rgba(37, 41, 48, .6);
+ color: #fff
+}
+
+.auth-background-overlay .overlay-content a {
+ text-decoration: underline;
+ color: #fff
+}
+
+.app-auth-footer {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%
+}
+
+.app-auth-wrapper {
+ background: #fff;
+ height: 100vh
+}
+
+.app-auth-wrapper .app-auth-body {
+ width: 360px
+}
+
+.app-auth-wrapper .app-logo .logo-icon {
+ width: 60px;
+ height: 60px
+}
+
+.app-auth-wrapper .auth-heading {
+ font-size: 1.5rem
+}
+
+.app-auth-wrapper .form-control::-webkit-input-placeholder {
+ color: #828d9f
+}
+
+.app-auth-wrapper .form-control:-moz-placeholder {
+ color: #828d9f
+}
+
+.app-auth-wrapper .form-control::-moz-placeholder {
+ color: #828d9f
+}
+
+.app-auth-wrapper .form-control:-ms-input-placeholder {
+ color: #828d9f
+}
+
+.app-auth-wrapper .legal-note {
+ font-size: .875rem
+}
+
+.app-auth-wrapper .extra {
+ font-size: .75rem
+}
+
+.app-auth-wrapper .extra a {
+ text-decoration: underline;
+ color: #828d9f
+}
+
+.app-auth-wrapper .extra a:hover {
+ color: #5d6778
+}
+
+.app-auth-wrapper .auth-heading-desc {
+ font-weight: 500;
+ font-size: 1.125rem
+}
+
+.app-auth-wrapper .legal-note {
+ font-size: .75rem
+}
+
+.app-auth-wrapper .auth-option {
+ font-size: .875rem
+}
+
+.app-auth-footer .copyright {
+ font-size: .75rem
+}
+
+@media(max-width: 767.98px) {
+ .auth-background-col {
+ display: none
+ }
+ .app-auth-wrapper .app-auth-body {
+ width: 100%
+ }
+}
+
+
diff --git a/templates/assets/images/.DS_Store b/templates/assets/images/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..91ba628d2beb61632673763597494f22f89ba20d
GIT binary patch
literal 6148
zcmeHKu};G<5PgOYRblAJm>+7?8bt
zhyn}#j`4N>zGAv)CKv6psp)ftG2XbV8&r5gid*jTIa<~$T2tg4qoJm_VY@=D)@#h@
zRWUMU{7j?8`+>ERBiyUkg0)(s=Ul^twln%{wifJ_@f(etasGlQPF%zHnOs^XTeD@B
z1I}J>RgWCA=Bipeqx^F$Y|G+LkexmLOSwt_L0cT*9f&JJV%Kd-7{r$fh5g?))sh?!v*krs-72q+C+I0L`Rz&khLajXCU
literal 0
HcmV?d00001
diff --git a/templates/assets/images/app-logo.svg b/templates/assets/images/app-logo.svg
new file mode 100644
index 000000000..b1411e0bf
--- /dev/null
+++ b/templates/assets/images/app-logo.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/assets/images/app-logo1.svg b/templates/assets/images/app-logo1.svg
new file mode 100644
index 000000000..3e465ca1b
--- /dev/null
+++ b/templates/assets/images/app-logo1.svg
@@ -0,0 +1,21 @@
+
+
+
+ portal-logo
+ Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/assets/images/background/background-1.jpg b/templates/assets/images/background/background-1.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1b0bf035f76d1c40d83a852ef02000b66364e7f5
GIT binary patch
literal 155516
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