new structure
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .DS_Store +0 -0
- README.md +3 -3
- __init__.py +0 -0
- app.py +3 -0
- config.py +29 -0
- constants.py +24 -0
- docs/.DS_Store +0 -0
- docs/static/KB_logo.svg +275 -0
- docs/static/kami_logo_augmented.svg +333 -0
- docs/static/kamiapp_logo.png +0 -0
- docs/static/kramin_carmin.png +0 -0
- docs/static/kramin_carmin.svg +331 -0
- docs/static/kramin_carmin_cli.png +0 -0
- docs/static/kramin_carmin_lib.png +0 -0
- requirements.txt +11 -0
- static/bootstrap/css/bootstrap-grid.css +3872 -0
- static/bootstrap/css/bootstrap-grid.css.map +0 -0
- static/bootstrap/css/bootstrap-grid.min.css +7 -0
- static/bootstrap/css/bootstrap-grid.min.css.map +0 -0
- static/bootstrap/css/bootstrap-reboot.css +325 -0
- static/bootstrap/css/bootstrap-reboot.css.map +1 -0
- static/bootstrap/css/bootstrap-reboot.min.css +8 -0
- static/bootstrap/css/bootstrap-reboot.min.css.map +1 -0
- static/bootstrap/css/bootstrap.css +0 -0
- static/bootstrap/css/bootstrap.css.map +0 -0
- static/bootstrap/css/bootstrap.min.css +0 -0
- static/bootstrap/css/bootstrap.min.css.map +0 -0
- static/bootstrap/js/bootstrap.bundle.js +0 -0
- static/bootstrap/js/bootstrap.bundle.js.map +0 -0
- static/bootstrap/js/bootstrap.bundle.min.js +7 -0
- static/bootstrap/js/bootstrap.bundle.min.js.map +0 -0
- static/bootstrap/js/bootstrap.js +0 -0
- static/bootstrap/js/bootstrap.js.map +0 -0
- static/bootstrap/js/bootstrap.min.js +7 -0
- static/bootstrap/js/bootstrap.min.js.map +0 -0
- static/img/favicon.ico +0 -0
- static/img/favicon.png +0 -0
- static/img/kramin_carmin.png +0 -0
- static/js/dragAndDropFunc.js +138 -0
- static/js/dragAndDropFunc.min.js +1 -0
- static/js/dynamicVT.js +57 -0
- static/js/dynamicVT.min.js +3 -0
- static/js/exportCsv.js +59 -0
- static/js/exportCsv.min.js +4 -0
- static/js/main.js +156 -0
- static/js/main.min.js +1 -0
- static/kami_logo.min.css +7 -0
- static/style.css +274 -0
- templates/error/404.html +34 -0
- templates/error/500.html +34 -0
.DS_Store
ADDED
|
Binary file (8.2 kB). View file
|
|
|
README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
---
|
| 2 |
title: Kami App
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.10.1
|
| 8 |
app_file: app.py
|
|
|
|
| 1 |
---
|
| 2 |
title: Kami App
|
| 3 |
+
emoji: 🐙
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.10.1
|
| 8 |
app_file: app.py
|
__init__.py
ADDED
|
File without changes
|
app.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import subprocess
|
| 2 |
+
|
| 3 |
+
subprocess.Popen("python wsgi.py", shell=True).communicate()
|
config.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
|
| 3 |
+
import os
|
| 4 |
+
import pkg_resources
|
| 5 |
+
|
| 6 |
+
from flask import Flask
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
def pkg_version(name_pkg: str) -> str:
|
| 10 |
+
return pkg_resources.get_distribution(name_pkg).version
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
BASE = os.path.dirname(os.path.abspath(__file__))
|
| 14 |
+
TEMPLATES = os.path.join(BASE, 'templates')
|
| 15 |
+
STATIC = os.path.join(BASE, 'static')
|
| 16 |
+
|
| 17 |
+
app = Flask(__name__, template_folder=TEMPLATES, static_folder=STATIC)
|
| 18 |
+
|
| 19 |
+
app.config['SECRET_KEY'] = '5F3EAXjUf?%,)h#R92y9aq5'
|
| 20 |
+
app.config['JSON_SORT_KEYS'] = False
|
| 21 |
+
|
| 22 |
+
app.config["KAMI_OPT_VERB"] = False
|
| 23 |
+
app.config["KAMI_OPT_TRUNC"] = True
|
| 24 |
+
app.config["KAMI_OPT_PERC"] = True
|
| 25 |
+
app.config["KAMI_OPT_ROUND"] = '0.001'
|
| 26 |
+
app.config['KAMI_VERSION'] = pkg_version("kamilib-light")
|
| 27 |
+
|
| 28 |
+
from .views import index, cant_find_page, server_unavailable
|
| 29 |
+
|
constants.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
|
| 3 |
+
MAPPING_TITLES = {"default": "Default",
|
| 4 |
+
"non_digits": "Ignoring digits",
|
| 5 |
+
"lowercase": "Ignoring case",
|
| 6 |
+
"remove_punctuation": "Ignoring punctuation",
|
| 7 |
+
"remove_diacritics": "Ignoring diacritics",
|
| 8 |
+
"all_transforms": "Combining all options"}
|
| 9 |
+
|
| 10 |
+
MAPPING_SCORES_INDEX = {"cer": "Char. Error Rate (CER in %)",
|
| 11 |
+
"wer": "Word Error Rate (WER in %)",
|
| 12 |
+
"levensthein_distance_char": "Levensthein Distance (Char.)",
|
| 13 |
+
"levensthein_distance_words": "Levensthein Distance (Words)",
|
| 14 |
+
"hamming_distance": "Hamming Distance",
|
| 15 |
+
"wacc": "Word Accuracy (Wacc in %)",
|
| 16 |
+
"mer": "Match Error Rate (MER in %)",
|
| 17 |
+
"cil": "Char. Information Lost (CIL in %)",
|
| 18 |
+
"cip": "Char. Information Preserved (CIP in %)",
|
| 19 |
+
"hits": "Hits",
|
| 20 |
+
"substitutions": "Substitutions",
|
| 21 |
+
"deletions": "Deletions",
|
| 22 |
+
"insertions": "Insertions",
|
| 23 |
+
"Length_reference": "Total char. in reference",
|
| 24 |
+
"Length_prediction": "Total char. in prediction"}
|
docs/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
docs/static/KB_logo.svg
ADDED
|
|
docs/static/kami_logo_augmented.svg
ADDED
|
|
docs/static/kamiapp_logo.png
ADDED
|
docs/static/kramin_carmin.png
ADDED
|
docs/static/kramin_carmin.svg
ADDED
|
|
docs/static/kramin_carmin_cli.png
ADDED
|
docs/static/kramin_carmin_lib.png
ADDED
|
requirements.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Flask==2.0.1
|
| 2 |
+
gunicorn==20.0.4
|
| 3 |
+
kamilib-light==0.1.1
|
| 4 |
+
pandas==1.3.3
|
| 5 |
+
numba==0.55.1
|
| 6 |
+
|
| 7 |
+
# for heroku specifically
|
| 8 |
+
#-r requirements_heroku.txt
|
| 9 |
+
#-f https://download.pytorch.org/whl/torch_stable.html
|
| 10 |
+
#torch==1.7.0+cpu
|
| 11 |
+
#torchvision==0.8.1+cpu
|
static/bootstrap/css/bootstrap-grid.css
ADDED
|
@@ -0,0 +1,3872 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Grid v4.5.2 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2020 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2020 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
*/
|
| 7 |
+
html {
|
| 8 |
+
box-sizing: border-box;
|
| 9 |
+
-ms-overflow-style: scrollbar;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
*,
|
| 13 |
+
*::before,
|
| 14 |
+
*::after {
|
| 15 |
+
box-sizing: inherit;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
.container,
|
| 19 |
+
.container-fluid,
|
| 20 |
+
.container-sm,
|
| 21 |
+
.container-md,
|
| 22 |
+
.container-lg,
|
| 23 |
+
.container-xl {
|
| 24 |
+
width: 100%;
|
| 25 |
+
padding-right: 15px;
|
| 26 |
+
padding-left: 15px;
|
| 27 |
+
margin-right: auto;
|
| 28 |
+
margin-left: auto;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
@media (min-width: 576px) {
|
| 32 |
+
.container, .container-sm {
|
| 33 |
+
max-width: 540px;
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
@media (min-width: 768px) {
|
| 38 |
+
.container, .container-sm, .container-md {
|
| 39 |
+
max-width: 720px;
|
| 40 |
+
}
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
@media (min-width: 992px) {
|
| 44 |
+
.container, .container-sm, .container-md, .container-lg {
|
| 45 |
+
max-width: 960px;
|
| 46 |
+
}
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
@media (min-width: 1200px) {
|
| 50 |
+
.container, .container-sm, .container-md, .container-lg, .container-xl {
|
| 51 |
+
max-width: 1140px;
|
| 52 |
+
}
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
.row {
|
| 56 |
+
display: -ms-flexbox;
|
| 57 |
+
display: flex;
|
| 58 |
+
-ms-flex-wrap: wrap;
|
| 59 |
+
flex-wrap: wrap;
|
| 60 |
+
margin-right: -15px;
|
| 61 |
+
margin-left: -15px;
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
.no-gutters {
|
| 65 |
+
margin-right: 0;
|
| 66 |
+
margin-left: 0;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.no-gutters > .col,
|
| 70 |
+
.no-gutters > [class*="col-"] {
|
| 71 |
+
padding-right: 0;
|
| 72 |
+
padding-left: 0;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
|
| 76 |
+
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
|
| 77 |
+
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
|
| 78 |
+
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
|
| 79 |
+
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
|
| 80 |
+
.col-xl-auto {
|
| 81 |
+
position: relative;
|
| 82 |
+
width: 100%;
|
| 83 |
+
padding-right: 15px;
|
| 84 |
+
padding-left: 15px;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.col {
|
| 88 |
+
-ms-flex-preferred-size: 0;
|
| 89 |
+
flex-basis: 0;
|
| 90 |
+
-ms-flex-positive: 1;
|
| 91 |
+
flex-grow: 1;
|
| 92 |
+
max-width: 100%;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
.row-cols-1 > * {
|
| 96 |
+
-ms-flex: 0 0 100%;
|
| 97 |
+
flex: 0 0 100%;
|
| 98 |
+
max-width: 100%;
|
| 99 |
+
}
|
| 100 |
+
|
| 101 |
+
.row-cols-2 > * {
|
| 102 |
+
-ms-flex: 0 0 50%;
|
| 103 |
+
flex: 0 0 50%;
|
| 104 |
+
max-width: 50%;
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
.row-cols-3 > * {
|
| 108 |
+
-ms-flex: 0 0 33.333333%;
|
| 109 |
+
flex: 0 0 33.333333%;
|
| 110 |
+
max-width: 33.333333%;
|
| 111 |
+
}
|
| 112 |
+
|
| 113 |
+
.row-cols-4 > * {
|
| 114 |
+
-ms-flex: 0 0 25%;
|
| 115 |
+
flex: 0 0 25%;
|
| 116 |
+
max-width: 25%;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
.row-cols-5 > * {
|
| 120 |
+
-ms-flex: 0 0 20%;
|
| 121 |
+
flex: 0 0 20%;
|
| 122 |
+
max-width: 20%;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
.row-cols-6 > * {
|
| 126 |
+
-ms-flex: 0 0 16.666667%;
|
| 127 |
+
flex: 0 0 16.666667%;
|
| 128 |
+
max-width: 16.666667%;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
.col-auto {
|
| 132 |
+
-ms-flex: 0 0 auto;
|
| 133 |
+
flex: 0 0 auto;
|
| 134 |
+
width: auto;
|
| 135 |
+
max-width: 100%;
|
| 136 |
+
}
|
| 137 |
+
|
| 138 |
+
.col-1 {
|
| 139 |
+
-ms-flex: 0 0 8.333333%;
|
| 140 |
+
flex: 0 0 8.333333%;
|
| 141 |
+
max-width: 8.333333%;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
.col-2 {
|
| 145 |
+
-ms-flex: 0 0 16.666667%;
|
| 146 |
+
flex: 0 0 16.666667%;
|
| 147 |
+
max-width: 16.666667%;
|
| 148 |
+
}
|
| 149 |
+
|
| 150 |
+
.col-3 {
|
| 151 |
+
-ms-flex: 0 0 25%;
|
| 152 |
+
flex: 0 0 25%;
|
| 153 |
+
max-width: 25%;
|
| 154 |
+
}
|
| 155 |
+
|
| 156 |
+
.col-4 {
|
| 157 |
+
-ms-flex: 0 0 33.333333%;
|
| 158 |
+
flex: 0 0 33.333333%;
|
| 159 |
+
max-width: 33.333333%;
|
| 160 |
+
}
|
| 161 |
+
|
| 162 |
+
.col-5 {
|
| 163 |
+
-ms-flex: 0 0 41.666667%;
|
| 164 |
+
flex: 0 0 41.666667%;
|
| 165 |
+
max-width: 41.666667%;
|
| 166 |
+
}
|
| 167 |
+
|
| 168 |
+
.col-6 {
|
| 169 |
+
-ms-flex: 0 0 50%;
|
| 170 |
+
flex: 0 0 50%;
|
| 171 |
+
max-width: 50%;
|
| 172 |
+
}
|
| 173 |
+
|
| 174 |
+
.col-7 {
|
| 175 |
+
-ms-flex: 0 0 58.333333%;
|
| 176 |
+
flex: 0 0 58.333333%;
|
| 177 |
+
max-width: 58.333333%;
|
| 178 |
+
}
|
| 179 |
+
|
| 180 |
+
.col-8 {
|
| 181 |
+
-ms-flex: 0 0 66.666667%;
|
| 182 |
+
flex: 0 0 66.666667%;
|
| 183 |
+
max-width: 66.666667%;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
.col-9 {
|
| 187 |
+
-ms-flex: 0 0 75%;
|
| 188 |
+
flex: 0 0 75%;
|
| 189 |
+
max-width: 75%;
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.col-10 {
|
| 193 |
+
-ms-flex: 0 0 83.333333%;
|
| 194 |
+
flex: 0 0 83.333333%;
|
| 195 |
+
max-width: 83.333333%;
|
| 196 |
+
}
|
| 197 |
+
|
| 198 |
+
.col-11 {
|
| 199 |
+
-ms-flex: 0 0 91.666667%;
|
| 200 |
+
flex: 0 0 91.666667%;
|
| 201 |
+
max-width: 91.666667%;
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
.col-12 {
|
| 205 |
+
-ms-flex: 0 0 100%;
|
| 206 |
+
flex: 0 0 100%;
|
| 207 |
+
max-width: 100%;
|
| 208 |
+
}
|
| 209 |
+
|
| 210 |
+
.order-first {
|
| 211 |
+
-ms-flex-order: -1;
|
| 212 |
+
order: -1;
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
.order-last {
|
| 216 |
+
-ms-flex-order: 13;
|
| 217 |
+
order: 13;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
.order-0 {
|
| 221 |
+
-ms-flex-order: 0;
|
| 222 |
+
order: 0;
|
| 223 |
+
}
|
| 224 |
+
|
| 225 |
+
.order-1 {
|
| 226 |
+
-ms-flex-order: 1;
|
| 227 |
+
order: 1;
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
.order-2 {
|
| 231 |
+
-ms-flex-order: 2;
|
| 232 |
+
order: 2;
|
| 233 |
+
}
|
| 234 |
+
|
| 235 |
+
.order-3 {
|
| 236 |
+
-ms-flex-order: 3;
|
| 237 |
+
order: 3;
|
| 238 |
+
}
|
| 239 |
+
|
| 240 |
+
.order-4 {
|
| 241 |
+
-ms-flex-order: 4;
|
| 242 |
+
order: 4;
|
| 243 |
+
}
|
| 244 |
+
|
| 245 |
+
.order-5 {
|
| 246 |
+
-ms-flex-order: 5;
|
| 247 |
+
order: 5;
|
| 248 |
+
}
|
| 249 |
+
|
| 250 |
+
.order-6 {
|
| 251 |
+
-ms-flex-order: 6;
|
| 252 |
+
order: 6;
|
| 253 |
+
}
|
| 254 |
+
|
| 255 |
+
.order-7 {
|
| 256 |
+
-ms-flex-order: 7;
|
| 257 |
+
order: 7;
|
| 258 |
+
}
|
| 259 |
+
|
| 260 |
+
.order-8 {
|
| 261 |
+
-ms-flex-order: 8;
|
| 262 |
+
order: 8;
|
| 263 |
+
}
|
| 264 |
+
|
| 265 |
+
.order-9 {
|
| 266 |
+
-ms-flex-order: 9;
|
| 267 |
+
order: 9;
|
| 268 |
+
}
|
| 269 |
+
|
| 270 |
+
.order-10 {
|
| 271 |
+
-ms-flex-order: 10;
|
| 272 |
+
order: 10;
|
| 273 |
+
}
|
| 274 |
+
|
| 275 |
+
.order-11 {
|
| 276 |
+
-ms-flex-order: 11;
|
| 277 |
+
order: 11;
|
| 278 |
+
}
|
| 279 |
+
|
| 280 |
+
.order-12 {
|
| 281 |
+
-ms-flex-order: 12;
|
| 282 |
+
order: 12;
|
| 283 |
+
}
|
| 284 |
+
|
| 285 |
+
.offset-1 {
|
| 286 |
+
margin-left: 8.333333%;
|
| 287 |
+
}
|
| 288 |
+
|
| 289 |
+
.offset-2 {
|
| 290 |
+
margin-left: 16.666667%;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
.offset-3 {
|
| 294 |
+
margin-left: 25%;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
.offset-4 {
|
| 298 |
+
margin-left: 33.333333%;
|
| 299 |
+
}
|
| 300 |
+
|
| 301 |
+
.offset-5 {
|
| 302 |
+
margin-left: 41.666667%;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
.offset-6 {
|
| 306 |
+
margin-left: 50%;
|
| 307 |
+
}
|
| 308 |
+
|
| 309 |
+
.offset-7 {
|
| 310 |
+
margin-left: 58.333333%;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
.offset-8 {
|
| 314 |
+
margin-left: 66.666667%;
|
| 315 |
+
}
|
| 316 |
+
|
| 317 |
+
.offset-9 {
|
| 318 |
+
margin-left: 75%;
|
| 319 |
+
}
|
| 320 |
+
|
| 321 |
+
.offset-10 {
|
| 322 |
+
margin-left: 83.333333%;
|
| 323 |
+
}
|
| 324 |
+
|
| 325 |
+
.offset-11 {
|
| 326 |
+
margin-left: 91.666667%;
|
| 327 |
+
}
|
| 328 |
+
|
| 329 |
+
@media (min-width: 576px) {
|
| 330 |
+
.col-sm {
|
| 331 |
+
-ms-flex-preferred-size: 0;
|
| 332 |
+
flex-basis: 0;
|
| 333 |
+
-ms-flex-positive: 1;
|
| 334 |
+
flex-grow: 1;
|
| 335 |
+
max-width: 100%;
|
| 336 |
+
}
|
| 337 |
+
.row-cols-sm-1 > * {
|
| 338 |
+
-ms-flex: 0 0 100%;
|
| 339 |
+
flex: 0 0 100%;
|
| 340 |
+
max-width: 100%;
|
| 341 |
+
}
|
| 342 |
+
.row-cols-sm-2 > * {
|
| 343 |
+
-ms-flex: 0 0 50%;
|
| 344 |
+
flex: 0 0 50%;
|
| 345 |
+
max-width: 50%;
|
| 346 |
+
}
|
| 347 |
+
.row-cols-sm-3 > * {
|
| 348 |
+
-ms-flex: 0 0 33.333333%;
|
| 349 |
+
flex: 0 0 33.333333%;
|
| 350 |
+
max-width: 33.333333%;
|
| 351 |
+
}
|
| 352 |
+
.row-cols-sm-4 > * {
|
| 353 |
+
-ms-flex: 0 0 25%;
|
| 354 |
+
flex: 0 0 25%;
|
| 355 |
+
max-width: 25%;
|
| 356 |
+
}
|
| 357 |
+
.row-cols-sm-5 > * {
|
| 358 |
+
-ms-flex: 0 0 20%;
|
| 359 |
+
flex: 0 0 20%;
|
| 360 |
+
max-width: 20%;
|
| 361 |
+
}
|
| 362 |
+
.row-cols-sm-6 > * {
|
| 363 |
+
-ms-flex: 0 0 16.666667%;
|
| 364 |
+
flex: 0 0 16.666667%;
|
| 365 |
+
max-width: 16.666667%;
|
| 366 |
+
}
|
| 367 |
+
.col-sm-auto {
|
| 368 |
+
-ms-flex: 0 0 auto;
|
| 369 |
+
flex: 0 0 auto;
|
| 370 |
+
width: auto;
|
| 371 |
+
max-width: 100%;
|
| 372 |
+
}
|
| 373 |
+
.col-sm-1 {
|
| 374 |
+
-ms-flex: 0 0 8.333333%;
|
| 375 |
+
flex: 0 0 8.333333%;
|
| 376 |
+
max-width: 8.333333%;
|
| 377 |
+
}
|
| 378 |
+
.col-sm-2 {
|
| 379 |
+
-ms-flex: 0 0 16.666667%;
|
| 380 |
+
flex: 0 0 16.666667%;
|
| 381 |
+
max-width: 16.666667%;
|
| 382 |
+
}
|
| 383 |
+
.col-sm-3 {
|
| 384 |
+
-ms-flex: 0 0 25%;
|
| 385 |
+
flex: 0 0 25%;
|
| 386 |
+
max-width: 25%;
|
| 387 |
+
}
|
| 388 |
+
.col-sm-4 {
|
| 389 |
+
-ms-flex: 0 0 33.333333%;
|
| 390 |
+
flex: 0 0 33.333333%;
|
| 391 |
+
max-width: 33.333333%;
|
| 392 |
+
}
|
| 393 |
+
.col-sm-5 {
|
| 394 |
+
-ms-flex: 0 0 41.666667%;
|
| 395 |
+
flex: 0 0 41.666667%;
|
| 396 |
+
max-width: 41.666667%;
|
| 397 |
+
}
|
| 398 |
+
.col-sm-6 {
|
| 399 |
+
-ms-flex: 0 0 50%;
|
| 400 |
+
flex: 0 0 50%;
|
| 401 |
+
max-width: 50%;
|
| 402 |
+
}
|
| 403 |
+
.col-sm-7 {
|
| 404 |
+
-ms-flex: 0 0 58.333333%;
|
| 405 |
+
flex: 0 0 58.333333%;
|
| 406 |
+
max-width: 58.333333%;
|
| 407 |
+
}
|
| 408 |
+
.col-sm-8 {
|
| 409 |
+
-ms-flex: 0 0 66.666667%;
|
| 410 |
+
flex: 0 0 66.666667%;
|
| 411 |
+
max-width: 66.666667%;
|
| 412 |
+
}
|
| 413 |
+
.col-sm-9 {
|
| 414 |
+
-ms-flex: 0 0 75%;
|
| 415 |
+
flex: 0 0 75%;
|
| 416 |
+
max-width: 75%;
|
| 417 |
+
}
|
| 418 |
+
.col-sm-10 {
|
| 419 |
+
-ms-flex: 0 0 83.333333%;
|
| 420 |
+
flex: 0 0 83.333333%;
|
| 421 |
+
max-width: 83.333333%;
|
| 422 |
+
}
|
| 423 |
+
.col-sm-11 {
|
| 424 |
+
-ms-flex: 0 0 91.666667%;
|
| 425 |
+
flex: 0 0 91.666667%;
|
| 426 |
+
max-width: 91.666667%;
|
| 427 |
+
}
|
| 428 |
+
.col-sm-12 {
|
| 429 |
+
-ms-flex: 0 0 100%;
|
| 430 |
+
flex: 0 0 100%;
|
| 431 |
+
max-width: 100%;
|
| 432 |
+
}
|
| 433 |
+
.order-sm-first {
|
| 434 |
+
-ms-flex-order: -1;
|
| 435 |
+
order: -1;
|
| 436 |
+
}
|
| 437 |
+
.order-sm-last {
|
| 438 |
+
-ms-flex-order: 13;
|
| 439 |
+
order: 13;
|
| 440 |
+
}
|
| 441 |
+
.order-sm-0 {
|
| 442 |
+
-ms-flex-order: 0;
|
| 443 |
+
order: 0;
|
| 444 |
+
}
|
| 445 |
+
.order-sm-1 {
|
| 446 |
+
-ms-flex-order: 1;
|
| 447 |
+
order: 1;
|
| 448 |
+
}
|
| 449 |
+
.order-sm-2 {
|
| 450 |
+
-ms-flex-order: 2;
|
| 451 |
+
order: 2;
|
| 452 |
+
}
|
| 453 |
+
.order-sm-3 {
|
| 454 |
+
-ms-flex-order: 3;
|
| 455 |
+
order: 3;
|
| 456 |
+
}
|
| 457 |
+
.order-sm-4 {
|
| 458 |
+
-ms-flex-order: 4;
|
| 459 |
+
order: 4;
|
| 460 |
+
}
|
| 461 |
+
.order-sm-5 {
|
| 462 |
+
-ms-flex-order: 5;
|
| 463 |
+
order: 5;
|
| 464 |
+
}
|
| 465 |
+
.order-sm-6 {
|
| 466 |
+
-ms-flex-order: 6;
|
| 467 |
+
order: 6;
|
| 468 |
+
}
|
| 469 |
+
.order-sm-7 {
|
| 470 |
+
-ms-flex-order: 7;
|
| 471 |
+
order: 7;
|
| 472 |
+
}
|
| 473 |
+
.order-sm-8 {
|
| 474 |
+
-ms-flex-order: 8;
|
| 475 |
+
order: 8;
|
| 476 |
+
}
|
| 477 |
+
.order-sm-9 {
|
| 478 |
+
-ms-flex-order: 9;
|
| 479 |
+
order: 9;
|
| 480 |
+
}
|
| 481 |
+
.order-sm-10 {
|
| 482 |
+
-ms-flex-order: 10;
|
| 483 |
+
order: 10;
|
| 484 |
+
}
|
| 485 |
+
.order-sm-11 {
|
| 486 |
+
-ms-flex-order: 11;
|
| 487 |
+
order: 11;
|
| 488 |
+
}
|
| 489 |
+
.order-sm-12 {
|
| 490 |
+
-ms-flex-order: 12;
|
| 491 |
+
order: 12;
|
| 492 |
+
}
|
| 493 |
+
.offset-sm-0 {
|
| 494 |
+
margin-left: 0;
|
| 495 |
+
}
|
| 496 |
+
.offset-sm-1 {
|
| 497 |
+
margin-left: 8.333333%;
|
| 498 |
+
}
|
| 499 |
+
.offset-sm-2 {
|
| 500 |
+
margin-left: 16.666667%;
|
| 501 |
+
}
|
| 502 |
+
.offset-sm-3 {
|
| 503 |
+
margin-left: 25%;
|
| 504 |
+
}
|
| 505 |
+
.offset-sm-4 {
|
| 506 |
+
margin-left: 33.333333%;
|
| 507 |
+
}
|
| 508 |
+
.offset-sm-5 {
|
| 509 |
+
margin-left: 41.666667%;
|
| 510 |
+
}
|
| 511 |
+
.offset-sm-6 {
|
| 512 |
+
margin-left: 50%;
|
| 513 |
+
}
|
| 514 |
+
.offset-sm-7 {
|
| 515 |
+
margin-left: 58.333333%;
|
| 516 |
+
}
|
| 517 |
+
.offset-sm-8 {
|
| 518 |
+
margin-left: 66.666667%;
|
| 519 |
+
}
|
| 520 |
+
.offset-sm-9 {
|
| 521 |
+
margin-left: 75%;
|
| 522 |
+
}
|
| 523 |
+
.offset-sm-10 {
|
| 524 |
+
margin-left: 83.333333%;
|
| 525 |
+
}
|
| 526 |
+
.offset-sm-11 {
|
| 527 |
+
margin-left: 91.666667%;
|
| 528 |
+
}
|
| 529 |
+
}
|
| 530 |
+
|
| 531 |
+
@media (min-width: 768px) {
|
| 532 |
+
.col-md {
|
| 533 |
+
-ms-flex-preferred-size: 0;
|
| 534 |
+
flex-basis: 0;
|
| 535 |
+
-ms-flex-positive: 1;
|
| 536 |
+
flex-grow: 1;
|
| 537 |
+
max-width: 100%;
|
| 538 |
+
}
|
| 539 |
+
.row-cols-md-1 > * {
|
| 540 |
+
-ms-flex: 0 0 100%;
|
| 541 |
+
flex: 0 0 100%;
|
| 542 |
+
max-width: 100%;
|
| 543 |
+
}
|
| 544 |
+
.row-cols-md-2 > * {
|
| 545 |
+
-ms-flex: 0 0 50%;
|
| 546 |
+
flex: 0 0 50%;
|
| 547 |
+
max-width: 50%;
|
| 548 |
+
}
|
| 549 |
+
.row-cols-md-3 > * {
|
| 550 |
+
-ms-flex: 0 0 33.333333%;
|
| 551 |
+
flex: 0 0 33.333333%;
|
| 552 |
+
max-width: 33.333333%;
|
| 553 |
+
}
|
| 554 |
+
.row-cols-md-4 > * {
|
| 555 |
+
-ms-flex: 0 0 25%;
|
| 556 |
+
flex: 0 0 25%;
|
| 557 |
+
max-width: 25%;
|
| 558 |
+
}
|
| 559 |
+
.row-cols-md-5 > * {
|
| 560 |
+
-ms-flex: 0 0 20%;
|
| 561 |
+
flex: 0 0 20%;
|
| 562 |
+
max-width: 20%;
|
| 563 |
+
}
|
| 564 |
+
.row-cols-md-6 > * {
|
| 565 |
+
-ms-flex: 0 0 16.666667%;
|
| 566 |
+
flex: 0 0 16.666667%;
|
| 567 |
+
max-width: 16.666667%;
|
| 568 |
+
}
|
| 569 |
+
.col-md-auto {
|
| 570 |
+
-ms-flex: 0 0 auto;
|
| 571 |
+
flex: 0 0 auto;
|
| 572 |
+
width: auto;
|
| 573 |
+
max-width: 100%;
|
| 574 |
+
}
|
| 575 |
+
.col-md-1 {
|
| 576 |
+
-ms-flex: 0 0 8.333333%;
|
| 577 |
+
flex: 0 0 8.333333%;
|
| 578 |
+
max-width: 8.333333%;
|
| 579 |
+
}
|
| 580 |
+
.col-md-2 {
|
| 581 |
+
-ms-flex: 0 0 16.666667%;
|
| 582 |
+
flex: 0 0 16.666667%;
|
| 583 |
+
max-width: 16.666667%;
|
| 584 |
+
}
|
| 585 |
+
.col-md-3 {
|
| 586 |
+
-ms-flex: 0 0 25%;
|
| 587 |
+
flex: 0 0 25%;
|
| 588 |
+
max-width: 25%;
|
| 589 |
+
}
|
| 590 |
+
.col-md-4 {
|
| 591 |
+
-ms-flex: 0 0 33.333333%;
|
| 592 |
+
flex: 0 0 33.333333%;
|
| 593 |
+
max-width: 33.333333%;
|
| 594 |
+
}
|
| 595 |
+
.col-md-5 {
|
| 596 |
+
-ms-flex: 0 0 41.666667%;
|
| 597 |
+
flex: 0 0 41.666667%;
|
| 598 |
+
max-width: 41.666667%;
|
| 599 |
+
}
|
| 600 |
+
.col-md-6 {
|
| 601 |
+
-ms-flex: 0 0 50%;
|
| 602 |
+
flex: 0 0 50%;
|
| 603 |
+
max-width: 50%;
|
| 604 |
+
}
|
| 605 |
+
.col-md-7 {
|
| 606 |
+
-ms-flex: 0 0 58.333333%;
|
| 607 |
+
flex: 0 0 58.333333%;
|
| 608 |
+
max-width: 58.333333%;
|
| 609 |
+
}
|
| 610 |
+
.col-md-8 {
|
| 611 |
+
-ms-flex: 0 0 66.666667%;
|
| 612 |
+
flex: 0 0 66.666667%;
|
| 613 |
+
max-width: 66.666667%;
|
| 614 |
+
}
|
| 615 |
+
.col-md-9 {
|
| 616 |
+
-ms-flex: 0 0 75%;
|
| 617 |
+
flex: 0 0 75%;
|
| 618 |
+
max-width: 75%;
|
| 619 |
+
}
|
| 620 |
+
.col-md-10 {
|
| 621 |
+
-ms-flex: 0 0 83.333333%;
|
| 622 |
+
flex: 0 0 83.333333%;
|
| 623 |
+
max-width: 83.333333%;
|
| 624 |
+
}
|
| 625 |
+
.col-md-11 {
|
| 626 |
+
-ms-flex: 0 0 91.666667%;
|
| 627 |
+
flex: 0 0 91.666667%;
|
| 628 |
+
max-width: 91.666667%;
|
| 629 |
+
}
|
| 630 |
+
.col-md-12 {
|
| 631 |
+
-ms-flex: 0 0 100%;
|
| 632 |
+
flex: 0 0 100%;
|
| 633 |
+
max-width: 100%;
|
| 634 |
+
}
|
| 635 |
+
.order-md-first {
|
| 636 |
+
-ms-flex-order: -1;
|
| 637 |
+
order: -1;
|
| 638 |
+
}
|
| 639 |
+
.order-md-last {
|
| 640 |
+
-ms-flex-order: 13;
|
| 641 |
+
order: 13;
|
| 642 |
+
}
|
| 643 |
+
.order-md-0 {
|
| 644 |
+
-ms-flex-order: 0;
|
| 645 |
+
order: 0;
|
| 646 |
+
}
|
| 647 |
+
.order-md-1 {
|
| 648 |
+
-ms-flex-order: 1;
|
| 649 |
+
order: 1;
|
| 650 |
+
}
|
| 651 |
+
.order-md-2 {
|
| 652 |
+
-ms-flex-order: 2;
|
| 653 |
+
order: 2;
|
| 654 |
+
}
|
| 655 |
+
.order-md-3 {
|
| 656 |
+
-ms-flex-order: 3;
|
| 657 |
+
order: 3;
|
| 658 |
+
}
|
| 659 |
+
.order-md-4 {
|
| 660 |
+
-ms-flex-order: 4;
|
| 661 |
+
order: 4;
|
| 662 |
+
}
|
| 663 |
+
.order-md-5 {
|
| 664 |
+
-ms-flex-order: 5;
|
| 665 |
+
order: 5;
|
| 666 |
+
}
|
| 667 |
+
.order-md-6 {
|
| 668 |
+
-ms-flex-order: 6;
|
| 669 |
+
order: 6;
|
| 670 |
+
}
|
| 671 |
+
.order-md-7 {
|
| 672 |
+
-ms-flex-order: 7;
|
| 673 |
+
order: 7;
|
| 674 |
+
}
|
| 675 |
+
.order-md-8 {
|
| 676 |
+
-ms-flex-order: 8;
|
| 677 |
+
order: 8;
|
| 678 |
+
}
|
| 679 |
+
.order-md-9 {
|
| 680 |
+
-ms-flex-order: 9;
|
| 681 |
+
order: 9;
|
| 682 |
+
}
|
| 683 |
+
.order-md-10 {
|
| 684 |
+
-ms-flex-order: 10;
|
| 685 |
+
order: 10;
|
| 686 |
+
}
|
| 687 |
+
.order-md-11 {
|
| 688 |
+
-ms-flex-order: 11;
|
| 689 |
+
order: 11;
|
| 690 |
+
}
|
| 691 |
+
.order-md-12 {
|
| 692 |
+
-ms-flex-order: 12;
|
| 693 |
+
order: 12;
|
| 694 |
+
}
|
| 695 |
+
.offset-md-0 {
|
| 696 |
+
margin-left: 0;
|
| 697 |
+
}
|
| 698 |
+
.offset-md-1 {
|
| 699 |
+
margin-left: 8.333333%;
|
| 700 |
+
}
|
| 701 |
+
.offset-md-2 {
|
| 702 |
+
margin-left: 16.666667%;
|
| 703 |
+
}
|
| 704 |
+
.offset-md-3 {
|
| 705 |
+
margin-left: 25%;
|
| 706 |
+
}
|
| 707 |
+
.offset-md-4 {
|
| 708 |
+
margin-left: 33.333333%;
|
| 709 |
+
}
|
| 710 |
+
.offset-md-5 {
|
| 711 |
+
margin-left: 41.666667%;
|
| 712 |
+
}
|
| 713 |
+
.offset-md-6 {
|
| 714 |
+
margin-left: 50%;
|
| 715 |
+
}
|
| 716 |
+
.offset-md-7 {
|
| 717 |
+
margin-left: 58.333333%;
|
| 718 |
+
}
|
| 719 |
+
.offset-md-8 {
|
| 720 |
+
margin-left: 66.666667%;
|
| 721 |
+
}
|
| 722 |
+
.offset-md-9 {
|
| 723 |
+
margin-left: 75%;
|
| 724 |
+
}
|
| 725 |
+
.offset-md-10 {
|
| 726 |
+
margin-left: 83.333333%;
|
| 727 |
+
}
|
| 728 |
+
.offset-md-11 {
|
| 729 |
+
margin-left: 91.666667%;
|
| 730 |
+
}
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
@media (min-width: 992px) {
|
| 734 |
+
.col-lg {
|
| 735 |
+
-ms-flex-preferred-size: 0;
|
| 736 |
+
flex-basis: 0;
|
| 737 |
+
-ms-flex-positive: 1;
|
| 738 |
+
flex-grow: 1;
|
| 739 |
+
max-width: 100%;
|
| 740 |
+
}
|
| 741 |
+
.row-cols-lg-1 > * {
|
| 742 |
+
-ms-flex: 0 0 100%;
|
| 743 |
+
flex: 0 0 100%;
|
| 744 |
+
max-width: 100%;
|
| 745 |
+
}
|
| 746 |
+
.row-cols-lg-2 > * {
|
| 747 |
+
-ms-flex: 0 0 50%;
|
| 748 |
+
flex: 0 0 50%;
|
| 749 |
+
max-width: 50%;
|
| 750 |
+
}
|
| 751 |
+
.row-cols-lg-3 > * {
|
| 752 |
+
-ms-flex: 0 0 33.333333%;
|
| 753 |
+
flex: 0 0 33.333333%;
|
| 754 |
+
max-width: 33.333333%;
|
| 755 |
+
}
|
| 756 |
+
.row-cols-lg-4 > * {
|
| 757 |
+
-ms-flex: 0 0 25%;
|
| 758 |
+
flex: 0 0 25%;
|
| 759 |
+
max-width: 25%;
|
| 760 |
+
}
|
| 761 |
+
.row-cols-lg-5 > * {
|
| 762 |
+
-ms-flex: 0 0 20%;
|
| 763 |
+
flex: 0 0 20%;
|
| 764 |
+
max-width: 20%;
|
| 765 |
+
}
|
| 766 |
+
.row-cols-lg-6 > * {
|
| 767 |
+
-ms-flex: 0 0 16.666667%;
|
| 768 |
+
flex: 0 0 16.666667%;
|
| 769 |
+
max-width: 16.666667%;
|
| 770 |
+
}
|
| 771 |
+
.col-lg-auto {
|
| 772 |
+
-ms-flex: 0 0 auto;
|
| 773 |
+
flex: 0 0 auto;
|
| 774 |
+
width: auto;
|
| 775 |
+
max-width: 100%;
|
| 776 |
+
}
|
| 777 |
+
.col-lg-1 {
|
| 778 |
+
-ms-flex: 0 0 8.333333%;
|
| 779 |
+
flex: 0 0 8.333333%;
|
| 780 |
+
max-width: 8.333333%;
|
| 781 |
+
}
|
| 782 |
+
.col-lg-2 {
|
| 783 |
+
-ms-flex: 0 0 16.666667%;
|
| 784 |
+
flex: 0 0 16.666667%;
|
| 785 |
+
max-width: 16.666667%;
|
| 786 |
+
}
|
| 787 |
+
.col-lg-3 {
|
| 788 |
+
-ms-flex: 0 0 25%;
|
| 789 |
+
flex: 0 0 25%;
|
| 790 |
+
max-width: 25%;
|
| 791 |
+
}
|
| 792 |
+
.col-lg-4 {
|
| 793 |
+
-ms-flex: 0 0 33.333333%;
|
| 794 |
+
flex: 0 0 33.333333%;
|
| 795 |
+
max-width: 33.333333%;
|
| 796 |
+
}
|
| 797 |
+
.col-lg-5 {
|
| 798 |
+
-ms-flex: 0 0 41.666667%;
|
| 799 |
+
flex: 0 0 41.666667%;
|
| 800 |
+
max-width: 41.666667%;
|
| 801 |
+
}
|
| 802 |
+
.col-lg-6 {
|
| 803 |
+
-ms-flex: 0 0 50%;
|
| 804 |
+
flex: 0 0 50%;
|
| 805 |
+
max-width: 50%;
|
| 806 |
+
}
|
| 807 |
+
.col-lg-7 {
|
| 808 |
+
-ms-flex: 0 0 58.333333%;
|
| 809 |
+
flex: 0 0 58.333333%;
|
| 810 |
+
max-width: 58.333333%;
|
| 811 |
+
}
|
| 812 |
+
.col-lg-8 {
|
| 813 |
+
-ms-flex: 0 0 66.666667%;
|
| 814 |
+
flex: 0 0 66.666667%;
|
| 815 |
+
max-width: 66.666667%;
|
| 816 |
+
}
|
| 817 |
+
.col-lg-9 {
|
| 818 |
+
-ms-flex: 0 0 75%;
|
| 819 |
+
flex: 0 0 75%;
|
| 820 |
+
max-width: 75%;
|
| 821 |
+
}
|
| 822 |
+
.col-lg-10 {
|
| 823 |
+
-ms-flex: 0 0 83.333333%;
|
| 824 |
+
flex: 0 0 83.333333%;
|
| 825 |
+
max-width: 83.333333%;
|
| 826 |
+
}
|
| 827 |
+
.col-lg-11 {
|
| 828 |
+
-ms-flex: 0 0 91.666667%;
|
| 829 |
+
flex: 0 0 91.666667%;
|
| 830 |
+
max-width: 91.666667%;
|
| 831 |
+
}
|
| 832 |
+
.col-lg-12 {
|
| 833 |
+
-ms-flex: 0 0 100%;
|
| 834 |
+
flex: 0 0 100%;
|
| 835 |
+
max-width: 100%;
|
| 836 |
+
}
|
| 837 |
+
.order-lg-first {
|
| 838 |
+
-ms-flex-order: -1;
|
| 839 |
+
order: -1;
|
| 840 |
+
}
|
| 841 |
+
.order-lg-last {
|
| 842 |
+
-ms-flex-order: 13;
|
| 843 |
+
order: 13;
|
| 844 |
+
}
|
| 845 |
+
.order-lg-0 {
|
| 846 |
+
-ms-flex-order: 0;
|
| 847 |
+
order: 0;
|
| 848 |
+
}
|
| 849 |
+
.order-lg-1 {
|
| 850 |
+
-ms-flex-order: 1;
|
| 851 |
+
order: 1;
|
| 852 |
+
}
|
| 853 |
+
.order-lg-2 {
|
| 854 |
+
-ms-flex-order: 2;
|
| 855 |
+
order: 2;
|
| 856 |
+
}
|
| 857 |
+
.order-lg-3 {
|
| 858 |
+
-ms-flex-order: 3;
|
| 859 |
+
order: 3;
|
| 860 |
+
}
|
| 861 |
+
.order-lg-4 {
|
| 862 |
+
-ms-flex-order: 4;
|
| 863 |
+
order: 4;
|
| 864 |
+
}
|
| 865 |
+
.order-lg-5 {
|
| 866 |
+
-ms-flex-order: 5;
|
| 867 |
+
order: 5;
|
| 868 |
+
}
|
| 869 |
+
.order-lg-6 {
|
| 870 |
+
-ms-flex-order: 6;
|
| 871 |
+
order: 6;
|
| 872 |
+
}
|
| 873 |
+
.order-lg-7 {
|
| 874 |
+
-ms-flex-order: 7;
|
| 875 |
+
order: 7;
|
| 876 |
+
}
|
| 877 |
+
.order-lg-8 {
|
| 878 |
+
-ms-flex-order: 8;
|
| 879 |
+
order: 8;
|
| 880 |
+
}
|
| 881 |
+
.order-lg-9 {
|
| 882 |
+
-ms-flex-order: 9;
|
| 883 |
+
order: 9;
|
| 884 |
+
}
|
| 885 |
+
.order-lg-10 {
|
| 886 |
+
-ms-flex-order: 10;
|
| 887 |
+
order: 10;
|
| 888 |
+
}
|
| 889 |
+
.order-lg-11 {
|
| 890 |
+
-ms-flex-order: 11;
|
| 891 |
+
order: 11;
|
| 892 |
+
}
|
| 893 |
+
.order-lg-12 {
|
| 894 |
+
-ms-flex-order: 12;
|
| 895 |
+
order: 12;
|
| 896 |
+
}
|
| 897 |
+
.offset-lg-0 {
|
| 898 |
+
margin-left: 0;
|
| 899 |
+
}
|
| 900 |
+
.offset-lg-1 {
|
| 901 |
+
margin-left: 8.333333%;
|
| 902 |
+
}
|
| 903 |
+
.offset-lg-2 {
|
| 904 |
+
margin-left: 16.666667%;
|
| 905 |
+
}
|
| 906 |
+
.offset-lg-3 {
|
| 907 |
+
margin-left: 25%;
|
| 908 |
+
}
|
| 909 |
+
.offset-lg-4 {
|
| 910 |
+
margin-left: 33.333333%;
|
| 911 |
+
}
|
| 912 |
+
.offset-lg-5 {
|
| 913 |
+
margin-left: 41.666667%;
|
| 914 |
+
}
|
| 915 |
+
.offset-lg-6 {
|
| 916 |
+
margin-left: 50%;
|
| 917 |
+
}
|
| 918 |
+
.offset-lg-7 {
|
| 919 |
+
margin-left: 58.333333%;
|
| 920 |
+
}
|
| 921 |
+
.offset-lg-8 {
|
| 922 |
+
margin-left: 66.666667%;
|
| 923 |
+
}
|
| 924 |
+
.offset-lg-9 {
|
| 925 |
+
margin-left: 75%;
|
| 926 |
+
}
|
| 927 |
+
.offset-lg-10 {
|
| 928 |
+
margin-left: 83.333333%;
|
| 929 |
+
}
|
| 930 |
+
.offset-lg-11 {
|
| 931 |
+
margin-left: 91.666667%;
|
| 932 |
+
}
|
| 933 |
+
}
|
| 934 |
+
|
| 935 |
+
@media (min-width: 1200px) {
|
| 936 |
+
.col-xl {
|
| 937 |
+
-ms-flex-preferred-size: 0;
|
| 938 |
+
flex-basis: 0;
|
| 939 |
+
-ms-flex-positive: 1;
|
| 940 |
+
flex-grow: 1;
|
| 941 |
+
max-width: 100%;
|
| 942 |
+
}
|
| 943 |
+
.row-cols-xl-1 > * {
|
| 944 |
+
-ms-flex: 0 0 100%;
|
| 945 |
+
flex: 0 0 100%;
|
| 946 |
+
max-width: 100%;
|
| 947 |
+
}
|
| 948 |
+
.row-cols-xl-2 > * {
|
| 949 |
+
-ms-flex: 0 0 50%;
|
| 950 |
+
flex: 0 0 50%;
|
| 951 |
+
max-width: 50%;
|
| 952 |
+
}
|
| 953 |
+
.row-cols-xl-3 > * {
|
| 954 |
+
-ms-flex: 0 0 33.333333%;
|
| 955 |
+
flex: 0 0 33.333333%;
|
| 956 |
+
max-width: 33.333333%;
|
| 957 |
+
}
|
| 958 |
+
.row-cols-xl-4 > * {
|
| 959 |
+
-ms-flex: 0 0 25%;
|
| 960 |
+
flex: 0 0 25%;
|
| 961 |
+
max-width: 25%;
|
| 962 |
+
}
|
| 963 |
+
.row-cols-xl-5 > * {
|
| 964 |
+
-ms-flex: 0 0 20%;
|
| 965 |
+
flex: 0 0 20%;
|
| 966 |
+
max-width: 20%;
|
| 967 |
+
}
|
| 968 |
+
.row-cols-xl-6 > * {
|
| 969 |
+
-ms-flex: 0 0 16.666667%;
|
| 970 |
+
flex: 0 0 16.666667%;
|
| 971 |
+
max-width: 16.666667%;
|
| 972 |
+
}
|
| 973 |
+
.col-xl-auto {
|
| 974 |
+
-ms-flex: 0 0 auto;
|
| 975 |
+
flex: 0 0 auto;
|
| 976 |
+
width: auto;
|
| 977 |
+
max-width: 100%;
|
| 978 |
+
}
|
| 979 |
+
.col-xl-1 {
|
| 980 |
+
-ms-flex: 0 0 8.333333%;
|
| 981 |
+
flex: 0 0 8.333333%;
|
| 982 |
+
max-width: 8.333333%;
|
| 983 |
+
}
|
| 984 |
+
.col-xl-2 {
|
| 985 |
+
-ms-flex: 0 0 16.666667%;
|
| 986 |
+
flex: 0 0 16.666667%;
|
| 987 |
+
max-width: 16.666667%;
|
| 988 |
+
}
|
| 989 |
+
.col-xl-3 {
|
| 990 |
+
-ms-flex: 0 0 25%;
|
| 991 |
+
flex: 0 0 25%;
|
| 992 |
+
max-width: 25%;
|
| 993 |
+
}
|
| 994 |
+
.col-xl-4 {
|
| 995 |
+
-ms-flex: 0 0 33.333333%;
|
| 996 |
+
flex: 0 0 33.333333%;
|
| 997 |
+
max-width: 33.333333%;
|
| 998 |
+
}
|
| 999 |
+
.col-xl-5 {
|
| 1000 |
+
-ms-flex: 0 0 41.666667%;
|
| 1001 |
+
flex: 0 0 41.666667%;
|
| 1002 |
+
max-width: 41.666667%;
|
| 1003 |
+
}
|
| 1004 |
+
.col-xl-6 {
|
| 1005 |
+
-ms-flex: 0 0 50%;
|
| 1006 |
+
flex: 0 0 50%;
|
| 1007 |
+
max-width: 50%;
|
| 1008 |
+
}
|
| 1009 |
+
.col-xl-7 {
|
| 1010 |
+
-ms-flex: 0 0 58.333333%;
|
| 1011 |
+
flex: 0 0 58.333333%;
|
| 1012 |
+
max-width: 58.333333%;
|
| 1013 |
+
}
|
| 1014 |
+
.col-xl-8 {
|
| 1015 |
+
-ms-flex: 0 0 66.666667%;
|
| 1016 |
+
flex: 0 0 66.666667%;
|
| 1017 |
+
max-width: 66.666667%;
|
| 1018 |
+
}
|
| 1019 |
+
.col-xl-9 {
|
| 1020 |
+
-ms-flex: 0 0 75%;
|
| 1021 |
+
flex: 0 0 75%;
|
| 1022 |
+
max-width: 75%;
|
| 1023 |
+
}
|
| 1024 |
+
.col-xl-10 {
|
| 1025 |
+
-ms-flex: 0 0 83.333333%;
|
| 1026 |
+
flex: 0 0 83.333333%;
|
| 1027 |
+
max-width: 83.333333%;
|
| 1028 |
+
}
|
| 1029 |
+
.col-xl-11 {
|
| 1030 |
+
-ms-flex: 0 0 91.666667%;
|
| 1031 |
+
flex: 0 0 91.666667%;
|
| 1032 |
+
max-width: 91.666667%;
|
| 1033 |
+
}
|
| 1034 |
+
.col-xl-12 {
|
| 1035 |
+
-ms-flex: 0 0 100%;
|
| 1036 |
+
flex: 0 0 100%;
|
| 1037 |
+
max-width: 100%;
|
| 1038 |
+
}
|
| 1039 |
+
.order-xl-first {
|
| 1040 |
+
-ms-flex-order: -1;
|
| 1041 |
+
order: -1;
|
| 1042 |
+
}
|
| 1043 |
+
.order-xl-last {
|
| 1044 |
+
-ms-flex-order: 13;
|
| 1045 |
+
order: 13;
|
| 1046 |
+
}
|
| 1047 |
+
.order-xl-0 {
|
| 1048 |
+
-ms-flex-order: 0;
|
| 1049 |
+
order: 0;
|
| 1050 |
+
}
|
| 1051 |
+
.order-xl-1 {
|
| 1052 |
+
-ms-flex-order: 1;
|
| 1053 |
+
order: 1;
|
| 1054 |
+
}
|
| 1055 |
+
.order-xl-2 {
|
| 1056 |
+
-ms-flex-order: 2;
|
| 1057 |
+
order: 2;
|
| 1058 |
+
}
|
| 1059 |
+
.order-xl-3 {
|
| 1060 |
+
-ms-flex-order: 3;
|
| 1061 |
+
order: 3;
|
| 1062 |
+
}
|
| 1063 |
+
.order-xl-4 {
|
| 1064 |
+
-ms-flex-order: 4;
|
| 1065 |
+
order: 4;
|
| 1066 |
+
}
|
| 1067 |
+
.order-xl-5 {
|
| 1068 |
+
-ms-flex-order: 5;
|
| 1069 |
+
order: 5;
|
| 1070 |
+
}
|
| 1071 |
+
.order-xl-6 {
|
| 1072 |
+
-ms-flex-order: 6;
|
| 1073 |
+
order: 6;
|
| 1074 |
+
}
|
| 1075 |
+
.order-xl-7 {
|
| 1076 |
+
-ms-flex-order: 7;
|
| 1077 |
+
order: 7;
|
| 1078 |
+
}
|
| 1079 |
+
.order-xl-8 {
|
| 1080 |
+
-ms-flex-order: 8;
|
| 1081 |
+
order: 8;
|
| 1082 |
+
}
|
| 1083 |
+
.order-xl-9 {
|
| 1084 |
+
-ms-flex-order: 9;
|
| 1085 |
+
order: 9;
|
| 1086 |
+
}
|
| 1087 |
+
.order-xl-10 {
|
| 1088 |
+
-ms-flex-order: 10;
|
| 1089 |
+
order: 10;
|
| 1090 |
+
}
|
| 1091 |
+
.order-xl-11 {
|
| 1092 |
+
-ms-flex-order: 11;
|
| 1093 |
+
order: 11;
|
| 1094 |
+
}
|
| 1095 |
+
.order-xl-12 {
|
| 1096 |
+
-ms-flex-order: 12;
|
| 1097 |
+
order: 12;
|
| 1098 |
+
}
|
| 1099 |
+
.offset-xl-0 {
|
| 1100 |
+
margin-left: 0;
|
| 1101 |
+
}
|
| 1102 |
+
.offset-xl-1 {
|
| 1103 |
+
margin-left: 8.333333%;
|
| 1104 |
+
}
|
| 1105 |
+
.offset-xl-2 {
|
| 1106 |
+
margin-left: 16.666667%;
|
| 1107 |
+
}
|
| 1108 |
+
.offset-xl-3 {
|
| 1109 |
+
margin-left: 25%;
|
| 1110 |
+
}
|
| 1111 |
+
.offset-xl-4 {
|
| 1112 |
+
margin-left: 33.333333%;
|
| 1113 |
+
}
|
| 1114 |
+
.offset-xl-5 {
|
| 1115 |
+
margin-left: 41.666667%;
|
| 1116 |
+
}
|
| 1117 |
+
.offset-xl-6 {
|
| 1118 |
+
margin-left: 50%;
|
| 1119 |
+
}
|
| 1120 |
+
.offset-xl-7 {
|
| 1121 |
+
margin-left: 58.333333%;
|
| 1122 |
+
}
|
| 1123 |
+
.offset-xl-8 {
|
| 1124 |
+
margin-left: 66.666667%;
|
| 1125 |
+
}
|
| 1126 |
+
.offset-xl-9 {
|
| 1127 |
+
margin-left: 75%;
|
| 1128 |
+
}
|
| 1129 |
+
.offset-xl-10 {
|
| 1130 |
+
margin-left: 83.333333%;
|
| 1131 |
+
}
|
| 1132 |
+
.offset-xl-11 {
|
| 1133 |
+
margin-left: 91.666667%;
|
| 1134 |
+
}
|
| 1135 |
+
}
|
| 1136 |
+
|
| 1137 |
+
.d-none {
|
| 1138 |
+
display: none !important;
|
| 1139 |
+
}
|
| 1140 |
+
|
| 1141 |
+
.d-inline {
|
| 1142 |
+
display: inline !important;
|
| 1143 |
+
}
|
| 1144 |
+
|
| 1145 |
+
.d-inline-block {
|
| 1146 |
+
display: inline-block !important;
|
| 1147 |
+
}
|
| 1148 |
+
|
| 1149 |
+
.d-block {
|
| 1150 |
+
display: block !important;
|
| 1151 |
+
}
|
| 1152 |
+
|
| 1153 |
+
.d-table {
|
| 1154 |
+
display: table !important;
|
| 1155 |
+
}
|
| 1156 |
+
|
| 1157 |
+
.d-table-row {
|
| 1158 |
+
display: table-row !important;
|
| 1159 |
+
}
|
| 1160 |
+
|
| 1161 |
+
.d-table-cell {
|
| 1162 |
+
display: table-cell !important;
|
| 1163 |
+
}
|
| 1164 |
+
|
| 1165 |
+
.d-flex {
|
| 1166 |
+
display: -ms-flexbox !important;
|
| 1167 |
+
display: flex !important;
|
| 1168 |
+
}
|
| 1169 |
+
|
| 1170 |
+
.d-inline-flex {
|
| 1171 |
+
display: -ms-inline-flexbox !important;
|
| 1172 |
+
display: inline-flex !important;
|
| 1173 |
+
}
|
| 1174 |
+
|
| 1175 |
+
@media (min-width: 576px) {
|
| 1176 |
+
.d-sm-none {
|
| 1177 |
+
display: none !important;
|
| 1178 |
+
}
|
| 1179 |
+
.d-sm-inline {
|
| 1180 |
+
display: inline !important;
|
| 1181 |
+
}
|
| 1182 |
+
.d-sm-inline-block {
|
| 1183 |
+
display: inline-block !important;
|
| 1184 |
+
}
|
| 1185 |
+
.d-sm-block {
|
| 1186 |
+
display: block !important;
|
| 1187 |
+
}
|
| 1188 |
+
.d-sm-table {
|
| 1189 |
+
display: table !important;
|
| 1190 |
+
}
|
| 1191 |
+
.d-sm-table-row {
|
| 1192 |
+
display: table-row !important;
|
| 1193 |
+
}
|
| 1194 |
+
.d-sm-table-cell {
|
| 1195 |
+
display: table-cell !important;
|
| 1196 |
+
}
|
| 1197 |
+
.d-sm-flex {
|
| 1198 |
+
display: -ms-flexbox !important;
|
| 1199 |
+
display: flex !important;
|
| 1200 |
+
}
|
| 1201 |
+
.d-sm-inline-flex {
|
| 1202 |
+
display: -ms-inline-flexbox !important;
|
| 1203 |
+
display: inline-flex !important;
|
| 1204 |
+
}
|
| 1205 |
+
}
|
| 1206 |
+
|
| 1207 |
+
@media (min-width: 768px) {
|
| 1208 |
+
.d-md-none {
|
| 1209 |
+
display: none !important;
|
| 1210 |
+
}
|
| 1211 |
+
.d-md-inline {
|
| 1212 |
+
display: inline !important;
|
| 1213 |
+
}
|
| 1214 |
+
.d-md-inline-block {
|
| 1215 |
+
display: inline-block !important;
|
| 1216 |
+
}
|
| 1217 |
+
.d-md-block {
|
| 1218 |
+
display: block !important;
|
| 1219 |
+
}
|
| 1220 |
+
.d-md-table {
|
| 1221 |
+
display: table !important;
|
| 1222 |
+
}
|
| 1223 |
+
.d-md-table-row {
|
| 1224 |
+
display: table-row !important;
|
| 1225 |
+
}
|
| 1226 |
+
.d-md-table-cell {
|
| 1227 |
+
display: table-cell !important;
|
| 1228 |
+
}
|
| 1229 |
+
.d-md-flex {
|
| 1230 |
+
display: -ms-flexbox !important;
|
| 1231 |
+
display: flex !important;
|
| 1232 |
+
}
|
| 1233 |
+
.d-md-inline-flex {
|
| 1234 |
+
display: -ms-inline-flexbox !important;
|
| 1235 |
+
display: inline-flex !important;
|
| 1236 |
+
}
|
| 1237 |
+
}
|
| 1238 |
+
|
| 1239 |
+
@media (min-width: 992px) {
|
| 1240 |
+
.d-lg-none {
|
| 1241 |
+
display: none !important;
|
| 1242 |
+
}
|
| 1243 |
+
.d-lg-inline {
|
| 1244 |
+
display: inline !important;
|
| 1245 |
+
}
|
| 1246 |
+
.d-lg-inline-block {
|
| 1247 |
+
display: inline-block !important;
|
| 1248 |
+
}
|
| 1249 |
+
.d-lg-block {
|
| 1250 |
+
display: block !important;
|
| 1251 |
+
}
|
| 1252 |
+
.d-lg-table {
|
| 1253 |
+
display: table !important;
|
| 1254 |
+
}
|
| 1255 |
+
.d-lg-table-row {
|
| 1256 |
+
display: table-row !important;
|
| 1257 |
+
}
|
| 1258 |
+
.d-lg-table-cell {
|
| 1259 |
+
display: table-cell !important;
|
| 1260 |
+
}
|
| 1261 |
+
.d-lg-flex {
|
| 1262 |
+
display: -ms-flexbox !important;
|
| 1263 |
+
display: flex !important;
|
| 1264 |
+
}
|
| 1265 |
+
.d-lg-inline-flex {
|
| 1266 |
+
display: -ms-inline-flexbox !important;
|
| 1267 |
+
display: inline-flex !important;
|
| 1268 |
+
}
|
| 1269 |
+
}
|
| 1270 |
+
|
| 1271 |
+
@media (min-width: 1200px) {
|
| 1272 |
+
.d-xl-none {
|
| 1273 |
+
display: none !important;
|
| 1274 |
+
}
|
| 1275 |
+
.d-xl-inline {
|
| 1276 |
+
display: inline !important;
|
| 1277 |
+
}
|
| 1278 |
+
.d-xl-inline-block {
|
| 1279 |
+
display: inline-block !important;
|
| 1280 |
+
}
|
| 1281 |
+
.d-xl-block {
|
| 1282 |
+
display: block !important;
|
| 1283 |
+
}
|
| 1284 |
+
.d-xl-table {
|
| 1285 |
+
display: table !important;
|
| 1286 |
+
}
|
| 1287 |
+
.d-xl-table-row {
|
| 1288 |
+
display: table-row !important;
|
| 1289 |
+
}
|
| 1290 |
+
.d-xl-table-cell {
|
| 1291 |
+
display: table-cell !important;
|
| 1292 |
+
}
|
| 1293 |
+
.d-xl-flex {
|
| 1294 |
+
display: -ms-flexbox !important;
|
| 1295 |
+
display: flex !important;
|
| 1296 |
+
}
|
| 1297 |
+
.d-xl-inline-flex {
|
| 1298 |
+
display: -ms-inline-flexbox !important;
|
| 1299 |
+
display: inline-flex !important;
|
| 1300 |
+
}
|
| 1301 |
+
}
|
| 1302 |
+
|
| 1303 |
+
@media print {
|
| 1304 |
+
.d-print-none {
|
| 1305 |
+
display: none !important;
|
| 1306 |
+
}
|
| 1307 |
+
.d-print-inline {
|
| 1308 |
+
display: inline !important;
|
| 1309 |
+
}
|
| 1310 |
+
.d-print-inline-block {
|
| 1311 |
+
display: inline-block !important;
|
| 1312 |
+
}
|
| 1313 |
+
.d-print-block {
|
| 1314 |
+
display: block !important;
|
| 1315 |
+
}
|
| 1316 |
+
.d-print-table {
|
| 1317 |
+
display: table !important;
|
| 1318 |
+
}
|
| 1319 |
+
.d-print-table-row {
|
| 1320 |
+
display: table-row !important;
|
| 1321 |
+
}
|
| 1322 |
+
.d-print-table-cell {
|
| 1323 |
+
display: table-cell !important;
|
| 1324 |
+
}
|
| 1325 |
+
.d-print-flex {
|
| 1326 |
+
display: -ms-flexbox !important;
|
| 1327 |
+
display: flex !important;
|
| 1328 |
+
}
|
| 1329 |
+
.d-print-inline-flex {
|
| 1330 |
+
display: -ms-inline-flexbox !important;
|
| 1331 |
+
display: inline-flex !important;
|
| 1332 |
+
}
|
| 1333 |
+
}
|
| 1334 |
+
|
| 1335 |
+
.flex-row {
|
| 1336 |
+
-ms-flex-direction: row !important;
|
| 1337 |
+
flex-direction: row !important;
|
| 1338 |
+
}
|
| 1339 |
+
|
| 1340 |
+
.flex-column {
|
| 1341 |
+
-ms-flex-direction: column !important;
|
| 1342 |
+
flex-direction: column !important;
|
| 1343 |
+
}
|
| 1344 |
+
|
| 1345 |
+
.flex-row-reverse {
|
| 1346 |
+
-ms-flex-direction: row-reverse !important;
|
| 1347 |
+
flex-direction: row-reverse !important;
|
| 1348 |
+
}
|
| 1349 |
+
|
| 1350 |
+
.flex-column-reverse {
|
| 1351 |
+
-ms-flex-direction: column-reverse !important;
|
| 1352 |
+
flex-direction: column-reverse !important;
|
| 1353 |
+
}
|
| 1354 |
+
|
| 1355 |
+
.flex-wrap {
|
| 1356 |
+
-ms-flex-wrap: wrap !important;
|
| 1357 |
+
flex-wrap: wrap !important;
|
| 1358 |
+
}
|
| 1359 |
+
|
| 1360 |
+
.flex-nowrap {
|
| 1361 |
+
-ms-flex-wrap: nowrap !important;
|
| 1362 |
+
flex-wrap: nowrap !important;
|
| 1363 |
+
}
|
| 1364 |
+
|
| 1365 |
+
.flex-wrap-reverse {
|
| 1366 |
+
-ms-flex-wrap: wrap-reverse !important;
|
| 1367 |
+
flex-wrap: wrap-reverse !important;
|
| 1368 |
+
}
|
| 1369 |
+
|
| 1370 |
+
.flex-fill {
|
| 1371 |
+
-ms-flex: 1 1 auto !important;
|
| 1372 |
+
flex: 1 1 auto !important;
|
| 1373 |
+
}
|
| 1374 |
+
|
| 1375 |
+
.flex-grow-0 {
|
| 1376 |
+
-ms-flex-positive: 0 !important;
|
| 1377 |
+
flex-grow: 0 !important;
|
| 1378 |
+
}
|
| 1379 |
+
|
| 1380 |
+
.flex-grow-1 {
|
| 1381 |
+
-ms-flex-positive: 1 !important;
|
| 1382 |
+
flex-grow: 1 !important;
|
| 1383 |
+
}
|
| 1384 |
+
|
| 1385 |
+
.flex-shrink-0 {
|
| 1386 |
+
-ms-flex-negative: 0 !important;
|
| 1387 |
+
flex-shrink: 0 !important;
|
| 1388 |
+
}
|
| 1389 |
+
|
| 1390 |
+
.flex-shrink-1 {
|
| 1391 |
+
-ms-flex-negative: 1 !important;
|
| 1392 |
+
flex-shrink: 1 !important;
|
| 1393 |
+
}
|
| 1394 |
+
|
| 1395 |
+
.justify-content-start {
|
| 1396 |
+
-ms-flex-pack: start !important;
|
| 1397 |
+
justify-content: flex-start !important;
|
| 1398 |
+
}
|
| 1399 |
+
|
| 1400 |
+
.justify-content-end {
|
| 1401 |
+
-ms-flex-pack: end !important;
|
| 1402 |
+
justify-content: flex-end !important;
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
.justify-content-center {
|
| 1406 |
+
-ms-flex-pack: center !important;
|
| 1407 |
+
justify-content: center !important;
|
| 1408 |
+
}
|
| 1409 |
+
|
| 1410 |
+
.justify-content-between {
|
| 1411 |
+
-ms-flex-pack: justify !important;
|
| 1412 |
+
justify-content: space-between !important;
|
| 1413 |
+
}
|
| 1414 |
+
|
| 1415 |
+
.justify-content-around {
|
| 1416 |
+
-ms-flex-pack: distribute !important;
|
| 1417 |
+
justify-content: space-around !important;
|
| 1418 |
+
}
|
| 1419 |
+
|
| 1420 |
+
.align-items-start {
|
| 1421 |
+
-ms-flex-align: start !important;
|
| 1422 |
+
align-items: flex-start !important;
|
| 1423 |
+
}
|
| 1424 |
+
|
| 1425 |
+
.align-items-end {
|
| 1426 |
+
-ms-flex-align: end !important;
|
| 1427 |
+
align-items: flex-end !important;
|
| 1428 |
+
}
|
| 1429 |
+
|
| 1430 |
+
.align-items-center {
|
| 1431 |
+
-ms-flex-align: center !important;
|
| 1432 |
+
align-items: center !important;
|
| 1433 |
+
}
|
| 1434 |
+
|
| 1435 |
+
.align-items-baseline {
|
| 1436 |
+
-ms-flex-align: baseline !important;
|
| 1437 |
+
align-items: baseline !important;
|
| 1438 |
+
}
|
| 1439 |
+
|
| 1440 |
+
.align-items-stretch {
|
| 1441 |
+
-ms-flex-align: stretch !important;
|
| 1442 |
+
align-items: stretch !important;
|
| 1443 |
+
}
|
| 1444 |
+
|
| 1445 |
+
.align-content-start {
|
| 1446 |
+
-ms-flex-line-pack: start !important;
|
| 1447 |
+
align-content: flex-start !important;
|
| 1448 |
+
}
|
| 1449 |
+
|
| 1450 |
+
.align-content-end {
|
| 1451 |
+
-ms-flex-line-pack: end !important;
|
| 1452 |
+
align-content: flex-end !important;
|
| 1453 |
+
}
|
| 1454 |
+
|
| 1455 |
+
.align-content-center {
|
| 1456 |
+
-ms-flex-line-pack: center !important;
|
| 1457 |
+
align-content: center !important;
|
| 1458 |
+
}
|
| 1459 |
+
|
| 1460 |
+
.align-content-between {
|
| 1461 |
+
-ms-flex-line-pack: justify !important;
|
| 1462 |
+
align-content: space-between !important;
|
| 1463 |
+
}
|
| 1464 |
+
|
| 1465 |
+
.align-content-around {
|
| 1466 |
+
-ms-flex-line-pack: distribute !important;
|
| 1467 |
+
align-content: space-around !important;
|
| 1468 |
+
}
|
| 1469 |
+
|
| 1470 |
+
.align-content-stretch {
|
| 1471 |
+
-ms-flex-line-pack: stretch !important;
|
| 1472 |
+
align-content: stretch !important;
|
| 1473 |
+
}
|
| 1474 |
+
|
| 1475 |
+
.align-self-auto {
|
| 1476 |
+
-ms-flex-item-align: auto !important;
|
| 1477 |
+
align-self: auto !important;
|
| 1478 |
+
}
|
| 1479 |
+
|
| 1480 |
+
.align-self-start {
|
| 1481 |
+
-ms-flex-item-align: start !important;
|
| 1482 |
+
align-self: flex-start !important;
|
| 1483 |
+
}
|
| 1484 |
+
|
| 1485 |
+
.align-self-end {
|
| 1486 |
+
-ms-flex-item-align: end !important;
|
| 1487 |
+
align-self: flex-end !important;
|
| 1488 |
+
}
|
| 1489 |
+
|
| 1490 |
+
.align-self-center {
|
| 1491 |
+
-ms-flex-item-align: center !important;
|
| 1492 |
+
align-self: center !important;
|
| 1493 |
+
}
|
| 1494 |
+
|
| 1495 |
+
.align-self-baseline {
|
| 1496 |
+
-ms-flex-item-align: baseline !important;
|
| 1497 |
+
align-self: baseline !important;
|
| 1498 |
+
}
|
| 1499 |
+
|
| 1500 |
+
.align-self-stretch {
|
| 1501 |
+
-ms-flex-item-align: stretch !important;
|
| 1502 |
+
align-self: stretch !important;
|
| 1503 |
+
}
|
| 1504 |
+
|
| 1505 |
+
@media (min-width: 576px) {
|
| 1506 |
+
.flex-sm-row {
|
| 1507 |
+
-ms-flex-direction: row !important;
|
| 1508 |
+
flex-direction: row !important;
|
| 1509 |
+
}
|
| 1510 |
+
.flex-sm-column {
|
| 1511 |
+
-ms-flex-direction: column !important;
|
| 1512 |
+
flex-direction: column !important;
|
| 1513 |
+
}
|
| 1514 |
+
.flex-sm-row-reverse {
|
| 1515 |
+
-ms-flex-direction: row-reverse !important;
|
| 1516 |
+
flex-direction: row-reverse !important;
|
| 1517 |
+
}
|
| 1518 |
+
.flex-sm-column-reverse {
|
| 1519 |
+
-ms-flex-direction: column-reverse !important;
|
| 1520 |
+
flex-direction: column-reverse !important;
|
| 1521 |
+
}
|
| 1522 |
+
.flex-sm-wrap {
|
| 1523 |
+
-ms-flex-wrap: wrap !important;
|
| 1524 |
+
flex-wrap: wrap !important;
|
| 1525 |
+
}
|
| 1526 |
+
.flex-sm-nowrap {
|
| 1527 |
+
-ms-flex-wrap: nowrap !important;
|
| 1528 |
+
flex-wrap: nowrap !important;
|
| 1529 |
+
}
|
| 1530 |
+
.flex-sm-wrap-reverse {
|
| 1531 |
+
-ms-flex-wrap: wrap-reverse !important;
|
| 1532 |
+
flex-wrap: wrap-reverse !important;
|
| 1533 |
+
}
|
| 1534 |
+
.flex-sm-fill {
|
| 1535 |
+
-ms-flex: 1 1 auto !important;
|
| 1536 |
+
flex: 1 1 auto !important;
|
| 1537 |
+
}
|
| 1538 |
+
.flex-sm-grow-0 {
|
| 1539 |
+
-ms-flex-positive: 0 !important;
|
| 1540 |
+
flex-grow: 0 !important;
|
| 1541 |
+
}
|
| 1542 |
+
.flex-sm-grow-1 {
|
| 1543 |
+
-ms-flex-positive: 1 !important;
|
| 1544 |
+
flex-grow: 1 !important;
|
| 1545 |
+
}
|
| 1546 |
+
.flex-sm-shrink-0 {
|
| 1547 |
+
-ms-flex-negative: 0 !important;
|
| 1548 |
+
flex-shrink: 0 !important;
|
| 1549 |
+
}
|
| 1550 |
+
.flex-sm-shrink-1 {
|
| 1551 |
+
-ms-flex-negative: 1 !important;
|
| 1552 |
+
flex-shrink: 1 !important;
|
| 1553 |
+
}
|
| 1554 |
+
.justify-content-sm-start {
|
| 1555 |
+
-ms-flex-pack: start !important;
|
| 1556 |
+
justify-content: flex-start !important;
|
| 1557 |
+
}
|
| 1558 |
+
.justify-content-sm-end {
|
| 1559 |
+
-ms-flex-pack: end !important;
|
| 1560 |
+
justify-content: flex-end !important;
|
| 1561 |
+
}
|
| 1562 |
+
.justify-content-sm-center {
|
| 1563 |
+
-ms-flex-pack: center !important;
|
| 1564 |
+
justify-content: center !important;
|
| 1565 |
+
}
|
| 1566 |
+
.justify-content-sm-between {
|
| 1567 |
+
-ms-flex-pack: justify !important;
|
| 1568 |
+
justify-content: space-between !important;
|
| 1569 |
+
}
|
| 1570 |
+
.justify-content-sm-around {
|
| 1571 |
+
-ms-flex-pack: distribute !important;
|
| 1572 |
+
justify-content: space-around !important;
|
| 1573 |
+
}
|
| 1574 |
+
.align-items-sm-start {
|
| 1575 |
+
-ms-flex-align: start !important;
|
| 1576 |
+
align-items: flex-start !important;
|
| 1577 |
+
}
|
| 1578 |
+
.align-items-sm-end {
|
| 1579 |
+
-ms-flex-align: end !important;
|
| 1580 |
+
align-items: flex-end !important;
|
| 1581 |
+
}
|
| 1582 |
+
.align-items-sm-center {
|
| 1583 |
+
-ms-flex-align: center !important;
|
| 1584 |
+
align-items: center !important;
|
| 1585 |
+
}
|
| 1586 |
+
.align-items-sm-baseline {
|
| 1587 |
+
-ms-flex-align: baseline !important;
|
| 1588 |
+
align-items: baseline !important;
|
| 1589 |
+
}
|
| 1590 |
+
.align-items-sm-stretch {
|
| 1591 |
+
-ms-flex-align: stretch !important;
|
| 1592 |
+
align-items: stretch !important;
|
| 1593 |
+
}
|
| 1594 |
+
.align-content-sm-start {
|
| 1595 |
+
-ms-flex-line-pack: start !important;
|
| 1596 |
+
align-content: flex-start !important;
|
| 1597 |
+
}
|
| 1598 |
+
.align-content-sm-end {
|
| 1599 |
+
-ms-flex-line-pack: end !important;
|
| 1600 |
+
align-content: flex-end !important;
|
| 1601 |
+
}
|
| 1602 |
+
.align-content-sm-center {
|
| 1603 |
+
-ms-flex-line-pack: center !important;
|
| 1604 |
+
align-content: center !important;
|
| 1605 |
+
}
|
| 1606 |
+
.align-content-sm-between {
|
| 1607 |
+
-ms-flex-line-pack: justify !important;
|
| 1608 |
+
align-content: space-between !important;
|
| 1609 |
+
}
|
| 1610 |
+
.align-content-sm-around {
|
| 1611 |
+
-ms-flex-line-pack: distribute !important;
|
| 1612 |
+
align-content: space-around !important;
|
| 1613 |
+
}
|
| 1614 |
+
.align-content-sm-stretch {
|
| 1615 |
+
-ms-flex-line-pack: stretch !important;
|
| 1616 |
+
align-content: stretch !important;
|
| 1617 |
+
}
|
| 1618 |
+
.align-self-sm-auto {
|
| 1619 |
+
-ms-flex-item-align: auto !important;
|
| 1620 |
+
align-self: auto !important;
|
| 1621 |
+
}
|
| 1622 |
+
.align-self-sm-start {
|
| 1623 |
+
-ms-flex-item-align: start !important;
|
| 1624 |
+
align-self: flex-start !important;
|
| 1625 |
+
}
|
| 1626 |
+
.align-self-sm-end {
|
| 1627 |
+
-ms-flex-item-align: end !important;
|
| 1628 |
+
align-self: flex-end !important;
|
| 1629 |
+
}
|
| 1630 |
+
.align-self-sm-center {
|
| 1631 |
+
-ms-flex-item-align: center !important;
|
| 1632 |
+
align-self: center !important;
|
| 1633 |
+
}
|
| 1634 |
+
.align-self-sm-baseline {
|
| 1635 |
+
-ms-flex-item-align: baseline !important;
|
| 1636 |
+
align-self: baseline !important;
|
| 1637 |
+
}
|
| 1638 |
+
.align-self-sm-stretch {
|
| 1639 |
+
-ms-flex-item-align: stretch !important;
|
| 1640 |
+
align-self: stretch !important;
|
| 1641 |
+
}
|
| 1642 |
+
}
|
| 1643 |
+
|
| 1644 |
+
@media (min-width: 768px) {
|
| 1645 |
+
.flex-md-row {
|
| 1646 |
+
-ms-flex-direction: row !important;
|
| 1647 |
+
flex-direction: row !important;
|
| 1648 |
+
}
|
| 1649 |
+
.flex-md-column {
|
| 1650 |
+
-ms-flex-direction: column !important;
|
| 1651 |
+
flex-direction: column !important;
|
| 1652 |
+
}
|
| 1653 |
+
.flex-md-row-reverse {
|
| 1654 |
+
-ms-flex-direction: row-reverse !important;
|
| 1655 |
+
flex-direction: row-reverse !important;
|
| 1656 |
+
}
|
| 1657 |
+
.flex-md-column-reverse {
|
| 1658 |
+
-ms-flex-direction: column-reverse !important;
|
| 1659 |
+
flex-direction: column-reverse !important;
|
| 1660 |
+
}
|
| 1661 |
+
.flex-md-wrap {
|
| 1662 |
+
-ms-flex-wrap: wrap !important;
|
| 1663 |
+
flex-wrap: wrap !important;
|
| 1664 |
+
}
|
| 1665 |
+
.flex-md-nowrap {
|
| 1666 |
+
-ms-flex-wrap: nowrap !important;
|
| 1667 |
+
flex-wrap: nowrap !important;
|
| 1668 |
+
}
|
| 1669 |
+
.flex-md-wrap-reverse {
|
| 1670 |
+
-ms-flex-wrap: wrap-reverse !important;
|
| 1671 |
+
flex-wrap: wrap-reverse !important;
|
| 1672 |
+
}
|
| 1673 |
+
.flex-md-fill {
|
| 1674 |
+
-ms-flex: 1 1 auto !important;
|
| 1675 |
+
flex: 1 1 auto !important;
|
| 1676 |
+
}
|
| 1677 |
+
.flex-md-grow-0 {
|
| 1678 |
+
-ms-flex-positive: 0 !important;
|
| 1679 |
+
flex-grow: 0 !important;
|
| 1680 |
+
}
|
| 1681 |
+
.flex-md-grow-1 {
|
| 1682 |
+
-ms-flex-positive: 1 !important;
|
| 1683 |
+
flex-grow: 1 !important;
|
| 1684 |
+
}
|
| 1685 |
+
.flex-md-shrink-0 {
|
| 1686 |
+
-ms-flex-negative: 0 !important;
|
| 1687 |
+
flex-shrink: 0 !important;
|
| 1688 |
+
}
|
| 1689 |
+
.flex-md-shrink-1 {
|
| 1690 |
+
-ms-flex-negative: 1 !important;
|
| 1691 |
+
flex-shrink: 1 !important;
|
| 1692 |
+
}
|
| 1693 |
+
.justify-content-md-start {
|
| 1694 |
+
-ms-flex-pack: start !important;
|
| 1695 |
+
justify-content: flex-start !important;
|
| 1696 |
+
}
|
| 1697 |
+
.justify-content-md-end {
|
| 1698 |
+
-ms-flex-pack: end !important;
|
| 1699 |
+
justify-content: flex-end !important;
|
| 1700 |
+
}
|
| 1701 |
+
.justify-content-md-center {
|
| 1702 |
+
-ms-flex-pack: center !important;
|
| 1703 |
+
justify-content: center !important;
|
| 1704 |
+
}
|
| 1705 |
+
.justify-content-md-between {
|
| 1706 |
+
-ms-flex-pack: justify !important;
|
| 1707 |
+
justify-content: space-between !important;
|
| 1708 |
+
}
|
| 1709 |
+
.justify-content-md-around {
|
| 1710 |
+
-ms-flex-pack: distribute !important;
|
| 1711 |
+
justify-content: space-around !important;
|
| 1712 |
+
}
|
| 1713 |
+
.align-items-md-start {
|
| 1714 |
+
-ms-flex-align: start !important;
|
| 1715 |
+
align-items: flex-start !important;
|
| 1716 |
+
}
|
| 1717 |
+
.align-items-md-end {
|
| 1718 |
+
-ms-flex-align: end !important;
|
| 1719 |
+
align-items: flex-end !important;
|
| 1720 |
+
}
|
| 1721 |
+
.align-items-md-center {
|
| 1722 |
+
-ms-flex-align: center !important;
|
| 1723 |
+
align-items: center !important;
|
| 1724 |
+
}
|
| 1725 |
+
.align-items-md-baseline {
|
| 1726 |
+
-ms-flex-align: baseline !important;
|
| 1727 |
+
align-items: baseline !important;
|
| 1728 |
+
}
|
| 1729 |
+
.align-items-md-stretch {
|
| 1730 |
+
-ms-flex-align: stretch !important;
|
| 1731 |
+
align-items: stretch !important;
|
| 1732 |
+
}
|
| 1733 |
+
.align-content-md-start {
|
| 1734 |
+
-ms-flex-line-pack: start !important;
|
| 1735 |
+
align-content: flex-start !important;
|
| 1736 |
+
}
|
| 1737 |
+
.align-content-md-end {
|
| 1738 |
+
-ms-flex-line-pack: end !important;
|
| 1739 |
+
align-content: flex-end !important;
|
| 1740 |
+
}
|
| 1741 |
+
.align-content-md-center {
|
| 1742 |
+
-ms-flex-line-pack: center !important;
|
| 1743 |
+
align-content: center !important;
|
| 1744 |
+
}
|
| 1745 |
+
.align-content-md-between {
|
| 1746 |
+
-ms-flex-line-pack: justify !important;
|
| 1747 |
+
align-content: space-between !important;
|
| 1748 |
+
}
|
| 1749 |
+
.align-content-md-around {
|
| 1750 |
+
-ms-flex-line-pack: distribute !important;
|
| 1751 |
+
align-content: space-around !important;
|
| 1752 |
+
}
|
| 1753 |
+
.align-content-md-stretch {
|
| 1754 |
+
-ms-flex-line-pack: stretch !important;
|
| 1755 |
+
align-content: stretch !important;
|
| 1756 |
+
}
|
| 1757 |
+
.align-self-md-auto {
|
| 1758 |
+
-ms-flex-item-align: auto !important;
|
| 1759 |
+
align-self: auto !important;
|
| 1760 |
+
}
|
| 1761 |
+
.align-self-md-start {
|
| 1762 |
+
-ms-flex-item-align: start !important;
|
| 1763 |
+
align-self: flex-start !important;
|
| 1764 |
+
}
|
| 1765 |
+
.align-self-md-end {
|
| 1766 |
+
-ms-flex-item-align: end !important;
|
| 1767 |
+
align-self: flex-end !important;
|
| 1768 |
+
}
|
| 1769 |
+
.align-self-md-center {
|
| 1770 |
+
-ms-flex-item-align: center !important;
|
| 1771 |
+
align-self: center !important;
|
| 1772 |
+
}
|
| 1773 |
+
.align-self-md-baseline {
|
| 1774 |
+
-ms-flex-item-align: baseline !important;
|
| 1775 |
+
align-self: baseline !important;
|
| 1776 |
+
}
|
| 1777 |
+
.align-self-md-stretch {
|
| 1778 |
+
-ms-flex-item-align: stretch !important;
|
| 1779 |
+
align-self: stretch !important;
|
| 1780 |
+
}
|
| 1781 |
+
}
|
| 1782 |
+
|
| 1783 |
+
@media (min-width: 992px) {
|
| 1784 |
+
.flex-lg-row {
|
| 1785 |
+
-ms-flex-direction: row !important;
|
| 1786 |
+
flex-direction: row !important;
|
| 1787 |
+
}
|
| 1788 |
+
.flex-lg-column {
|
| 1789 |
+
-ms-flex-direction: column !important;
|
| 1790 |
+
flex-direction: column !important;
|
| 1791 |
+
}
|
| 1792 |
+
.flex-lg-row-reverse {
|
| 1793 |
+
-ms-flex-direction: row-reverse !important;
|
| 1794 |
+
flex-direction: row-reverse !important;
|
| 1795 |
+
}
|
| 1796 |
+
.flex-lg-column-reverse {
|
| 1797 |
+
-ms-flex-direction: column-reverse !important;
|
| 1798 |
+
flex-direction: column-reverse !important;
|
| 1799 |
+
}
|
| 1800 |
+
.flex-lg-wrap {
|
| 1801 |
+
-ms-flex-wrap: wrap !important;
|
| 1802 |
+
flex-wrap: wrap !important;
|
| 1803 |
+
}
|
| 1804 |
+
.flex-lg-nowrap {
|
| 1805 |
+
-ms-flex-wrap: nowrap !important;
|
| 1806 |
+
flex-wrap: nowrap !important;
|
| 1807 |
+
}
|
| 1808 |
+
.flex-lg-wrap-reverse {
|
| 1809 |
+
-ms-flex-wrap: wrap-reverse !important;
|
| 1810 |
+
flex-wrap: wrap-reverse !important;
|
| 1811 |
+
}
|
| 1812 |
+
.flex-lg-fill {
|
| 1813 |
+
-ms-flex: 1 1 auto !important;
|
| 1814 |
+
flex: 1 1 auto !important;
|
| 1815 |
+
}
|
| 1816 |
+
.flex-lg-grow-0 {
|
| 1817 |
+
-ms-flex-positive: 0 !important;
|
| 1818 |
+
flex-grow: 0 !important;
|
| 1819 |
+
}
|
| 1820 |
+
.flex-lg-grow-1 {
|
| 1821 |
+
-ms-flex-positive: 1 !important;
|
| 1822 |
+
flex-grow: 1 !important;
|
| 1823 |
+
}
|
| 1824 |
+
.flex-lg-shrink-0 {
|
| 1825 |
+
-ms-flex-negative: 0 !important;
|
| 1826 |
+
flex-shrink: 0 !important;
|
| 1827 |
+
}
|
| 1828 |
+
.flex-lg-shrink-1 {
|
| 1829 |
+
-ms-flex-negative: 1 !important;
|
| 1830 |
+
flex-shrink: 1 !important;
|
| 1831 |
+
}
|
| 1832 |
+
.justify-content-lg-start {
|
| 1833 |
+
-ms-flex-pack: start !important;
|
| 1834 |
+
justify-content: flex-start !important;
|
| 1835 |
+
}
|
| 1836 |
+
.justify-content-lg-end {
|
| 1837 |
+
-ms-flex-pack: end !important;
|
| 1838 |
+
justify-content: flex-end !important;
|
| 1839 |
+
}
|
| 1840 |
+
.justify-content-lg-center {
|
| 1841 |
+
-ms-flex-pack: center !important;
|
| 1842 |
+
justify-content: center !important;
|
| 1843 |
+
}
|
| 1844 |
+
.justify-content-lg-between {
|
| 1845 |
+
-ms-flex-pack: justify !important;
|
| 1846 |
+
justify-content: space-between !important;
|
| 1847 |
+
}
|
| 1848 |
+
.justify-content-lg-around {
|
| 1849 |
+
-ms-flex-pack: distribute !important;
|
| 1850 |
+
justify-content: space-around !important;
|
| 1851 |
+
}
|
| 1852 |
+
.align-items-lg-start {
|
| 1853 |
+
-ms-flex-align: start !important;
|
| 1854 |
+
align-items: flex-start !important;
|
| 1855 |
+
}
|
| 1856 |
+
.align-items-lg-end {
|
| 1857 |
+
-ms-flex-align: end !important;
|
| 1858 |
+
align-items: flex-end !important;
|
| 1859 |
+
}
|
| 1860 |
+
.align-items-lg-center {
|
| 1861 |
+
-ms-flex-align: center !important;
|
| 1862 |
+
align-items: center !important;
|
| 1863 |
+
}
|
| 1864 |
+
.align-items-lg-baseline {
|
| 1865 |
+
-ms-flex-align: baseline !important;
|
| 1866 |
+
align-items: baseline !important;
|
| 1867 |
+
}
|
| 1868 |
+
.align-items-lg-stretch {
|
| 1869 |
+
-ms-flex-align: stretch !important;
|
| 1870 |
+
align-items: stretch !important;
|
| 1871 |
+
}
|
| 1872 |
+
.align-content-lg-start {
|
| 1873 |
+
-ms-flex-line-pack: start !important;
|
| 1874 |
+
align-content: flex-start !important;
|
| 1875 |
+
}
|
| 1876 |
+
.align-content-lg-end {
|
| 1877 |
+
-ms-flex-line-pack: end !important;
|
| 1878 |
+
align-content: flex-end !important;
|
| 1879 |
+
}
|
| 1880 |
+
.align-content-lg-center {
|
| 1881 |
+
-ms-flex-line-pack: center !important;
|
| 1882 |
+
align-content: center !important;
|
| 1883 |
+
}
|
| 1884 |
+
.align-content-lg-between {
|
| 1885 |
+
-ms-flex-line-pack: justify !important;
|
| 1886 |
+
align-content: space-between !important;
|
| 1887 |
+
}
|
| 1888 |
+
.align-content-lg-around {
|
| 1889 |
+
-ms-flex-line-pack: distribute !important;
|
| 1890 |
+
align-content: space-around !important;
|
| 1891 |
+
}
|
| 1892 |
+
.align-content-lg-stretch {
|
| 1893 |
+
-ms-flex-line-pack: stretch !important;
|
| 1894 |
+
align-content: stretch !important;
|
| 1895 |
+
}
|
| 1896 |
+
.align-self-lg-auto {
|
| 1897 |
+
-ms-flex-item-align: auto !important;
|
| 1898 |
+
align-self: auto !important;
|
| 1899 |
+
}
|
| 1900 |
+
.align-self-lg-start {
|
| 1901 |
+
-ms-flex-item-align: start !important;
|
| 1902 |
+
align-self: flex-start !important;
|
| 1903 |
+
}
|
| 1904 |
+
.align-self-lg-end {
|
| 1905 |
+
-ms-flex-item-align: end !important;
|
| 1906 |
+
align-self: flex-end !important;
|
| 1907 |
+
}
|
| 1908 |
+
.align-self-lg-center {
|
| 1909 |
+
-ms-flex-item-align: center !important;
|
| 1910 |
+
align-self: center !important;
|
| 1911 |
+
}
|
| 1912 |
+
.align-self-lg-baseline {
|
| 1913 |
+
-ms-flex-item-align: baseline !important;
|
| 1914 |
+
align-self: baseline !important;
|
| 1915 |
+
}
|
| 1916 |
+
.align-self-lg-stretch {
|
| 1917 |
+
-ms-flex-item-align: stretch !important;
|
| 1918 |
+
align-self: stretch !important;
|
| 1919 |
+
}
|
| 1920 |
+
}
|
| 1921 |
+
|
| 1922 |
+
@media (min-width: 1200px) {
|
| 1923 |
+
.flex-xl-row {
|
| 1924 |
+
-ms-flex-direction: row !important;
|
| 1925 |
+
flex-direction: row !important;
|
| 1926 |
+
}
|
| 1927 |
+
.flex-xl-column {
|
| 1928 |
+
-ms-flex-direction: column !important;
|
| 1929 |
+
flex-direction: column !important;
|
| 1930 |
+
}
|
| 1931 |
+
.flex-xl-row-reverse {
|
| 1932 |
+
-ms-flex-direction: row-reverse !important;
|
| 1933 |
+
flex-direction: row-reverse !important;
|
| 1934 |
+
}
|
| 1935 |
+
.flex-xl-column-reverse {
|
| 1936 |
+
-ms-flex-direction: column-reverse !important;
|
| 1937 |
+
flex-direction: column-reverse !important;
|
| 1938 |
+
}
|
| 1939 |
+
.flex-xl-wrap {
|
| 1940 |
+
-ms-flex-wrap: wrap !important;
|
| 1941 |
+
flex-wrap: wrap !important;
|
| 1942 |
+
}
|
| 1943 |
+
.flex-xl-nowrap {
|
| 1944 |
+
-ms-flex-wrap: nowrap !important;
|
| 1945 |
+
flex-wrap: nowrap !important;
|
| 1946 |
+
}
|
| 1947 |
+
.flex-xl-wrap-reverse {
|
| 1948 |
+
-ms-flex-wrap: wrap-reverse !important;
|
| 1949 |
+
flex-wrap: wrap-reverse !important;
|
| 1950 |
+
}
|
| 1951 |
+
.flex-xl-fill {
|
| 1952 |
+
-ms-flex: 1 1 auto !important;
|
| 1953 |
+
flex: 1 1 auto !important;
|
| 1954 |
+
}
|
| 1955 |
+
.flex-xl-grow-0 {
|
| 1956 |
+
-ms-flex-positive: 0 !important;
|
| 1957 |
+
flex-grow: 0 !important;
|
| 1958 |
+
}
|
| 1959 |
+
.flex-xl-grow-1 {
|
| 1960 |
+
-ms-flex-positive: 1 !important;
|
| 1961 |
+
flex-grow: 1 !important;
|
| 1962 |
+
}
|
| 1963 |
+
.flex-xl-shrink-0 {
|
| 1964 |
+
-ms-flex-negative: 0 !important;
|
| 1965 |
+
flex-shrink: 0 !important;
|
| 1966 |
+
}
|
| 1967 |
+
.flex-xl-shrink-1 {
|
| 1968 |
+
-ms-flex-negative: 1 !important;
|
| 1969 |
+
flex-shrink: 1 !important;
|
| 1970 |
+
}
|
| 1971 |
+
.justify-content-xl-start {
|
| 1972 |
+
-ms-flex-pack: start !important;
|
| 1973 |
+
justify-content: flex-start !important;
|
| 1974 |
+
}
|
| 1975 |
+
.justify-content-xl-end {
|
| 1976 |
+
-ms-flex-pack: end !important;
|
| 1977 |
+
justify-content: flex-end !important;
|
| 1978 |
+
}
|
| 1979 |
+
.justify-content-xl-center {
|
| 1980 |
+
-ms-flex-pack: center !important;
|
| 1981 |
+
justify-content: center !important;
|
| 1982 |
+
}
|
| 1983 |
+
.justify-content-xl-between {
|
| 1984 |
+
-ms-flex-pack: justify !important;
|
| 1985 |
+
justify-content: space-between !important;
|
| 1986 |
+
}
|
| 1987 |
+
.justify-content-xl-around {
|
| 1988 |
+
-ms-flex-pack: distribute !important;
|
| 1989 |
+
justify-content: space-around !important;
|
| 1990 |
+
}
|
| 1991 |
+
.align-items-xl-start {
|
| 1992 |
+
-ms-flex-align: start !important;
|
| 1993 |
+
align-items: flex-start !important;
|
| 1994 |
+
}
|
| 1995 |
+
.align-items-xl-end {
|
| 1996 |
+
-ms-flex-align: end !important;
|
| 1997 |
+
align-items: flex-end !important;
|
| 1998 |
+
}
|
| 1999 |
+
.align-items-xl-center {
|
| 2000 |
+
-ms-flex-align: center !important;
|
| 2001 |
+
align-items: center !important;
|
| 2002 |
+
}
|
| 2003 |
+
.align-items-xl-baseline {
|
| 2004 |
+
-ms-flex-align: baseline !important;
|
| 2005 |
+
align-items: baseline !important;
|
| 2006 |
+
}
|
| 2007 |
+
.align-items-xl-stretch {
|
| 2008 |
+
-ms-flex-align: stretch !important;
|
| 2009 |
+
align-items: stretch !important;
|
| 2010 |
+
}
|
| 2011 |
+
.align-content-xl-start {
|
| 2012 |
+
-ms-flex-line-pack: start !important;
|
| 2013 |
+
align-content: flex-start !important;
|
| 2014 |
+
}
|
| 2015 |
+
.align-content-xl-end {
|
| 2016 |
+
-ms-flex-line-pack: end !important;
|
| 2017 |
+
align-content: flex-end !important;
|
| 2018 |
+
}
|
| 2019 |
+
.align-content-xl-center {
|
| 2020 |
+
-ms-flex-line-pack: center !important;
|
| 2021 |
+
align-content: center !important;
|
| 2022 |
+
}
|
| 2023 |
+
.align-content-xl-between {
|
| 2024 |
+
-ms-flex-line-pack: justify !important;
|
| 2025 |
+
align-content: space-between !important;
|
| 2026 |
+
}
|
| 2027 |
+
.align-content-xl-around {
|
| 2028 |
+
-ms-flex-line-pack: distribute !important;
|
| 2029 |
+
align-content: space-around !important;
|
| 2030 |
+
}
|
| 2031 |
+
.align-content-xl-stretch {
|
| 2032 |
+
-ms-flex-line-pack: stretch !important;
|
| 2033 |
+
align-content: stretch !important;
|
| 2034 |
+
}
|
| 2035 |
+
.align-self-xl-auto {
|
| 2036 |
+
-ms-flex-item-align: auto !important;
|
| 2037 |
+
align-self: auto !important;
|
| 2038 |
+
}
|
| 2039 |
+
.align-self-xl-start {
|
| 2040 |
+
-ms-flex-item-align: start !important;
|
| 2041 |
+
align-self: flex-start !important;
|
| 2042 |
+
}
|
| 2043 |
+
.align-self-xl-end {
|
| 2044 |
+
-ms-flex-item-align: end !important;
|
| 2045 |
+
align-self: flex-end !important;
|
| 2046 |
+
}
|
| 2047 |
+
.align-self-xl-center {
|
| 2048 |
+
-ms-flex-item-align: center !important;
|
| 2049 |
+
align-self: center !important;
|
| 2050 |
+
}
|
| 2051 |
+
.align-self-xl-baseline {
|
| 2052 |
+
-ms-flex-item-align: baseline !important;
|
| 2053 |
+
align-self: baseline !important;
|
| 2054 |
+
}
|
| 2055 |
+
.align-self-xl-stretch {
|
| 2056 |
+
-ms-flex-item-align: stretch !important;
|
| 2057 |
+
align-self: stretch !important;
|
| 2058 |
+
}
|
| 2059 |
+
}
|
| 2060 |
+
|
| 2061 |
+
.m-0 {
|
| 2062 |
+
margin: 0 !important;
|
| 2063 |
+
}
|
| 2064 |
+
|
| 2065 |
+
.mt-0,
|
| 2066 |
+
.my-0 {
|
| 2067 |
+
margin-top: 0 !important;
|
| 2068 |
+
}
|
| 2069 |
+
|
| 2070 |
+
.mr-0,
|
| 2071 |
+
.mx-0 {
|
| 2072 |
+
margin-right: 0 !important;
|
| 2073 |
+
}
|
| 2074 |
+
|
| 2075 |
+
.mb-0,
|
| 2076 |
+
.my-0 {
|
| 2077 |
+
margin-bottom: 0 !important;
|
| 2078 |
+
}
|
| 2079 |
+
|
| 2080 |
+
.ml-0,
|
| 2081 |
+
.mx-0 {
|
| 2082 |
+
margin-left: 0 !important;
|
| 2083 |
+
}
|
| 2084 |
+
|
| 2085 |
+
.m-1 {
|
| 2086 |
+
margin: 0.25rem !important;
|
| 2087 |
+
}
|
| 2088 |
+
|
| 2089 |
+
.mt-1,
|
| 2090 |
+
.my-1 {
|
| 2091 |
+
margin-top: 0.25rem !important;
|
| 2092 |
+
}
|
| 2093 |
+
|
| 2094 |
+
.mr-1,
|
| 2095 |
+
.mx-1 {
|
| 2096 |
+
margin-right: 0.25rem !important;
|
| 2097 |
+
}
|
| 2098 |
+
|
| 2099 |
+
.mb-1,
|
| 2100 |
+
.my-1 {
|
| 2101 |
+
margin-bottom: 0.25rem !important;
|
| 2102 |
+
}
|
| 2103 |
+
|
| 2104 |
+
.ml-1,
|
| 2105 |
+
.mx-1 {
|
| 2106 |
+
margin-left: 0.25rem !important;
|
| 2107 |
+
}
|
| 2108 |
+
|
| 2109 |
+
.m-2 {
|
| 2110 |
+
margin: 0.5rem !important;
|
| 2111 |
+
}
|
| 2112 |
+
|
| 2113 |
+
.mt-2,
|
| 2114 |
+
.my-2 {
|
| 2115 |
+
margin-top: 0.5rem !important;
|
| 2116 |
+
}
|
| 2117 |
+
|
| 2118 |
+
.mr-2,
|
| 2119 |
+
.mx-2 {
|
| 2120 |
+
margin-right: 0.5rem !important;
|
| 2121 |
+
}
|
| 2122 |
+
|
| 2123 |
+
.mb-2,
|
| 2124 |
+
.my-2 {
|
| 2125 |
+
margin-bottom: 0.5rem !important;
|
| 2126 |
+
}
|
| 2127 |
+
|
| 2128 |
+
.ml-2,
|
| 2129 |
+
.mx-2 {
|
| 2130 |
+
margin-left: 0.5rem !important;
|
| 2131 |
+
}
|
| 2132 |
+
|
| 2133 |
+
.m-3 {
|
| 2134 |
+
margin: 1rem !important;
|
| 2135 |
+
}
|
| 2136 |
+
|
| 2137 |
+
.mt-3,
|
| 2138 |
+
.my-3 {
|
| 2139 |
+
margin-top: 1rem !important;
|
| 2140 |
+
}
|
| 2141 |
+
|
| 2142 |
+
.mr-3,
|
| 2143 |
+
.mx-3 {
|
| 2144 |
+
margin-right: 1rem !important;
|
| 2145 |
+
}
|
| 2146 |
+
|
| 2147 |
+
.mb-3,
|
| 2148 |
+
.my-3 {
|
| 2149 |
+
margin-bottom: 1rem !important;
|
| 2150 |
+
}
|
| 2151 |
+
|
| 2152 |
+
.ml-3,
|
| 2153 |
+
.mx-3 {
|
| 2154 |
+
margin-left: 1rem !important;
|
| 2155 |
+
}
|
| 2156 |
+
|
| 2157 |
+
.m-4 {
|
| 2158 |
+
margin: 1.5rem !important;
|
| 2159 |
+
}
|
| 2160 |
+
|
| 2161 |
+
.mt-4,
|
| 2162 |
+
.my-4 {
|
| 2163 |
+
margin-top: 1.5rem !important;
|
| 2164 |
+
}
|
| 2165 |
+
|
| 2166 |
+
.mr-4,
|
| 2167 |
+
.mx-4 {
|
| 2168 |
+
margin-right: 1.5rem !important;
|
| 2169 |
+
}
|
| 2170 |
+
|
| 2171 |
+
.mb-4,
|
| 2172 |
+
.my-4 {
|
| 2173 |
+
margin-bottom: 1.5rem !important;
|
| 2174 |
+
}
|
| 2175 |
+
|
| 2176 |
+
.ml-4,
|
| 2177 |
+
.mx-4 {
|
| 2178 |
+
margin-left: 1.5rem !important;
|
| 2179 |
+
}
|
| 2180 |
+
|
| 2181 |
+
.m-5 {
|
| 2182 |
+
margin: 3rem !important;
|
| 2183 |
+
}
|
| 2184 |
+
|
| 2185 |
+
.mt-5,
|
| 2186 |
+
.my-5 {
|
| 2187 |
+
margin-top: 3rem !important;
|
| 2188 |
+
}
|
| 2189 |
+
|
| 2190 |
+
.mr-5,
|
| 2191 |
+
.mx-5 {
|
| 2192 |
+
margin-right: 3rem !important;
|
| 2193 |
+
}
|
| 2194 |
+
|
| 2195 |
+
.mb-5,
|
| 2196 |
+
.my-5 {
|
| 2197 |
+
margin-bottom: 3rem !important;
|
| 2198 |
+
}
|
| 2199 |
+
|
| 2200 |
+
.ml-5,
|
| 2201 |
+
.mx-5 {
|
| 2202 |
+
margin-left: 3rem !important;
|
| 2203 |
+
}
|
| 2204 |
+
|
| 2205 |
+
.p-0 {
|
| 2206 |
+
padding: 0 !important;
|
| 2207 |
+
}
|
| 2208 |
+
|
| 2209 |
+
.pt-0,
|
| 2210 |
+
.py-0 {
|
| 2211 |
+
padding-top: 0 !important;
|
| 2212 |
+
}
|
| 2213 |
+
|
| 2214 |
+
.pr-0,
|
| 2215 |
+
.px-0 {
|
| 2216 |
+
padding-right: 0 !important;
|
| 2217 |
+
}
|
| 2218 |
+
|
| 2219 |
+
.pb-0,
|
| 2220 |
+
.py-0 {
|
| 2221 |
+
padding-bottom: 0 !important;
|
| 2222 |
+
}
|
| 2223 |
+
|
| 2224 |
+
.pl-0,
|
| 2225 |
+
.px-0 {
|
| 2226 |
+
padding-left: 0 !important;
|
| 2227 |
+
}
|
| 2228 |
+
|
| 2229 |
+
.p-1 {
|
| 2230 |
+
padding: 0.25rem !important;
|
| 2231 |
+
}
|
| 2232 |
+
|
| 2233 |
+
.pt-1,
|
| 2234 |
+
.py-1 {
|
| 2235 |
+
padding-top: 0.25rem !important;
|
| 2236 |
+
}
|
| 2237 |
+
|
| 2238 |
+
.pr-1,
|
| 2239 |
+
.px-1 {
|
| 2240 |
+
padding-right: 0.25rem !important;
|
| 2241 |
+
}
|
| 2242 |
+
|
| 2243 |
+
.pb-1,
|
| 2244 |
+
.py-1 {
|
| 2245 |
+
padding-bottom: 0.25rem !important;
|
| 2246 |
+
}
|
| 2247 |
+
|
| 2248 |
+
.pl-1,
|
| 2249 |
+
.px-1 {
|
| 2250 |
+
padding-left: 0.25rem !important;
|
| 2251 |
+
}
|
| 2252 |
+
|
| 2253 |
+
.p-2 {
|
| 2254 |
+
padding: 0.5rem !important;
|
| 2255 |
+
}
|
| 2256 |
+
|
| 2257 |
+
.pt-2,
|
| 2258 |
+
.py-2 {
|
| 2259 |
+
padding-top: 0.5rem !important;
|
| 2260 |
+
}
|
| 2261 |
+
|
| 2262 |
+
.pr-2,
|
| 2263 |
+
.px-2 {
|
| 2264 |
+
padding-right: 0.5rem !important;
|
| 2265 |
+
}
|
| 2266 |
+
|
| 2267 |
+
.pb-2,
|
| 2268 |
+
.py-2 {
|
| 2269 |
+
padding-bottom: 0.5rem !important;
|
| 2270 |
+
}
|
| 2271 |
+
|
| 2272 |
+
.pl-2,
|
| 2273 |
+
.px-2 {
|
| 2274 |
+
padding-left: 0.5rem !important;
|
| 2275 |
+
}
|
| 2276 |
+
|
| 2277 |
+
.p-3 {
|
| 2278 |
+
padding: 1rem !important;
|
| 2279 |
+
}
|
| 2280 |
+
|
| 2281 |
+
.pt-3,
|
| 2282 |
+
.py-3 {
|
| 2283 |
+
padding-top: 1rem !important;
|
| 2284 |
+
}
|
| 2285 |
+
|
| 2286 |
+
.pr-3,
|
| 2287 |
+
.px-3 {
|
| 2288 |
+
padding-right: 1rem !important;
|
| 2289 |
+
}
|
| 2290 |
+
|
| 2291 |
+
.pb-3,
|
| 2292 |
+
.py-3 {
|
| 2293 |
+
padding-bottom: 1rem !important;
|
| 2294 |
+
}
|
| 2295 |
+
|
| 2296 |
+
.pl-3,
|
| 2297 |
+
.px-3 {
|
| 2298 |
+
padding-left: 1rem !important;
|
| 2299 |
+
}
|
| 2300 |
+
|
| 2301 |
+
.p-4 {
|
| 2302 |
+
padding: 1.5rem !important;
|
| 2303 |
+
}
|
| 2304 |
+
|
| 2305 |
+
.pt-4,
|
| 2306 |
+
.py-4 {
|
| 2307 |
+
padding-top: 1.5rem !important;
|
| 2308 |
+
}
|
| 2309 |
+
|
| 2310 |
+
.pr-4,
|
| 2311 |
+
.px-4 {
|
| 2312 |
+
padding-right: 1.5rem !important;
|
| 2313 |
+
}
|
| 2314 |
+
|
| 2315 |
+
.pb-4,
|
| 2316 |
+
.py-4 {
|
| 2317 |
+
padding-bottom: 1.5rem !important;
|
| 2318 |
+
}
|
| 2319 |
+
|
| 2320 |
+
.pl-4,
|
| 2321 |
+
.px-4 {
|
| 2322 |
+
padding-left: 1.5rem !important;
|
| 2323 |
+
}
|
| 2324 |
+
|
| 2325 |
+
.p-5 {
|
| 2326 |
+
padding: 3rem !important;
|
| 2327 |
+
}
|
| 2328 |
+
|
| 2329 |
+
.pt-5,
|
| 2330 |
+
.py-5 {
|
| 2331 |
+
padding-top: 3rem !important;
|
| 2332 |
+
}
|
| 2333 |
+
|
| 2334 |
+
.pr-5,
|
| 2335 |
+
.px-5 {
|
| 2336 |
+
padding-right: 3rem !important;
|
| 2337 |
+
}
|
| 2338 |
+
|
| 2339 |
+
.pb-5,
|
| 2340 |
+
.py-5 {
|
| 2341 |
+
padding-bottom: 3rem !important;
|
| 2342 |
+
}
|
| 2343 |
+
|
| 2344 |
+
.pl-5,
|
| 2345 |
+
.px-5 {
|
| 2346 |
+
padding-left: 3rem !important;
|
| 2347 |
+
}
|
| 2348 |
+
|
| 2349 |
+
.m-n1 {
|
| 2350 |
+
margin: -0.25rem !important;
|
| 2351 |
+
}
|
| 2352 |
+
|
| 2353 |
+
.mt-n1,
|
| 2354 |
+
.my-n1 {
|
| 2355 |
+
margin-top: -0.25rem !important;
|
| 2356 |
+
}
|
| 2357 |
+
|
| 2358 |
+
.mr-n1,
|
| 2359 |
+
.mx-n1 {
|
| 2360 |
+
margin-right: -0.25rem !important;
|
| 2361 |
+
}
|
| 2362 |
+
|
| 2363 |
+
.mb-n1,
|
| 2364 |
+
.my-n1 {
|
| 2365 |
+
margin-bottom: -0.25rem !important;
|
| 2366 |
+
}
|
| 2367 |
+
|
| 2368 |
+
.ml-n1,
|
| 2369 |
+
.mx-n1 {
|
| 2370 |
+
margin-left: -0.25rem !important;
|
| 2371 |
+
}
|
| 2372 |
+
|
| 2373 |
+
.m-n2 {
|
| 2374 |
+
margin: -0.5rem !important;
|
| 2375 |
+
}
|
| 2376 |
+
|
| 2377 |
+
.mt-n2,
|
| 2378 |
+
.my-n2 {
|
| 2379 |
+
margin-top: -0.5rem !important;
|
| 2380 |
+
}
|
| 2381 |
+
|
| 2382 |
+
.mr-n2,
|
| 2383 |
+
.mx-n2 {
|
| 2384 |
+
margin-right: -0.5rem !important;
|
| 2385 |
+
}
|
| 2386 |
+
|
| 2387 |
+
.mb-n2,
|
| 2388 |
+
.my-n2 {
|
| 2389 |
+
margin-bottom: -0.5rem !important;
|
| 2390 |
+
}
|
| 2391 |
+
|
| 2392 |
+
.ml-n2,
|
| 2393 |
+
.mx-n2 {
|
| 2394 |
+
margin-left: -0.5rem !important;
|
| 2395 |
+
}
|
| 2396 |
+
|
| 2397 |
+
.m-n3 {
|
| 2398 |
+
margin: -1rem !important;
|
| 2399 |
+
}
|
| 2400 |
+
|
| 2401 |
+
.mt-n3,
|
| 2402 |
+
.my-n3 {
|
| 2403 |
+
margin-top: -1rem !important;
|
| 2404 |
+
}
|
| 2405 |
+
|
| 2406 |
+
.mr-n3,
|
| 2407 |
+
.mx-n3 {
|
| 2408 |
+
margin-right: -1rem !important;
|
| 2409 |
+
}
|
| 2410 |
+
|
| 2411 |
+
.mb-n3,
|
| 2412 |
+
.my-n3 {
|
| 2413 |
+
margin-bottom: -1rem !important;
|
| 2414 |
+
}
|
| 2415 |
+
|
| 2416 |
+
.ml-n3,
|
| 2417 |
+
.mx-n3 {
|
| 2418 |
+
margin-left: -1rem !important;
|
| 2419 |
+
}
|
| 2420 |
+
|
| 2421 |
+
.m-n4 {
|
| 2422 |
+
margin: -1.5rem !important;
|
| 2423 |
+
}
|
| 2424 |
+
|
| 2425 |
+
.mt-n4,
|
| 2426 |
+
.my-n4 {
|
| 2427 |
+
margin-top: -1.5rem !important;
|
| 2428 |
+
}
|
| 2429 |
+
|
| 2430 |
+
.mr-n4,
|
| 2431 |
+
.mx-n4 {
|
| 2432 |
+
margin-right: -1.5rem !important;
|
| 2433 |
+
}
|
| 2434 |
+
|
| 2435 |
+
.mb-n4,
|
| 2436 |
+
.my-n4 {
|
| 2437 |
+
margin-bottom: -1.5rem !important;
|
| 2438 |
+
}
|
| 2439 |
+
|
| 2440 |
+
.ml-n4,
|
| 2441 |
+
.mx-n4 {
|
| 2442 |
+
margin-left: -1.5rem !important;
|
| 2443 |
+
}
|
| 2444 |
+
|
| 2445 |
+
.m-n5 {
|
| 2446 |
+
margin: -3rem !important;
|
| 2447 |
+
}
|
| 2448 |
+
|
| 2449 |
+
.mt-n5,
|
| 2450 |
+
.my-n5 {
|
| 2451 |
+
margin-top: -3rem !important;
|
| 2452 |
+
}
|
| 2453 |
+
|
| 2454 |
+
.mr-n5,
|
| 2455 |
+
.mx-n5 {
|
| 2456 |
+
margin-right: -3rem !important;
|
| 2457 |
+
}
|
| 2458 |
+
|
| 2459 |
+
.mb-n5,
|
| 2460 |
+
.my-n5 {
|
| 2461 |
+
margin-bottom: -3rem !important;
|
| 2462 |
+
}
|
| 2463 |
+
|
| 2464 |
+
.ml-n5,
|
| 2465 |
+
.mx-n5 {
|
| 2466 |
+
margin-left: -3rem !important;
|
| 2467 |
+
}
|
| 2468 |
+
|
| 2469 |
+
.m-auto {
|
| 2470 |
+
margin: auto !important;
|
| 2471 |
+
}
|
| 2472 |
+
|
| 2473 |
+
.mt-auto,
|
| 2474 |
+
.my-auto {
|
| 2475 |
+
margin-top: auto !important;
|
| 2476 |
+
}
|
| 2477 |
+
|
| 2478 |
+
.mr-auto,
|
| 2479 |
+
.mx-auto {
|
| 2480 |
+
margin-right: auto !important;
|
| 2481 |
+
}
|
| 2482 |
+
|
| 2483 |
+
.mb-auto,
|
| 2484 |
+
.my-auto {
|
| 2485 |
+
margin-bottom: auto !important;
|
| 2486 |
+
}
|
| 2487 |
+
|
| 2488 |
+
.ml-auto,
|
| 2489 |
+
.mx-auto {
|
| 2490 |
+
margin-left: auto !important;
|
| 2491 |
+
}
|
| 2492 |
+
|
| 2493 |
+
@media (min-width: 576px) {
|
| 2494 |
+
.m-sm-0 {
|
| 2495 |
+
margin: 0 !important;
|
| 2496 |
+
}
|
| 2497 |
+
.mt-sm-0,
|
| 2498 |
+
.my-sm-0 {
|
| 2499 |
+
margin-top: 0 !important;
|
| 2500 |
+
}
|
| 2501 |
+
.mr-sm-0,
|
| 2502 |
+
.mx-sm-0 {
|
| 2503 |
+
margin-right: 0 !important;
|
| 2504 |
+
}
|
| 2505 |
+
.mb-sm-0,
|
| 2506 |
+
.my-sm-0 {
|
| 2507 |
+
margin-bottom: 0 !important;
|
| 2508 |
+
}
|
| 2509 |
+
.ml-sm-0,
|
| 2510 |
+
.mx-sm-0 {
|
| 2511 |
+
margin-left: 0 !important;
|
| 2512 |
+
}
|
| 2513 |
+
.m-sm-1 {
|
| 2514 |
+
margin: 0.25rem !important;
|
| 2515 |
+
}
|
| 2516 |
+
.mt-sm-1,
|
| 2517 |
+
.my-sm-1 {
|
| 2518 |
+
margin-top: 0.25rem !important;
|
| 2519 |
+
}
|
| 2520 |
+
.mr-sm-1,
|
| 2521 |
+
.mx-sm-1 {
|
| 2522 |
+
margin-right: 0.25rem !important;
|
| 2523 |
+
}
|
| 2524 |
+
.mb-sm-1,
|
| 2525 |
+
.my-sm-1 {
|
| 2526 |
+
margin-bottom: 0.25rem !important;
|
| 2527 |
+
}
|
| 2528 |
+
.ml-sm-1,
|
| 2529 |
+
.mx-sm-1 {
|
| 2530 |
+
margin-left: 0.25rem !important;
|
| 2531 |
+
}
|
| 2532 |
+
.m-sm-2 {
|
| 2533 |
+
margin: 0.5rem !important;
|
| 2534 |
+
}
|
| 2535 |
+
.mt-sm-2,
|
| 2536 |
+
.my-sm-2 {
|
| 2537 |
+
margin-top: 0.5rem !important;
|
| 2538 |
+
}
|
| 2539 |
+
.mr-sm-2,
|
| 2540 |
+
.mx-sm-2 {
|
| 2541 |
+
margin-right: 0.5rem !important;
|
| 2542 |
+
}
|
| 2543 |
+
.mb-sm-2,
|
| 2544 |
+
.my-sm-2 {
|
| 2545 |
+
margin-bottom: 0.5rem !important;
|
| 2546 |
+
}
|
| 2547 |
+
.ml-sm-2,
|
| 2548 |
+
.mx-sm-2 {
|
| 2549 |
+
margin-left: 0.5rem !important;
|
| 2550 |
+
}
|
| 2551 |
+
.m-sm-3 {
|
| 2552 |
+
margin: 1rem !important;
|
| 2553 |
+
}
|
| 2554 |
+
.mt-sm-3,
|
| 2555 |
+
.my-sm-3 {
|
| 2556 |
+
margin-top: 1rem !important;
|
| 2557 |
+
}
|
| 2558 |
+
.mr-sm-3,
|
| 2559 |
+
.mx-sm-3 {
|
| 2560 |
+
margin-right: 1rem !important;
|
| 2561 |
+
}
|
| 2562 |
+
.mb-sm-3,
|
| 2563 |
+
.my-sm-3 {
|
| 2564 |
+
margin-bottom: 1rem !important;
|
| 2565 |
+
}
|
| 2566 |
+
.ml-sm-3,
|
| 2567 |
+
.mx-sm-3 {
|
| 2568 |
+
margin-left: 1rem !important;
|
| 2569 |
+
}
|
| 2570 |
+
.m-sm-4 {
|
| 2571 |
+
margin: 1.5rem !important;
|
| 2572 |
+
}
|
| 2573 |
+
.mt-sm-4,
|
| 2574 |
+
.my-sm-4 {
|
| 2575 |
+
margin-top: 1.5rem !important;
|
| 2576 |
+
}
|
| 2577 |
+
.mr-sm-4,
|
| 2578 |
+
.mx-sm-4 {
|
| 2579 |
+
margin-right: 1.5rem !important;
|
| 2580 |
+
}
|
| 2581 |
+
.mb-sm-4,
|
| 2582 |
+
.my-sm-4 {
|
| 2583 |
+
margin-bottom: 1.5rem !important;
|
| 2584 |
+
}
|
| 2585 |
+
.ml-sm-4,
|
| 2586 |
+
.mx-sm-4 {
|
| 2587 |
+
margin-left: 1.5rem !important;
|
| 2588 |
+
}
|
| 2589 |
+
.m-sm-5 {
|
| 2590 |
+
margin: 3rem !important;
|
| 2591 |
+
}
|
| 2592 |
+
.mt-sm-5,
|
| 2593 |
+
.my-sm-5 {
|
| 2594 |
+
margin-top: 3rem !important;
|
| 2595 |
+
}
|
| 2596 |
+
.mr-sm-5,
|
| 2597 |
+
.mx-sm-5 {
|
| 2598 |
+
margin-right: 3rem !important;
|
| 2599 |
+
}
|
| 2600 |
+
.mb-sm-5,
|
| 2601 |
+
.my-sm-5 {
|
| 2602 |
+
margin-bottom: 3rem !important;
|
| 2603 |
+
}
|
| 2604 |
+
.ml-sm-5,
|
| 2605 |
+
.mx-sm-5 {
|
| 2606 |
+
margin-left: 3rem !important;
|
| 2607 |
+
}
|
| 2608 |
+
.p-sm-0 {
|
| 2609 |
+
padding: 0 !important;
|
| 2610 |
+
}
|
| 2611 |
+
.pt-sm-0,
|
| 2612 |
+
.py-sm-0 {
|
| 2613 |
+
padding-top: 0 !important;
|
| 2614 |
+
}
|
| 2615 |
+
.pr-sm-0,
|
| 2616 |
+
.px-sm-0 {
|
| 2617 |
+
padding-right: 0 !important;
|
| 2618 |
+
}
|
| 2619 |
+
.pb-sm-0,
|
| 2620 |
+
.py-sm-0 {
|
| 2621 |
+
padding-bottom: 0 !important;
|
| 2622 |
+
}
|
| 2623 |
+
.pl-sm-0,
|
| 2624 |
+
.px-sm-0 {
|
| 2625 |
+
padding-left: 0 !important;
|
| 2626 |
+
}
|
| 2627 |
+
.p-sm-1 {
|
| 2628 |
+
padding: 0.25rem !important;
|
| 2629 |
+
}
|
| 2630 |
+
.pt-sm-1,
|
| 2631 |
+
.py-sm-1 {
|
| 2632 |
+
padding-top: 0.25rem !important;
|
| 2633 |
+
}
|
| 2634 |
+
.pr-sm-1,
|
| 2635 |
+
.px-sm-1 {
|
| 2636 |
+
padding-right: 0.25rem !important;
|
| 2637 |
+
}
|
| 2638 |
+
.pb-sm-1,
|
| 2639 |
+
.py-sm-1 {
|
| 2640 |
+
padding-bottom: 0.25rem !important;
|
| 2641 |
+
}
|
| 2642 |
+
.pl-sm-1,
|
| 2643 |
+
.px-sm-1 {
|
| 2644 |
+
padding-left: 0.25rem !important;
|
| 2645 |
+
}
|
| 2646 |
+
.p-sm-2 {
|
| 2647 |
+
padding: 0.5rem !important;
|
| 2648 |
+
}
|
| 2649 |
+
.pt-sm-2,
|
| 2650 |
+
.py-sm-2 {
|
| 2651 |
+
padding-top: 0.5rem !important;
|
| 2652 |
+
}
|
| 2653 |
+
.pr-sm-2,
|
| 2654 |
+
.px-sm-2 {
|
| 2655 |
+
padding-right: 0.5rem !important;
|
| 2656 |
+
}
|
| 2657 |
+
.pb-sm-2,
|
| 2658 |
+
.py-sm-2 {
|
| 2659 |
+
padding-bottom: 0.5rem !important;
|
| 2660 |
+
}
|
| 2661 |
+
.pl-sm-2,
|
| 2662 |
+
.px-sm-2 {
|
| 2663 |
+
padding-left: 0.5rem !important;
|
| 2664 |
+
}
|
| 2665 |
+
.p-sm-3 {
|
| 2666 |
+
padding: 1rem !important;
|
| 2667 |
+
}
|
| 2668 |
+
.pt-sm-3,
|
| 2669 |
+
.py-sm-3 {
|
| 2670 |
+
padding-top: 1rem !important;
|
| 2671 |
+
}
|
| 2672 |
+
.pr-sm-3,
|
| 2673 |
+
.px-sm-3 {
|
| 2674 |
+
padding-right: 1rem !important;
|
| 2675 |
+
}
|
| 2676 |
+
.pb-sm-3,
|
| 2677 |
+
.py-sm-3 {
|
| 2678 |
+
padding-bottom: 1rem !important;
|
| 2679 |
+
}
|
| 2680 |
+
.pl-sm-3,
|
| 2681 |
+
.px-sm-3 {
|
| 2682 |
+
padding-left: 1rem !important;
|
| 2683 |
+
}
|
| 2684 |
+
.p-sm-4 {
|
| 2685 |
+
padding: 1.5rem !important;
|
| 2686 |
+
}
|
| 2687 |
+
.pt-sm-4,
|
| 2688 |
+
.py-sm-4 {
|
| 2689 |
+
padding-top: 1.5rem !important;
|
| 2690 |
+
}
|
| 2691 |
+
.pr-sm-4,
|
| 2692 |
+
.px-sm-4 {
|
| 2693 |
+
padding-right: 1.5rem !important;
|
| 2694 |
+
}
|
| 2695 |
+
.pb-sm-4,
|
| 2696 |
+
.py-sm-4 {
|
| 2697 |
+
padding-bottom: 1.5rem !important;
|
| 2698 |
+
}
|
| 2699 |
+
.pl-sm-4,
|
| 2700 |
+
.px-sm-4 {
|
| 2701 |
+
padding-left: 1.5rem !important;
|
| 2702 |
+
}
|
| 2703 |
+
.p-sm-5 {
|
| 2704 |
+
padding: 3rem !important;
|
| 2705 |
+
}
|
| 2706 |
+
.pt-sm-5,
|
| 2707 |
+
.py-sm-5 {
|
| 2708 |
+
padding-top: 3rem !important;
|
| 2709 |
+
}
|
| 2710 |
+
.pr-sm-5,
|
| 2711 |
+
.px-sm-5 {
|
| 2712 |
+
padding-right: 3rem !important;
|
| 2713 |
+
}
|
| 2714 |
+
.pb-sm-5,
|
| 2715 |
+
.py-sm-5 {
|
| 2716 |
+
padding-bottom: 3rem !important;
|
| 2717 |
+
}
|
| 2718 |
+
.pl-sm-5,
|
| 2719 |
+
.px-sm-5 {
|
| 2720 |
+
padding-left: 3rem !important;
|
| 2721 |
+
}
|
| 2722 |
+
.m-sm-n1 {
|
| 2723 |
+
margin: -0.25rem !important;
|
| 2724 |
+
}
|
| 2725 |
+
.mt-sm-n1,
|
| 2726 |
+
.my-sm-n1 {
|
| 2727 |
+
margin-top: -0.25rem !important;
|
| 2728 |
+
}
|
| 2729 |
+
.mr-sm-n1,
|
| 2730 |
+
.mx-sm-n1 {
|
| 2731 |
+
margin-right: -0.25rem !important;
|
| 2732 |
+
}
|
| 2733 |
+
.mb-sm-n1,
|
| 2734 |
+
.my-sm-n1 {
|
| 2735 |
+
margin-bottom: -0.25rem !important;
|
| 2736 |
+
}
|
| 2737 |
+
.ml-sm-n1,
|
| 2738 |
+
.mx-sm-n1 {
|
| 2739 |
+
margin-left: -0.25rem !important;
|
| 2740 |
+
}
|
| 2741 |
+
.m-sm-n2 {
|
| 2742 |
+
margin: -0.5rem !important;
|
| 2743 |
+
}
|
| 2744 |
+
.mt-sm-n2,
|
| 2745 |
+
.my-sm-n2 {
|
| 2746 |
+
margin-top: -0.5rem !important;
|
| 2747 |
+
}
|
| 2748 |
+
.mr-sm-n2,
|
| 2749 |
+
.mx-sm-n2 {
|
| 2750 |
+
margin-right: -0.5rem !important;
|
| 2751 |
+
}
|
| 2752 |
+
.mb-sm-n2,
|
| 2753 |
+
.my-sm-n2 {
|
| 2754 |
+
margin-bottom: -0.5rem !important;
|
| 2755 |
+
}
|
| 2756 |
+
.ml-sm-n2,
|
| 2757 |
+
.mx-sm-n2 {
|
| 2758 |
+
margin-left: -0.5rem !important;
|
| 2759 |
+
}
|
| 2760 |
+
.m-sm-n3 {
|
| 2761 |
+
margin: -1rem !important;
|
| 2762 |
+
}
|
| 2763 |
+
.mt-sm-n3,
|
| 2764 |
+
.my-sm-n3 {
|
| 2765 |
+
margin-top: -1rem !important;
|
| 2766 |
+
}
|
| 2767 |
+
.mr-sm-n3,
|
| 2768 |
+
.mx-sm-n3 {
|
| 2769 |
+
margin-right: -1rem !important;
|
| 2770 |
+
}
|
| 2771 |
+
.mb-sm-n3,
|
| 2772 |
+
.my-sm-n3 {
|
| 2773 |
+
margin-bottom: -1rem !important;
|
| 2774 |
+
}
|
| 2775 |
+
.ml-sm-n3,
|
| 2776 |
+
.mx-sm-n3 {
|
| 2777 |
+
margin-left: -1rem !important;
|
| 2778 |
+
}
|
| 2779 |
+
.m-sm-n4 {
|
| 2780 |
+
margin: -1.5rem !important;
|
| 2781 |
+
}
|
| 2782 |
+
.mt-sm-n4,
|
| 2783 |
+
.my-sm-n4 {
|
| 2784 |
+
margin-top: -1.5rem !important;
|
| 2785 |
+
}
|
| 2786 |
+
.mr-sm-n4,
|
| 2787 |
+
.mx-sm-n4 {
|
| 2788 |
+
margin-right: -1.5rem !important;
|
| 2789 |
+
}
|
| 2790 |
+
.mb-sm-n4,
|
| 2791 |
+
.my-sm-n4 {
|
| 2792 |
+
margin-bottom: -1.5rem !important;
|
| 2793 |
+
}
|
| 2794 |
+
.ml-sm-n4,
|
| 2795 |
+
.mx-sm-n4 {
|
| 2796 |
+
margin-left: -1.5rem !important;
|
| 2797 |
+
}
|
| 2798 |
+
.m-sm-n5 {
|
| 2799 |
+
margin: -3rem !important;
|
| 2800 |
+
}
|
| 2801 |
+
.mt-sm-n5,
|
| 2802 |
+
.my-sm-n5 {
|
| 2803 |
+
margin-top: -3rem !important;
|
| 2804 |
+
}
|
| 2805 |
+
.mr-sm-n5,
|
| 2806 |
+
.mx-sm-n5 {
|
| 2807 |
+
margin-right: -3rem !important;
|
| 2808 |
+
}
|
| 2809 |
+
.mb-sm-n5,
|
| 2810 |
+
.my-sm-n5 {
|
| 2811 |
+
margin-bottom: -3rem !important;
|
| 2812 |
+
}
|
| 2813 |
+
.ml-sm-n5,
|
| 2814 |
+
.mx-sm-n5 {
|
| 2815 |
+
margin-left: -3rem !important;
|
| 2816 |
+
}
|
| 2817 |
+
.m-sm-auto {
|
| 2818 |
+
margin: auto !important;
|
| 2819 |
+
}
|
| 2820 |
+
.mt-sm-auto,
|
| 2821 |
+
.my-sm-auto {
|
| 2822 |
+
margin-top: auto !important;
|
| 2823 |
+
}
|
| 2824 |
+
.mr-sm-auto,
|
| 2825 |
+
.mx-sm-auto {
|
| 2826 |
+
margin-right: auto !important;
|
| 2827 |
+
}
|
| 2828 |
+
.mb-sm-auto,
|
| 2829 |
+
.my-sm-auto {
|
| 2830 |
+
margin-bottom: auto !important;
|
| 2831 |
+
}
|
| 2832 |
+
.ml-sm-auto,
|
| 2833 |
+
.mx-sm-auto {
|
| 2834 |
+
margin-left: auto !important;
|
| 2835 |
+
}
|
| 2836 |
+
}
|
| 2837 |
+
|
| 2838 |
+
@media (min-width: 768px) {
|
| 2839 |
+
.m-md-0 {
|
| 2840 |
+
margin: 0 !important;
|
| 2841 |
+
}
|
| 2842 |
+
.mt-md-0,
|
| 2843 |
+
.my-md-0 {
|
| 2844 |
+
margin-top: 0 !important;
|
| 2845 |
+
}
|
| 2846 |
+
.mr-md-0,
|
| 2847 |
+
.mx-md-0 {
|
| 2848 |
+
margin-right: 0 !important;
|
| 2849 |
+
}
|
| 2850 |
+
.mb-md-0,
|
| 2851 |
+
.my-md-0 {
|
| 2852 |
+
margin-bottom: 0 !important;
|
| 2853 |
+
}
|
| 2854 |
+
.ml-md-0,
|
| 2855 |
+
.mx-md-0 {
|
| 2856 |
+
margin-left: 0 !important;
|
| 2857 |
+
}
|
| 2858 |
+
.m-md-1 {
|
| 2859 |
+
margin: 0.25rem !important;
|
| 2860 |
+
}
|
| 2861 |
+
.mt-md-1,
|
| 2862 |
+
.my-md-1 {
|
| 2863 |
+
margin-top: 0.25rem !important;
|
| 2864 |
+
}
|
| 2865 |
+
.mr-md-1,
|
| 2866 |
+
.mx-md-1 {
|
| 2867 |
+
margin-right: 0.25rem !important;
|
| 2868 |
+
}
|
| 2869 |
+
.mb-md-1,
|
| 2870 |
+
.my-md-1 {
|
| 2871 |
+
margin-bottom: 0.25rem !important;
|
| 2872 |
+
}
|
| 2873 |
+
.ml-md-1,
|
| 2874 |
+
.mx-md-1 {
|
| 2875 |
+
margin-left: 0.25rem !important;
|
| 2876 |
+
}
|
| 2877 |
+
.m-md-2 {
|
| 2878 |
+
margin: 0.5rem !important;
|
| 2879 |
+
}
|
| 2880 |
+
.mt-md-2,
|
| 2881 |
+
.my-md-2 {
|
| 2882 |
+
margin-top: 0.5rem !important;
|
| 2883 |
+
}
|
| 2884 |
+
.mr-md-2,
|
| 2885 |
+
.mx-md-2 {
|
| 2886 |
+
margin-right: 0.5rem !important;
|
| 2887 |
+
}
|
| 2888 |
+
.mb-md-2,
|
| 2889 |
+
.my-md-2 {
|
| 2890 |
+
margin-bottom: 0.5rem !important;
|
| 2891 |
+
}
|
| 2892 |
+
.ml-md-2,
|
| 2893 |
+
.mx-md-2 {
|
| 2894 |
+
margin-left: 0.5rem !important;
|
| 2895 |
+
}
|
| 2896 |
+
.m-md-3 {
|
| 2897 |
+
margin: 1rem !important;
|
| 2898 |
+
}
|
| 2899 |
+
.mt-md-3,
|
| 2900 |
+
.my-md-3 {
|
| 2901 |
+
margin-top: 1rem !important;
|
| 2902 |
+
}
|
| 2903 |
+
.mr-md-3,
|
| 2904 |
+
.mx-md-3 {
|
| 2905 |
+
margin-right: 1rem !important;
|
| 2906 |
+
}
|
| 2907 |
+
.mb-md-3,
|
| 2908 |
+
.my-md-3 {
|
| 2909 |
+
margin-bottom: 1rem !important;
|
| 2910 |
+
}
|
| 2911 |
+
.ml-md-3,
|
| 2912 |
+
.mx-md-3 {
|
| 2913 |
+
margin-left: 1rem !important;
|
| 2914 |
+
}
|
| 2915 |
+
.m-md-4 {
|
| 2916 |
+
margin: 1.5rem !important;
|
| 2917 |
+
}
|
| 2918 |
+
.mt-md-4,
|
| 2919 |
+
.my-md-4 {
|
| 2920 |
+
margin-top: 1.5rem !important;
|
| 2921 |
+
}
|
| 2922 |
+
.mr-md-4,
|
| 2923 |
+
.mx-md-4 {
|
| 2924 |
+
margin-right: 1.5rem !important;
|
| 2925 |
+
}
|
| 2926 |
+
.mb-md-4,
|
| 2927 |
+
.my-md-4 {
|
| 2928 |
+
margin-bottom: 1.5rem !important;
|
| 2929 |
+
}
|
| 2930 |
+
.ml-md-4,
|
| 2931 |
+
.mx-md-4 {
|
| 2932 |
+
margin-left: 1.5rem !important;
|
| 2933 |
+
}
|
| 2934 |
+
.m-md-5 {
|
| 2935 |
+
margin: 3rem !important;
|
| 2936 |
+
}
|
| 2937 |
+
.mt-md-5,
|
| 2938 |
+
.my-md-5 {
|
| 2939 |
+
margin-top: 3rem !important;
|
| 2940 |
+
}
|
| 2941 |
+
.mr-md-5,
|
| 2942 |
+
.mx-md-5 {
|
| 2943 |
+
margin-right: 3rem !important;
|
| 2944 |
+
}
|
| 2945 |
+
.mb-md-5,
|
| 2946 |
+
.my-md-5 {
|
| 2947 |
+
margin-bottom: 3rem !important;
|
| 2948 |
+
}
|
| 2949 |
+
.ml-md-5,
|
| 2950 |
+
.mx-md-5 {
|
| 2951 |
+
margin-left: 3rem !important;
|
| 2952 |
+
}
|
| 2953 |
+
.p-md-0 {
|
| 2954 |
+
padding: 0 !important;
|
| 2955 |
+
}
|
| 2956 |
+
.pt-md-0,
|
| 2957 |
+
.py-md-0 {
|
| 2958 |
+
padding-top: 0 !important;
|
| 2959 |
+
}
|
| 2960 |
+
.pr-md-0,
|
| 2961 |
+
.px-md-0 {
|
| 2962 |
+
padding-right: 0 !important;
|
| 2963 |
+
}
|
| 2964 |
+
.pb-md-0,
|
| 2965 |
+
.py-md-0 {
|
| 2966 |
+
padding-bottom: 0 !important;
|
| 2967 |
+
}
|
| 2968 |
+
.pl-md-0,
|
| 2969 |
+
.px-md-0 {
|
| 2970 |
+
padding-left: 0 !important;
|
| 2971 |
+
}
|
| 2972 |
+
.p-md-1 {
|
| 2973 |
+
padding: 0.25rem !important;
|
| 2974 |
+
}
|
| 2975 |
+
.pt-md-1,
|
| 2976 |
+
.py-md-1 {
|
| 2977 |
+
padding-top: 0.25rem !important;
|
| 2978 |
+
}
|
| 2979 |
+
.pr-md-1,
|
| 2980 |
+
.px-md-1 {
|
| 2981 |
+
padding-right: 0.25rem !important;
|
| 2982 |
+
}
|
| 2983 |
+
.pb-md-1,
|
| 2984 |
+
.py-md-1 {
|
| 2985 |
+
padding-bottom: 0.25rem !important;
|
| 2986 |
+
}
|
| 2987 |
+
.pl-md-1,
|
| 2988 |
+
.px-md-1 {
|
| 2989 |
+
padding-left: 0.25rem !important;
|
| 2990 |
+
}
|
| 2991 |
+
.p-md-2 {
|
| 2992 |
+
padding: 0.5rem !important;
|
| 2993 |
+
}
|
| 2994 |
+
.pt-md-2,
|
| 2995 |
+
.py-md-2 {
|
| 2996 |
+
padding-top: 0.5rem !important;
|
| 2997 |
+
}
|
| 2998 |
+
.pr-md-2,
|
| 2999 |
+
.px-md-2 {
|
| 3000 |
+
padding-right: 0.5rem !important;
|
| 3001 |
+
}
|
| 3002 |
+
.pb-md-2,
|
| 3003 |
+
.py-md-2 {
|
| 3004 |
+
padding-bottom: 0.5rem !important;
|
| 3005 |
+
}
|
| 3006 |
+
.pl-md-2,
|
| 3007 |
+
.px-md-2 {
|
| 3008 |
+
padding-left: 0.5rem !important;
|
| 3009 |
+
}
|
| 3010 |
+
.p-md-3 {
|
| 3011 |
+
padding: 1rem !important;
|
| 3012 |
+
}
|
| 3013 |
+
.pt-md-3,
|
| 3014 |
+
.py-md-3 {
|
| 3015 |
+
padding-top: 1rem !important;
|
| 3016 |
+
}
|
| 3017 |
+
.pr-md-3,
|
| 3018 |
+
.px-md-3 {
|
| 3019 |
+
padding-right: 1rem !important;
|
| 3020 |
+
}
|
| 3021 |
+
.pb-md-3,
|
| 3022 |
+
.py-md-3 {
|
| 3023 |
+
padding-bottom: 1rem !important;
|
| 3024 |
+
}
|
| 3025 |
+
.pl-md-3,
|
| 3026 |
+
.px-md-3 {
|
| 3027 |
+
padding-left: 1rem !important;
|
| 3028 |
+
}
|
| 3029 |
+
.p-md-4 {
|
| 3030 |
+
padding: 1.5rem !important;
|
| 3031 |
+
}
|
| 3032 |
+
.pt-md-4,
|
| 3033 |
+
.py-md-4 {
|
| 3034 |
+
padding-top: 1.5rem !important;
|
| 3035 |
+
}
|
| 3036 |
+
.pr-md-4,
|
| 3037 |
+
.px-md-4 {
|
| 3038 |
+
padding-right: 1.5rem !important;
|
| 3039 |
+
}
|
| 3040 |
+
.pb-md-4,
|
| 3041 |
+
.py-md-4 {
|
| 3042 |
+
padding-bottom: 1.5rem !important;
|
| 3043 |
+
}
|
| 3044 |
+
.pl-md-4,
|
| 3045 |
+
.px-md-4 {
|
| 3046 |
+
padding-left: 1.5rem !important;
|
| 3047 |
+
}
|
| 3048 |
+
.p-md-5 {
|
| 3049 |
+
padding: 3rem !important;
|
| 3050 |
+
}
|
| 3051 |
+
.pt-md-5,
|
| 3052 |
+
.py-md-5 {
|
| 3053 |
+
padding-top: 3rem !important;
|
| 3054 |
+
}
|
| 3055 |
+
.pr-md-5,
|
| 3056 |
+
.px-md-5 {
|
| 3057 |
+
padding-right: 3rem !important;
|
| 3058 |
+
}
|
| 3059 |
+
.pb-md-5,
|
| 3060 |
+
.py-md-5 {
|
| 3061 |
+
padding-bottom: 3rem !important;
|
| 3062 |
+
}
|
| 3063 |
+
.pl-md-5,
|
| 3064 |
+
.px-md-5 {
|
| 3065 |
+
padding-left: 3rem !important;
|
| 3066 |
+
}
|
| 3067 |
+
.m-md-n1 {
|
| 3068 |
+
margin: -0.25rem !important;
|
| 3069 |
+
}
|
| 3070 |
+
.mt-md-n1,
|
| 3071 |
+
.my-md-n1 {
|
| 3072 |
+
margin-top: -0.25rem !important;
|
| 3073 |
+
}
|
| 3074 |
+
.mr-md-n1,
|
| 3075 |
+
.mx-md-n1 {
|
| 3076 |
+
margin-right: -0.25rem !important;
|
| 3077 |
+
}
|
| 3078 |
+
.mb-md-n1,
|
| 3079 |
+
.my-md-n1 {
|
| 3080 |
+
margin-bottom: -0.25rem !important;
|
| 3081 |
+
}
|
| 3082 |
+
.ml-md-n1,
|
| 3083 |
+
.mx-md-n1 {
|
| 3084 |
+
margin-left: -0.25rem !important;
|
| 3085 |
+
}
|
| 3086 |
+
.m-md-n2 {
|
| 3087 |
+
margin: -0.5rem !important;
|
| 3088 |
+
}
|
| 3089 |
+
.mt-md-n2,
|
| 3090 |
+
.my-md-n2 {
|
| 3091 |
+
margin-top: -0.5rem !important;
|
| 3092 |
+
}
|
| 3093 |
+
.mr-md-n2,
|
| 3094 |
+
.mx-md-n2 {
|
| 3095 |
+
margin-right: -0.5rem !important;
|
| 3096 |
+
}
|
| 3097 |
+
.mb-md-n2,
|
| 3098 |
+
.my-md-n2 {
|
| 3099 |
+
margin-bottom: -0.5rem !important;
|
| 3100 |
+
}
|
| 3101 |
+
.ml-md-n2,
|
| 3102 |
+
.mx-md-n2 {
|
| 3103 |
+
margin-left: -0.5rem !important;
|
| 3104 |
+
}
|
| 3105 |
+
.m-md-n3 {
|
| 3106 |
+
margin: -1rem !important;
|
| 3107 |
+
}
|
| 3108 |
+
.mt-md-n3,
|
| 3109 |
+
.my-md-n3 {
|
| 3110 |
+
margin-top: -1rem !important;
|
| 3111 |
+
}
|
| 3112 |
+
.mr-md-n3,
|
| 3113 |
+
.mx-md-n3 {
|
| 3114 |
+
margin-right: -1rem !important;
|
| 3115 |
+
}
|
| 3116 |
+
.mb-md-n3,
|
| 3117 |
+
.my-md-n3 {
|
| 3118 |
+
margin-bottom: -1rem !important;
|
| 3119 |
+
}
|
| 3120 |
+
.ml-md-n3,
|
| 3121 |
+
.mx-md-n3 {
|
| 3122 |
+
margin-left: -1rem !important;
|
| 3123 |
+
}
|
| 3124 |
+
.m-md-n4 {
|
| 3125 |
+
margin: -1.5rem !important;
|
| 3126 |
+
}
|
| 3127 |
+
.mt-md-n4,
|
| 3128 |
+
.my-md-n4 {
|
| 3129 |
+
margin-top: -1.5rem !important;
|
| 3130 |
+
}
|
| 3131 |
+
.mr-md-n4,
|
| 3132 |
+
.mx-md-n4 {
|
| 3133 |
+
margin-right: -1.5rem !important;
|
| 3134 |
+
}
|
| 3135 |
+
.mb-md-n4,
|
| 3136 |
+
.my-md-n4 {
|
| 3137 |
+
margin-bottom: -1.5rem !important;
|
| 3138 |
+
}
|
| 3139 |
+
.ml-md-n4,
|
| 3140 |
+
.mx-md-n4 {
|
| 3141 |
+
margin-left: -1.5rem !important;
|
| 3142 |
+
}
|
| 3143 |
+
.m-md-n5 {
|
| 3144 |
+
margin: -3rem !important;
|
| 3145 |
+
}
|
| 3146 |
+
.mt-md-n5,
|
| 3147 |
+
.my-md-n5 {
|
| 3148 |
+
margin-top: -3rem !important;
|
| 3149 |
+
}
|
| 3150 |
+
.mr-md-n5,
|
| 3151 |
+
.mx-md-n5 {
|
| 3152 |
+
margin-right: -3rem !important;
|
| 3153 |
+
}
|
| 3154 |
+
.mb-md-n5,
|
| 3155 |
+
.my-md-n5 {
|
| 3156 |
+
margin-bottom: -3rem !important;
|
| 3157 |
+
}
|
| 3158 |
+
.ml-md-n5,
|
| 3159 |
+
.mx-md-n5 {
|
| 3160 |
+
margin-left: -3rem !important;
|
| 3161 |
+
}
|
| 3162 |
+
.m-md-auto {
|
| 3163 |
+
margin: auto !important;
|
| 3164 |
+
}
|
| 3165 |
+
.mt-md-auto,
|
| 3166 |
+
.my-md-auto {
|
| 3167 |
+
margin-top: auto !important;
|
| 3168 |
+
}
|
| 3169 |
+
.mr-md-auto,
|
| 3170 |
+
.mx-md-auto {
|
| 3171 |
+
margin-right: auto !important;
|
| 3172 |
+
}
|
| 3173 |
+
.mb-md-auto,
|
| 3174 |
+
.my-md-auto {
|
| 3175 |
+
margin-bottom: auto !important;
|
| 3176 |
+
}
|
| 3177 |
+
.ml-md-auto,
|
| 3178 |
+
.mx-md-auto {
|
| 3179 |
+
margin-left: auto !important;
|
| 3180 |
+
}
|
| 3181 |
+
}
|
| 3182 |
+
|
| 3183 |
+
@media (min-width: 992px) {
|
| 3184 |
+
.m-lg-0 {
|
| 3185 |
+
margin: 0 !important;
|
| 3186 |
+
}
|
| 3187 |
+
.mt-lg-0,
|
| 3188 |
+
.my-lg-0 {
|
| 3189 |
+
margin-top: 0 !important;
|
| 3190 |
+
}
|
| 3191 |
+
.mr-lg-0,
|
| 3192 |
+
.mx-lg-0 {
|
| 3193 |
+
margin-right: 0 !important;
|
| 3194 |
+
}
|
| 3195 |
+
.mb-lg-0,
|
| 3196 |
+
.my-lg-0 {
|
| 3197 |
+
margin-bottom: 0 !important;
|
| 3198 |
+
}
|
| 3199 |
+
.ml-lg-0,
|
| 3200 |
+
.mx-lg-0 {
|
| 3201 |
+
margin-left: 0 !important;
|
| 3202 |
+
}
|
| 3203 |
+
.m-lg-1 {
|
| 3204 |
+
margin: 0.25rem !important;
|
| 3205 |
+
}
|
| 3206 |
+
.mt-lg-1,
|
| 3207 |
+
.my-lg-1 {
|
| 3208 |
+
margin-top: 0.25rem !important;
|
| 3209 |
+
}
|
| 3210 |
+
.mr-lg-1,
|
| 3211 |
+
.mx-lg-1 {
|
| 3212 |
+
margin-right: 0.25rem !important;
|
| 3213 |
+
}
|
| 3214 |
+
.mb-lg-1,
|
| 3215 |
+
.my-lg-1 {
|
| 3216 |
+
margin-bottom: 0.25rem !important;
|
| 3217 |
+
}
|
| 3218 |
+
.ml-lg-1,
|
| 3219 |
+
.mx-lg-1 {
|
| 3220 |
+
margin-left: 0.25rem !important;
|
| 3221 |
+
}
|
| 3222 |
+
.m-lg-2 {
|
| 3223 |
+
margin: 0.5rem !important;
|
| 3224 |
+
}
|
| 3225 |
+
.mt-lg-2,
|
| 3226 |
+
.my-lg-2 {
|
| 3227 |
+
margin-top: 0.5rem !important;
|
| 3228 |
+
}
|
| 3229 |
+
.mr-lg-2,
|
| 3230 |
+
.mx-lg-2 {
|
| 3231 |
+
margin-right: 0.5rem !important;
|
| 3232 |
+
}
|
| 3233 |
+
.mb-lg-2,
|
| 3234 |
+
.my-lg-2 {
|
| 3235 |
+
margin-bottom: 0.5rem !important;
|
| 3236 |
+
}
|
| 3237 |
+
.ml-lg-2,
|
| 3238 |
+
.mx-lg-2 {
|
| 3239 |
+
margin-left: 0.5rem !important;
|
| 3240 |
+
}
|
| 3241 |
+
.m-lg-3 {
|
| 3242 |
+
margin: 1rem !important;
|
| 3243 |
+
}
|
| 3244 |
+
.mt-lg-3,
|
| 3245 |
+
.my-lg-3 {
|
| 3246 |
+
margin-top: 1rem !important;
|
| 3247 |
+
}
|
| 3248 |
+
.mr-lg-3,
|
| 3249 |
+
.mx-lg-3 {
|
| 3250 |
+
margin-right: 1rem !important;
|
| 3251 |
+
}
|
| 3252 |
+
.mb-lg-3,
|
| 3253 |
+
.my-lg-3 {
|
| 3254 |
+
margin-bottom: 1rem !important;
|
| 3255 |
+
}
|
| 3256 |
+
.ml-lg-3,
|
| 3257 |
+
.mx-lg-3 {
|
| 3258 |
+
margin-left: 1rem !important;
|
| 3259 |
+
}
|
| 3260 |
+
.m-lg-4 {
|
| 3261 |
+
margin: 1.5rem !important;
|
| 3262 |
+
}
|
| 3263 |
+
.mt-lg-4,
|
| 3264 |
+
.my-lg-4 {
|
| 3265 |
+
margin-top: 1.5rem !important;
|
| 3266 |
+
}
|
| 3267 |
+
.mr-lg-4,
|
| 3268 |
+
.mx-lg-4 {
|
| 3269 |
+
margin-right: 1.5rem !important;
|
| 3270 |
+
}
|
| 3271 |
+
.mb-lg-4,
|
| 3272 |
+
.my-lg-4 {
|
| 3273 |
+
margin-bottom: 1.5rem !important;
|
| 3274 |
+
}
|
| 3275 |
+
.ml-lg-4,
|
| 3276 |
+
.mx-lg-4 {
|
| 3277 |
+
margin-left: 1.5rem !important;
|
| 3278 |
+
}
|
| 3279 |
+
.m-lg-5 {
|
| 3280 |
+
margin: 3rem !important;
|
| 3281 |
+
}
|
| 3282 |
+
.mt-lg-5,
|
| 3283 |
+
.my-lg-5 {
|
| 3284 |
+
margin-top: 3rem !important;
|
| 3285 |
+
}
|
| 3286 |
+
.mr-lg-5,
|
| 3287 |
+
.mx-lg-5 {
|
| 3288 |
+
margin-right: 3rem !important;
|
| 3289 |
+
}
|
| 3290 |
+
.mb-lg-5,
|
| 3291 |
+
.my-lg-5 {
|
| 3292 |
+
margin-bottom: 3rem !important;
|
| 3293 |
+
}
|
| 3294 |
+
.ml-lg-5,
|
| 3295 |
+
.mx-lg-5 {
|
| 3296 |
+
margin-left: 3rem !important;
|
| 3297 |
+
}
|
| 3298 |
+
.p-lg-0 {
|
| 3299 |
+
padding: 0 !important;
|
| 3300 |
+
}
|
| 3301 |
+
.pt-lg-0,
|
| 3302 |
+
.py-lg-0 {
|
| 3303 |
+
padding-top: 0 !important;
|
| 3304 |
+
}
|
| 3305 |
+
.pr-lg-0,
|
| 3306 |
+
.px-lg-0 {
|
| 3307 |
+
padding-right: 0 !important;
|
| 3308 |
+
}
|
| 3309 |
+
.pb-lg-0,
|
| 3310 |
+
.py-lg-0 {
|
| 3311 |
+
padding-bottom: 0 !important;
|
| 3312 |
+
}
|
| 3313 |
+
.pl-lg-0,
|
| 3314 |
+
.px-lg-0 {
|
| 3315 |
+
padding-left: 0 !important;
|
| 3316 |
+
}
|
| 3317 |
+
.p-lg-1 {
|
| 3318 |
+
padding: 0.25rem !important;
|
| 3319 |
+
}
|
| 3320 |
+
.pt-lg-1,
|
| 3321 |
+
.py-lg-1 {
|
| 3322 |
+
padding-top: 0.25rem !important;
|
| 3323 |
+
}
|
| 3324 |
+
.pr-lg-1,
|
| 3325 |
+
.px-lg-1 {
|
| 3326 |
+
padding-right: 0.25rem !important;
|
| 3327 |
+
}
|
| 3328 |
+
.pb-lg-1,
|
| 3329 |
+
.py-lg-1 {
|
| 3330 |
+
padding-bottom: 0.25rem !important;
|
| 3331 |
+
}
|
| 3332 |
+
.pl-lg-1,
|
| 3333 |
+
.px-lg-1 {
|
| 3334 |
+
padding-left: 0.25rem !important;
|
| 3335 |
+
}
|
| 3336 |
+
.p-lg-2 {
|
| 3337 |
+
padding: 0.5rem !important;
|
| 3338 |
+
}
|
| 3339 |
+
.pt-lg-2,
|
| 3340 |
+
.py-lg-2 {
|
| 3341 |
+
padding-top: 0.5rem !important;
|
| 3342 |
+
}
|
| 3343 |
+
.pr-lg-2,
|
| 3344 |
+
.px-lg-2 {
|
| 3345 |
+
padding-right: 0.5rem !important;
|
| 3346 |
+
}
|
| 3347 |
+
.pb-lg-2,
|
| 3348 |
+
.py-lg-2 {
|
| 3349 |
+
padding-bottom: 0.5rem !important;
|
| 3350 |
+
}
|
| 3351 |
+
.pl-lg-2,
|
| 3352 |
+
.px-lg-2 {
|
| 3353 |
+
padding-left: 0.5rem !important;
|
| 3354 |
+
}
|
| 3355 |
+
.p-lg-3 {
|
| 3356 |
+
padding: 1rem !important;
|
| 3357 |
+
}
|
| 3358 |
+
.pt-lg-3,
|
| 3359 |
+
.py-lg-3 {
|
| 3360 |
+
padding-top: 1rem !important;
|
| 3361 |
+
}
|
| 3362 |
+
.pr-lg-3,
|
| 3363 |
+
.px-lg-3 {
|
| 3364 |
+
padding-right: 1rem !important;
|
| 3365 |
+
}
|
| 3366 |
+
.pb-lg-3,
|
| 3367 |
+
.py-lg-3 {
|
| 3368 |
+
padding-bottom: 1rem !important;
|
| 3369 |
+
}
|
| 3370 |
+
.pl-lg-3,
|
| 3371 |
+
.px-lg-3 {
|
| 3372 |
+
padding-left: 1rem !important;
|
| 3373 |
+
}
|
| 3374 |
+
.p-lg-4 {
|
| 3375 |
+
padding: 1.5rem !important;
|
| 3376 |
+
}
|
| 3377 |
+
.pt-lg-4,
|
| 3378 |
+
.py-lg-4 {
|
| 3379 |
+
padding-top: 1.5rem !important;
|
| 3380 |
+
}
|
| 3381 |
+
.pr-lg-4,
|
| 3382 |
+
.px-lg-4 {
|
| 3383 |
+
padding-right: 1.5rem !important;
|
| 3384 |
+
}
|
| 3385 |
+
.pb-lg-4,
|
| 3386 |
+
.py-lg-4 {
|
| 3387 |
+
padding-bottom: 1.5rem !important;
|
| 3388 |
+
}
|
| 3389 |
+
.pl-lg-4,
|
| 3390 |
+
.px-lg-4 {
|
| 3391 |
+
padding-left: 1.5rem !important;
|
| 3392 |
+
}
|
| 3393 |
+
.p-lg-5 {
|
| 3394 |
+
padding: 3rem !important;
|
| 3395 |
+
}
|
| 3396 |
+
.pt-lg-5,
|
| 3397 |
+
.py-lg-5 {
|
| 3398 |
+
padding-top: 3rem !important;
|
| 3399 |
+
}
|
| 3400 |
+
.pr-lg-5,
|
| 3401 |
+
.px-lg-5 {
|
| 3402 |
+
padding-right: 3rem !important;
|
| 3403 |
+
}
|
| 3404 |
+
.pb-lg-5,
|
| 3405 |
+
.py-lg-5 {
|
| 3406 |
+
padding-bottom: 3rem !important;
|
| 3407 |
+
}
|
| 3408 |
+
.pl-lg-5,
|
| 3409 |
+
.px-lg-5 {
|
| 3410 |
+
padding-left: 3rem !important;
|
| 3411 |
+
}
|
| 3412 |
+
.m-lg-n1 {
|
| 3413 |
+
margin: -0.25rem !important;
|
| 3414 |
+
}
|
| 3415 |
+
.mt-lg-n1,
|
| 3416 |
+
.my-lg-n1 {
|
| 3417 |
+
margin-top: -0.25rem !important;
|
| 3418 |
+
}
|
| 3419 |
+
.mr-lg-n1,
|
| 3420 |
+
.mx-lg-n1 {
|
| 3421 |
+
margin-right: -0.25rem !important;
|
| 3422 |
+
}
|
| 3423 |
+
.mb-lg-n1,
|
| 3424 |
+
.my-lg-n1 {
|
| 3425 |
+
margin-bottom: -0.25rem !important;
|
| 3426 |
+
}
|
| 3427 |
+
.ml-lg-n1,
|
| 3428 |
+
.mx-lg-n1 {
|
| 3429 |
+
margin-left: -0.25rem !important;
|
| 3430 |
+
}
|
| 3431 |
+
.m-lg-n2 {
|
| 3432 |
+
margin: -0.5rem !important;
|
| 3433 |
+
}
|
| 3434 |
+
.mt-lg-n2,
|
| 3435 |
+
.my-lg-n2 {
|
| 3436 |
+
margin-top: -0.5rem !important;
|
| 3437 |
+
}
|
| 3438 |
+
.mr-lg-n2,
|
| 3439 |
+
.mx-lg-n2 {
|
| 3440 |
+
margin-right: -0.5rem !important;
|
| 3441 |
+
}
|
| 3442 |
+
.mb-lg-n2,
|
| 3443 |
+
.my-lg-n2 {
|
| 3444 |
+
margin-bottom: -0.5rem !important;
|
| 3445 |
+
}
|
| 3446 |
+
.ml-lg-n2,
|
| 3447 |
+
.mx-lg-n2 {
|
| 3448 |
+
margin-left: -0.5rem !important;
|
| 3449 |
+
}
|
| 3450 |
+
.m-lg-n3 {
|
| 3451 |
+
margin: -1rem !important;
|
| 3452 |
+
}
|
| 3453 |
+
.mt-lg-n3,
|
| 3454 |
+
.my-lg-n3 {
|
| 3455 |
+
margin-top: -1rem !important;
|
| 3456 |
+
}
|
| 3457 |
+
.mr-lg-n3,
|
| 3458 |
+
.mx-lg-n3 {
|
| 3459 |
+
margin-right: -1rem !important;
|
| 3460 |
+
}
|
| 3461 |
+
.mb-lg-n3,
|
| 3462 |
+
.my-lg-n3 {
|
| 3463 |
+
margin-bottom: -1rem !important;
|
| 3464 |
+
}
|
| 3465 |
+
.ml-lg-n3,
|
| 3466 |
+
.mx-lg-n3 {
|
| 3467 |
+
margin-left: -1rem !important;
|
| 3468 |
+
}
|
| 3469 |
+
.m-lg-n4 {
|
| 3470 |
+
margin: -1.5rem !important;
|
| 3471 |
+
}
|
| 3472 |
+
.mt-lg-n4,
|
| 3473 |
+
.my-lg-n4 {
|
| 3474 |
+
margin-top: -1.5rem !important;
|
| 3475 |
+
}
|
| 3476 |
+
.mr-lg-n4,
|
| 3477 |
+
.mx-lg-n4 {
|
| 3478 |
+
margin-right: -1.5rem !important;
|
| 3479 |
+
}
|
| 3480 |
+
.mb-lg-n4,
|
| 3481 |
+
.my-lg-n4 {
|
| 3482 |
+
margin-bottom: -1.5rem !important;
|
| 3483 |
+
}
|
| 3484 |
+
.ml-lg-n4,
|
| 3485 |
+
.mx-lg-n4 {
|
| 3486 |
+
margin-left: -1.5rem !important;
|
| 3487 |
+
}
|
| 3488 |
+
.m-lg-n5 {
|
| 3489 |
+
margin: -3rem !important;
|
| 3490 |
+
}
|
| 3491 |
+
.mt-lg-n5,
|
| 3492 |
+
.my-lg-n5 {
|
| 3493 |
+
margin-top: -3rem !important;
|
| 3494 |
+
}
|
| 3495 |
+
.mr-lg-n5,
|
| 3496 |
+
.mx-lg-n5 {
|
| 3497 |
+
margin-right: -3rem !important;
|
| 3498 |
+
}
|
| 3499 |
+
.mb-lg-n5,
|
| 3500 |
+
.my-lg-n5 {
|
| 3501 |
+
margin-bottom: -3rem !important;
|
| 3502 |
+
}
|
| 3503 |
+
.ml-lg-n5,
|
| 3504 |
+
.mx-lg-n5 {
|
| 3505 |
+
margin-left: -3rem !important;
|
| 3506 |
+
}
|
| 3507 |
+
.m-lg-auto {
|
| 3508 |
+
margin: auto !important;
|
| 3509 |
+
}
|
| 3510 |
+
.mt-lg-auto,
|
| 3511 |
+
.my-lg-auto {
|
| 3512 |
+
margin-top: auto !important;
|
| 3513 |
+
}
|
| 3514 |
+
.mr-lg-auto,
|
| 3515 |
+
.mx-lg-auto {
|
| 3516 |
+
margin-right: auto !important;
|
| 3517 |
+
}
|
| 3518 |
+
.mb-lg-auto,
|
| 3519 |
+
.my-lg-auto {
|
| 3520 |
+
margin-bottom: auto !important;
|
| 3521 |
+
}
|
| 3522 |
+
.ml-lg-auto,
|
| 3523 |
+
.mx-lg-auto {
|
| 3524 |
+
margin-left: auto !important;
|
| 3525 |
+
}
|
| 3526 |
+
}
|
| 3527 |
+
|
| 3528 |
+
@media (min-width: 1200px) {
|
| 3529 |
+
.m-xl-0 {
|
| 3530 |
+
margin: 0 !important;
|
| 3531 |
+
}
|
| 3532 |
+
.mt-xl-0,
|
| 3533 |
+
.my-xl-0 {
|
| 3534 |
+
margin-top: 0 !important;
|
| 3535 |
+
}
|
| 3536 |
+
.mr-xl-0,
|
| 3537 |
+
.mx-xl-0 {
|
| 3538 |
+
margin-right: 0 !important;
|
| 3539 |
+
}
|
| 3540 |
+
.mb-xl-0,
|
| 3541 |
+
.my-xl-0 {
|
| 3542 |
+
margin-bottom: 0 !important;
|
| 3543 |
+
}
|
| 3544 |
+
.ml-xl-0,
|
| 3545 |
+
.mx-xl-0 {
|
| 3546 |
+
margin-left: 0 !important;
|
| 3547 |
+
}
|
| 3548 |
+
.m-xl-1 {
|
| 3549 |
+
margin: 0.25rem !important;
|
| 3550 |
+
}
|
| 3551 |
+
.mt-xl-1,
|
| 3552 |
+
.my-xl-1 {
|
| 3553 |
+
margin-top: 0.25rem !important;
|
| 3554 |
+
}
|
| 3555 |
+
.mr-xl-1,
|
| 3556 |
+
.mx-xl-1 {
|
| 3557 |
+
margin-right: 0.25rem !important;
|
| 3558 |
+
}
|
| 3559 |
+
.mb-xl-1,
|
| 3560 |
+
.my-xl-1 {
|
| 3561 |
+
margin-bottom: 0.25rem !important;
|
| 3562 |
+
}
|
| 3563 |
+
.ml-xl-1,
|
| 3564 |
+
.mx-xl-1 {
|
| 3565 |
+
margin-left: 0.25rem !important;
|
| 3566 |
+
}
|
| 3567 |
+
.m-xl-2 {
|
| 3568 |
+
margin: 0.5rem !important;
|
| 3569 |
+
}
|
| 3570 |
+
.mt-xl-2,
|
| 3571 |
+
.my-xl-2 {
|
| 3572 |
+
margin-top: 0.5rem !important;
|
| 3573 |
+
}
|
| 3574 |
+
.mr-xl-2,
|
| 3575 |
+
.mx-xl-2 {
|
| 3576 |
+
margin-right: 0.5rem !important;
|
| 3577 |
+
}
|
| 3578 |
+
.mb-xl-2,
|
| 3579 |
+
.my-xl-2 {
|
| 3580 |
+
margin-bottom: 0.5rem !important;
|
| 3581 |
+
}
|
| 3582 |
+
.ml-xl-2,
|
| 3583 |
+
.mx-xl-2 {
|
| 3584 |
+
margin-left: 0.5rem !important;
|
| 3585 |
+
}
|
| 3586 |
+
.m-xl-3 {
|
| 3587 |
+
margin: 1rem !important;
|
| 3588 |
+
}
|
| 3589 |
+
.mt-xl-3,
|
| 3590 |
+
.my-xl-3 {
|
| 3591 |
+
margin-top: 1rem !important;
|
| 3592 |
+
}
|
| 3593 |
+
.mr-xl-3,
|
| 3594 |
+
.mx-xl-3 {
|
| 3595 |
+
margin-right: 1rem !important;
|
| 3596 |
+
}
|
| 3597 |
+
.mb-xl-3,
|
| 3598 |
+
.my-xl-3 {
|
| 3599 |
+
margin-bottom: 1rem !important;
|
| 3600 |
+
}
|
| 3601 |
+
.ml-xl-3,
|
| 3602 |
+
.mx-xl-3 {
|
| 3603 |
+
margin-left: 1rem !important;
|
| 3604 |
+
}
|
| 3605 |
+
.m-xl-4 {
|
| 3606 |
+
margin: 1.5rem !important;
|
| 3607 |
+
}
|
| 3608 |
+
.mt-xl-4,
|
| 3609 |
+
.my-xl-4 {
|
| 3610 |
+
margin-top: 1.5rem !important;
|
| 3611 |
+
}
|
| 3612 |
+
.mr-xl-4,
|
| 3613 |
+
.mx-xl-4 {
|
| 3614 |
+
margin-right: 1.5rem !important;
|
| 3615 |
+
}
|
| 3616 |
+
.mb-xl-4,
|
| 3617 |
+
.my-xl-4 {
|
| 3618 |
+
margin-bottom: 1.5rem !important;
|
| 3619 |
+
}
|
| 3620 |
+
.ml-xl-4,
|
| 3621 |
+
.mx-xl-4 {
|
| 3622 |
+
margin-left: 1.5rem !important;
|
| 3623 |
+
}
|
| 3624 |
+
.m-xl-5 {
|
| 3625 |
+
margin: 3rem !important;
|
| 3626 |
+
}
|
| 3627 |
+
.mt-xl-5,
|
| 3628 |
+
.my-xl-5 {
|
| 3629 |
+
margin-top: 3rem !important;
|
| 3630 |
+
}
|
| 3631 |
+
.mr-xl-5,
|
| 3632 |
+
.mx-xl-5 {
|
| 3633 |
+
margin-right: 3rem !important;
|
| 3634 |
+
}
|
| 3635 |
+
.mb-xl-5,
|
| 3636 |
+
.my-xl-5 {
|
| 3637 |
+
margin-bottom: 3rem !important;
|
| 3638 |
+
}
|
| 3639 |
+
.ml-xl-5,
|
| 3640 |
+
.mx-xl-5 {
|
| 3641 |
+
margin-left: 3rem !important;
|
| 3642 |
+
}
|
| 3643 |
+
.p-xl-0 {
|
| 3644 |
+
padding: 0 !important;
|
| 3645 |
+
}
|
| 3646 |
+
.pt-xl-0,
|
| 3647 |
+
.py-xl-0 {
|
| 3648 |
+
padding-top: 0 !important;
|
| 3649 |
+
}
|
| 3650 |
+
.pr-xl-0,
|
| 3651 |
+
.px-xl-0 {
|
| 3652 |
+
padding-right: 0 !important;
|
| 3653 |
+
}
|
| 3654 |
+
.pb-xl-0,
|
| 3655 |
+
.py-xl-0 {
|
| 3656 |
+
padding-bottom: 0 !important;
|
| 3657 |
+
}
|
| 3658 |
+
.pl-xl-0,
|
| 3659 |
+
.px-xl-0 {
|
| 3660 |
+
padding-left: 0 !important;
|
| 3661 |
+
}
|
| 3662 |
+
.p-xl-1 {
|
| 3663 |
+
padding: 0.25rem !important;
|
| 3664 |
+
}
|
| 3665 |
+
.pt-xl-1,
|
| 3666 |
+
.py-xl-1 {
|
| 3667 |
+
padding-top: 0.25rem !important;
|
| 3668 |
+
}
|
| 3669 |
+
.pr-xl-1,
|
| 3670 |
+
.px-xl-1 {
|
| 3671 |
+
padding-right: 0.25rem !important;
|
| 3672 |
+
}
|
| 3673 |
+
.pb-xl-1,
|
| 3674 |
+
.py-xl-1 {
|
| 3675 |
+
padding-bottom: 0.25rem !important;
|
| 3676 |
+
}
|
| 3677 |
+
.pl-xl-1,
|
| 3678 |
+
.px-xl-1 {
|
| 3679 |
+
padding-left: 0.25rem !important;
|
| 3680 |
+
}
|
| 3681 |
+
.p-xl-2 {
|
| 3682 |
+
padding: 0.5rem !important;
|
| 3683 |
+
}
|
| 3684 |
+
.pt-xl-2,
|
| 3685 |
+
.py-xl-2 {
|
| 3686 |
+
padding-top: 0.5rem !important;
|
| 3687 |
+
}
|
| 3688 |
+
.pr-xl-2,
|
| 3689 |
+
.px-xl-2 {
|
| 3690 |
+
padding-right: 0.5rem !important;
|
| 3691 |
+
}
|
| 3692 |
+
.pb-xl-2,
|
| 3693 |
+
.py-xl-2 {
|
| 3694 |
+
padding-bottom: 0.5rem !important;
|
| 3695 |
+
}
|
| 3696 |
+
.pl-xl-2,
|
| 3697 |
+
.px-xl-2 {
|
| 3698 |
+
padding-left: 0.5rem !important;
|
| 3699 |
+
}
|
| 3700 |
+
.p-xl-3 {
|
| 3701 |
+
padding: 1rem !important;
|
| 3702 |
+
}
|
| 3703 |
+
.pt-xl-3,
|
| 3704 |
+
.py-xl-3 {
|
| 3705 |
+
padding-top: 1rem !important;
|
| 3706 |
+
}
|
| 3707 |
+
.pr-xl-3,
|
| 3708 |
+
.px-xl-3 {
|
| 3709 |
+
padding-right: 1rem !important;
|
| 3710 |
+
}
|
| 3711 |
+
.pb-xl-3,
|
| 3712 |
+
.py-xl-3 {
|
| 3713 |
+
padding-bottom: 1rem !important;
|
| 3714 |
+
}
|
| 3715 |
+
.pl-xl-3,
|
| 3716 |
+
.px-xl-3 {
|
| 3717 |
+
padding-left: 1rem !important;
|
| 3718 |
+
}
|
| 3719 |
+
.p-xl-4 {
|
| 3720 |
+
padding: 1.5rem !important;
|
| 3721 |
+
}
|
| 3722 |
+
.pt-xl-4,
|
| 3723 |
+
.py-xl-4 {
|
| 3724 |
+
padding-top: 1.5rem !important;
|
| 3725 |
+
}
|
| 3726 |
+
.pr-xl-4,
|
| 3727 |
+
.px-xl-4 {
|
| 3728 |
+
padding-right: 1.5rem !important;
|
| 3729 |
+
}
|
| 3730 |
+
.pb-xl-4,
|
| 3731 |
+
.py-xl-4 {
|
| 3732 |
+
padding-bottom: 1.5rem !important;
|
| 3733 |
+
}
|
| 3734 |
+
.pl-xl-4,
|
| 3735 |
+
.px-xl-4 {
|
| 3736 |
+
padding-left: 1.5rem !important;
|
| 3737 |
+
}
|
| 3738 |
+
.p-xl-5 {
|
| 3739 |
+
padding: 3rem !important;
|
| 3740 |
+
}
|
| 3741 |
+
.pt-xl-5,
|
| 3742 |
+
.py-xl-5 {
|
| 3743 |
+
padding-top: 3rem !important;
|
| 3744 |
+
}
|
| 3745 |
+
.pr-xl-5,
|
| 3746 |
+
.px-xl-5 {
|
| 3747 |
+
padding-right: 3rem !important;
|
| 3748 |
+
}
|
| 3749 |
+
.pb-xl-5,
|
| 3750 |
+
.py-xl-5 {
|
| 3751 |
+
padding-bottom: 3rem !important;
|
| 3752 |
+
}
|
| 3753 |
+
.pl-xl-5,
|
| 3754 |
+
.px-xl-5 {
|
| 3755 |
+
padding-left: 3rem !important;
|
| 3756 |
+
}
|
| 3757 |
+
.m-xl-n1 {
|
| 3758 |
+
margin: -0.25rem !important;
|
| 3759 |
+
}
|
| 3760 |
+
.mt-xl-n1,
|
| 3761 |
+
.my-xl-n1 {
|
| 3762 |
+
margin-top: -0.25rem !important;
|
| 3763 |
+
}
|
| 3764 |
+
.mr-xl-n1,
|
| 3765 |
+
.mx-xl-n1 {
|
| 3766 |
+
margin-right: -0.25rem !important;
|
| 3767 |
+
}
|
| 3768 |
+
.mb-xl-n1,
|
| 3769 |
+
.my-xl-n1 {
|
| 3770 |
+
margin-bottom: -0.25rem !important;
|
| 3771 |
+
}
|
| 3772 |
+
.ml-xl-n1,
|
| 3773 |
+
.mx-xl-n1 {
|
| 3774 |
+
margin-left: -0.25rem !important;
|
| 3775 |
+
}
|
| 3776 |
+
.m-xl-n2 {
|
| 3777 |
+
margin: -0.5rem !important;
|
| 3778 |
+
}
|
| 3779 |
+
.mt-xl-n2,
|
| 3780 |
+
.my-xl-n2 {
|
| 3781 |
+
margin-top: -0.5rem !important;
|
| 3782 |
+
}
|
| 3783 |
+
.mr-xl-n2,
|
| 3784 |
+
.mx-xl-n2 {
|
| 3785 |
+
margin-right: -0.5rem !important;
|
| 3786 |
+
}
|
| 3787 |
+
.mb-xl-n2,
|
| 3788 |
+
.my-xl-n2 {
|
| 3789 |
+
margin-bottom: -0.5rem !important;
|
| 3790 |
+
}
|
| 3791 |
+
.ml-xl-n2,
|
| 3792 |
+
.mx-xl-n2 {
|
| 3793 |
+
margin-left: -0.5rem !important;
|
| 3794 |
+
}
|
| 3795 |
+
.m-xl-n3 {
|
| 3796 |
+
margin: -1rem !important;
|
| 3797 |
+
}
|
| 3798 |
+
.mt-xl-n3,
|
| 3799 |
+
.my-xl-n3 {
|
| 3800 |
+
margin-top: -1rem !important;
|
| 3801 |
+
}
|
| 3802 |
+
.mr-xl-n3,
|
| 3803 |
+
.mx-xl-n3 {
|
| 3804 |
+
margin-right: -1rem !important;
|
| 3805 |
+
}
|
| 3806 |
+
.mb-xl-n3,
|
| 3807 |
+
.my-xl-n3 {
|
| 3808 |
+
margin-bottom: -1rem !important;
|
| 3809 |
+
}
|
| 3810 |
+
.ml-xl-n3,
|
| 3811 |
+
.mx-xl-n3 {
|
| 3812 |
+
margin-left: -1rem !important;
|
| 3813 |
+
}
|
| 3814 |
+
.m-xl-n4 {
|
| 3815 |
+
margin: -1.5rem !important;
|
| 3816 |
+
}
|
| 3817 |
+
.mt-xl-n4,
|
| 3818 |
+
.my-xl-n4 {
|
| 3819 |
+
margin-top: -1.5rem !important;
|
| 3820 |
+
}
|
| 3821 |
+
.mr-xl-n4,
|
| 3822 |
+
.mx-xl-n4 {
|
| 3823 |
+
margin-right: -1.5rem !important;
|
| 3824 |
+
}
|
| 3825 |
+
.mb-xl-n4,
|
| 3826 |
+
.my-xl-n4 {
|
| 3827 |
+
margin-bottom: -1.5rem !important;
|
| 3828 |
+
}
|
| 3829 |
+
.ml-xl-n4,
|
| 3830 |
+
.mx-xl-n4 {
|
| 3831 |
+
margin-left: -1.5rem !important;
|
| 3832 |
+
}
|
| 3833 |
+
.m-xl-n5 {
|
| 3834 |
+
margin: -3rem !important;
|
| 3835 |
+
}
|
| 3836 |
+
.mt-xl-n5,
|
| 3837 |
+
.my-xl-n5 {
|
| 3838 |
+
margin-top: -3rem !important;
|
| 3839 |
+
}
|
| 3840 |
+
.mr-xl-n5,
|
| 3841 |
+
.mx-xl-n5 {
|
| 3842 |
+
margin-right: -3rem !important;
|
| 3843 |
+
}
|
| 3844 |
+
.mb-xl-n5,
|
| 3845 |
+
.my-xl-n5 {
|
| 3846 |
+
margin-bottom: -3rem !important;
|
| 3847 |
+
}
|
| 3848 |
+
.ml-xl-n5,
|
| 3849 |
+
.mx-xl-n5 {
|
| 3850 |
+
margin-left: -3rem !important;
|
| 3851 |
+
}
|
| 3852 |
+
.m-xl-auto {
|
| 3853 |
+
margin: auto !important;
|
| 3854 |
+
}
|
| 3855 |
+
.mt-xl-auto,
|
| 3856 |
+
.my-xl-auto {
|
| 3857 |
+
margin-top: auto !important;
|
| 3858 |
+
}
|
| 3859 |
+
.mr-xl-auto,
|
| 3860 |
+
.mx-xl-auto {
|
| 3861 |
+
margin-right: auto !important;
|
| 3862 |
+
}
|
| 3863 |
+
.mb-xl-auto,
|
| 3864 |
+
.my-xl-auto {
|
| 3865 |
+
margin-bottom: auto !important;
|
| 3866 |
+
}
|
| 3867 |
+
.ml-xl-auto,
|
| 3868 |
+
.mx-xl-auto {
|
| 3869 |
+
margin-left: auto !important;
|
| 3870 |
+
}
|
| 3871 |
+
}
|
| 3872 |
+
/*# sourceMappingURL=bootstrap-grid.css.map */
|
static/bootstrap/css/bootstrap-grid.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/css/bootstrap-grid.min.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Grid v4.5.2 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2020 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2020 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
*/html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}
|
| 7 |
+
/*# sourceMappingURL=bootstrap-grid.min.css.map */
|
static/bootstrap/css/bootstrap-grid.min.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/css/bootstrap-reboot.css
ADDED
|
@@ -0,0 +1,325 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2020 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2020 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
| 7 |
+
*/
|
| 8 |
+
*,
|
| 9 |
+
*::before,
|
| 10 |
+
*::after {
|
| 11 |
+
box-sizing: border-box;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
html {
|
| 15 |
+
font-family: sans-serif;
|
| 16 |
+
line-height: 1.15;
|
| 17 |
+
-webkit-text-size-adjust: 100%;
|
| 18 |
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
| 22 |
+
display: block;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
body {
|
| 26 |
+
margin: 0;
|
| 27 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
| 28 |
+
font-size: 1rem;
|
| 29 |
+
font-weight: 400;
|
| 30 |
+
line-height: 1.5;
|
| 31 |
+
color: #212529;
|
| 32 |
+
text-align: left;
|
| 33 |
+
background-color: #fff;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
[tabindex="-1"]:focus:not(:focus-visible) {
|
| 37 |
+
outline: 0 !important;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
hr {
|
| 41 |
+
box-sizing: content-box;
|
| 42 |
+
height: 0;
|
| 43 |
+
overflow: visible;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
h1, h2, h3, h4, h5, h6 {
|
| 47 |
+
margin-top: 0;
|
| 48 |
+
margin-bottom: 0.5rem;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
p {
|
| 52 |
+
margin-top: 0;
|
| 53 |
+
margin-bottom: 1rem;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
abbr[title],
|
| 57 |
+
abbr[data-original-title] {
|
| 58 |
+
text-decoration: underline;
|
| 59 |
+
-webkit-text-decoration: underline dotted;
|
| 60 |
+
text-decoration: underline dotted;
|
| 61 |
+
cursor: help;
|
| 62 |
+
border-bottom: 0;
|
| 63 |
+
-webkit-text-decoration-skip-ink: none;
|
| 64 |
+
text-decoration-skip-ink: none;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
address {
|
| 68 |
+
margin-bottom: 1rem;
|
| 69 |
+
font-style: normal;
|
| 70 |
+
line-height: inherit;
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
ol,
|
| 74 |
+
ul,
|
| 75 |
+
dl {
|
| 76 |
+
margin-top: 0;
|
| 77 |
+
margin-bottom: 1rem;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
ol ol,
|
| 81 |
+
ul ul,
|
| 82 |
+
ol ul,
|
| 83 |
+
ul ol {
|
| 84 |
+
margin-bottom: 0;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
dt {
|
| 88 |
+
font-weight: 700;
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
dd {
|
| 92 |
+
margin-bottom: .5rem;
|
| 93 |
+
margin-left: 0;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
blockquote {
|
| 97 |
+
margin: 0 0 1rem;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
b,
|
| 101 |
+
strong {
|
| 102 |
+
font-weight: bolder;
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
small {
|
| 106 |
+
font-size: 80%;
|
| 107 |
+
}
|
| 108 |
+
|
| 109 |
+
sub,
|
| 110 |
+
sup {
|
| 111 |
+
position: relative;
|
| 112 |
+
font-size: 75%;
|
| 113 |
+
line-height: 0;
|
| 114 |
+
vertical-align: baseline;
|
| 115 |
+
}
|
| 116 |
+
|
| 117 |
+
sub {
|
| 118 |
+
bottom: -.25em;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
sup {
|
| 122 |
+
top: -.5em;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
a {
|
| 126 |
+
color: #007bff;
|
| 127 |
+
text-decoration: none;
|
| 128 |
+
background-color: transparent;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
a:hover {
|
| 132 |
+
color: #0056b3;
|
| 133 |
+
text-decoration: underline;
|
| 134 |
+
}
|
| 135 |
+
|
| 136 |
+
a:not([href]):not([class]) {
|
| 137 |
+
color: inherit;
|
| 138 |
+
text-decoration: none;
|
| 139 |
+
}
|
| 140 |
+
|
| 141 |
+
a:not([href]):not([class]):hover {
|
| 142 |
+
color: inherit;
|
| 143 |
+
text-decoration: none;
|
| 144 |
+
}
|
| 145 |
+
|
| 146 |
+
pre,
|
| 147 |
+
code,
|
| 148 |
+
kbd,
|
| 149 |
+
samp {
|
| 150 |
+
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
| 151 |
+
font-size: 1em;
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
pre {
|
| 155 |
+
margin-top: 0;
|
| 156 |
+
margin-bottom: 1rem;
|
| 157 |
+
overflow: auto;
|
| 158 |
+
-ms-overflow-style: scrollbar;
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
+
figure {
|
| 162 |
+
margin: 0 0 1rem;
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
img {
|
| 166 |
+
vertical-align: middle;
|
| 167 |
+
border-style: none;
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
svg {
|
| 171 |
+
overflow: hidden;
|
| 172 |
+
vertical-align: middle;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
table {
|
| 176 |
+
border-collapse: collapse;
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
+
caption {
|
| 180 |
+
padding-top: 0.75rem;
|
| 181 |
+
padding-bottom: 0.75rem;
|
| 182 |
+
color: #6c757d;
|
| 183 |
+
text-align: left;
|
| 184 |
+
caption-side: bottom;
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
+
th {
|
| 188 |
+
text-align: inherit;
|
| 189 |
+
}
|
| 190 |
+
|
| 191 |
+
label {
|
| 192 |
+
display: inline-block;
|
| 193 |
+
margin-bottom: 0.5rem;
|
| 194 |
+
}
|
| 195 |
+
|
| 196 |
+
button {
|
| 197 |
+
border-radius: 0;
|
| 198 |
+
}
|
| 199 |
+
|
| 200 |
+
button:focus {
|
| 201 |
+
outline: 1px dotted;
|
| 202 |
+
outline: 5px auto -webkit-focus-ring-color;
|
| 203 |
+
}
|
| 204 |
+
|
| 205 |
+
input,
|
| 206 |
+
button,
|
| 207 |
+
select,
|
| 208 |
+
optgroup,
|
| 209 |
+
textarea {
|
| 210 |
+
margin: 0;
|
| 211 |
+
font-family: inherit;
|
| 212 |
+
font-size: inherit;
|
| 213 |
+
line-height: inherit;
|
| 214 |
+
}
|
| 215 |
+
|
| 216 |
+
button,
|
| 217 |
+
input {
|
| 218 |
+
overflow: visible;
|
| 219 |
+
}
|
| 220 |
+
|
| 221 |
+
button,
|
| 222 |
+
select {
|
| 223 |
+
text-transform: none;
|
| 224 |
+
}
|
| 225 |
+
|
| 226 |
+
[role="button"] {
|
| 227 |
+
cursor: pointer;
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
select {
|
| 231 |
+
word-wrap: normal;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
button,
|
| 235 |
+
[type="button"],
|
| 236 |
+
[type="reset"],
|
| 237 |
+
[type="submit"] {
|
| 238 |
+
-webkit-appearance: button;
|
| 239 |
+
}
|
| 240 |
+
|
| 241 |
+
button:not(:disabled),
|
| 242 |
+
[type="button"]:not(:disabled),
|
| 243 |
+
[type="reset"]:not(:disabled),
|
| 244 |
+
[type="submit"]:not(:disabled) {
|
| 245 |
+
cursor: pointer;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
button::-moz-focus-inner,
|
| 249 |
+
[type="button"]::-moz-focus-inner,
|
| 250 |
+
[type="reset"]::-moz-focus-inner,
|
| 251 |
+
[type="submit"]::-moz-focus-inner {
|
| 252 |
+
padding: 0;
|
| 253 |
+
border-style: none;
|
| 254 |
+
}
|
| 255 |
+
|
| 256 |
+
input[type="radio"],
|
| 257 |
+
input[type="checkbox"] {
|
| 258 |
+
box-sizing: border-box;
|
| 259 |
+
padding: 0;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
textarea {
|
| 263 |
+
overflow: auto;
|
| 264 |
+
resize: vertical;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
fieldset {
|
| 268 |
+
min-width: 0;
|
| 269 |
+
padding: 0;
|
| 270 |
+
margin: 0;
|
| 271 |
+
border: 0;
|
| 272 |
+
}
|
| 273 |
+
|
| 274 |
+
legend {
|
| 275 |
+
display: block;
|
| 276 |
+
width: 100%;
|
| 277 |
+
max-width: 100%;
|
| 278 |
+
padding: 0;
|
| 279 |
+
margin-bottom: .5rem;
|
| 280 |
+
font-size: 1.5rem;
|
| 281 |
+
line-height: inherit;
|
| 282 |
+
color: inherit;
|
| 283 |
+
white-space: normal;
|
| 284 |
+
}
|
| 285 |
+
|
| 286 |
+
progress {
|
| 287 |
+
vertical-align: baseline;
|
| 288 |
+
}
|
| 289 |
+
|
| 290 |
+
[type="number"]::-webkit-inner-spin-button,
|
| 291 |
+
[type="number"]::-webkit-outer-spin-button {
|
| 292 |
+
height: auto;
|
| 293 |
+
}
|
| 294 |
+
|
| 295 |
+
[type="search"] {
|
| 296 |
+
outline-offset: -2px;
|
| 297 |
+
-webkit-appearance: none;
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
[type="search"]::-webkit-search-decoration {
|
| 301 |
+
-webkit-appearance: none;
|
| 302 |
+
}
|
| 303 |
+
|
| 304 |
+
::-webkit-file-upload-button {
|
| 305 |
+
font: inherit;
|
| 306 |
+
-webkit-appearance: button;
|
| 307 |
+
}
|
| 308 |
+
|
| 309 |
+
output {
|
| 310 |
+
display: inline-block;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
summary {
|
| 314 |
+
display: list-item;
|
| 315 |
+
cursor: pointer;
|
| 316 |
+
}
|
| 317 |
+
|
| 318 |
+
template {
|
| 319 |
+
display: none;
|
| 320 |
+
}
|
| 321 |
+
|
| 322 |
+
[hidden] {
|
| 323 |
+
display: none !important;
|
| 324 |
+
}
|
| 325 |
+
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
static/bootstrap/css/bootstrap-reboot.css.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version":3,"sources":["../../scss/bootstrap-reboot.scss","bootstrap-reboot.css","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/vendor/_rfs.scss","../../scss/mixins/_hover.scss"],"names":[],"mappings":"AAAA;;;;;;ECME;ACYF;;;EAGE,sBAAsB;ADVxB;;ACaA;EACE,uBAAuB;EACvB,iBAAiB;EACjB,8BAA8B;EAC9B,6CCXa;AFCf;;ACgBA;EACE,cAAc;ADbhB;;ACuBA;EACE,SAAS;EACT,kMCqOiN;ECrJ7M,eAtCY;EFxChB,gBC8O+B;ED7O/B,gBCkP+B;EDjP/B,cCnCgB;EDoChB,gBAAgB;EAChB,sBC9Ca;AF0Bf;;AAEA;EC+BE,qBAAqB;AD7BvB;;ACsCA;EACE,uBAAuB;EACvB,SAAS;EACT,iBAAiB;ADnCnB;;ACgDA;EACE,aAAa;EACb,qBCgNuC;AF7PzC;;ACoDA;EACE,aAAa;EACb,mBCoF8B;AFrIhC;;AC4DA;;EAEE,0BAA0B;EAC1B,yCAAiC;EAAjC,iCAAiC;EACjC,YAAY;EACZ,gBAAgB;EAChB,sCAA8B;EAA9B,8BAA8B;ADzDhC;;AC4DA;EACE,mBAAmB;EACnB,kBAAkB;EAClB,oBAAoB;ADzDtB;;AC4DA;;;EAGE,aAAa;EACb,mBAAmB;ADzDrB;;AC4DA;;;;EAIE,gBAAgB;ADzDlB;;AC4DA;EACE,gBCiJ+B;AF1MjC;;AC4DA;EACE,oBAAoB;EACpB,cAAc;ADzDhB;;AC4DA;EACE,gBAAgB;ADzDlB;;AC4DA;;EAEE,mBCoIkC;AF7LpC;;AC4DA;EExFI,cAAW;AHgCf;;ACiEA;;EAEE,kBAAkB;EEnGhB,cAAW;EFqGb,cAAc;EACd,wBAAwB;AD9D1B;;ACiEA;EAAM,cAAc;AD7DpB;;AC8DA;EAAM,UAAU;AD1DhB;;ACiEA;EACE,cCvJe;EDwJf,qBCX4C;EDY5C,6BAA6B;AD9D/B;;AIlHE;EHmLE,cCd8D;EDe9D,0BCd+C;AF/CnD;;ACsEA;EACE,cAAc;EACd,qBAAqB;ADnEvB;;AI5HE;EHkME,cAAc;EACd,qBAAqB;ADlEzB;;AC2EA;;;;EAIE,iGCyDgH;EC7M9G,cAAW;AH6Ef;;AC2EA;EAEE,aAAa;EAEb,mBAAmB;EAEnB,cAAc;EAGd,6BAA6B;AD7E/B;;ACqFA;EAEE,gBAAgB;ADnFlB;;AC2FA;EACE,sBAAsB;EACtB,kBAAkB;ADxFpB;;AC2FA;EAGE,gBAAgB;EAChB,sBAAsB;AD1FxB;;ACkGA;EACE,yBAAyB;AD/F3B;;ACkGA;EACE,oBC6EkC;ED5ElC,uBC4EkC;ED3ElC,cCtQgB;EDuQhB,gBAAgB;EAChB,oBAAoB;AD/FtB;;ACkGA;EAGE,mBAAmB;ADjGrB;;ACyGA;EAEE,qBAAqB;EACrB,qBC8J2C;AFrQ7C;;AC6GA;EAEE,gBAAgB;AD3GlB;;ACkHA;EACE,mBAAmB;EACnB,0CAA0C;AD/G5C;;ACkHA;;;;;EAKE,SAAS;EACT,oBAAoB;EExPlB,kBAAW;EF0Pb,oBAAoB;AD/GtB;;ACkHA;;EAEE,iBAAiB;AD/GnB;;ACkHA;;EAEE,oBAAoB;AD/GtB;;AAEA;ECoHE,eAAe;ADlHjB;;ACwHA;EACE,iBAAiB;ADrHnB;;AC4HA;;;;EAIE,0BAA0B;ADzH5B;;AC8HE;;;;EAKI,eAAe;AD5HrB;;ACkIA;;;;EAIE,UAAU;EACV,kBAAkB;AD/HpB;;ACkIA;;EAEE,sBAAsB;EACtB,UAAU;AD/HZ;;ACmIA;EACE,cAAc;EAEd,gBAAgB;ADjIlB;;ACoIA;EAME,YAAY;EAEZ,UAAU;EACV,SAAS;EACT,SAAS;ADvIX;;AC4IA;EACE,cAAc;EACd,WAAW;EACX,eAAe;EACf,UAAU;EACV,oBAAoB;EE/RhB,iBAtCY;EFuUhB,oBAAoB;EACpB,cAAc;EACd,mBAAmB;ADzIrB;;AC4IA;EACE,wBAAwB;ADzI1B;;AAEA;;EC6IE,YAAY;AD1Id;;AAEA;ECgJE,oBAAoB;EACpB,wBAAwB;AD9I1B;;AAEA;ECoJE,wBAAwB;ADlJ1B;;AC0JA;EACE,aAAa;EACb,0BAA0B;ADvJ5B;;AC8JA;EACE,qBAAqB;AD3JvB;;AC8JA;EACE,kBAAkB;EAClB,eAAe;AD3JjB;;AC8JA;EACE,aAAa;AD3Jf;;AAEA;EC+JE,wBAAwB;AD7J1B","file":"bootstrap-reboot.css","sourcesContent":["/*!\n * Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n","/*!\n * Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `<th>` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `<td>` alignment by inheriting from the `<body>`, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-blacklist\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`<button>` buttons\n//\n// Details at https://github.com/twbs/bootstrap/pull/30562\n[role=\"button\"] {\n cursor: pointer;\n}\n\n// Remove the inheritance of word-wrap in Safari.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24990\nselect {\n word-wrap: normal;\n}\n\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Opinionated: add \"hand\" cursor to non-disabled button elements.\n@if $enable-pointer-cursor-for-buttons {\n button,\n [type=\"button\"],\n [type=\"reset\"],\n [type=\"submit\"] {\n &:not(:disabled) {\n cursor: pointer;\n }\n }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n @include font-size(1.5rem);\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n$grays: map-merge(\n (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n ),\n $grays\n);\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n$colors: map-merge(\n (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n ),\n $colors\n);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n$theme-colors: map-merge(\n (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n ),\n $theme-colors\n);\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-prefers-reduced-motion-media-query: true !default;\n$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS\n$enable-grid-classes: true !default;\n$enable-pointer-cursor-for-buttons: true !default;\n$enable-print-styles: true !default;\n$enable-responsive-font-sizes: false !default;\n$enable-validation-icons: true !default;\n$enable-deprecation-messages: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: () !default;\n$spacers: map-merge(\n (\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n ),\n $spacers\n);\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: () !default;\n$sizes: map-merge(\n (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%,\n auto: auto\n ),\n $sizes\n);\n\n\n// Body\n//\n// Settings for the `<body>` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n// Darken percentage for links with `.text-*` class (e.g. `.text-success`)\n$emphasized-link-hover-darken-percentage: 15% !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n$grid-row-columns: 6 !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-300 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$rounded-pill: 50rem !default;\n\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n$embed-responsive-aspect-ratios: () !default;\n$embed-responsive-aspect-ratios: join(\n (\n (21 9),\n (16 9),\n (4 3),\n (1 1),\n ),\n $embed-responsive-aspect-ratios\n);\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: $font-size-base * 1.25 !default;\n$font-size-sm: $font-size-base * .875 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: $spacer / 2 !default;\n$headings-font-family: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: null !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-small-font-size: $small-font-size !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-color: $body-color !default;\n$table-bg: null !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-color: $table-color !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $border-color !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-color: $white !default;\n$table-dark-bg: $gray-800 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-color: $table-dark-color !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($table-dark-bg, 7.5%) !default;\n\n$table-striped-order: odd !default;\n\n$table-caption-color: $text-muted !default;\n\n$table-bg-level: -9 !default;\n$table-border-level: -6 !default;\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba($component-active-bg, .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$label-margin-bottom: .5rem !default;\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten($component-active-bg, 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y / 2) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height-sm * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height-lg * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-grid-gutter-width: 10px !default;\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$custom-control-gutter: .5rem !default;\n$custom-control-spacer-x: 1rem !default;\n$custom-control-cursor: null !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $input-bg !default;\n\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: $input-box-shadow !default;\n$custom-control-indicator-border-color: $gray-500 !default;\n$custom-control-indicator-border-width: $input-border-width !default;\n\n$custom-control-label-color: null !default;\n\n$custom-control-indicator-disabled-bg: $input-disabled-bg !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $component-active-color !default;\n$custom-control-indicator-checked-bg: $component-active-bg !default;\n$custom-control-indicator-checked-disabled-bg: rgba(theme-color(\"primary\"), .5) !default;\n$custom-control-indicator-checked-box-shadow: null !default;\n$custom-control-indicator-checked-border-color: $custom-control-indicator-checked-bg !default;\n\n$custom-control-indicator-focus-box-shadow: $input-focus-box-shadow !default;\n$custom-control-indicator-focus-border-color: $input-focus-border-color !default;\n\n$custom-control-indicator-active-color: $component-active-color !default;\n$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;\n$custom-control-indicator-active-box-shadow: null !default;\n$custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/></svg>\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'><path stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/></svg>\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: null !default;\n$custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'><circle r='3' fill='#{$custom-control-indicator-checked-color}'/></svg>\") !default;\n\n$custom-switch-width: $custom-control-indicator-size * 1.75 !default;\n$custom-switch-indicator-border-radius: $custom-control-indicator-size / 2 !default;\n$custom-switch-indicator-size: subtract($custom-control-indicator-size, $custom-control-indicator-border-width * 4) !default;\n\n$custom-select-padding-y: $input-padding-y !default;\n$custom-select-padding-x: $input-padding-x !default;\n$custom-select-font-family: $input-font-family !default;\n$custom-select-font-size: $input-font-size !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-font-weight: $input-font-weight !default;\n$custom-select-line-height: $input-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $input-bg !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>\") !default;\n$custom-select-background: escape-svg($custom-select-indicator) no-repeat right $custom-select-padding-x center / $custom-select-bg-size !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)\n\n$custom-select-feedback-icon-padding-right: add(1em * .75, (2 * $custom-select-padding-y * .75) + $custom-select-padding-x + $custom-select-indicator-padding) !default;\n$custom-select-feedback-icon-position: center right ($custom-select-padding-x + $custom-select-indicator-padding) !default;\n$custom-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$custom-select-border-width: $input-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n$custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-width: $input-focus-width !default;\n$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width $input-btn-focus-color !default;\n\n$custom-select-padding-y-sm: $input-padding-y-sm !default;\n$custom-select-padding-x-sm: $input-padding-x-sm !default;\n$custom-select-font-size-sm: $input-font-size-sm !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-padding-y-lg: $input-padding-y-lg !default;\n$custom-select-padding-x-lg: $input-padding-x-lg !default;\n$custom-select-font-size-lg: $input-font-size-lg !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-range-track-width: 100% !default;\n$custom-range-track-height: .5rem !default;\n$custom-range-track-cursor: pointer !default;\n$custom-range-track-bg: $gray-300 !default;\n$custom-range-track-border-radius: 1rem !default;\n$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-range-thumb-width: 1rem !default;\n$custom-range-thumb-height: $custom-range-thumb-width !default;\n$custom-range-thumb-bg: $component-active-bg !default;\n$custom-range-thumb-border: 0 !default;\n$custom-range-thumb-border-radius: 1rem !default;\n$custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$custom-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in IE/Edge\n$custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;\n$custom-range-thumb-disabled-bg: $gray-500 !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-height-inner: $input-height-inner !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-focus-box-shadow !default;\n$custom-file-disabled-bg: $input-disabled-bg !default;\n\n$custom-file-padding-y: $input-padding-y !default;\n$custom-file-padding-x: $input-padding-x !default;\n$custom-file-line-height: $input-line-height !default;\n$custom-file-font-family: $input-font-family !default;\n$custom-file-font-weight: $input-font-weight !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' 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'/></svg>\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}' viewBox='0 0 12 12'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>\") !default;\n\n$form-validation-states: () !default;\n$form-validation-states: map-merge(\n (\n \"valid\": (\n \"color\": $form-feedback-valid-color,\n \"icon\": $form-feedback-icon-valid\n ),\n \"invalid\": (\n \"color\": $form-feedback-invalid-color,\n \"icon\": $form-feedback-icon-invalid\n ),\n ),\n $form-validation-states\n);\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-divider-color: $gray-200 !default;\n$nav-divider-margin-y: $spacer / 2 !default;\n\n\n// Navbar\n\n$navbar-padding-y: $spacer / 2 !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: $body-color !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-divider-margin-y: $nav-divider-margin-y !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;\n\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-color: null !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: $grid-gutter-width / 2 !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n// Form tooltips must come after regular tooltips\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: $line-height-base !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n\n\n// Popovers\n\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Toasts\n\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .25rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba($white, .85) !default;\n$toast-border-width: 1px !default;\n$toast-border-color: rgba(0, 0, 0, .1) !default;\n$toast-border-radius: .25rem !default;\n$toast-box-shadow: 0 .25rem .75rem rgba($black, .1) !default;\n\n$toast-header-color: $gray-600 !default;\n$toast-header-background-color: rgba($white, .85) !default;\n$toast-header-border-color: rgba(0, 0, 0, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-transition: $btn-transition !default;\n$badge-focus-width: $input-btn-focus-width !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n// Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $border-color !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding-y: 1rem !default;\n$modal-header-padding-x: 1rem !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-xl: 1140px !default;\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n$alert-bg-level: -10 !default;\n$alert-border-level: -9 !default;\n$alert-color-level: 6 !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n\n// List group\n\n$list-group-color: null !default;\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-font-size: null !default;\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n\n$breadcrumb-border-radius: $border-radius !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' width='8' height='8' viewBox='0 0 8 8'><path d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/></svg>\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' width='8' height='8' viewBox='0 0 8 8'><path d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/></svg>\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n\n\n// Spinners\n\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-border-width: .25em !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n\n\n// Utilities\n\n$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;\n$overflows: auto, hidden !default;\n$positions: static, relative, absolute, fixed, sticky !default;\n$user-selects: all, auto, none !default;\n\n\n// Printing\n\n$print-page-size: a3 !default;\n$print-body-min-width: map-get($grid-breakpoints, \"lg\") !default;\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated font-resizing\n//\n// See https://github.com/twbs/rfs\n\n// Configuration\n\n// Base font size\n$rfs-base-font-size: 1.25rem !default;\n$rfs-font-size-unit: rem !default;\n\n// Breakpoint at where font-size starts decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n// Resize font-size based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != \"number\" or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-responsive-font-sizes to false\n$enable-responsive-font-sizes: true !default;\n\n// Cache $rfs-base-font-size unit\n$rfs-base-font-size-unit: unit($rfs-base-font-size);\n\n// Remove px-unit from $rfs-base-font-size for calculations\n@if $rfs-base-font-size-unit == \"px\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);\n}\n@else if $rfs-base-font-size-unit == \"rem\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == \"px\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == \"rem\" or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);\n}\n\n// Responsive font-size mixin\n@mixin rfs($fs, $important: false) {\n // Cache $fs unit\n $fs-unit: if(type-of($fs) == \"number\", unit($fs), false);\n\n // Add !important suffix if needed\n $rfs-suffix: if($important, \" !important\", \"\");\n\n // If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $fs-unit or $fs-unit != \"\" and $fs-unit != \"px\" and $fs-unit != \"rem\" or $fs == 0 {\n font-size: #{$fs}#{$rfs-suffix};\n }\n @else {\n // Variables for storing static and fluid rescaling\n $rfs-static: null;\n $rfs-fluid: null;\n\n // Remove px-unit from $fs for calculations\n @if $fs-unit == \"px\" {\n $fs: $fs / ($fs * 0 + 1);\n }\n @else if $fs-unit == \"rem\" {\n $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);\n }\n\n // Set default font-size\n @if $rfs-font-size-unit == rem {\n $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};\n }\n @else if $rfs-font-size-unit == px {\n $rfs-static: #{$fs}px#{$rfs-suffix};\n }\n @else {\n @error \"`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.\";\n }\n\n // Only add media query if font-size is bigger as the minimum font-size\n // If $rfs-factor == 1, no rescaling will take place\n @if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {\n $min-width: null;\n $variable-unit: null;\n\n // Calculate minimum font-size for given font-size\n $fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;\n\n // Calculate difference between given font-size and minimum font-size for given font-size\n $fs-diff: $fs - $fs-min;\n\n // Base font-size formatting\n // No need to check if the unit is valid, because we did that before\n $min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);\n\n // If two-dimensional, use smallest of screen width and height\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};\n\n // Set the calculated font-size.\n $rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};\n }\n\n // Rendering\n @if $rfs-fluid == null {\n // Only render static font-size if no fluid font-size is available\n font-size: $rfs-static;\n }\n @else {\n $mq-value: null;\n\n // RFS breakpoint formatting\n @if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {\n $mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};\n }\n @else if $rfs-breakpoint-unit == px {\n $mq-value: #{$rfs-breakpoint}px;\n }\n @else {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n }\n\n @if $rfs-class == \"disable\" {\n // Adding an extra class increases specificity,\n // which prevents the media query to override the font size\n &,\n .disable-responsive-font-size &,\n &.disable-responsive-font-size {\n font-size: $rfs-static;\n }\n }\n @else {\n font-size: $rfs-static;\n }\n\n @if $rfs-two-dimensional {\n @media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n @else {\n @media (max-width: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n }\n }\n}\n\n// The font-size & responsive-font-size mixin uses RFS to rescale font sizes\n@mixin font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n\n@mixin responsive-font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n","// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover() {\n &:hover { @content; }\n}\n\n@mixin hover-focus() {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus() {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active() {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n"]}
|
static/bootstrap/css/bootstrap-reboot.min.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2020 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2020 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
| 7 |
+
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
| 8 |
+
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
static/bootstrap/css/bootstrap-reboot.min.css.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version":3,"sources":["../../scss/bootstrap-reboot.scss","../../scss/_reboot.scss","dist/css/bootstrap-reboot.css","../../scss/vendor/_rfs.scss","bootstrap-reboot.css","../../scss/mixins/_hover.scss"],"names":[],"mappings":"AAAA;;;;;;ACkBA,ECTA,QADA,SDaE,WAAA,WAGF,KACE,YAAA,WACA,YAAA,KACA,yBAAA,KACA,4BAAA,YAMF,QAAA,MAAA,WAAA,OAAA,OAAA,OAAA,OAAA,KAAA,IAAA,QACE,QAAA,MAUF,KACE,OAAA,EACA,YAAA,aAAA,CAAA,kBAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBEgFI,UAAA,KF9EJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,KACA,iBAAA,KGlBF,0CH+BE,QAAA,YASF,GACE,WAAA,YACA,OAAA,EACA,SAAA,QAaF,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAOF,EACE,WAAA,EACA,cAAA,KC9CF,0BDyDA,YAEE,gBAAA,UACA,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,cAAA,EACA,iCAAA,KAAA,yBAAA,KAGF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QCnDF,GDsDA,GCvDA,GD0DE,WAAA,EACA,cAAA,KAGF,MCtDA,MACA,MAFA,MD2DE,cAAA,EAGF,GACE,YAAA,IAGF,GACE,cAAA,MACA,YAAA,EAGF,WACE,OAAA,EAAA,EAAA,KAGF,ECvDA,ODyDE,YAAA,OAGF,MExFI,UAAA,IFiGJ,IC5DA,ID8DE,SAAA,SEnGE,UAAA,IFqGF,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAON,EACE,MAAA,QACA,gBAAA,KACA,iBAAA,YIhLA,QJmLE,MAAA,QACA,gBAAA,UASJ,2BACE,MAAA,QACA,gBAAA,KI/LA,iCJkME,MAAA,QACA,gBAAA,KC7DJ,KACA,IDqEA,ICpEA,KDwEE,YAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UEpJE,UAAA,IFwJJ,IAEE,WAAA,EAEA,cAAA,KAEA,SAAA,KAGA,mBAAA,UAQF,OAEE,OAAA,EAAA,EAAA,KAQF,IACE,eAAA,OACA,aAAA,KAGF,IAGE,SAAA,OACA,eAAA,OAQF,MACE,gBAAA,SAGF,QACE,YAAA,OACA,eAAA,OACA,MAAA,QACA,WAAA,KACA,aAAA,OAGF,GAGE,WAAA,QAQF,MAEE,QAAA,aACA,cAAA,MAMF,OAEE,cAAA,EAOF,aACE,QAAA,IAAA,OACA,QAAA,IAAA,KAAA,yBC1GF,OD6GA,MC3GA,SADA,OAEA,SD+GE,OAAA,EACA,YAAA,QExPE,UAAA,QF0PF,YAAA,QAGF,OC7GA,MD+GE,SAAA,QAGF,OC7GA,OD+GE,eAAA,KG7GF,cHoHE,OAAA,QAMF,OACE,UAAA,OChHF,cACA,aACA,cDqHA,OAIE,mBAAA,OCpHF,6BACA,4BACA,6BDuHE,sBAKI,OAAA,QCvHN,gCACA,+BACA,gCD2HA,yBAIE,QAAA,EACA,aAAA,KC1HF,qBD6HA,kBAEE,WAAA,WACA,QAAA,EAIF,SACE,SAAA,KAEA,OAAA,SAGF,SAME,UAAA,EAEA,QAAA,EACA,OAAA,EACA,OAAA,EAKF,OACE,QAAA,MACA,MAAA,KACA,UAAA,KACA,QAAA,EACA,cAAA,ME/RI,UAAA,OFiSJ,YAAA,QACA,MAAA,QACA,YAAA,OAGF,SACE,eAAA,SGvIF,yCFGA,yCD0IE,OAAA,KGxIF,cHgJE,eAAA,KACA,mBAAA,KG5IF,yCHoJE,mBAAA,KAQF,6BACE,KAAA,QACA,mBAAA,OAOF,OACE,QAAA,aAGF,QACE,QAAA,UACA,OAAA,QAGF,SACE,QAAA,KGzJF,SH+JE,QAAA","sourcesContent":["/*!\n * Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `<th>` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `<td>` alignment by inheriting from the `<body>`, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-blacklist\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`<button>` buttons\n//\n// Details at https://github.com/twbs/bootstrap/pull/30562\n[role=\"button\"] {\n cursor: pointer;\n}\n\n// Remove the inheritance of word-wrap in Safari.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24990\nselect {\n word-wrap: normal;\n}\n\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Opinionated: add \"hand\" cursor to non-disabled button elements.\n@if $enable-pointer-cursor-for-buttons {\n button,\n [type=\"button\"],\n [type=\"reset\"],\n [type=\"submit\"] {\n &:not(:disabled) {\n cursor: pointer;\n }\n }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n @include font-size(1.5rem);\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n/*# sourceMappingURL=bootstrap-reboot.css.map */","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated font-resizing\n//\n// See https://github.com/twbs/rfs\n\n// Configuration\n\n// Base font size\n$rfs-base-font-size: 1.25rem !default;\n$rfs-font-size-unit: rem !default;\n\n// Breakpoint at where font-size starts decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n// Resize font-size based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != \"number\" or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-responsive-font-sizes to false\n$enable-responsive-font-sizes: true !default;\n\n// Cache $rfs-base-font-size unit\n$rfs-base-font-size-unit: unit($rfs-base-font-size);\n\n// Remove px-unit from $rfs-base-font-size for calculations\n@if $rfs-base-font-size-unit == \"px\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);\n}\n@else if $rfs-base-font-size-unit == \"rem\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == \"px\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == \"rem\" or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);\n}\n\n// Responsive font-size mixin\n@mixin rfs($fs, $important: false) {\n // Cache $fs unit\n $fs-unit: if(type-of($fs) == \"number\", unit($fs), false);\n\n // Add !important suffix if needed\n $rfs-suffix: if($important, \" !important\", \"\");\n\n // If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $fs-unit or $fs-unit != \"\" and $fs-unit != \"px\" and $fs-unit != \"rem\" or $fs == 0 {\n font-size: #{$fs}#{$rfs-suffix};\n }\n @else {\n // Variables for storing static and fluid rescaling\n $rfs-static: null;\n $rfs-fluid: null;\n\n // Remove px-unit from $fs for calculations\n @if $fs-unit == \"px\" {\n $fs: $fs / ($fs * 0 + 1);\n }\n @else if $fs-unit == \"rem\" {\n $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);\n }\n\n // Set default font-size\n @if $rfs-font-size-unit == rem {\n $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};\n }\n @else if $rfs-font-size-unit == px {\n $rfs-static: #{$fs}px#{$rfs-suffix};\n }\n @else {\n @error \"`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.\";\n }\n\n // Only add media query if font-size is bigger as the minimum font-size\n // If $rfs-factor == 1, no rescaling will take place\n @if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {\n $min-width: null;\n $variable-unit: null;\n\n // Calculate minimum font-size for given font-size\n $fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;\n\n // Calculate difference between given font-size and minimum font-size for given font-size\n $fs-diff: $fs - $fs-min;\n\n // Base font-size formatting\n // No need to check if the unit is valid, because we did that before\n $min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);\n\n // If two-dimensional, use smallest of screen width and height\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};\n\n // Set the calculated font-size.\n $rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};\n }\n\n // Rendering\n @if $rfs-fluid == null {\n // Only render static font-size if no fluid font-size is available\n font-size: $rfs-static;\n }\n @else {\n $mq-value: null;\n\n // RFS breakpoint formatting\n @if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {\n $mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};\n }\n @else if $rfs-breakpoint-unit == px {\n $mq-value: #{$rfs-breakpoint}px;\n }\n @else {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n }\n\n @if $rfs-class == \"disable\" {\n // Adding an extra class increases specificity,\n // which prevents the media query to override the font size\n &,\n .disable-responsive-font-size &,\n &.disable-responsive-font-size {\n font-size: $rfs-static;\n }\n }\n @else {\n font-size: $rfs-static;\n }\n\n @if $rfs-two-dimensional {\n @media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n @else {\n @media (max-width: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n }\n }\n}\n\n// The font-size & responsive-font-size mixin uses RFS to rescale font sizes\n@mixin font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n\n@mixin responsive-font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n","/*!\n * Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */","// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover() {\n &:hover { @content; }\n}\n\n@mixin hover-focus() {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus() {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active() {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n"]}
|
static/bootstrap/css/bootstrap.css
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/css/bootstrap.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/css/bootstrap.min.css
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/css/bootstrap.min.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/js/bootstrap.bundle.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/js/bootstrap.bundle.js.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/js/bootstrap.bundle.min.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap v4.5.2 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
| 4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 5 |
+
*/
|
| 6 |
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery)}(this,(function(t,e){"use strict";function n(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function i(t,e,i){return e&&n(t.prototype,e),i&&n(t,i),t}function o(){return(o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t}).apply(this,arguments)}e=e&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e;function r(t){var n=this,i=!1;return e(this).one(s.TRANSITION_END,(function(){i=!0})),setTimeout((function(){i||s.triggerTransitionEnd(n)}),t),this}var s={TRANSITION_END:"bsTransitionEnd",getUID:function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},getSelectorFromElement:function(t){var e=t.getAttribute("data-target");if(!e||"#"===e){var n=t.getAttribute("href");e=n&&"#"!==n?n.trim():""}try{return document.querySelector(e)?e:null}catch(t){return null}},getTransitionDurationFromElement:function(t){if(!t)return 0;var n=e(t).css("transition-duration"),i=e(t).css("transition-delay"),o=parseFloat(n),r=parseFloat(i);return o||r?(n=n.split(",")[0],i=i.split(",")[0],1e3*(parseFloat(n)+parseFloat(i))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){e(t).trigger("transitionend")},supportsTransitionEnd:function(){return Boolean("transitionend")},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=e[i],a=r&&s.isElement(r)?"element":null===(l=r)||"undefined"==typeof l?""+l:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(o).test(a))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+a+'" but expected type "'+o+'".')}var l},findShadowRoot:function(t){if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){var e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?s.findShadowRoot(t.parentNode):null},jQueryDetection:function(){if("undefined"==typeof e)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||t[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};s.jQueryDetection(),e.fn.emulateTransitionEnd=r,e.event.special[s.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var a="alert",l=e.fn[a],c=function(){function t(t){this._element=t}var n=t.prototype;return n.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},n.dispose=function(){e.removeData(this._element,"bs.alert"),this._element=null},n._getRootElement=function(t){var n=s.getSelectorFromElement(t),i=!1;return n&&(i=document.querySelector(n)),i||(i=e(t).closest(".alert")[0]),i},n._triggerCloseEvent=function(t){var n=e.Event("close.bs.alert");return e(t).trigger(n),n},n._removeElement=function(t){var n=this;if(e(t).removeClass("show"),e(t).hasClass("fade")){var i=s.getTransitionDurationFromElement(t);e(t).one(s.TRANSITION_END,(function(e){return n._destroyElement(t,e)})).emulateTransitionEnd(i)}else this._destroyElement(t)},n._destroyElement=function(t){e(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.alert");o||(o=new t(this),i.data("bs.alert",o)),"close"===n&&o[n](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',c._handleDismiss(new c)),e.fn[a]=c._jQueryInterface,e.fn[a].Constructor=c,e.fn[a].noConflict=function(){return e.fn[a]=l,c._jQueryInterface};var h=e.fn.button,u=function(){function t(t){this._element=t}var n=t.prototype;return n.toggle=function(){var t=!0,n=!0,i=e(this._element).closest('[data-toggle="buttons"]')[0];if(i){var o=this._element.querySelector('input:not([type="hidden"])');if(o){if("radio"===o.type)if(o.checked&&this._element.classList.contains("active"))t=!1;else{var r=i.querySelector(".active");r&&e(r).removeClass("active")}t&&("checkbox"!==o.type&&"radio"!==o.type||(o.checked=!this._element.classList.contains("active")),e(o).trigger("change")),o.focus(),n=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(n&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),t&&e(this._element).toggleClass("active"))},n.dispose=function(){e.removeData(this._element,"bs.button"),this._element=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.button");i||(i=new t(this),e(this).data("bs.button",i)),"toggle"===n&&i[n]()}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=t.target,i=n;if(e(n).hasClass("btn")||(n=e(n).closest(".btn")[0]),!n||n.hasAttribute("disabled")||n.classList.contains("disabled"))t.preventDefault();else{var o=n.querySelector('input:not([type="hidden"])');if(o&&(o.hasAttribute("disabled")||o.classList.contains("disabled")))return void t.preventDefault();("LABEL"!==i.tagName||o&&"checkbox"!==o.type)&&u._jQueryInterface.call(e(n),"toggle")}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=e(t.target).closest(".btn")[0];e(n).toggleClass("focus",/^focus(in)?$/.test(t.type))})),e(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e<n;e++){var i=t[e],o=i.querySelector('input:not([type="hidden"])');o.checked||o.hasAttribute("checked")?i.classList.add("active"):i.classList.remove("active")}for(var r=0,s=(t=[].slice.call(document.querySelectorAll('[data-toggle="button"]'))).length;r<s;r++){var a=t[r];"true"===a.getAttribute("aria-pressed")?a.classList.add("active"):a.classList.remove("active")}})),e.fn.button=u._jQueryInterface,e.fn.button.Constructor=u,e.fn.button.noConflict=function(){return e.fn.button=h,u._jQueryInterface};var f="carousel",d=".bs.carousel",p=e.fn[f],m={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},g={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},_={TOUCH:"touch",PEN:"pen"},v=function(){function t(t,e){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._element=t,this._indicatorsElement=this._element.querySelector(".carousel-indicators"),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var n=t.prototype;return n.next=function(){this._isSliding||this._slide("next")},n.nextWhenVisible=function(){!document.hidden&&e(this._element).is(":visible")&&"hidden"!==e(this._element).css("visibility")&&this.next()},n.prev=function(){this._isSliding||this._slide("prev")},n.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(s.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},n.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},n.to=function(t){var n=this;this._activeElement=this._element.querySelector(".active.carousel-item");var i=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)e(this._element).one("slid.bs.carousel",(function(){return n.to(t)}));else{if(i===t)return this.pause(),void this.cycle();var o=t>i?"next":"prev";this._slide(o,this._items[t])}},n.dispose=function(){e(this._element).off(d),e.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},n._getConfig=function(t){return t=o({},m,t),s.typeCheckConfig(f,t,g),t},n._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},n._addEventListeners=function(){var t=this;this._config.keyboard&&e(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&e(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},n._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var n=function(e){t._pointerEvent&&_[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},i=function(e){t._pointerEvent&&_[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};e(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(e(this._element).on("pointerdown.bs.carousel",(function(t){return n(t)})),e(this._element).on("pointerup.bs.carousel",(function(t){return i(t)})),this._element.classList.add("pointer-event")):(e(this._element).on("touchstart.bs.carousel",(function(t){return n(t)})),e(this._element).on("touchmove.bs.carousel",(function(e){return function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),e(this._element).on("touchend.bs.carousel",(function(t){return i(t)})))}},n._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},n._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},n._getItemByDirection=function(t,e){var n="next"===t,i="prev"===t,o=this._getItemIndex(e),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return e;var s=(o+("prev"===t?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},n._triggerSlideEvent=function(t,n){var i=this._getItemIndex(t),o=this._getItemIndex(this._element.querySelector(".active.carousel-item")),r=e.Event("slide.bs.carousel",{relatedTarget:t,direction:n,from:o,to:i});return e(this._element).trigger(r),r},n._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var n=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));e(n).removeClass("active");var i=this._indicatorsElement.children[this._getItemIndex(t)];i&&e(i).addClass("active")}},n._slide=function(t,n){var i,o,r,a=this,l=this._element.querySelector(".active.carousel-item"),c=this._getItemIndex(l),h=n||l&&this._getItemByDirection(t,l),u=this._getItemIndex(h),f=Boolean(this._interval);if("next"===t?(i="carousel-item-left",o="carousel-item-next",r="left"):(i="carousel-item-right",o="carousel-item-prev",r="right"),h&&e(h).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(h,r).isDefaultPrevented()&&l&&h){this._isSliding=!0,f&&this.pause(),this._setActiveIndicatorElement(h);var d=e.Event("slid.bs.carousel",{relatedTarget:h,direction:r,from:c,to:u});if(e(this._element).hasClass("slide")){e(h).addClass(o),s.reflow(h),e(l).addClass(i),e(h).addClass(i);var p=parseInt(h.getAttribute("data-interval"),10);p?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=p):this._config.interval=this._config.defaultInterval||this._config.interval;var m=s.getTransitionDurationFromElement(l);e(l).one(s.TRANSITION_END,(function(){e(h).removeClass(i+" "+o).addClass("active"),e(l).removeClass("active "+o+" "+i),a._isSliding=!1,setTimeout((function(){return e(a._element).trigger(d)}),0)})).emulateTransitionEnd(m)}else e(l).removeClass("active"),e(h).addClass("active"),this._isSliding=!1,e(this._element).trigger(d);f&&this.cycle()}},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.carousel"),r=o({},m,e(this).data());"object"==typeof n&&(r=o({},r,n));var s="string"==typeof n?n:r.slide;if(i||(i=new t(this,r),e(this).data("bs.carousel",i)),"number"==typeof n)i.to(n);else if("string"==typeof s){if("undefined"==typeof i[s])throw new TypeError('No method named "'+s+'"');i[s]()}else r.interval&&r.ride&&(i.pause(),i.cycle())}))},t._dataApiClickHandler=function(n){var i=s.getSelectorFromElement(this);if(i){var r=e(i)[0];if(r&&e(r).hasClass("carousel")){var a=o({},e(r).data(),e(this).data()),l=this.getAttribute("data-slide-to");l&&(a.interval=!1),t._jQueryInterface.call(e(r),a),l&&e(r).data("bs.carousel").to(l),n.preventDefault()}}},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return m}}]),t}();e(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",v._dataApiClickHandler),e(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),n=0,i=t.length;n<i;n++){var o=e(t[n]);v._jQueryInterface.call(o,o.data())}})),e.fn[f]=v._jQueryInterface,e.fn[f].Constructor=v,e.fn[f].noConflict=function(){return e.fn[f]=p,v._jQueryInterface};var b="collapse",y=e.fn[b],w={toggle:!0,parent:""},E={toggle:"boolean",parent:"(string|element)"},T=function(){function t(t,e){this._isTransitioning=!1,this._element=t,this._config=this._getConfig(e),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+t.id+'"],[data-toggle="collapse"][data-target="#'+t.id+'"]'));for(var n=[].slice.call(document.querySelectorAll('[data-toggle="collapse"]')),i=0,o=n.length;i<o;i++){var r=n[i],a=s.getSelectorFromElement(r),l=[].slice.call(document.querySelectorAll(a)).filter((function(e){return e===t}));null!==a&&l.length>0&&(this._selector=a,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var n=t.prototype;return n.toggle=function(){e(this._element).hasClass("show")?this.hide():this.show()},n.show=function(){var n,i,o=this;if(!this._isTransitioning&&!e(this._element).hasClass("show")&&(this._parent&&0===(n=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof o._config.parent?t.getAttribute("data-parent")===o._config.parent:t.classList.contains("collapse")}))).length&&(n=null),!(n&&(i=e(n).not(this._selector).data("bs.collapse"))&&i._isTransitioning))){var r=e.Event("show.bs.collapse");if(e(this._element).trigger(r),!r.isDefaultPrevented()){n&&(t._jQueryInterface.call(e(n).not(this._selector),"hide"),i||e(n).data("bs.collapse",null));var a=this._getDimension();e(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[a]=0,this._triggerArray.length&&e(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(a[0].toUpperCase()+a.slice(1)),c=s.getTransitionDurationFromElement(this._element);e(this._element).one(s.TRANSITION_END,(function(){e(o._element).removeClass("collapsing").addClass("collapse show"),o._element.style[a]="",o.setTransitioning(!1),e(o._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(c),this._element.style[a]=this._element[l]+"px"}}},n.hide=function(){var t=this;if(!this._isTransitioning&&e(this._element).hasClass("show")){var n=e.Event("hide.bs.collapse");if(e(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",s.reflow(this._element),e(this._element).addClass("collapsing").removeClass("collapse show");var o=this._triggerArray.length;if(o>0)for(var r=0;r<o;r++){var a=this._triggerArray[r],l=s.getSelectorFromElement(a);if(null!==l)e([].slice.call(document.querySelectorAll(l))).hasClass("show")||e(a).addClass("collapsed").attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[i]="";var c=s.getTransitionDurationFromElement(this._element);e(this._element).one(s.TRANSITION_END,(function(){t.setTransitioning(!1),e(t._element).removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")})).emulateTransitionEnd(c)}}},n.setTransitioning=function(t){this._isTransitioning=t},n.dispose=function(){e.removeData(this._element,"bs.collapse"),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},n._getConfig=function(t){return(t=o({},w,t)).toggle=Boolean(t.toggle),s.typeCheckConfig(b,t,E),t},n._getDimension=function(){return e(this._element).hasClass("width")?"width":"height"},n._getParent=function(){var n,i=this;s.isElement(this._config.parent)?(n=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(n=this._config.parent[0])):n=document.querySelector(this._config.parent);var o='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',r=[].slice.call(n.querySelectorAll(o));return e(r).each((function(e,n){i._addAriaAndCollapsedClass(t._getTargetFromElement(n),[n])})),n},n._addAriaAndCollapsedClass=function(t,n){var i=e(t).hasClass("show");n.length&&e(n).toggleClass("collapsed",!i).attr("aria-expanded",i)},t._getTargetFromElement=function(t){var e=s.getSelectorFromElement(t);return e?document.querySelector(e):null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),r=i.data("bs.collapse"),s=o({},w,i.data(),"object"==typeof n&&n?n:{});if(!r&&s.toggle&&"string"==typeof n&&/show|hide/.test(n)&&(s.toggle=!1),r||(r=new t(this,s),i.data("bs.collapse",r)),"string"==typeof n){if("undefined"==typeof r[n])throw new TypeError('No method named "'+n+'"');r[n]()}}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return w}}]),t}();e(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',(function(t){"A"===t.currentTarget.tagName&&t.preventDefault();var n=e(this),i=s.getSelectorFromElement(this),o=[].slice.call(document.querySelectorAll(i));e(o).each((function(){var t=e(this),i=t.data("bs.collapse")?"toggle":n.data();T._jQueryInterface.call(t,i)}))})),e.fn[b]=T._jQueryInterface,e.fn[b].Constructor=T,e.fn[b].noConflict=function(){return e.fn[b]=y,T._jQueryInterface};var C="undefined"!=typeof window&&"undefined"!=typeof document&&"undefined"!=typeof navigator,S=function(){for(var t=["Edge","Trident","Firefox"],e=0;e<t.length;e+=1)if(C&&navigator.userAgent.indexOf(t[e])>=0)return 1;return 0}();var D=C&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then((function(){e=!1,t()})))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout((function(){e=!1,t()}),S))}};function N(t){return t&&"[object Function]"==={}.toString.call(t)}function k(t,e){if(1!==t.nodeType)return[];var n=t.ownerDocument.defaultView.getComputedStyle(t,null);return e?n[e]:n}function A(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function I(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=k(t),n=e.overflow,i=e.overflowX,o=e.overflowY;return/(auto|scroll|overlay)/.test(n+o+i)?t:I(A(t))}function O(t){return t&&t.referenceNode?t.referenceNode:t}var x=C&&!(!window.MSInputMethodContext||!document.documentMode),j=C&&/MSIE 10/.test(navigator.userAgent);function L(t){return 11===t?x:10===t?j:x||j}function P(t){if(!t)return document.documentElement;for(var e=L(10)?document.body:null,n=t.offsetParent||null;n===e&&t.nextElementSibling;)n=(t=t.nextElementSibling).offsetParent;var i=n&&n.nodeName;return i&&"BODY"!==i&&"HTML"!==i?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===k(n,"position")?P(n):n:t?t.ownerDocument.documentElement:document.documentElement}function F(t){return null!==t.parentNode?F(t.parentNode):t}function R(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,i=n?t:e,o=n?e:t,r=document.createRange();r.setStart(i,0),r.setEnd(o,0);var s,a,l=r.commonAncestorContainer;if(t!==l&&e!==l||i.contains(o))return"BODY"===(a=(s=l).nodeName)||"HTML"!==a&&P(s.firstElementChild)!==s?P(l):l;var c=F(t);return c.host?R(c.host,e):R(t,F(e).host)}function H(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top",n="top"===e?"scrollTop":"scrollLeft",i=t.nodeName;if("BODY"===i||"HTML"===i){var o=t.ownerDocument.documentElement,r=t.ownerDocument.scrollingElement||o;return r[n]}return t[n]}function M(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=H(e,"top"),o=H(e,"left"),r=n?-1:1;return t.top+=i*r,t.bottom+=i*r,t.left+=o*r,t.right+=o*r,t}function B(t,e){var n="x"===e?"Left":"Top",i="Left"===n?"Right":"Bottom";return parseFloat(t["border"+n+"Width"])+parseFloat(t["border"+i+"Width"])}function q(t,e,n,i){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],L(10)?parseInt(n["offset"+t])+parseInt(i["margin"+("Height"===t?"Top":"Left")])+parseInt(i["margin"+("Height"===t?"Bottom":"Right")]):0)}function Q(t){var e=t.body,n=t.documentElement,i=L(10)&&getComputedStyle(n);return{height:q("Height",e,n,i),width:q("Width",e,n,i)}}var W=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},U=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),V=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},Y=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t};function z(t){return Y({},t,{right:t.left+t.width,bottom:t.top+t.height})}function X(t){var e={};try{if(L(10)){e=t.getBoundingClientRect();var n=H(t,"top"),i=H(t,"left");e.top+=n,e.left+=i,e.bottom+=n,e.right+=i}else e=t.getBoundingClientRect()}catch(t){}var o={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},r="HTML"===t.nodeName?Q(t.ownerDocument):{},s=r.width||t.clientWidth||o.width,a=r.height||t.clientHeight||o.height,l=t.offsetWidth-s,c=t.offsetHeight-a;if(l||c){var h=k(t);l-=B(h,"x"),c-=B(h,"y"),o.width-=l,o.height-=c}return z(o)}function K(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=L(10),o="HTML"===e.nodeName,r=X(t),s=X(e),a=I(t),l=k(e),c=parseFloat(l.borderTopWidth),h=parseFloat(l.borderLeftWidth);n&&o&&(s.top=Math.max(s.top,0),s.left=Math.max(s.left,0));var u=z({top:r.top-s.top-c,left:r.left-s.left-h,width:r.width,height:r.height});if(u.marginTop=0,u.marginLeft=0,!i&&o){var f=parseFloat(l.marginTop),d=parseFloat(l.marginLeft);u.top-=c-f,u.bottom-=c-f,u.left-=h-d,u.right-=h-d,u.marginTop=f,u.marginLeft=d}return(i&&!n?e.contains(a):e===a&&"BODY"!==a.nodeName)&&(u=M(u,e)),u}function G(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.ownerDocument.documentElement,i=K(t,n),o=Math.max(n.clientWidth,window.innerWidth||0),r=Math.max(n.clientHeight,window.innerHeight||0),s=e?0:H(n),a=e?0:H(n,"left"),l={top:s-i.top+i.marginTop,left:a-i.left+i.marginLeft,width:o,height:r};return z(l)}function $(t){var e=t.nodeName;if("BODY"===e||"HTML"===e)return!1;if("fixed"===k(t,"position"))return!0;var n=A(t);return!!n&&$(n)}function J(t){if(!t||!t.parentElement||L())return document.documentElement;for(var e=t.parentElement;e&&"none"===k(e,"transform");)e=e.parentElement;return e||document.documentElement}function Z(t,e,n,i){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],r={top:0,left:0},s=o?J(t):R(t,O(e));if("viewport"===i)r=G(s,o);else{var a=void 0;"scrollParent"===i?"BODY"===(a=I(A(e))).nodeName&&(a=t.ownerDocument.documentElement):a="window"===i?t.ownerDocument.documentElement:i;var l=K(a,s,o);if("HTML"!==a.nodeName||$(s))r=l;else{var c=Q(t.ownerDocument),h=c.height,u=c.width;r.top+=l.top-l.marginTop,r.bottom=h+l.top,r.left+=l.left-l.marginLeft,r.right=u+l.left}}var f="number"==typeof(n=n||0);return r.left+=f?n:n.left||0,r.top+=f?n:n.top||0,r.right-=f?n:n.right||0,r.bottom-=f?n:n.bottom||0,r}function tt(t){return t.width*t.height}function et(t,e,n,i,o){var r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var s=Z(n,i,r,o),a={top:{width:s.width,height:e.top-s.top},right:{width:s.right-e.right,height:s.height},bottom:{width:s.width,height:s.bottom-e.bottom},left:{width:e.left-s.left,height:s.height}},l=Object.keys(a).map((function(t){return Y({key:t},a[t],{area:tt(a[t])})})).sort((function(t,e){return e.area-t.area})),c=l.filter((function(t){var e=t.width,i=t.height;return e>=n.clientWidth&&i>=n.clientHeight})),h=c.length>0?c[0].key:l[0].key,u=t.split("-")[1];return h+(u?"-"+u:"")}function nt(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,o=i?J(e):R(e,O(n));return K(n,o,i)}function it(t){var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginTop||0)+parseFloat(e.marginBottom||0),i=parseFloat(e.marginLeft||0)+parseFloat(e.marginRight||0);return{width:t.offsetWidth+i,height:t.offsetHeight+n}}function ot(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,(function(t){return e[t]}))}function rt(t,e,n){n=n.split("-")[0];var i=it(t),o={width:i.width,height:i.height},r=-1!==["right","left"].indexOf(n),s=r?"top":"left",a=r?"left":"top",l=r?"height":"width",c=r?"width":"height";return o[s]=e[s]+e[l]/2-i[l]/2,o[a]=n===a?e[a]-i[c]:e[ot(a)],o}function st(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function at(t,e,n){return(void 0===n?t:t.slice(0,function(t,e,n){if(Array.prototype.findIndex)return t.findIndex((function(t){return t[e]===n}));var i=st(t,(function(t){return t[e]===n}));return t.indexOf(i)}(t,"name",n))).forEach((function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=t.function||t.fn;t.enabled&&N(n)&&(e.offsets.popper=z(e.offsets.popper),e.offsets.reference=z(e.offsets.reference),e=n(e,t))})),e}function lt(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=nt(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=et(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=rt(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=at(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function ct(t,e){return t.some((function(t){var n=t.name;return t.enabled&&n===e}))}function ht(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),i=0;i<e.length;i++){var o=e[i],r=o?""+o+n:t;if("undefined"!=typeof document.body.style[r])return r}return null}function ut(){return this.state.isDestroyed=!0,ct(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[ht("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function ft(t){var e=t.ownerDocument;return e?e.defaultView:window}function dt(t,e,n,i){n.updateBound=i,ft(t).addEventListener("resize",n.updateBound,{passive:!0});var o=I(t);return function t(e,n,i,o){var r="BODY"===e.nodeName,s=r?e.ownerDocument.defaultView:e;s.addEventListener(n,i,{passive:!0}),r||t(I(s.parentNode),n,i,o),o.push(s)}(o,"scroll",n.updateBound,n.scrollParents),n.scrollElement=o,n.eventsEnabled=!0,n}function pt(){this.state.eventsEnabled||(this.state=dt(this.reference,this.options,this.state,this.scheduleUpdate))}function mt(){var t,e;this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=(t=this.reference,e=this.state,ft(t).removeEventListener("resize",e.updateBound),e.scrollParents.forEach((function(t){t.removeEventListener("scroll",e.updateBound)})),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e))}function gt(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function _t(t,e){Object.keys(e).forEach((function(n){var i="";-1!==["width","height","top","right","bottom","left"].indexOf(n)&>(e[n])&&(i="px"),t.style[n]=e[n]+i}))}var vt=C&&/Firefox/i.test(navigator.userAgent);function bt(t,e,n){var i=st(t,(function(t){return t.name===e})),o=!!i&&t.some((function(t){return t.name===n&&t.enabled&&t.order<i.order}));if(!o){var r="`"+e+"`",s="`"+n+"`";console.warn(s+" modifier is required by "+r+" modifier in order to work, be sure to include it before "+r+"!")}return o}var yt=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],wt=yt.slice(3);function Et(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=wt.indexOf(t),i=wt.slice(n+1).concat(wt.slice(0,n));return e?i.reverse():i}var Tt="flip",Ct="clockwise",St="counterclockwise";function Dt(t,e,n,i){var o=[0,0],r=-1!==["right","left"].indexOf(i),s=t.split(/(\+|\-)/).map((function(t){return t.trim()})),a=s.indexOf(st(s,(function(t){return-1!==t.search(/,|\s/)})));s[a]&&-1===s[a].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,c=-1!==a?[s.slice(0,a).concat([s[a].split(l)[0]]),[s[a].split(l)[1]].concat(s.slice(a+1))]:[s];return(c=c.map((function(t,i){var o=(1===i?!r:r)?"height":"width",s=!1;return t.reduce((function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,s=!0,t):s?(t[t.length-1]+=e,s=!1,t):t.concat(e)}),[]).map((function(t){return function(t,e,n,i){var o=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),r=+o[1],s=o[2];if(!r)return t;if(0===s.indexOf("%")){var a=void 0;switch(s){case"%p":a=n;break;case"%":case"%r":default:a=i}return z(a)[e]/100*r}if("vh"===s||"vw"===s){return("vh"===s?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*r}return r}(t,o,e,n)}))}))).forEach((function(t,e){t.forEach((function(n,i){gt(n)&&(o[e]+=n*("-"===t[i-1]?-1:1))}))})),o}var Nt={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],i=e.split("-")[1];if(i){var o=t.offsets,r=o.reference,s=o.popper,a=-1!==["bottom","top"].indexOf(n),l=a?"left":"top",c=a?"width":"height",h={start:V({},l,r[l]),end:V({},l,r[l]+r[c]-s[c])};t.offsets.popper=Y({},s,h[i])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,i=t.placement,o=t.offsets,r=o.popper,s=o.reference,a=i.split("-")[0],l=void 0;return l=gt(+n)?[+n,0]:Dt(n,r,s,a),"left"===a?(r.top+=l[0],r.left-=l[1]):"right"===a?(r.top+=l[0],r.left+=l[1]):"top"===a?(r.left+=l[0],r.top-=l[1]):"bottom"===a&&(r.left+=l[0],r.top+=l[1]),t.popper=r,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||P(t.instance.popper);t.instance.reference===n&&(n=P(n));var i=ht("transform"),o=t.instance.popper.style,r=o.top,s=o.left,a=o[i];o.top="",o.left="",o[i]="";var l=Z(t.instance.popper,t.instance.reference,e.padding,n,t.positionFixed);o.top=r,o.left=s,o[i]=a,e.boundaries=l;var c=e.priority,h=t.offsets.popper,u={primary:function(t){var n=h[t];return h[t]<l[t]&&!e.escapeWithReference&&(n=Math.max(h[t],l[t])),V({},t,n)},secondary:function(t){var n="right"===t?"left":"top",i=h[n];return h[t]>l[t]&&!e.escapeWithReference&&(i=Math.min(h[n],l[t]-("right"===t?h.width:h.height))),V({},n,i)}};return c.forEach((function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";h=Y({},h,u[e](t))})),t.offsets.popper=h,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,i=e.reference,o=t.placement.split("-")[0],r=Math.floor,s=-1!==["top","bottom"].indexOf(o),a=s?"right":"bottom",l=s?"left":"top",c=s?"width":"height";return n[a]<r(i[l])&&(t.offsets.popper[l]=r(i[l])-n[c]),n[l]>r(i[a])&&(t.offsets.popper[l]=r(i[a])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var n;if(!bt(t.instance.modifiers,"arrow","keepTogether"))return t;var i=e.element;if("string"==typeof i){if(!(i=t.instance.popper.querySelector(i)))return t}else if(!t.instance.popper.contains(i))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var o=t.placement.split("-")[0],r=t.offsets,s=r.popper,a=r.reference,l=-1!==["left","right"].indexOf(o),c=l?"height":"width",h=l?"Top":"Left",u=h.toLowerCase(),f=l?"left":"top",d=l?"bottom":"right",p=it(i)[c];a[d]-p<s[u]&&(t.offsets.popper[u]-=s[u]-(a[d]-p)),a[u]+p>s[d]&&(t.offsets.popper[u]+=a[u]+p-s[d]),t.offsets.popper=z(t.offsets.popper);var m=a[u]+a[c]/2-p/2,g=k(t.instance.popper),_=parseFloat(g["margin"+h]),v=parseFloat(g["border"+h+"Width"]),b=m-t.offsets.popper[u]-_-v;return b=Math.max(Math.min(s[c]-p,b),0),t.arrowElement=i,t.offsets.arrow=(V(n={},u,Math.round(b)),V(n,f,""),n),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(ct(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=Z(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),i=t.placement.split("-")[0],o=ot(i),r=t.placement.split("-")[1]||"",s=[];switch(e.behavior){case Tt:s=[i,o];break;case Ct:s=Et(i);break;case St:s=Et(i,!0);break;default:s=e.behavior}return s.forEach((function(a,l){if(i!==a||s.length===l+1)return t;i=t.placement.split("-")[0],o=ot(i);var c=t.offsets.popper,h=t.offsets.reference,u=Math.floor,f="left"===i&&u(c.right)>u(h.left)||"right"===i&&u(c.left)<u(h.right)||"top"===i&&u(c.bottom)>u(h.top)||"bottom"===i&&u(c.top)<u(h.bottom),d=u(c.left)<u(n.left),p=u(c.right)>u(n.right),m=u(c.top)<u(n.top),g=u(c.bottom)>u(n.bottom),_="left"===i&&d||"right"===i&&p||"top"===i&&m||"bottom"===i&&g,v=-1!==["top","bottom"].indexOf(i),b=!!e.flipVariations&&(v&&"start"===r&&d||v&&"end"===r&&p||!v&&"start"===r&&m||!v&&"end"===r&&g),y=!!e.flipVariationsByContent&&(v&&"start"===r&&p||v&&"end"===r&&d||!v&&"start"===r&&g||!v&&"end"===r&&m),w=b||y;(f||_||w)&&(t.flipped=!0,(f||_)&&(i=s[l+1]),w&&(r=function(t){return"end"===t?"start":"start"===t?"end":t}(r)),t.placement=i+(r?"-"+r:""),t.offsets.popper=Y({},t.offsets.popper,rt(t.instance.popper,t.offsets.reference,t.placement)),t=at(t.instance.modifiers,t,"flip"))})),t},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],i=t.offsets,o=i.popper,r=i.reference,s=-1!==["left","right"].indexOf(n),a=-1===["top","left"].indexOf(n);return o[s?"left":"top"]=r[n]-(a?o[s?"width":"height"]:0),t.placement=ot(e),t.offsets.popper=z(o),t}},hide:{order:800,enabled:!0,fn:function(t){if(!bt(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=st(t.instance.modifiers,(function(t){return"preventOverflow"===t.name})).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,i=e.y,o=t.offsets.popper,r=st(t.instance.modifiers,(function(t){return"applyStyle"===t.name})).gpuAcceleration;void 0!==r&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var s=void 0!==r?r:e.gpuAcceleration,a=P(t.instance.popper),l=X(a),c={position:o.position},h=function(t,e){var n=t.offsets,i=n.popper,o=n.reference,r=Math.round,s=Math.floor,a=function(t){return t},l=r(o.width),c=r(i.width),h=-1!==["left","right"].indexOf(t.placement),u=-1!==t.placement.indexOf("-"),f=e?h||u||l%2==c%2?r:s:a,d=e?r:a;return{left:f(l%2==1&&c%2==1&&!u&&e?i.left-1:i.left),top:d(i.top),bottom:d(i.bottom),right:f(i.right)}}(t,window.devicePixelRatio<2||!vt),u="bottom"===n?"top":"bottom",f="right"===i?"left":"right",d=ht("transform"),p=void 0,m=void 0;if(m="bottom"===u?"HTML"===a.nodeName?-a.clientHeight+h.bottom:-l.height+h.bottom:h.top,p="right"===f?"HTML"===a.nodeName?-a.clientWidth+h.right:-l.width+h.right:h.left,s&&d)c[d]="translate3d("+p+"px, "+m+"px, 0)",c[u]=0,c[f]=0,c.willChange="transform";else{var g="bottom"===u?-1:1,_="right"===f?-1:1;c[u]=m*g,c[f]=p*_,c.willChange=u+", "+f}var v={"x-placement":t.placement};return t.attributes=Y({},v,t.attributes),t.styles=Y({},c,t.styles),t.arrowStyles=Y({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){var e,n;return _t(t.instance.popper,t.styles),e=t.instance.popper,n=t.attributes,Object.keys(n).forEach((function(t){!1!==n[t]?e.setAttribute(t,n[t]):e.removeAttribute(t)})),t.arrowElement&&Object.keys(t.arrowStyles).length&&_t(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,i,o){var r=nt(o,e,t,n.positionFixed),s=et(n.placement,r,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute("x-placement",s),_t(e,{position:n.positionFixed?"fixed":"absolute"}),n},gpuAcceleration:void 0}}},kt=function(){function t(e,n){var i=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};W(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(i.update)},this.update=D(this.update.bind(this)),this.options=Y({},t.Defaults,o),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(Y({},t.Defaults.modifiers,o.modifiers)).forEach((function(e){i.options.modifiers[e]=Y({},t.Defaults.modifiers[e]||{},o.modifiers?o.modifiers[e]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(t){return Y({name:t},i.options.modifiers[t])})).sort((function(t,e){return t.order-e.order})),this.modifiers.forEach((function(t){t.enabled&&N(t.onLoad)&&t.onLoad(i.reference,i.popper,i.options,t,i.state)})),this.update();var r=this.options.eventsEnabled;r&&this.enableEventListeners(),this.state.eventsEnabled=r}return U(t,[{key:"update",value:function(){return lt.call(this)}},{key:"destroy",value:function(){return ut.call(this)}},{key:"enableEventListeners",value:function(){return pt.call(this)}},{key:"disableEventListeners",value:function(){return mt.call(this)}}]),t}();kt.Utils=("undefined"!=typeof window?window:global).PopperUtils,kt.placements=yt,kt.Defaults=Nt;var At="dropdown",It=e.fn[At],Ot=new RegExp("38|40|27"),xt={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},jt={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},Lt=function(){function t(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var n=t.prototype;return n.toggle=function(){if(!this._element.disabled&&!e(this._element).hasClass("disabled")){var n=e(this._menu).hasClass("show");t._clearMenus(),n||this.show(!0)}},n.show=function(n){if(void 0===n&&(n=!1),!(this._element.disabled||e(this._element).hasClass("disabled")||e(this._menu).hasClass("show"))){var i={relatedTarget:this._element},o=e.Event("show.bs.dropdown",i),r=t._getParentFromElement(this._element);if(e(r).trigger(o),!o.isDefaultPrevented()){if(!this._inNavbar&&n){if("undefined"==typeof kt)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var a=this._element;"parent"===this._config.reference?a=r:s.isElement(this._config.reference)&&(a=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(a=this._config.reference[0])),"scrollParent"!==this._config.boundary&&e(r).addClass("position-static"),this._popper=new kt(a,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===e(r).closest(".navbar-nav").length&&e(document.body).children().on("mouseover",null,e.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),e(this._menu).toggleClass("show"),e(r).toggleClass("show").trigger(e.Event("shown.bs.dropdown",i))}}},n.hide=function(){if(!this._element.disabled&&!e(this._element).hasClass("disabled")&&e(this._menu).hasClass("show")){var n={relatedTarget:this._element},i=e.Event("hide.bs.dropdown",n),o=t._getParentFromElement(this._element);e(o).trigger(i),i.isDefaultPrevented()||(this._popper&&this._popper.destroy(),e(this._menu).toggleClass("show"),e(o).toggleClass("show").trigger(e.Event("hidden.bs.dropdown",n)))}},n.dispose=function(){e.removeData(this._element,"bs.dropdown"),e(this._element).off(".bs.dropdown"),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},n.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},n._addEventListeners=function(){var t=this;e(this._element).on("click.bs.dropdown",(function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}))},n._getConfig=function(t){return t=o({},this.constructor.Default,e(this._element).data(),t),s.typeCheckConfig(At,t,this.constructor.DefaultType),t},n._getMenuElement=function(){if(!this._menu){var e=t._getParentFromElement(this._element);e&&(this._menu=e.querySelector(".dropdown-menu"))}return this._menu},n._getPlacement=function(){var t=e(this._element.parentNode),n="bottom-start";return t.hasClass("dropup")?n=e(this._menu).hasClass("dropdown-menu-right")?"top-end":"top-start":t.hasClass("dropright")?n="right-start":t.hasClass("dropleft")?n="left-start":e(this._menu).hasClass("dropdown-menu-right")&&(n="bottom-end"),n},n._detectNavbar=function(){return e(this._element).closest(".navbar").length>0},n._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=o({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},n._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),o({},t,this._config.popperConfig)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.dropdown");if(i||(i=new t(this,"object"==typeof n?n:null),e(this).data("bs.dropdown",i)),"string"==typeof n){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},t._clearMenus=function(n){if(!n||3!==n.which&&("keyup"!==n.type||9===n.which))for(var i=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),o=0,r=i.length;o<r;o++){var s=t._getParentFromElement(i[o]),a=e(i[o]).data("bs.dropdown"),l={relatedTarget:i[o]};if(n&&"click"===n.type&&(l.clickEvent=n),a){var c=a._menu;if(e(s).hasClass("show")&&!(n&&("click"===n.type&&/input|textarea/i.test(n.target.tagName)||"keyup"===n.type&&9===n.which)&&e.contains(s,n.target))){var h=e.Event("hide.bs.dropdown",l);e(s).trigger(h),h.isDefaultPrevented()||("ontouchstart"in document.documentElement&&e(document.body).children().off("mouseover",null,e.noop),i[o].setAttribute("aria-expanded","false"),a._popper&&a._popper.destroy(),e(c).removeClass("show"),e(s).removeClass("show").trigger(e.Event("hidden.bs.dropdown",l)))}}}},t._getParentFromElement=function(t){var e,n=s.getSelectorFromElement(t);return n&&(e=document.querySelector(n)),e||t.parentNode},t._dataApiKeydownHandler=function(n){if(!(/input|textarea/i.test(n.target.tagName)?32===n.which||27!==n.which&&(40!==n.which&&38!==n.which||e(n.target).closest(".dropdown-menu").length):!Ot.test(n.which))&&!this.disabled&&!e(this).hasClass("disabled")){var i=t._getParentFromElement(this),o=e(i).hasClass("show");if(o||27!==n.which){if(n.preventDefault(),n.stopPropagation(),!o||o&&(27===n.which||32===n.which))return 27===n.which&&e(i.querySelector('[data-toggle="dropdown"]')).trigger("focus"),void e(this).trigger("click");var r=[].slice.call(i.querySelectorAll(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)")).filter((function(t){return e(t).is(":visible")}));if(0!==r.length){var s=r.indexOf(n.target);38===n.which&&s>0&&s--,40===n.which&&s<r.length-1&&s++,s<0&&(s=0),r[s].focus()}}}},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return xt}},{key:"DefaultType",get:function(){return jt}}]),t}();e(document).on("keydown.bs.dropdown.data-api",'[data-toggle="dropdown"]',Lt._dataApiKeydownHandler).on("keydown.bs.dropdown.data-api",".dropdown-menu",Lt._dataApiKeydownHandler).on("click.bs.dropdown.data-api keyup.bs.dropdown.data-api",Lt._clearMenus).on("click.bs.dropdown.data-api",'[data-toggle="dropdown"]',(function(t){t.preventDefault(),t.stopPropagation(),Lt._jQueryInterface.call(e(this),"toggle")})).on("click.bs.dropdown.data-api",".dropdown form",(function(t){t.stopPropagation()})),e.fn[At]=Lt._jQueryInterface,e.fn[At].Constructor=Lt,e.fn[At].noConflict=function(){return e.fn[At]=It,Lt._jQueryInterface};var Pt=e.fn.modal,Ft={backdrop:!0,keyboard:!0,focus:!0,show:!0},Rt={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},Ht=function(){function t(t,e){this._config=this._getConfig(e),this._element=t,this._dialog=t.querySelector(".modal-dialog"),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var n=t.prototype;return n.toggle=function(t){return this._isShown?this.hide():this.show(t)},n.show=function(t){var n=this;if(!this._isShown&&!this._isTransitioning){e(this._element).hasClass("fade")&&(this._isTransitioning=!0);var i=e.Event("show.bs.modal",{relatedTarget:t});e(this._element).trigger(i),this._isShown||i.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),e(this._element).on("click.dismiss.bs.modal",'[data-dismiss="modal"]',(function(t){return n.hide(t)})),e(this._dialog).on("mousedown.dismiss.bs.modal",(function(){e(n._element).one("mouseup.dismiss.bs.modal",(function(t){e(t.target).is(n._element)&&(n._ignoreBackdropClick=!0)}))})),this._showBackdrop((function(){return n._showElement(t)})))}},n.hide=function(t){var n=this;if(t&&t.preventDefault(),this._isShown&&!this._isTransitioning){var i=e.Event("hide.bs.modal");if(e(this._element).trigger(i),this._isShown&&!i.isDefaultPrevented()){this._isShown=!1;var o=e(this._element).hasClass("fade");if(o&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),e(document).off("focusin.bs.modal"),e(this._element).removeClass("show"),e(this._element).off("click.dismiss.bs.modal"),e(this._dialog).off("mousedown.dismiss.bs.modal"),o){var r=s.getTransitionDurationFromElement(this._element);e(this._element).one(s.TRANSITION_END,(function(t){return n._hideModal(t)})).emulateTransitionEnd(r)}else this._hideModal()}}},n.dispose=function(){[window,this._element,this._dialog].forEach((function(t){return e(t).off(".bs.modal")})),e(document).off("focusin.bs.modal"),e.removeData(this._element,"bs.modal"),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},n.handleUpdate=function(){this._adjustDialog()},n._getConfig=function(t){return t=o({},Ft,t),s.typeCheckConfig("modal",t,Rt),t},n._triggerBackdropTransition=function(){var t=this;if("static"===this._config.backdrop){var n=e.Event("hidePrevented.bs.modal");if(e(this._element).trigger(n),n.defaultPrevented)return;var i=this._element.scrollHeight>document.documentElement.clientHeight;i||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var o=s.getTransitionDurationFromElement(this._dialog);e(this._element).off(s.TRANSITION_END),e(this._element).one(s.TRANSITION_END,(function(){t._element.classList.remove("modal-static"),i||e(t._element).one(s.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,o)})).emulateTransitionEnd(o),this._element.focus()}else this.hide()},n._showElement=function(t){var n=this,i=e(this._element).hasClass("fade"),o=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),e(this._dialog).hasClass("modal-dialog-scrollable")&&o?o.scrollTop=0:this._element.scrollTop=0,i&&s.reflow(this._element),e(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var r=e.Event("shown.bs.modal",{relatedTarget:t}),a=function(){n._config.focus&&n._element.focus(),n._isTransitioning=!1,e(n._element).trigger(r)};if(i){var l=s.getTransitionDurationFromElement(this._dialog);e(this._dialog).one(s.TRANSITION_END,a).emulateTransitionEnd(l)}else a()},n._enforceFocus=function(){var t=this;e(document).off("focusin.bs.modal").on("focusin.bs.modal",(function(n){document!==n.target&&t._element!==n.target&&0===e(t._element).has(n.target).length&&t._element.focus()}))},n._setEscapeEvent=function(){var t=this;this._isShown?e(this._element).on("keydown.dismiss.bs.modal",(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||e(this._element).off("keydown.dismiss.bs.modal")},n._setResizeEvent=function(){var t=this;this._isShown?e(window).on("resize.bs.modal",(function(e){return t.handleUpdate(e)})):e(window).off("resize.bs.modal")},n._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){e(document.body).removeClass("modal-open"),t._resetAdjustments(),t._resetScrollbar(),e(t._element).trigger("hidden.bs.modal")}))},n._removeBackdrop=function(){this._backdrop&&(e(this._backdrop).remove(),this._backdrop=null)},n._showBackdrop=function(t){var n=this,i=e(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",i&&this._backdrop.classList.add(i),e(this._backdrop).appendTo(document.body),e(this._element).on("click.dismiss.bs.modal",(function(t){n._ignoreBackdropClick?n._ignoreBackdropClick=!1:t.target===t.currentTarget&&n._triggerBackdropTransition()})),i&&s.reflow(this._backdrop),e(this._backdrop).addClass("show"),!t)return;if(!i)return void t();var o=s.getTransitionDurationFromElement(this._backdrop);e(this._backdrop).one(s.TRANSITION_END,t).emulateTransitionEnd(o)}else if(!this._isShown&&this._backdrop){e(this._backdrop).removeClass("show");var r=function(){n._removeBackdrop(),t&&t()};if(e(this._element).hasClass("fade")){var a=s.getTransitionDurationFromElement(this._backdrop);e(this._backdrop).one(s.TRANSITION_END,r).emulateTransitionEnd(a)}else r()}else t&&t()},n._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},n._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},n._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},n._setScrollbar=function(){var t=this;if(this._isBodyOverflowing){var n=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top")),i=[].slice.call(document.querySelectorAll(".sticky-top"));e(n).each((function(n,i){var o=i.style.paddingRight,r=e(i).css("padding-right");e(i).data("padding-right",o).css("padding-right",parseFloat(r)+t._scrollbarWidth+"px")})),e(i).each((function(n,i){var o=i.style.marginRight,r=e(i).css("margin-right");e(i).data("margin-right",o).css("margin-right",parseFloat(r)-t._scrollbarWidth+"px")}));var o=document.body.style.paddingRight,r=e(document.body).css("padding-right");e(document.body).data("padding-right",o).css("padding-right",parseFloat(r)+this._scrollbarWidth+"px")}e(document.body).addClass("modal-open")},n._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top"));e(t).each((function(t,n){var i=e(n).data("padding-right");e(n).removeData("padding-right"),n.style.paddingRight=i||""}));var n=[].slice.call(document.querySelectorAll(".sticky-top"));e(n).each((function(t,n){var i=e(n).data("margin-right");"undefined"!=typeof i&&e(n).css("margin-right",i).removeData("margin-right")}));var i=e(document.body).data("padding-right");e(document.body).removeData("padding-right"),document.body.style.paddingRight=i||""},n._getScrollbarWidth=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},t._jQueryInterface=function(n,i){return this.each((function(){var r=e(this).data("bs.modal"),s=o({},Ft,e(this).data(),"object"==typeof n&&n?n:{});if(r||(r=new t(this,s),e(this).data("bs.modal",r)),"string"==typeof n){if("undefined"==typeof r[n])throw new TypeError('No method named "'+n+'"');r[n](i)}else s.show&&r.show(i)}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return Ft}}]),t}();e(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',(function(t){var n,i=this,r=s.getSelectorFromElement(this);r&&(n=document.querySelector(r));var a=e(n).data("bs.modal")?"toggle":o({},e(n).data(),e(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault();var l=e(n).one("show.bs.modal",(function(t){t.isDefaultPrevented()||l.one("hidden.bs.modal",(function(){e(i).is(":visible")&&i.focus()}))}));Ht._jQueryInterface.call(e(n),a,this)})),e.fn.modal=Ht._jQueryInterface,e.fn.modal.Constructor=Ht,e.fn.modal.noConflict=function(){return e.fn.modal=Pt,Ht._jQueryInterface};var Mt=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Bt={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},qt=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/gi,Qt=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;function Wt(t,e,n){if(0===t.length)return t;if(n&&"function"==typeof n)return n(t);for(var i=(new window.DOMParser).parseFromString(t,"text/html"),o=Object.keys(e),r=[].slice.call(i.body.querySelectorAll("*")),s=function(t,n){var i=r[t],s=i.nodeName.toLowerCase();if(-1===o.indexOf(i.nodeName.toLowerCase()))return i.parentNode.removeChild(i),"continue";var a=[].slice.call(i.attributes),l=[].concat(e["*"]||[],e[s]||[]);a.forEach((function(t){(function(t,e){var n=t.nodeName.toLowerCase();if(-1!==e.indexOf(n))return-1===Mt.indexOf(n)||Boolean(t.nodeValue.match(qt)||t.nodeValue.match(Qt));for(var i=e.filter((function(t){return t instanceof RegExp})),o=0,r=i.length;o<r;o++)if(n.match(i[o]))return!0;return!1})(t,l)||i.removeAttribute(t.nodeName)}))},a=0,l=r.length;a<l;a++)s(a);return i.body.innerHTML}var Ut="tooltip",Vt=e.fn[Ut],Yt=new RegExp("(^|\\s)bs-tooltip\\S+","g"),zt=["sanitize","whiteList","sanitizeFn"],Xt={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Kt={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},Gt={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Bt,popperConfig:null},$t={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},Jt=function(){function t(t,e){if("undefined"==typeof kt)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var n=t.prototype;return n.enable=function(){this._isEnabled=!0},n.disable=function(){this._isEnabled=!1},n.toggleEnabled=function(){this._isEnabled=!this._isEnabled},n.toggle=function(t){if(this._isEnabled)if(t){var n=this.constructor.DATA_KEY,i=e(t.currentTarget).data(n);i||(i=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(e(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},n.dispose=function(){clearTimeout(this._timeout),e.removeData(this.element,this.constructor.DATA_KEY),e(this.element).off(this.constructor.EVENT_KEY),e(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&e(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},n.show=function(){var t=this;if("none"===e(this.element).css("display"))throw new Error("Please use show on visible elements");var n=e.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){e(this.element).trigger(n);var i=s.findShadowRoot(this.element),o=e.contains(null!==i?i:this.element.ownerDocument.documentElement,this.element);if(n.isDefaultPrevented()||!o)return;var r=this.getTipElement(),a=s.getUID(this.constructor.NAME);r.setAttribute("id",a),this.element.setAttribute("aria-describedby",a),this.setContent(),this.config.animation&&e(r).addClass("fade");var l="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,c=this._getAttachment(l);this.addAttachmentClass(c);var h=this._getContainer();e(r).data(this.constructor.DATA_KEY,this),e.contains(this.element.ownerDocument.documentElement,this.tip)||e(r).appendTo(h),e(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new kt(this.element,r,this._getPopperConfig(c)),e(r).addClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().on("mouseover",null,e.noop);var u=function(){t.config.animation&&t._fixTransition();var n=t._hoverState;t._hoverState=null,e(t.element).trigger(t.constructor.Event.SHOWN),"out"===n&&t._leave(null,t)};if(e(this.tip).hasClass("fade")){var f=s.getTransitionDurationFromElement(this.tip);e(this.tip).one(s.TRANSITION_END,u).emulateTransitionEnd(f)}else u()}},n.hide=function(t){var n=this,i=this.getTipElement(),o=e.Event(this.constructor.Event.HIDE),r=function(){"show"!==n._hoverState&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),e(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),t&&t()};if(e(this.element).trigger(o),!o.isDefaultPrevented()){if(e(i).removeClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().off("mouseover",null,e.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,e(this.tip).hasClass("fade")){var a=s.getTransitionDurationFromElement(i);e(i).one(s.TRANSITION_END,r).emulateTransitionEnd(a)}else r();this._hoverState=""}},n.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},n.isWithContent=function(){return Boolean(this.getTitle())},n.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-tooltip-"+t)},n.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},n.setContent=function(){var t=this.getTipElement();this.setElementContent(e(t.querySelectorAll(".tooltip-inner")),this.getTitle()),e(t).removeClass("fade show")},n.setElementContent=function(t,n){"object"!=typeof n||!n.nodeType&&!n.jquery?this.config.html?(this.config.sanitize&&(n=Wt(n,this.config.whiteList,this.config.sanitizeFn)),t.html(n)):t.text(n):this.config.html?e(n).parent().is(t)||t.empty().append(n):t.text(e(n).text())},n.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},n._getPopperConfig=function(t){var e=this;return o({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},n._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=o({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},n._getContainer=function(){return!1===this.config.container?document.body:s.isElement(this.config.container)?e(this.config.container):e(document).find(this.config.container)},n._getAttachment=function(t){return Kt[t.toUpperCase()]},n._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(n){if("click"===n)e(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==n){var i="hover"===n?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,o="hover"===n?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;e(t.element).on(i,t.config.selector,(function(e){return t._enter(e)})).on(o,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},e(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=o({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},n._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},n._enter=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e(n.getTipElement()).hasClass("show")||"show"===n._hoverState?n._hoverState="show":(clearTimeout(n._timeout),n._hoverState="show",n.config.delay&&n.config.delay.show?n._timeout=setTimeout((function(){"show"===n._hoverState&&n.show()}),n.config.delay.show):n.show())},n._leave=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusout"===t.type?"focus":"hover"]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState="out",n.config.delay&&n.config.delay.hide?n._timeout=setTimeout((function(){"out"===n._hoverState&&n.hide()}),n.config.delay.hide):n.hide())},n._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},n._getConfig=function(t){var n=e(this.element).data();return Object.keys(n).forEach((function(t){-1!==zt.indexOf(t)&&delete n[t]})),"number"==typeof(t=o({},this.constructor.Default,n,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),s.typeCheckConfig(Ut,t,this.constructor.DefaultType),t.sanitize&&(t.template=Wt(t.template,t.whiteList,t.sanitizeFn)),t},n._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},n._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(Yt);null!==n&&n.length&&t.removeClass(n.join(""))},n._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},n._fixTransition=function(){var t=this.getTipElement(),n=this.config.animation;null===t.getAttribute("x-placement")&&(e(t).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.tooltip"),o="object"==typeof n&&n;if((i||!/dispose|hide/.test(n))&&(i||(i=new t(this,o),e(this).data("bs.tooltip",i)),"string"==typeof n)){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return Gt}},{key:"NAME",get:function(){return Ut}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return $t}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Xt}}]),t}();e.fn[Ut]=Jt._jQueryInterface,e.fn[Ut].Constructor=Jt,e.fn[Ut].noConflict=function(){return e.fn[Ut]=Vt,Jt._jQueryInterface};var Zt="popover",te=e.fn[Zt],ee=new RegExp("(^|\\s)bs-popover\\S+","g"),ne=o({},Jt.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),ie=o({},Jt.DefaultType,{content:"(string|element|function)"}),oe={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},re=function(t){var n,o;function r(){return t.apply(this,arguments)||this}o=t,(n=r).prototype=Object.create(o.prototype),n.prototype.constructor=n,n.__proto__=o;var s=r.prototype;return s.isWithContent=function(){return this.getTitle()||this._getContent()},s.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-popover-"+t)},s.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},s.setContent=function(){var t=e(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(t.find(".popover-body"),n),t.removeClass("fade show")},s._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},s._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(ee);null!==n&&n.length>0&&t.removeClass(n.join(""))},r._jQueryInterface=function(t){return this.each((function(){var n=e(this).data("bs.popover"),i="object"==typeof t?t:null;if((n||!/dispose|hide/.test(t))&&(n||(n=new r(this,i),e(this).data("bs.popover",n)),"string"==typeof t)){if("undefined"==typeof n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},i(r,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return ne}},{key:"NAME",get:function(){return Zt}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return oe}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return ie}}]),r}(Jt);e.fn[Zt]=re._jQueryInterface,e.fn[Zt].Constructor=re,e.fn[Zt].noConflict=function(){return e.fn[Zt]=te,re._jQueryInterface};var se="scrollspy",ae=e.fn[se],le={offset:10,method:"auto",target:""},ce={offset:"number",method:"string",target:"(string|element)"},he=function(){function t(t,n){var i=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(n),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,e(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return i._process(t)})),this.refresh(),this._process()}var n=t.prototype;return n.refresh=function(){var t=this,n=this._scrollElement===this._scrollElement.window?"offset":"position",i="auto"===this._config.method?n:this._config.method,o="position"===i?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var n,r=s.getSelectorFromElement(t);if(r&&(n=document.querySelector(r)),n){var a=n.getBoundingClientRect();if(a.width||a.height)return[e(n)[i]().top+o,r]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},n.dispose=function(){e.removeData(this._element,"bs.scrollspy"),e(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},n._getConfig=function(t){if("string"!=typeof(t=o({},le,"object"==typeof t&&t?t:{})).target&&s.isElement(t.target)){var n=e(t.target).attr("id");n||(n=s.getUID(se),e(t.target).attr("id",n)),t.target="#"+n}return s.typeCheckConfig(se,t,ce),t},n._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},n._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},n._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},n._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}}},n._activate=function(t){this._activeTarget=t,this._clear();var n=this._selector.split(",").map((function(e){return e+'[data-target="'+t+'"],'+e+'[href="'+t+'"]'})),i=e([].slice.call(document.querySelectorAll(n.join(","))));i.hasClass("dropdown-item")?(i.closest(".dropdown").find(".dropdown-toggle").addClass("active"),i.addClass("active")):(i.addClass("active"),i.parents(".nav, .list-group").prev(".nav-link, .list-group-item").addClass("active"),i.parents(".nav, .list-group").prev(".nav-item").children(".nav-link").addClass("active")),e(this._scrollElement).trigger("activate.bs.scrollspy",{relatedTarget:t})},n._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter((function(t){return t.classList.contains("active")})).forEach((function(t){return t.classList.remove("active")}))},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.scrollspy");if(i||(i=new t(this,"object"==typeof n&&n),e(this).data("bs.scrollspy",i)),"string"==typeof n){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return le}}]),t}();e(window).on("load.bs.scrollspy.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-spy="scroll"]')),n=t.length;n--;){var i=e(t[n]);he._jQueryInterface.call(i,i.data())}})),e.fn[se]=he._jQueryInterface,e.fn[se].Constructor=he,e.fn[se].noConflict=function(){return e.fn[se]=ae,he._jQueryInterface};var ue=e.fn.tab,fe=function(){function t(t){this._element=t}var n=t.prototype;return n.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&e(this._element).hasClass("active")||e(this._element).hasClass("disabled"))){var n,i,o=e(this._element).closest(".nav, .list-group")[0],r=s.getSelectorFromElement(this._element);if(o){var a="UL"===o.nodeName||"OL"===o.nodeName?"> li > .active":".active";i=(i=e.makeArray(e(o).find(a)))[i.length-1]}var l=e.Event("hide.bs.tab",{relatedTarget:this._element}),c=e.Event("show.bs.tab",{relatedTarget:i});if(i&&e(i).trigger(l),e(this._element).trigger(c),!c.isDefaultPrevented()&&!l.isDefaultPrevented()){r&&(n=document.querySelector(r)),this._activate(this._element,o);var h=function(){var n=e.Event("hidden.bs.tab",{relatedTarget:t._element}),o=e.Event("shown.bs.tab",{relatedTarget:i});e(i).trigger(n),e(t._element).trigger(o)};n?this._activate(n,n.parentNode,h):h()}}},n.dispose=function(){e.removeData(this._element,"bs.tab"),this._element=null},n._activate=function(t,n,i){var o=this,r=(!n||"UL"!==n.nodeName&&"OL"!==n.nodeName?e(n).children(".active"):e(n).find("> li > .active"))[0],a=i&&r&&e(r).hasClass("fade"),l=function(){return o._transitionComplete(t,r,i)};if(r&&a){var c=s.getTransitionDurationFromElement(r);e(r).removeClass("show").one(s.TRANSITION_END,l).emulateTransitionEnd(c)}else l()},n._transitionComplete=function(t,n,i){if(n){e(n).removeClass("active");var o=e(n.parentNode).find("> .dropdown-menu .active")[0];o&&e(o).removeClass("active"),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(e(t).addClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),s.reflow(t),t.classList.contains("fade")&&t.classList.add("show"),t.parentNode&&e(t.parentNode).hasClass("dropdown-menu")){var r=e(t).closest(".dropdown")[0];if(r){var a=[].slice.call(r.querySelectorAll(".dropdown-toggle"));e(a).addClass("active")}t.setAttribute("aria-expanded",!0)}i&&i()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.tab");if(o||(o=new t(this),i.data("bs.tab",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n]()}}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),fe._jQueryInterface.call(e(this),"show")})),e.fn.tab=fe._jQueryInterface,e.fn.tab.Constructor=fe,e.fn.tab.noConflict=function(){return e.fn.tab=ue,fe._jQueryInterface};var de=e.fn.toast,pe={animation:"boolean",autohide:"boolean",delay:"number"},me={animation:!0,autohide:!0,delay:500},ge=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var n=t.prototype;return n.show=function(){var t=this,n=e.Event("show.bs.toast");if(e(this._element).trigger(n),!n.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var i=function(){t._element.classList.remove("showing"),t._element.classList.add("show"),e(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove("hide"),s.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var o=s.getTransitionDurationFromElement(this._element);e(this._element).one(s.TRANSITION_END,i).emulateTransitionEnd(o)}else i()}},n.hide=function(){if(this._element.classList.contains("show")){var t=e.Event("hide.bs.toast");e(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},n.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),e(this._element).off("click.dismiss.bs.toast"),e.removeData(this._element,"bs.toast"),this._element=null,this._config=null},n._getConfig=function(t){return t=o({},me,e(this._element).data(),"object"==typeof t&&t?t:{}),s.typeCheckConfig("toast",t,this.constructor.DefaultType),t},n._setListeners=function(){var t=this;e(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return t.hide()}))},n._close=function(){var t=this,n=function(){t._element.classList.add("hide"),e(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var i=s.getTransitionDurationFromElement(this._element);e(this._element).one(s.TRANSITION_END,n).emulateTransitionEnd(i)}else n()},n._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.toast");if(o||(o=new t(this,"object"==typeof n&&n),i.data("bs.toast",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n](this)}}))},i(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"DefaultType",get:function(){return pe}},{key:"Default",get:function(){return me}}]),t}();e.fn.toast=ge._jQueryInterface,e.fn.toast.Constructor=ge,e.fn.toast.noConflict=function(){return e.fn.toast=de,ge._jQueryInterface},t.Alert=c,t.Button=u,t.Carousel=v,t.Collapse=T,t.Dropdown=Lt,t.Modal=Ht,t.Popover=re,t.Scrollspy=he,t.Tab=fe,t.Toast=ge,t.Tooltip=Jt,t.Util=s,Object.defineProperty(t,"__esModule",{value:!0})}));
|
| 7 |
+
//# sourceMappingURL=bootstrap.bundle.min.js.map
|
static/bootstrap/js/bootstrap.bundle.min.js.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/js/bootstrap.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/js/bootstrap.js.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/bootstrap/js/bootstrap.min.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap v4.5.2 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
| 4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 5 |
+
*/
|
| 6 |
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function o(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function s(){return(s=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t}).apply(this,arguments)}e=e&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e,n=n&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n;function r(t){var n=this,i=!1;return e(this).one(a.TRANSITION_END,(function(){i=!0})),setTimeout((function(){i||a.triggerTransitionEnd(n)}),t),this}var a={TRANSITION_END:"bsTransitionEnd",getUID:function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},getSelectorFromElement:function(t){var e=t.getAttribute("data-target");if(!e||"#"===e){var n=t.getAttribute("href");e=n&&"#"!==n?n.trim():""}try{return document.querySelector(e)?e:null}catch(t){return null}},getTransitionDurationFromElement:function(t){if(!t)return 0;var n=e(t).css("transition-duration"),i=e(t).css("transition-delay"),o=parseFloat(n),s=parseFloat(i);return o||s?(n=n.split(",")[0],i=i.split(",")[0],1e3*(parseFloat(n)+parseFloat(i))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){e(t).trigger("transitionend")},supportsTransitionEnd:function(){return Boolean("transitionend")},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],s=e[i],r=s&&a.isElement(s)?"element":null===(l=s)||"undefined"==typeof l?""+l:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(o).test(r))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+r+'" but expected type "'+o+'".')}var l},findShadowRoot:function(t){if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){var e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?a.findShadowRoot(t.parentNode):null},jQueryDetection:function(){if("undefined"==typeof e)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||t[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};a.jQueryDetection(),e.fn.emulateTransitionEnd=r,e.event.special[a.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var l="alert",c=e.fn[l],h=function(){function t(t){this._element=t}var n=t.prototype;return n.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},n.dispose=function(){e.removeData(this._element,"bs.alert"),this._element=null},n._getRootElement=function(t){var n=a.getSelectorFromElement(t),i=!1;return n&&(i=document.querySelector(n)),i||(i=e(t).closest(".alert")[0]),i},n._triggerCloseEvent=function(t){var n=e.Event("close.bs.alert");return e(t).trigger(n),n},n._removeElement=function(t){var n=this;if(e(t).removeClass("show"),e(t).hasClass("fade")){var i=a.getTransitionDurationFromElement(t);e(t).one(a.TRANSITION_END,(function(e){return n._destroyElement(t,e)})).emulateTransitionEnd(i)}else this._destroyElement(t)},n._destroyElement=function(t){e(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.alert");o||(o=new t(this),i.data("bs.alert",o)),"close"===n&&o[n](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',h._handleDismiss(new h)),e.fn[l]=h._jQueryInterface,e.fn[l].Constructor=h,e.fn[l].noConflict=function(){return e.fn[l]=c,h._jQueryInterface};var u=e.fn.button,d=function(){function t(t){this._element=t}var n=t.prototype;return n.toggle=function(){var t=!0,n=!0,i=e(this._element).closest('[data-toggle="buttons"]')[0];if(i){var o=this._element.querySelector('input:not([type="hidden"])');if(o){if("radio"===o.type)if(o.checked&&this._element.classList.contains("active"))t=!1;else{var s=i.querySelector(".active");s&&e(s).removeClass("active")}t&&("checkbox"!==o.type&&"radio"!==o.type||(o.checked=!this._element.classList.contains("active")),e(o).trigger("change")),o.focus(),n=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(n&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),t&&e(this._element).toggleClass("active"))},n.dispose=function(){e.removeData(this._element,"bs.button"),this._element=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.button");i||(i=new t(this),e(this).data("bs.button",i)),"toggle"===n&&i[n]()}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=t.target,i=n;if(e(n).hasClass("btn")||(n=e(n).closest(".btn")[0]),!n||n.hasAttribute("disabled")||n.classList.contains("disabled"))t.preventDefault();else{var o=n.querySelector('input:not([type="hidden"])');if(o&&(o.hasAttribute("disabled")||o.classList.contains("disabled")))return void t.preventDefault();("LABEL"!==i.tagName||o&&"checkbox"!==o.type)&&d._jQueryInterface.call(e(n),"toggle")}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=e(t.target).closest(".btn")[0];e(n).toggleClass("focus",/^focus(in)?$/.test(t.type))})),e(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e<n;e++){var i=t[e],o=i.querySelector('input:not([type="hidden"])');o.checked||o.hasAttribute("checked")?i.classList.add("active"):i.classList.remove("active")}for(var s=0,r=(t=[].slice.call(document.querySelectorAll('[data-toggle="button"]'))).length;s<r;s++){var a=t[s];"true"===a.getAttribute("aria-pressed")?a.classList.add("active"):a.classList.remove("active")}})),e.fn.button=d._jQueryInterface,e.fn.button.Constructor=d,e.fn.button.noConflict=function(){return e.fn.button=u,d._jQueryInterface};var f="carousel",g=".bs.carousel",m=e.fn[f],p={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},_={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},v={TOUCH:"touch",PEN:"pen"},b=function(){function t(t,e){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._element=t,this._indicatorsElement=this._element.querySelector(".carousel-indicators"),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var n=t.prototype;return n.next=function(){this._isSliding||this._slide("next")},n.nextWhenVisible=function(){!document.hidden&&e(this._element).is(":visible")&&"hidden"!==e(this._element).css("visibility")&&this.next()},n.prev=function(){this._isSliding||this._slide("prev")},n.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(a.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},n.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},n.to=function(t){var n=this;this._activeElement=this._element.querySelector(".active.carousel-item");var i=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)e(this._element).one("slid.bs.carousel",(function(){return n.to(t)}));else{if(i===t)return this.pause(),void this.cycle();var o=t>i?"next":"prev";this._slide(o,this._items[t])}},n.dispose=function(){e(this._element).off(g),e.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},n._getConfig=function(t){return t=s({},p,t),a.typeCheckConfig(f,t,_),t},n._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},n._addEventListeners=function(){var t=this;this._config.keyboard&&e(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&e(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},n._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var n=function(e){t._pointerEvent&&v[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},i=function(e){t._pointerEvent&&v[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};e(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(e(this._element).on("pointerdown.bs.carousel",(function(t){return n(t)})),e(this._element).on("pointerup.bs.carousel",(function(t){return i(t)})),this._element.classList.add("pointer-event")):(e(this._element).on("touchstart.bs.carousel",(function(t){return n(t)})),e(this._element).on("touchmove.bs.carousel",(function(e){return function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),e(this._element).on("touchend.bs.carousel",(function(t){return i(t)})))}},n._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},n._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},n._getItemByDirection=function(t,e){var n="next"===t,i="prev"===t,o=this._getItemIndex(e),s=this._items.length-1;if((i&&0===o||n&&o===s)&&!this._config.wrap)return e;var r=(o+("prev"===t?-1:1))%this._items.length;return-1===r?this._items[this._items.length-1]:this._items[r]},n._triggerSlideEvent=function(t,n){var i=this._getItemIndex(t),o=this._getItemIndex(this._element.querySelector(".active.carousel-item")),s=e.Event("slide.bs.carousel",{relatedTarget:t,direction:n,from:o,to:i});return e(this._element).trigger(s),s},n._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var n=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));e(n).removeClass("active");var i=this._indicatorsElement.children[this._getItemIndex(t)];i&&e(i).addClass("active")}},n._slide=function(t,n){var i,o,s,r=this,l=this._element.querySelector(".active.carousel-item"),c=this._getItemIndex(l),h=n||l&&this._getItemByDirection(t,l),u=this._getItemIndex(h),d=Boolean(this._interval);if("next"===t?(i="carousel-item-left",o="carousel-item-next",s="left"):(i="carousel-item-right",o="carousel-item-prev",s="right"),h&&e(h).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(h,s).isDefaultPrevented()&&l&&h){this._isSliding=!0,d&&this.pause(),this._setActiveIndicatorElement(h);var f=e.Event("slid.bs.carousel",{relatedTarget:h,direction:s,from:c,to:u});if(e(this._element).hasClass("slide")){e(h).addClass(o),a.reflow(h),e(l).addClass(i),e(h).addClass(i);var g=parseInt(h.getAttribute("data-interval"),10);g?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=g):this._config.interval=this._config.defaultInterval||this._config.interval;var m=a.getTransitionDurationFromElement(l);e(l).one(a.TRANSITION_END,(function(){e(h).removeClass(i+" "+o).addClass("active"),e(l).removeClass("active "+o+" "+i),r._isSliding=!1,setTimeout((function(){return e(r._element).trigger(f)}),0)})).emulateTransitionEnd(m)}else e(l).removeClass("active"),e(h).addClass("active"),this._isSliding=!1,e(this._element).trigger(f);d&&this.cycle()}},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.carousel"),o=s({},p,e(this).data());"object"==typeof n&&(o=s({},o,n));var r="string"==typeof n?n:o.slide;if(i||(i=new t(this,o),e(this).data("bs.carousel",i)),"number"==typeof n)i.to(n);else if("string"==typeof r){if("undefined"==typeof i[r])throw new TypeError('No method named "'+r+'"');i[r]()}else o.interval&&o.ride&&(i.pause(),i.cycle())}))},t._dataApiClickHandler=function(n){var i=a.getSelectorFromElement(this);if(i){var o=e(i)[0];if(o&&e(o).hasClass("carousel")){var r=s({},e(o).data(),e(this).data()),l=this.getAttribute("data-slide-to");l&&(r.interval=!1),t._jQueryInterface.call(e(o),r),l&&e(o).data("bs.carousel").to(l),n.preventDefault()}}},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return p}}]),t}();e(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",b._dataApiClickHandler),e(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),n=0,i=t.length;n<i;n++){var o=e(t[n]);b._jQueryInterface.call(o,o.data())}})),e.fn[f]=b._jQueryInterface,e.fn[f].Constructor=b,e.fn[f].noConflict=function(){return e.fn[f]=m,b._jQueryInterface};var y="collapse",E=e.fn[y],w={toggle:!0,parent:""},T={toggle:"boolean",parent:"(string|element)"},C=function(){function t(t,e){this._isTransitioning=!1,this._element=t,this._config=this._getConfig(e),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+t.id+'"],[data-toggle="collapse"][data-target="#'+t.id+'"]'));for(var n=[].slice.call(document.querySelectorAll('[data-toggle="collapse"]')),i=0,o=n.length;i<o;i++){var s=n[i],r=a.getSelectorFromElement(s),l=[].slice.call(document.querySelectorAll(r)).filter((function(e){return e===t}));null!==r&&l.length>0&&(this._selector=r,this._triggerArray.push(s))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var n=t.prototype;return n.toggle=function(){e(this._element).hasClass("show")?this.hide():this.show()},n.show=function(){var n,i,o=this;if(!this._isTransitioning&&!e(this._element).hasClass("show")&&(this._parent&&0===(n=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof o._config.parent?t.getAttribute("data-parent")===o._config.parent:t.classList.contains("collapse")}))).length&&(n=null),!(n&&(i=e(n).not(this._selector).data("bs.collapse"))&&i._isTransitioning))){var s=e.Event("show.bs.collapse");if(e(this._element).trigger(s),!s.isDefaultPrevented()){n&&(t._jQueryInterface.call(e(n).not(this._selector),"hide"),i||e(n).data("bs.collapse",null));var r=this._getDimension();e(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[r]=0,this._triggerArray.length&&e(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(r[0].toUpperCase()+r.slice(1)),c=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,(function(){e(o._element).removeClass("collapsing").addClass("collapse show"),o._element.style[r]="",o.setTransitioning(!1),e(o._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(c),this._element.style[r]=this._element[l]+"px"}}},n.hide=function(){var t=this;if(!this._isTransitioning&&e(this._element).hasClass("show")){var n=e.Event("hide.bs.collapse");if(e(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",a.reflow(this._element),e(this._element).addClass("collapsing").removeClass("collapse show");var o=this._triggerArray.length;if(o>0)for(var s=0;s<o;s++){var r=this._triggerArray[s],l=a.getSelectorFromElement(r);if(null!==l)e([].slice.call(document.querySelectorAll(l))).hasClass("show")||e(r).addClass("collapsed").attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[i]="";var c=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,(function(){t.setTransitioning(!1),e(t._element).removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")})).emulateTransitionEnd(c)}}},n.setTransitioning=function(t){this._isTransitioning=t},n.dispose=function(){e.removeData(this._element,"bs.collapse"),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},n._getConfig=function(t){return(t=s({},w,t)).toggle=Boolean(t.toggle),a.typeCheckConfig(y,t,T),t},n._getDimension=function(){return e(this._element).hasClass("width")?"width":"height"},n._getParent=function(){var n,i=this;a.isElement(this._config.parent)?(n=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(n=this._config.parent[0])):n=document.querySelector(this._config.parent);var o='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',s=[].slice.call(n.querySelectorAll(o));return e(s).each((function(e,n){i._addAriaAndCollapsedClass(t._getTargetFromElement(n),[n])})),n},n._addAriaAndCollapsedClass=function(t,n){var i=e(t).hasClass("show");n.length&&e(n).toggleClass("collapsed",!i).attr("aria-expanded",i)},t._getTargetFromElement=function(t){var e=a.getSelectorFromElement(t);return e?document.querySelector(e):null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.collapse"),r=s({},w,i.data(),"object"==typeof n&&n?n:{});if(!o&&r.toggle&&"string"==typeof n&&/show|hide/.test(n)&&(r.toggle=!1),o||(o=new t(this,r),i.data("bs.collapse",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return w}}]),t}();e(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',(function(t){"A"===t.currentTarget.tagName&&t.preventDefault();var n=e(this),i=a.getSelectorFromElement(this),o=[].slice.call(document.querySelectorAll(i));e(o).each((function(){var t=e(this),i=t.data("bs.collapse")?"toggle":n.data();C._jQueryInterface.call(t,i)}))})),e.fn[y]=C._jQueryInterface,e.fn[y].Constructor=C,e.fn[y].noConflict=function(){return e.fn[y]=E,C._jQueryInterface};var S="dropdown",k=e.fn[S],D=new RegExp("38|40|27"),N={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},A={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},I=function(){function t(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var i=t.prototype;return i.toggle=function(){if(!this._element.disabled&&!e(this._element).hasClass("disabled")){var n=e(this._menu).hasClass("show");t._clearMenus(),n||this.show(!0)}},i.show=function(i){if(void 0===i&&(i=!1),!(this._element.disabled||e(this._element).hasClass("disabled")||e(this._menu).hasClass("show"))){var o={relatedTarget:this._element},s=e.Event("show.bs.dropdown",o),r=t._getParentFromElement(this._element);if(e(r).trigger(s),!s.isDefaultPrevented()){if(!this._inNavbar&&i){if("undefined"==typeof n)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var l=this._element;"parent"===this._config.reference?l=r:a.isElement(this._config.reference)&&(l=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(l=this._config.reference[0])),"scrollParent"!==this._config.boundary&&e(r).addClass("position-static"),this._popper=new n(l,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===e(r).closest(".navbar-nav").length&&e(document.body).children().on("mouseover",null,e.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),e(this._menu).toggleClass("show"),e(r).toggleClass("show").trigger(e.Event("shown.bs.dropdown",o))}}},i.hide=function(){if(!this._element.disabled&&!e(this._element).hasClass("disabled")&&e(this._menu).hasClass("show")){var n={relatedTarget:this._element},i=e.Event("hide.bs.dropdown",n),o=t._getParentFromElement(this._element);e(o).trigger(i),i.isDefaultPrevented()||(this._popper&&this._popper.destroy(),e(this._menu).toggleClass("show"),e(o).toggleClass("show").trigger(e.Event("hidden.bs.dropdown",n)))}},i.dispose=function(){e.removeData(this._element,"bs.dropdown"),e(this._element).off(".bs.dropdown"),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},i.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},i._addEventListeners=function(){var t=this;e(this._element).on("click.bs.dropdown",(function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}))},i._getConfig=function(t){return t=s({},this.constructor.Default,e(this._element).data(),t),a.typeCheckConfig(S,t,this.constructor.DefaultType),t},i._getMenuElement=function(){if(!this._menu){var e=t._getParentFromElement(this._element);e&&(this._menu=e.querySelector(".dropdown-menu"))}return this._menu},i._getPlacement=function(){var t=e(this._element.parentNode),n="bottom-start";return t.hasClass("dropup")?n=e(this._menu).hasClass("dropdown-menu-right")?"top-end":"top-start":t.hasClass("dropright")?n="right-start":t.hasClass("dropleft")?n="left-start":e(this._menu).hasClass("dropdown-menu-right")&&(n="bottom-end"),n},i._detectNavbar=function(){return e(this._element).closest(".navbar").length>0},i._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},i._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),s({},t,this._config.popperConfig)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.dropdown");if(i||(i=new t(this,"object"==typeof n?n:null),e(this).data("bs.dropdown",i)),"string"==typeof n){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},t._clearMenus=function(n){if(!n||3!==n.which&&("keyup"!==n.type||9===n.which))for(var i=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),o=0,s=i.length;o<s;o++){var r=t._getParentFromElement(i[o]),a=e(i[o]).data("bs.dropdown"),l={relatedTarget:i[o]};if(n&&"click"===n.type&&(l.clickEvent=n),a){var c=a._menu;if(e(r).hasClass("show")&&!(n&&("click"===n.type&&/input|textarea/i.test(n.target.tagName)||"keyup"===n.type&&9===n.which)&&e.contains(r,n.target))){var h=e.Event("hide.bs.dropdown",l);e(r).trigger(h),h.isDefaultPrevented()||("ontouchstart"in document.documentElement&&e(document.body).children().off("mouseover",null,e.noop),i[o].setAttribute("aria-expanded","false"),a._popper&&a._popper.destroy(),e(c).removeClass("show"),e(r).removeClass("show").trigger(e.Event("hidden.bs.dropdown",l)))}}}},t._getParentFromElement=function(t){var e,n=a.getSelectorFromElement(t);return n&&(e=document.querySelector(n)),e||t.parentNode},t._dataApiKeydownHandler=function(n){if(!(/input|textarea/i.test(n.target.tagName)?32===n.which||27!==n.which&&(40!==n.which&&38!==n.which||e(n.target).closest(".dropdown-menu").length):!D.test(n.which))&&!this.disabled&&!e(this).hasClass("disabled")){var i=t._getParentFromElement(this),o=e(i).hasClass("show");if(o||27!==n.which){if(n.preventDefault(),n.stopPropagation(),!o||o&&(27===n.which||32===n.which))return 27===n.which&&e(i.querySelector('[data-toggle="dropdown"]')).trigger("focus"),void e(this).trigger("click");var s=[].slice.call(i.querySelectorAll(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)")).filter((function(t){return e(t).is(":visible")}));if(0!==s.length){var r=s.indexOf(n.target);38===n.which&&r>0&&r--,40===n.which&&r<s.length-1&&r++,r<0&&(r=0),s[r].focus()}}}},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return N}},{key:"DefaultType",get:function(){return A}}]),t}();e(document).on("keydown.bs.dropdown.data-api",'[data-toggle="dropdown"]',I._dataApiKeydownHandler).on("keydown.bs.dropdown.data-api",".dropdown-menu",I._dataApiKeydownHandler).on("click.bs.dropdown.data-api keyup.bs.dropdown.data-api",I._clearMenus).on("click.bs.dropdown.data-api",'[data-toggle="dropdown"]',(function(t){t.preventDefault(),t.stopPropagation(),I._jQueryInterface.call(e(this),"toggle")})).on("click.bs.dropdown.data-api",".dropdown form",(function(t){t.stopPropagation()})),e.fn[S]=I._jQueryInterface,e.fn[S].Constructor=I,e.fn[S].noConflict=function(){return e.fn[S]=k,I._jQueryInterface};var O=e.fn.modal,j={backdrop:!0,keyboard:!0,focus:!0,show:!0},x={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},P=function(){function t(t,e){this._config=this._getConfig(e),this._element=t,this._dialog=t.querySelector(".modal-dialog"),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var n=t.prototype;return n.toggle=function(t){return this._isShown?this.hide():this.show(t)},n.show=function(t){var n=this;if(!this._isShown&&!this._isTransitioning){e(this._element).hasClass("fade")&&(this._isTransitioning=!0);var i=e.Event("show.bs.modal",{relatedTarget:t});e(this._element).trigger(i),this._isShown||i.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),e(this._element).on("click.dismiss.bs.modal",'[data-dismiss="modal"]',(function(t){return n.hide(t)})),e(this._dialog).on("mousedown.dismiss.bs.modal",(function(){e(n._element).one("mouseup.dismiss.bs.modal",(function(t){e(t.target).is(n._element)&&(n._ignoreBackdropClick=!0)}))})),this._showBackdrop((function(){return n._showElement(t)})))}},n.hide=function(t){var n=this;if(t&&t.preventDefault(),this._isShown&&!this._isTransitioning){var i=e.Event("hide.bs.modal");if(e(this._element).trigger(i),this._isShown&&!i.isDefaultPrevented()){this._isShown=!1;var o=e(this._element).hasClass("fade");if(o&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),e(document).off("focusin.bs.modal"),e(this._element).removeClass("show"),e(this._element).off("click.dismiss.bs.modal"),e(this._dialog).off("mousedown.dismiss.bs.modal"),o){var s=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,(function(t){return n._hideModal(t)})).emulateTransitionEnd(s)}else this._hideModal()}}},n.dispose=function(){[window,this._element,this._dialog].forEach((function(t){return e(t).off(".bs.modal")})),e(document).off("focusin.bs.modal"),e.removeData(this._element,"bs.modal"),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},n.handleUpdate=function(){this._adjustDialog()},n._getConfig=function(t){return t=s({},j,t),a.typeCheckConfig("modal",t,x),t},n._triggerBackdropTransition=function(){var t=this;if("static"===this._config.backdrop){var n=e.Event("hidePrevented.bs.modal");if(e(this._element).trigger(n),n.defaultPrevented)return;var i=this._element.scrollHeight>document.documentElement.clientHeight;i||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var o=a.getTransitionDurationFromElement(this._dialog);e(this._element).off(a.TRANSITION_END),e(this._element).one(a.TRANSITION_END,(function(){t._element.classList.remove("modal-static"),i||e(t._element).one(a.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,o)})).emulateTransitionEnd(o),this._element.focus()}else this.hide()},n._showElement=function(t){var n=this,i=e(this._element).hasClass("fade"),o=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),e(this._dialog).hasClass("modal-dialog-scrollable")&&o?o.scrollTop=0:this._element.scrollTop=0,i&&a.reflow(this._element),e(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var s=e.Event("shown.bs.modal",{relatedTarget:t}),r=function(){n._config.focus&&n._element.focus(),n._isTransitioning=!1,e(n._element).trigger(s)};if(i){var l=a.getTransitionDurationFromElement(this._dialog);e(this._dialog).one(a.TRANSITION_END,r).emulateTransitionEnd(l)}else r()},n._enforceFocus=function(){var t=this;e(document).off("focusin.bs.modal").on("focusin.bs.modal",(function(n){document!==n.target&&t._element!==n.target&&0===e(t._element).has(n.target).length&&t._element.focus()}))},n._setEscapeEvent=function(){var t=this;this._isShown?e(this._element).on("keydown.dismiss.bs.modal",(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||e(this._element).off("keydown.dismiss.bs.modal")},n._setResizeEvent=function(){var t=this;this._isShown?e(window).on("resize.bs.modal",(function(e){return t.handleUpdate(e)})):e(window).off("resize.bs.modal")},n._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){e(document.body).removeClass("modal-open"),t._resetAdjustments(),t._resetScrollbar(),e(t._element).trigger("hidden.bs.modal")}))},n._removeBackdrop=function(){this._backdrop&&(e(this._backdrop).remove(),this._backdrop=null)},n._showBackdrop=function(t){var n=this,i=e(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",i&&this._backdrop.classList.add(i),e(this._backdrop).appendTo(document.body),e(this._element).on("click.dismiss.bs.modal",(function(t){n._ignoreBackdropClick?n._ignoreBackdropClick=!1:t.target===t.currentTarget&&n._triggerBackdropTransition()})),i&&a.reflow(this._backdrop),e(this._backdrop).addClass("show"),!t)return;if(!i)return void t();var o=a.getTransitionDurationFromElement(this._backdrop);e(this._backdrop).one(a.TRANSITION_END,t).emulateTransitionEnd(o)}else if(!this._isShown&&this._backdrop){e(this._backdrop).removeClass("show");var s=function(){n._removeBackdrop(),t&&t()};if(e(this._element).hasClass("fade")){var r=a.getTransitionDurationFromElement(this._backdrop);e(this._backdrop).one(a.TRANSITION_END,s).emulateTransitionEnd(r)}else s()}else t&&t()},n._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},n._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},n._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},n._setScrollbar=function(){var t=this;if(this._isBodyOverflowing){var n=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top")),i=[].slice.call(document.querySelectorAll(".sticky-top"));e(n).each((function(n,i){var o=i.style.paddingRight,s=e(i).css("padding-right");e(i).data("padding-right",o).css("padding-right",parseFloat(s)+t._scrollbarWidth+"px")})),e(i).each((function(n,i){var o=i.style.marginRight,s=e(i).css("margin-right");e(i).data("margin-right",o).css("margin-right",parseFloat(s)-t._scrollbarWidth+"px")}));var o=document.body.style.paddingRight,s=e(document.body).css("padding-right");e(document.body).data("padding-right",o).css("padding-right",parseFloat(s)+this._scrollbarWidth+"px")}e(document.body).addClass("modal-open")},n._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top"));e(t).each((function(t,n){var i=e(n).data("padding-right");e(n).removeData("padding-right"),n.style.paddingRight=i||""}));var n=[].slice.call(document.querySelectorAll(".sticky-top"));e(n).each((function(t,n){var i=e(n).data("margin-right");"undefined"!=typeof i&&e(n).css("margin-right",i).removeData("margin-right")}));var i=e(document.body).data("padding-right");e(document.body).removeData("padding-right"),document.body.style.paddingRight=i||""},n._getScrollbarWidth=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},t._jQueryInterface=function(n,i){return this.each((function(){var o=e(this).data("bs.modal"),r=s({},j,e(this).data(),"object"==typeof n&&n?n:{});if(o||(o=new t(this,r),e(this).data("bs.modal",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n](i)}else r.show&&o.show(i)}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return j}}]),t}();e(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',(function(t){var n,i=this,o=a.getSelectorFromElement(this);o&&(n=document.querySelector(o));var r=e(n).data("bs.modal")?"toggle":s({},e(n).data(),e(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault();var l=e(n).one("show.bs.modal",(function(t){t.isDefaultPrevented()||l.one("hidden.bs.modal",(function(){e(i).is(":visible")&&i.focus()}))}));P._jQueryInterface.call(e(n),r,this)})),e.fn.modal=P._jQueryInterface,e.fn.modal.Constructor=P,e.fn.modal.noConflict=function(){return e.fn.modal=O,P._jQueryInterface};var R=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],L={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},q=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/gi,F=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;function Q(t,e,n){if(0===t.length)return t;if(n&&"function"==typeof n)return n(t);for(var i=(new window.DOMParser).parseFromString(t,"text/html"),o=Object.keys(e),s=[].slice.call(i.body.querySelectorAll("*")),r=function(t,n){var i=s[t],r=i.nodeName.toLowerCase();if(-1===o.indexOf(i.nodeName.toLowerCase()))return i.parentNode.removeChild(i),"continue";var a=[].slice.call(i.attributes),l=[].concat(e["*"]||[],e[r]||[]);a.forEach((function(t){(function(t,e){var n=t.nodeName.toLowerCase();if(-1!==e.indexOf(n))return-1===R.indexOf(n)||Boolean(t.nodeValue.match(q)||t.nodeValue.match(F));for(var i=e.filter((function(t){return t instanceof RegExp})),o=0,s=i.length;o<s;o++)if(n.match(i[o]))return!0;return!1})(t,l)||i.removeAttribute(t.nodeName)}))},a=0,l=s.length;a<l;a++)r(a);return i.body.innerHTML}var B="tooltip",H=e.fn[B],U=new RegExp("(^|\\s)bs-tooltip\\S+","g"),M=["sanitize","whiteList","sanitizeFn"],W={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},V={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},z={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:L,popperConfig:null},K={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},X=function(){function t(t,e){if("undefined"==typeof n)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var i=t.prototype;return i.enable=function(){this._isEnabled=!0},i.disable=function(){this._isEnabled=!1},i.toggleEnabled=function(){this._isEnabled=!this._isEnabled},i.toggle=function(t){if(this._isEnabled)if(t){var n=this.constructor.DATA_KEY,i=e(t.currentTarget).data(n);i||(i=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(e(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},i.dispose=function(){clearTimeout(this._timeout),e.removeData(this.element,this.constructor.DATA_KEY),e(this.element).off(this.constructor.EVENT_KEY),e(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&e(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},i.show=function(){var t=this;if("none"===e(this.element).css("display"))throw new Error("Please use show on visible elements");var i=e.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){e(this.element).trigger(i);var o=a.findShadowRoot(this.element),s=e.contains(null!==o?o:this.element.ownerDocument.documentElement,this.element);if(i.isDefaultPrevented()||!s)return;var r=this.getTipElement(),l=a.getUID(this.constructor.NAME);r.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&e(r).addClass("fade");var c="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,h=this._getAttachment(c);this.addAttachmentClass(h);var u=this._getContainer();e(r).data(this.constructor.DATA_KEY,this),e.contains(this.element.ownerDocument.documentElement,this.tip)||e(r).appendTo(u),e(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,r,this._getPopperConfig(h)),e(r).addClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().on("mouseover",null,e.noop);var d=function(){t.config.animation&&t._fixTransition();var n=t._hoverState;t._hoverState=null,e(t.element).trigger(t.constructor.Event.SHOWN),"out"===n&&t._leave(null,t)};if(e(this.tip).hasClass("fade")){var f=a.getTransitionDurationFromElement(this.tip);e(this.tip).one(a.TRANSITION_END,d).emulateTransitionEnd(f)}else d()}},i.hide=function(t){var n=this,i=this.getTipElement(),o=e.Event(this.constructor.Event.HIDE),s=function(){"show"!==n._hoverState&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),e(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),t&&t()};if(e(this.element).trigger(o),!o.isDefaultPrevented()){if(e(i).removeClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().off("mouseover",null,e.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,e(this.tip).hasClass("fade")){var r=a.getTransitionDurationFromElement(i);e(i).one(a.TRANSITION_END,s).emulateTransitionEnd(r)}else s();this._hoverState=""}},i.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},i.isWithContent=function(){return Boolean(this.getTitle())},i.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-tooltip-"+t)},i.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},i.setContent=function(){var t=this.getTipElement();this.setElementContent(e(t.querySelectorAll(".tooltip-inner")),this.getTitle()),e(t).removeClass("fade show")},i.setElementContent=function(t,n){"object"!=typeof n||!n.nodeType&&!n.jquery?this.config.html?(this.config.sanitize&&(n=Q(n,this.config.whiteList,this.config.sanitizeFn)),t.html(n)):t.text(n):this.config.html?e(n).parent().is(t)||t.empty().append(n):t.text(e(n).text())},i.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},i._getPopperConfig=function(t){var e=this;return s({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},i._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},i._getContainer=function(){return!1===this.config.container?document.body:a.isElement(this.config.container)?e(this.config.container):e(document).find(this.config.container)},i._getAttachment=function(t){return V[t.toUpperCase()]},i._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(n){if("click"===n)e(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==n){var i="hover"===n?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,o="hover"===n?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;e(t.element).on(i,t.config.selector,(function(e){return t._enter(e)})).on(o,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},e(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=s({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},i._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},i._enter=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e(n.getTipElement()).hasClass("show")||"show"===n._hoverState?n._hoverState="show":(clearTimeout(n._timeout),n._hoverState="show",n.config.delay&&n.config.delay.show?n._timeout=setTimeout((function(){"show"===n._hoverState&&n.show()}),n.config.delay.show):n.show())},i._leave=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusout"===t.type?"focus":"hover"]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState="out",n.config.delay&&n.config.delay.hide?n._timeout=setTimeout((function(){"out"===n._hoverState&&n.hide()}),n.config.delay.hide):n.hide())},i._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},i._getConfig=function(t){var n=e(this.element).data();return Object.keys(n).forEach((function(t){-1!==M.indexOf(t)&&delete n[t]})),"number"==typeof(t=s({},this.constructor.Default,n,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),a.typeCheckConfig(B,t,this.constructor.DefaultType),t.sanitize&&(t.template=Q(t.template,t.whiteList,t.sanitizeFn)),t},i._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},i._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(U);null!==n&&n.length&&t.removeClass(n.join(""))},i._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},i._fixTransition=function(){var t=this.getTipElement(),n=this.config.animation;null===t.getAttribute("x-placement")&&(e(t).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.tooltip"),o="object"==typeof n&&n;if((i||!/dispose|hide/.test(n))&&(i||(i=new t(this,o),e(this).data("bs.tooltip",i)),"string"==typeof n)){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return z}},{key:"NAME",get:function(){return B}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return K}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return W}}]),t}();e.fn[B]=X._jQueryInterface,e.fn[B].Constructor=X,e.fn[B].noConflict=function(){return e.fn[B]=H,X._jQueryInterface};var Y="popover",$=e.fn[Y],J=new RegExp("(^|\\s)bs-popover\\S+","g"),G=s({},X.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),Z=s({},X.DefaultType,{content:"(string|element|function)"}),tt={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},et=function(t){var n,i;function s(){return t.apply(this,arguments)||this}i=t,(n=s).prototype=Object.create(i.prototype),n.prototype.constructor=n,n.__proto__=i;var r=s.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-popover-"+t)},r.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},r.setContent=function(){var t=e(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(t.find(".popover-body"),n),t.removeClass("fade show")},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(J);null!==n&&n.length>0&&t.removeClass(n.join(""))},s._jQueryInterface=function(t){return this.each((function(){var n=e(this).data("bs.popover"),i="object"==typeof t?t:null;if((n||!/dispose|hide/.test(t))&&(n||(n=new s(this,i),e(this).data("bs.popover",n)),"string"==typeof t)){if("undefined"==typeof n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},o(s,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return G}},{key:"NAME",get:function(){return Y}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return tt}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Z}}]),s}(X);e.fn[Y]=et._jQueryInterface,e.fn[Y].Constructor=et,e.fn[Y].noConflict=function(){return e.fn[Y]=$,et._jQueryInterface};var nt="scrollspy",it=e.fn[nt],ot={offset:10,method:"auto",target:""},st={offset:"number",method:"string",target:"(string|element)"},rt=function(){function t(t,n){var i=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(n),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,e(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return i._process(t)})),this.refresh(),this._process()}var n=t.prototype;return n.refresh=function(){var t=this,n=this._scrollElement===this._scrollElement.window?"offset":"position",i="auto"===this._config.method?n:this._config.method,o="position"===i?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var n,s=a.getSelectorFromElement(t);if(s&&(n=document.querySelector(s)),n){var r=n.getBoundingClientRect();if(r.width||r.height)return[e(n)[i]().top+o,s]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},n.dispose=function(){e.removeData(this._element,"bs.scrollspy"),e(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},n._getConfig=function(t){if("string"!=typeof(t=s({},ot,"object"==typeof t&&t?t:{})).target&&a.isElement(t.target)){var n=e(t.target).attr("id");n||(n=a.getUID(nt),e(t.target).attr("id",n)),t.target="#"+n}return a.typeCheckConfig(nt,t,st),t},n._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},n._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},n._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},n._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}}},n._activate=function(t){this._activeTarget=t,this._clear();var n=this._selector.split(",").map((function(e){return e+'[data-target="'+t+'"],'+e+'[href="'+t+'"]'})),i=e([].slice.call(document.querySelectorAll(n.join(","))));i.hasClass("dropdown-item")?(i.closest(".dropdown").find(".dropdown-toggle").addClass("active"),i.addClass("active")):(i.addClass("active"),i.parents(".nav, .list-group").prev(".nav-link, .list-group-item").addClass("active"),i.parents(".nav, .list-group").prev(".nav-item").children(".nav-link").addClass("active")),e(this._scrollElement).trigger("activate.bs.scrollspy",{relatedTarget:t})},n._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter((function(t){return t.classList.contains("active")})).forEach((function(t){return t.classList.remove("active")}))},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.scrollspy");if(i||(i=new t(this,"object"==typeof n&&n),e(this).data("bs.scrollspy",i)),"string"==typeof n){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return ot}}]),t}();e(window).on("load.bs.scrollspy.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-spy="scroll"]')),n=t.length;n--;){var i=e(t[n]);rt._jQueryInterface.call(i,i.data())}})),e.fn[nt]=rt._jQueryInterface,e.fn[nt].Constructor=rt,e.fn[nt].noConflict=function(){return e.fn[nt]=it,rt._jQueryInterface};var at=e.fn.tab,lt=function(){function t(t){this._element=t}var n=t.prototype;return n.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&e(this._element).hasClass("active")||e(this._element).hasClass("disabled"))){var n,i,o=e(this._element).closest(".nav, .list-group")[0],s=a.getSelectorFromElement(this._element);if(o){var r="UL"===o.nodeName||"OL"===o.nodeName?"> li > .active":".active";i=(i=e.makeArray(e(o).find(r)))[i.length-1]}var l=e.Event("hide.bs.tab",{relatedTarget:this._element}),c=e.Event("show.bs.tab",{relatedTarget:i});if(i&&e(i).trigger(l),e(this._element).trigger(c),!c.isDefaultPrevented()&&!l.isDefaultPrevented()){s&&(n=document.querySelector(s)),this._activate(this._element,o);var h=function(){var n=e.Event("hidden.bs.tab",{relatedTarget:t._element}),o=e.Event("shown.bs.tab",{relatedTarget:i});e(i).trigger(n),e(t._element).trigger(o)};n?this._activate(n,n.parentNode,h):h()}}},n.dispose=function(){e.removeData(this._element,"bs.tab"),this._element=null},n._activate=function(t,n,i){var o=this,s=(!n||"UL"!==n.nodeName&&"OL"!==n.nodeName?e(n).children(".active"):e(n).find("> li > .active"))[0],r=i&&s&&e(s).hasClass("fade"),l=function(){return o._transitionComplete(t,s,i)};if(s&&r){var c=a.getTransitionDurationFromElement(s);e(s).removeClass("show").one(a.TRANSITION_END,l).emulateTransitionEnd(c)}else l()},n._transitionComplete=function(t,n,i){if(n){e(n).removeClass("active");var o=e(n.parentNode).find("> .dropdown-menu .active")[0];o&&e(o).removeClass("active"),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(e(t).addClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),a.reflow(t),t.classList.contains("fade")&&t.classList.add("show"),t.parentNode&&e(t.parentNode).hasClass("dropdown-menu")){var s=e(t).closest(".dropdown")[0];if(s){var r=[].slice.call(s.querySelectorAll(".dropdown-toggle"));e(r).addClass("active")}t.setAttribute("aria-expanded",!0)}i&&i()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.tab");if(o||(o=new t(this),i.data("bs.tab",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),lt._jQueryInterface.call(e(this),"show")})),e.fn.tab=lt._jQueryInterface,e.fn.tab.Constructor=lt,e.fn.tab.noConflict=function(){return e.fn.tab=at,lt._jQueryInterface};var ct=e.fn.toast,ht={animation:"boolean",autohide:"boolean",delay:"number"},ut={animation:!0,autohide:!0,delay:500},dt=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var n=t.prototype;return n.show=function(){var t=this,n=e.Event("show.bs.toast");if(e(this._element).trigger(n),!n.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var i=function(){t._element.classList.remove("showing"),t._element.classList.add("show"),e(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove("hide"),a.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var o=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,i).emulateTransitionEnd(o)}else i()}},n.hide=function(){if(this._element.classList.contains("show")){var t=e.Event("hide.bs.toast");e(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},n.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),e(this._element).off("click.dismiss.bs.toast"),e.removeData(this._element,"bs.toast"),this._element=null,this._config=null},n._getConfig=function(t){return t=s({},ut,e(this._element).data(),"object"==typeof t&&t?t:{}),a.typeCheckConfig("toast",t,this.constructor.DefaultType),t},n._setListeners=function(){var t=this;e(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return t.hide()}))},n._close=function(){var t=this,n=function(){t._element.classList.add("hide"),e(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var i=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,n).emulateTransitionEnd(i)}else n()},n._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.toast");if(o||(o=new t(this,"object"==typeof n&&n),i.data("bs.toast",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n](this)}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"DefaultType",get:function(){return ht}},{key:"Default",get:function(){return ut}}]),t}();e.fn.toast=dt._jQueryInterface,e.fn.toast.Constructor=dt,e.fn.toast.noConflict=function(){return e.fn.toast=ct,dt._jQueryInterface},t.Alert=h,t.Button=d,t.Carousel=b,t.Collapse=C,t.Dropdown=I,t.Modal=P,t.Popover=et,t.Scrollspy=rt,t.Tab=lt,t.Toast=dt,t.Tooltip=X,t.Util=a,Object.defineProperty(t,"__esModule",{value:!0})}));
|
| 7 |
+
//# sourceMappingURL=bootstrap.min.js.map
|
static/bootstrap/js/bootstrap.min.js.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/img/favicon.ico
ADDED
|
|
static/img/favicon.png
ADDED
|
|
static/img/kramin_carmin.png
ADDED
|
static/js/dragAndDropFunc.js
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"use strict";
|
| 2 |
+
|
| 3 |
+
const ReferenceInput = document.querySelector('#reference');
|
| 4 |
+
const PredictionInput = document.querySelector('#prediction');
|
| 5 |
+
|
| 6 |
+
const ReferenceMaxLengthCount = document.querySelector("#counter_ref");
|
| 7 |
+
const PredictionMaxLengthCount = document.querySelector("#counter_pred");
|
| 8 |
+
|
| 9 |
+
const areaNormalShadow = "0 0 10px var(--white-main)";
|
| 10 |
+
const areaSuccessShadow = "0 0 10px green";
|
| 11 |
+
const areaErrorShadow = "0 0 10px red";
|
| 12 |
+
|
| 13 |
+
const areaPlaceHolderMsgError = "Only raw text format (.txt) are valid, please retry.";
|
| 14 |
+
const referencePlaceHolder = "Drag & Drop or Paste the expected transcription...";
|
| 15 |
+
const predictionPlaceHolder = "Drag & Drop or Paste the transcription produced by the model you wish to evaluate...";
|
| 16 |
+
|
| 17 |
+
const LIMIT_CHAR_SIZE = 7000;
|
| 18 |
+
|
| 19 |
+
// Global loop to add event listener on inputs (textarea)
|
| 20 |
+
[ReferenceInput, PredictionInput].forEach(item => {
|
| 21 |
+
item.addEventListener('drop', event => {
|
| 22 |
+
dropHandler(event);
|
| 23 |
+
});
|
| 24 |
+
item.addEventListener('keydown', function () {
|
| 25 |
+
limitText(item, chooseCorectCounter(item.id), LIMIT_CHAR_SIZE);
|
| 26 |
+
})
|
| 27 |
+
item.addEventListener('keyup', function () {
|
| 28 |
+
limitText(item, chooseCorectCounter(item.id), LIMIT_CHAR_SIZE);
|
| 29 |
+
})
|
| 30 |
+
item.addEventListener('input', function () {
|
| 31 |
+
AreaStateShadow(item, 'normal');
|
| 32 |
+
AreaPlaceHolderState(item, item.id, 'normal')
|
| 33 |
+
if (item.value !== "") {
|
| 34 |
+
AreaStateShadow(item, 'success');
|
| 35 |
+
}
|
| 36 |
+
});
|
| 37 |
+
})
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
function chooseCorectCounter(id){
|
| 41 |
+
return (id === "reference") ? ReferenceMaxLengthCount : PredictionMaxLengthCount
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
function limitText(limitField, limitCount, limitNum) {
|
| 46 |
+
if (limitField.value.length > limitNum) {
|
| 47 |
+
limitField.value = limitField.value.substring(0, limitNum);
|
| 48 |
+
limitCount.value = limitNum - limitField.value.length;
|
| 49 |
+
} else {
|
| 50 |
+
limitCount.value = limitNum - limitField.value.length;
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
/**
|
| 56 |
+
* Change border shadow color in relation to input
|
| 57 |
+
* @param {element} element Input element where border shadow change
|
| 58 |
+
* @param {string} type Output level desire
|
| 59 |
+
* @return {undefined}
|
| 60 |
+
*/
|
| 61 |
+
function AreaStateShadow(element, type) {
|
| 62 |
+
element.style["boxShadow"] = areaNormalShadow;
|
| 63 |
+
if (type === 'error') {
|
| 64 |
+
element.style["boxShadow"] = areaErrorShadow;
|
| 65 |
+
}
|
| 66 |
+
if (type === 'success') {
|
| 67 |
+
element.style["boxShadow"] = areaSuccessShadow;
|
| 68 |
+
}
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
/**
|
| 72 |
+
* Change placeholder message in input in relation to input
|
| 73 |
+
* @param {element} element Input element where placeholder change
|
| 74 |
+
* @param {string} id ID of input element (textarea)
|
| 75 |
+
* @param {string} type Output level desire
|
| 76 |
+
* @return {undefined}
|
| 77 |
+
*/
|
| 78 |
+
function AreaPlaceHolderState(element, id, type = 'normal') {
|
| 79 |
+
if (type === 'normal') {
|
| 80 |
+
if (id === 'reference') {
|
| 81 |
+
element.placeholder = referencePlaceHolder;
|
| 82 |
+
}
|
| 83 |
+
if (id === 'prediction') {
|
| 84 |
+
element.placeholder = predictionPlaceHolder;
|
| 85 |
+
}
|
| 86 |
+
}
|
| 87 |
+
if (type === 'error') {
|
| 88 |
+
element.value = '';
|
| 89 |
+
element.placeholder = areaPlaceHolderMsgError;
|
| 90 |
+
}
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
/**
|
| 94 |
+
* Handle text file drag and drop on text area and set said text area with file content
|
| 95 |
+
* @param {Event} event Handle drag and drop event
|
| 96 |
+
* @return {undefined}
|
| 97 |
+
*/
|
| 98 |
+
function dropHandler(event) {
|
| 99 |
+
// Prevent file from being opened by web browser (default behavior)
|
| 100 |
+
event.preventDefault();
|
| 101 |
+
|
| 102 |
+
// Get drop zone id
|
| 103 |
+
let dropId = event.target.id;
|
| 104 |
+
let textArea = document.getElementById(dropId);
|
| 105 |
+
|
| 106 |
+
// Initiating new FileReader object
|
| 107 |
+
const reader = new FileReader();
|
| 108 |
+
|
| 109 |
+
// Get content information from input event
|
| 110 |
+
let dropEvent = event.dataTransfer.items;
|
| 111 |
+
let dropEventMimetype = dropEvent[0].type;
|
| 112 |
+
let dropEventFormat = dropEvent[0].kind;
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
// Create EventListener for setting text area value
|
| 116 |
+
reader.addEventListener("load", (e) => {
|
| 117 |
+
// Set text area value with text file content
|
| 118 |
+
// Reinitialise text area when a new file is dropped
|
| 119 |
+
// TODO: When text file ends with an empty line, event adds an additional empty line in text area after drop.
|
| 120 |
+
// TODO: Text verification needs to be coded
|
| 121 |
+
// Otherwise, when text file has only one line, no new line is added to text area
|
| 122 |
+
textArea.value = e.target.result;
|
| 123 |
+
limitText(textArea, chooseCorectCounter(textArea.id), LIMIT_CHAR_SIZE);
|
| 124 |
+
}, false);
|
| 125 |
+
|
| 126 |
+
// Use dataTransfer for interacting with file
|
| 127 |
+
if (dropEvent) {
|
| 128 |
+
if (dropEventFormat === 'file' && dropEventMimetype === 'text/plain') {
|
| 129 |
+
let file = dropEvent[0].getAsFile();
|
| 130 |
+
reader.readAsText(file);
|
| 131 |
+
AreaStateShadow(textArea, 'success')
|
| 132 |
+
AreaPlaceHolderState(textArea, dropId, 'normal')
|
| 133 |
+
} else {
|
| 134 |
+
AreaStateShadow(textArea, 'error')
|
| 135 |
+
AreaPlaceHolderState(textArea, dropId, 'error')
|
| 136 |
+
}
|
| 137 |
+
}
|
| 138 |
+
}
|
static/js/dragAndDropFunc.min.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"use strict";const ReferenceInput=document.querySelector("#reference"),PredictionInput=document.querySelector("#prediction"),ReferenceMaxLengthCount=document.querySelector("#counter_ref"),PredictionMaxLengthCount=document.querySelector("#counter_pred"),areaNormalShadow="0 0 10px var(--white-main)",areaSuccessShadow="0 0 10px green",areaErrorShadow="0 0 10px red",areaPlaceHolderMsgError="Only raw text format (.txt) are valid, please retry.",referencePlaceHolder="Drag & Drop or Paste the expected transcription...",predictionPlaceHolder="Drag & Drop or Paste the transcription produced by the model you wish to evaluate...",LIMIT_CHAR_SIZE=7e3;function chooseCorectCounter(e){return"reference"===e?ReferenceMaxLengthCount:PredictionMaxLengthCount}function limitText(e,r,t){e.value.length>t&&(e.value=e.value.substring(0,t)),r.value=t-e.value.length}function AreaStateShadow(e,r){e.style.boxShadow=areaNormalShadow,"error"===r&&(e.style.boxShadow=areaErrorShadow),"success"===r&&(e.style.boxShadow=areaSuccessShadow)}function AreaPlaceHolderState(e,r,t="normal"){"normal"===t&&("reference"===r&&(e.placeholder=referencePlaceHolder),"prediction"===r&&(e.placeholder=predictionPlaceHolder)),"error"===t&&(e.value="",e.placeholder=areaPlaceHolderMsgError)}function dropHandler(e){e.preventDefault();var r=e.target.id;let t=document.getElementById(r);const a=new FileReader;let o=e.dataTransfer.items;var n=o[0].type,e=o[0].kind;a.addEventListener("load",e=>{t.value=e.target.result,limitText(t,chooseCorectCounter(t.id),LIMIT_CHAR_SIZE)},!1),o&&("file"===e&&"text/plain"===n?(n=o[0].getAsFile(),a.readAsText(n),AreaStateShadow(t,"success"),AreaPlaceHolderState(t,r,"normal")):(AreaStateShadow(t,"error"),AreaPlaceHolderState(t,r,"error")))}[ReferenceInput,PredictionInput].forEach(e=>{e.addEventListener("drop",e=>{dropHandler(e)}),e.addEventListener("keydown",function(){limitText(e,chooseCorectCounter(e.id),LIMIT_CHAR_SIZE)}),e.addEventListener("keyup",function(){limitText(e,chooseCorectCounter(e.id),LIMIT_CHAR_SIZE)}),e.addEventListener("input",function(){AreaStateShadow(e,"normal"),AreaPlaceHolderState(e,e.id,"normal"),""!==e.value&&AreaStateShadow(e,"success")})});
|
static/js/dynamicVT.js
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
$('.line').hover(function () {
|
| 2 |
+
var $t = $(this);
|
| 3 |
+
var $i = $('#' + $t.data('id'));
|
| 4 |
+
let type = $t.attr('class').split(' ')[0];
|
| 5 |
+
|
| 6 |
+
var ot = {
|
| 7 |
+
x: $t.offset().left + $t.width() / 2,
|
| 8 |
+
y: $t.offset().top + $t.height() / 2
|
| 9 |
+
};
|
| 10 |
+
var oi = {
|
| 11 |
+
x: $i.offset().left + $i.width() / 2,
|
| 12 |
+
y: $i.offset().top + $i.height() / 2
|
| 13 |
+
};
|
| 14 |
+
|
| 15 |
+
// x,y = top left corner
|
| 16 |
+
// x1,y1 = bottom right corner
|
| 17 |
+
var p = {
|
| 18 |
+
x: ot.x < oi.x ? ot.x : oi.x,
|
| 19 |
+
x1: ot.x > oi.x ? ot.x : oi.x,
|
| 20 |
+
y: ot.y < oi.y ? ot.y : oi.y,
|
| 21 |
+
y1: ot.y > oi.y ? ot.y : oi.y
|
| 22 |
+
};
|
| 23 |
+
// create canvas between those points
|
| 24 |
+
var c = $('<canvas/>').attr({
|
| 25 |
+
'width': p.x1 - p.x + 1,
|
| 26 |
+
'height': p.y1 - p.y + 1
|
| 27 |
+
}).css({
|
| 28 |
+
'position': 'absolute',
|
| 29 |
+
'left': p.x,
|
| 30 |
+
'top': p.y,
|
| 31 |
+
'z-index': 1,
|
| 32 |
+
'opacity':0.65
|
| 33 |
+
}).appendTo($('body'))[0].getContext('2d');
|
| 34 |
+
|
| 35 |
+
// draw line
|
| 36 |
+
if (type === "insertion"){
|
| 37 |
+
color = "#4169E1"
|
| 38 |
+
}if (type === "delSubts"){
|
| 39 |
+
color= "#D2122E"
|
| 40 |
+
}if(type==="exact-match"){
|
| 41 |
+
color="#3CB371"
|
| 42 |
+
}
|
| 43 |
+
c.strokeStyle = color;
|
| 44 |
+
c.lineCap = "round";
|
| 45 |
+
//c.setLineDash([2, 4]);
|
| 46 |
+
c.lineWidth = 5;
|
| 47 |
+
c.beginPath();
|
| 48 |
+
c.moveTo(ot.x - p.x, ot.y - p.y);
|
| 49 |
+
c.lineTo(oi.x - p.x, oi.y - p.y);
|
| 50 |
+
c.stroke();
|
| 51 |
+
$($i).addClass('char')
|
| 52 |
+
$($t).addClass('char')
|
| 53 |
+
|
| 54 |
+
}, function () {
|
| 55 |
+
$('canvas').remove();
|
| 56 |
+
$(".char").removeClass("char")
|
| 57 |
+
});
|
static/js/dynamicVT.min.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
$('.line').hover(function(){var $t=$(this);var $i=$('#'+$t.data('id'));let type=$t.attr('class').split(' ')[0];var ot={x:$t.offset().left+$t.width()/2,y:$t.offset().top+$t.height()/2};var oi={x:$i.offset().left+$i.width()/2,y:$i.offset().top+$i.height()/2};var p={x:ot.x<oi.x?ot.x:oi.x,x1:ot.x>oi.x?ot.x:oi.x,y:ot.y<oi.y?ot.y:oi.y,y1:ot.y>oi.y?ot.y:oi.y};var c=$('<canvas/>').attr({'width':p.x1-p.x+1,'height':p.y1-p.y+1}).css({'position':'absolute','left':p.x,'top':p.y,'z-index':1,'opacity':0.65}).appendTo($('body'))[0].getContext('2d');if(type==="insertion"){color="#4169E1"}if(type==="delSubts"){color="#D2122E"}if(type==="exact-match"){color="#3CB371"}
|
| 2 |
+
c.strokeStyle=color;c.lineCap="round";c.lineWidth=5;c.beginPath();c.moveTo(ot.x-p.x,ot.y-p.y);c.lineTo(oi.x-p.x,oi.y-p.y);c.stroke();$($i).addClass('char')
|
| 3 |
+
$($t).addClass('char')},function(){$('canvas').remove();$(".char").removeClass("char")})
|
static/js/exportCsv.js
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Adapt from https://www.geeksforgeeks.org/how-to-export-html-table-to-csv-using-javascript/
|
| 2 |
+
function tableToCSV() {
|
| 3 |
+
|
| 4 |
+
// Variable to store the final csv data
|
| 5 |
+
var csv_data = [];
|
| 6 |
+
|
| 7 |
+
// Get each row data
|
| 8 |
+
var rows = document.getElementsByTagName('tr');
|
| 9 |
+
for (var i = 0; i < rows.length; i++) {
|
| 10 |
+
|
| 11 |
+
// Get each column data
|
| 12 |
+
var cols = rows[i].querySelectorAll('td,th');
|
| 13 |
+
|
| 14 |
+
// Stores each csv row data
|
| 15 |
+
var csvrow = [];
|
| 16 |
+
for (var j = 0; j < cols.length; j++) {
|
| 17 |
+
|
| 18 |
+
// Get the text data of each cell
|
| 19 |
+
// of a row and push it to csvrow
|
| 20 |
+
csvrow.push(cols[j].textContent);
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
// Combine each column value with comma
|
| 24 |
+
csv_data.push(csvrow.join(","));
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
// Combine each row data with new line character
|
| 28 |
+
csv_data = csv_data.join('\n');
|
| 29 |
+
|
| 30 |
+
// Call this function to download csv file
|
| 31 |
+
downloadCSVFile(csv_data);
|
| 32 |
+
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
function downloadCSVFile(csv_data) {
|
| 36 |
+
|
| 37 |
+
// Create CSV file object and feed
|
| 38 |
+
// our csv_data into it
|
| 39 |
+
let CSVFile = new Blob([csv_data], {
|
| 40 |
+
type: "text/csv"
|
| 41 |
+
});
|
| 42 |
+
|
| 43 |
+
// Create to temporary link to initiate
|
| 44 |
+
// download process
|
| 45 |
+
let temp_link = document.createElement('a');
|
| 46 |
+
|
| 47 |
+
// Download csv file
|
| 48 |
+
temp_link.download = "kami_results.csv";
|
| 49 |
+
temp_link.href = window.URL.createObjectURL(CSVFile);
|
| 50 |
+
|
| 51 |
+
// This link should not be displayed
|
| 52 |
+
temp_link.style.display = "none";
|
| 53 |
+
document.body.appendChild(temp_link);
|
| 54 |
+
|
| 55 |
+
// Automatically click the link to
|
| 56 |
+
// trigger download
|
| 57 |
+
temp_link.click();
|
| 58 |
+
document.body.removeChild(temp_link);
|
| 59 |
+
}
|
static/js/exportCsv.min.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
function tableToCSV(){var csv_data=[];var rows=document.getElementsByTagName('tr');for(var i=0;i<rows.length;i++){var cols=rows[i].querySelectorAll('td,th');var csvrow=[];for(var j=0;j<cols.length;j++){csvrow.push(cols[j].textContent)}
|
| 2 |
+
csv_data.push(csvrow.join(","))}
|
| 3 |
+
csv_data=csv_data.join('\n');downloadCSVFile(csv_data)}
|
| 4 |
+
function downloadCSVFile(csv_data){let CSVFile=new Blob([csv_data],{type:"text/csv"});let temp_link=document.createElement('a');temp_link.download="kami_results.csv";temp_link.href=window.URL.createObjectURL(CSVFile);temp_link.style.display="none";document.body.appendChild(temp_link);temp_link.click();document.body.removeChild(temp_link)}
|
static/js/main.js
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"use strict";
|
| 2 |
+
|
| 3 |
+
const formOptions = document.querySelector("#options-form-compare");
|
| 4 |
+
let compareBtn = document.querySelector('#compare-btn');
|
| 5 |
+
let metricsDashboardContainer = document.querySelector("#metrics-dashboard-container");
|
| 6 |
+
let vtContainer = document.querySelector("#main-vt-container");
|
| 7 |
+
const inputExactMatch = document.querySelector("#exact-match");
|
| 8 |
+
const inputInsert = document.querySelector("#insertion");
|
| 9 |
+
const inputDelSubts = document.querySelector("#delSubts");
|
| 10 |
+
|
| 11 |
+
function showHideSpinner() {
|
| 12 |
+
let spinnerLoad = document.querySelector("#spinner-compare");
|
| 13 |
+
|
| 14 |
+
const currentState = () => {
|
| 15 |
+
spinnerLoad.style['display'] = "none";
|
| 16 |
+
document.querySelector('#message-compare-btn').textContent = " Compare";
|
| 17 |
+
compareBtn.removeAttribute('disabled');
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
const loadState = () => {
|
| 21 |
+
spinnerLoad.style['display'] = "";
|
| 22 |
+
document.querySelector('#message-compare-btn').textContent = " Release the Kraken...! 🐙";
|
| 23 |
+
compareBtn.setAttribute('disabled', "true");
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
return (spinnerLoad.style['display'] === "none") ? loadState() : currentState()
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
function getTextAreaValue() {
|
| 31 |
+
return [document.querySelector('#reference').value,
|
| 32 |
+
document.querySelector('#prediction').value];
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
function serializeFormData(reference, prediction) {
|
| 37 |
+
let inputs = formOptions.getElementsByTagName('input');
|
| 38 |
+
let data = {
|
| 39 |
+
reference: reference,
|
| 40 |
+
prediction: prediction,
|
| 41 |
+
preprocessingOpts: "",
|
| 42 |
+
vtOpt:0
|
| 43 |
+
};
|
| 44 |
+
|
| 45 |
+
Object.values(inputs).forEach(input =>{
|
| 46 |
+
input.checked
|
| 47 |
+
? input.name !== "optVT"
|
| 48 |
+
? data.preprocessingOpts += input.value
|
| 49 |
+
: data.vtOpt = 1
|
| 50 |
+
: input;
|
| 51 |
+
});
|
| 52 |
+
|
| 53 |
+
return data
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
function tabulate(columns, scores){
|
| 57 |
+
let table = d3.select('#table-result-container').append('table').attr('class', 'dataframe data table table-hover table-bordered');
|
| 58 |
+
let thead = table.append('thead');
|
| 59 |
+
let tbody = table.append('tbody');
|
| 60 |
+
// append the header row
|
| 61 |
+
thead.append('tr').selectAll('th').data(columns).enter().append('th').text(function (column) {
|
| 62 |
+
return column;
|
| 63 |
+
});
|
| 64 |
+
let rows = tbody.selectAll('tr').data(scores).enter().append('tr');
|
| 65 |
+
// create a cell in each row for each column
|
| 66 |
+
rows.selectAll('td').data(function (row, i) {
|
| 67 |
+
return row;
|
| 68 |
+
}).enter().append('td').html(function (d) {
|
| 69 |
+
if ((typeof d === "string") && (d !== "Ø")) {
|
| 70 |
+
d = "<b>" + d + "</b>";
|
| 71 |
+
}
|
| 72 |
+
return d;
|
| 73 |
+
});
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
function populateVersusText(reference, comparaison, prediction){
|
| 77 |
+
[{reference:reference}, {comparaison: comparaison}, {prediction: prediction}].forEach(version => {
|
| 78 |
+
document.querySelector(`#vt-${Object.keys(version)[0]}`).innerHTML = Object.values(version)[0].join('');
|
| 79 |
+
});
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
function versusTextSelector(){
|
| 83 |
+
[inputExactMatch, inputInsert, inputDelSubts].forEach(btn => {
|
| 84 |
+
btn.addEventListener('click', function (event) {
|
| 85 |
+
document.querySelectorAll("."+event.target.id).forEach(item => {
|
| 86 |
+
(event.target.checked) ? item.classList.remove('clear') : item.classList.add('clear');
|
| 87 |
+
});
|
| 88 |
+
})
|
| 89 |
+
})
|
| 90 |
+
}
|
| 91 |
+
|
| 92 |
+
function fileJSLoader (file, id){
|
| 93 |
+
// remove the old script in header if exists
|
| 94 |
+
try{
|
| 95 |
+
document.querySelector("#"+id).remove();
|
| 96 |
+
}catch (e) {}
|
| 97 |
+
// create a <script> element
|
| 98 |
+
let scriptElement = document.createElement("script");
|
| 99 |
+
// fix attributes
|
| 100 |
+
scriptElement.id = "dynamic-vt-script";
|
| 101 |
+
scriptElement.type = "text/javascript";
|
| 102 |
+
scriptElement.src = "static/"+file;
|
| 103 |
+
// add child to <head> tag in DOM
|
| 104 |
+
document.getElementById("head").appendChild(scriptElement);
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
function sendFormToResults() {
|
| 108 |
+
// check if text area are empty : else return submit default validation
|
| 109 |
+
let textAreaValues = getTextAreaValue();
|
| 110 |
+
let reference = textAreaValues[0];
|
| 111 |
+
let prediction = textAreaValues[1];
|
| 112 |
+
if (reference !== "" && prediction !== "") {
|
| 113 |
+
// Hide metrics container
|
| 114 |
+
metricsDashboardContainer.style.display = 'none';
|
| 115 |
+
// Hide versus text container
|
| 116 |
+
vtContainer.style.display = 'none';
|
| 117 |
+
// Show spinner
|
| 118 |
+
showHideSpinner();
|
| 119 |
+
// remove previous table if exists
|
| 120 |
+
try{
|
| 121 |
+
document.querySelector('.dataframe').remove();
|
| 122 |
+
}catch (e) {}
|
| 123 |
+
// this part send data to backend
|
| 124 |
+
fetch('/compute_results',{
|
| 125 |
+
method: 'POST',
|
| 126 |
+
headers: {
|
| 127 |
+
'Accept': 'application/json',
|
| 128 |
+
'Content-Type': 'application/json'
|
| 129 |
+
},
|
| 130 |
+
// directly serialize and pass data
|
| 131 |
+
body:JSON.stringify(serializeFormData(reference, prediction))
|
| 132 |
+
})
|
| 133 |
+
.then(response => response.json())
|
| 134 |
+
.then(function (response) {
|
| 135 |
+
tabulate(response.columns, response.scores);
|
| 136 |
+
metricsDashboardContainer.style.display = '';
|
| 137 |
+
if (response.comparaison.length !== 0){
|
| 138 |
+
populateVersusText(response.reference, response.comparaison, response.prediction)
|
| 139 |
+
vtContainer.style.display = '';
|
| 140 |
+
versusTextSelector();
|
| 141 |
+
// load jquery file to display line VT hover feature (temporary solution, remove and
|
| 142 |
+
// include here when that is write in full JS
|
| 143 |
+
fileJSLoader("js/dynamicVT.min.js", "dynamic-vt-script");
|
| 144 |
+
}else{
|
| 145 |
+
vtContainer.style.display = 'none';
|
| 146 |
+
}
|
| 147 |
+
showHideSpinner("hide");
|
| 148 |
+
}).catch(function(){
|
| 149 |
+
showHideSpinner("hide");
|
| 150 |
+
});
|
| 151 |
+
}
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
compareBtn.addEventListener("click", function () {
|
| 155 |
+
sendFormToResults();
|
| 156 |
+
});
|
static/js/main.min.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"use strict";const formOptions=document.querySelector("#options-form-compare");let compareBtn=document.querySelector("#compare-btn"),metricsDashboardContainer=document.querySelector("#metrics-dashboard-container"),vtContainer=document.querySelector("#main-vt-container");const inputExactMatch=document.querySelector("#exact-match"),inputInsert=document.querySelector("#insertion"),inputDelSubts=document.querySelector("#delSubts");function showHideSpinner(){let e=document.querySelector("#spinner-compare");return"none"===e.style.display?(e.style.display="",document.querySelector("#message-compare-btn").textContent=" Release the Kraken...! 🐙",void compareBtn.setAttribute("disabled","true")):(e.style.display="none",document.querySelector("#message-compare-btn").textContent=" Compare",void compareBtn.removeAttribute("disabled"))}function getTextAreaValue(){return[document.querySelector("#reference").value,document.querySelector("#prediction").value]}function serializeFormData(e,t){let n=formOptions.getElementsByTagName("input"),r={reference:e,prediction:t,preprocessingOpts:"",vtOpt:0};return Object.values(n).forEach(e=>{e.checked&&("optVT"!==e.name?r.preprocessingOpts+=e.value:r.vtOpt=1)}),r}function tabulate(e,t){let n=d3.select("#table-result-container").append("table").attr("class","dataframe data table table-hover table-bordered"),r=n.append("thead"),o=n.append("tbody");r.append("tr").selectAll("th").data(e).enter().append("th").text(function(e){return e}),o.selectAll("tr").data(t).enter().append("tr").selectAll("td").data(function(e,t){return e}).enter().append("td").html(function(e){return"string"==typeof e&&"Ø"!==e&&(e="<b>"+e+"</b>"),e})}function populateVersusText(e,t,n){[{reference:e},{comparaison:t},{prediction:n}].forEach(e=>{document.querySelector(`#vt-${Object.keys(e)[0]}`).innerHTML=Object.values(e)[0].join("")})}function versusTextSelector(){[inputExactMatch,inputInsert,inputDelSubts].forEach(e=>{e.addEventListener("click",function(e){document.querySelectorAll("."+e.target.id).forEach(t=>{e.target.checked?t.classList.remove("clear"):t.classList.add("clear")})})})}function fileJSLoader(e,t){try{document.querySelector("#"+t).remove()}catch(e){}let n=document.createElement("script");n.id="dynamic-vt-script",n.type="text/javascript",n.src="static/"+e,document.getElementById("head").appendChild(n)}function sendFormToResults(){let e=getTextAreaValue(),t=e[0],n=e[1];if(""!==t&&""!==n){metricsDashboardContainer.style.display="none",vtContainer.style.display="none",showHideSpinner();try{document.querySelector(".dataframe").remove()}catch(e){}fetch("/compute_results",{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(serializeFormData(t,n))}).then(e=>e.json()).then(function(e){tabulate(e.columns,e.scores),metricsDashboardContainer.style.display="",0!==e.comparaison.length?(populateVersusText(e.reference,e.comparaison,e.prediction),vtContainer.style.display="",versusTextSelector(),fileJSLoader("js/dynamicVT.min.js","dynamic-vt-script")):vtContainer.style.display="none",showHideSpinner("hide")}).catch(function(){showHideSpinner("hide")})}}compareBtn.addEventListener("click",function(){sendFormToResults()});
|
static/kami_logo.min.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/***************************************************
|
| 2 |
+
* Generated by SVG Artista on 4/25/2022, 12:10:27 PM
|
| 3 |
+
* MIT license (https://opensource.org/licenses/MIT)
|
| 4 |
+
* W. https://svgartista.net
|
| 5 |
+
**************************************************/
|
| 6 |
+
|
| 7 |
+
@-webkit-keyframes animate-svg-stroke-1{0%{stroke-dashoffset:823.6461107619796px;stroke-dasharray:823.6461107619796px}100%{stroke-dashoffset:0;stroke-dasharray:823.6461107619796px}}@keyframes animate-svg-stroke-1{0%{stroke-dashoffset:823.6461107619796px;stroke-dasharray:823.6461107619796px}100%{stroke-dashoffset:0;stroke-dasharray:823.6461107619796px}}.svg-elem-1{-webkit-animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both;animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both}@-webkit-keyframes animate-svg-stroke-2{0%{stroke-dashoffset:2px;stroke-dasharray:2px}100%{stroke-dashoffset:0;stroke-dasharray:2px}}@keyframes animate-svg-stroke-2{0%{stroke-dashoffset:2px;stroke-dasharray:2px}100%{stroke-dashoffset:0;stroke-dasharray:2px}}.svg-elem-2{-webkit-animation:animate-svg-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.08s both;animation:animate-svg-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.08s both}@-webkit-keyframes animate-svg-stroke-3{0%{stroke-dashoffset:2px;stroke-dasharray:2px}100%{stroke-dashoffset:0;stroke-dasharray:2px}}@keyframes animate-svg-stroke-3{0%{stroke-dashoffset:2px;stroke-dasharray:2px}100%{stroke-dashoffset:0;stroke-dasharray:2px}}.svg-elem-3{-webkit-animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.16s both;animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.16s both}@-webkit-keyframes animate-svg-stroke-4{0%{stroke-dashoffset:2px;stroke-dasharray:2px}100%{stroke-dashoffset:0;stroke-dasharray:2px}}@keyframes animate-svg-stroke-4{0%{stroke-dashoffset:2px;stroke-dasharray:2px}100%{stroke-dashoffset:0;stroke-dasharray:2px}}.svg-elem-4{-webkit-animation:animate-svg-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both;animation:animate-svg-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both}@-webkit-keyframes animate-svg-stroke-5{0%{stroke-dashoffset:521.7701648024563px;stroke-dasharray:521.7701648024563px}100%{stroke-dashoffset:0;stroke-dasharray:521.7701648024563px}}@keyframes animate-svg-stroke-5{0%{stroke-dashoffset:521.7701648024563px;stroke-dasharray:521.7701648024563px}100%{stroke-dashoffset:0;stroke-dasharray:521.7701648024563px}}.svg-elem-5{-webkit-animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.32s both;animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.32s both}@-webkit-keyframes animate-svg-stroke-6{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-6{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-6{-webkit-animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.4s both;animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.4s both}@-webkit-keyframes animate-svg-stroke-7{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-7{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-7{-webkit-animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both;animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both}@-webkit-keyframes animate-svg-stroke-8{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-8{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-8{-webkit-animation:animate-svg-stroke-8 1s cubic-bezier(0.47,0,0.745,0.715) 0.56s both;animation:animate-svg-stroke-8 1s cubic-bezier(0.47,0,0.745,0.715) 0.56s both}@-webkit-keyframes animate-svg-stroke-9{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-9{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-9{-webkit-animation:animate-svg-stroke-9 1s cubic-bezier(0.47,0,0.745,0.715) 0.64s both;animation:animate-svg-stroke-9 1s cubic-bezier(0.47,0,0.745,0.715) 0.64s both}@-webkit-keyframes animate-svg-stroke-10{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-10{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-10{-webkit-animation:animate-svg-stroke-10 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both;animation:animate-svg-stroke-10 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both}@-webkit-keyframes animate-svg-stroke-11{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-11{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-11{-webkit-animation:animate-svg-stroke-11 1s cubic-bezier(0.47,0,0.745,0.715) 0.8s both;animation:animate-svg-stroke-11 1s cubic-bezier(0.47,0,0.745,0.715) 0.8s both}@-webkit-keyframes animate-svg-stroke-12{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-12{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-12{-webkit-animation:animate-svg-stroke-12 1s cubic-bezier(0.47,0,0.745,0.715) 0.88s both;animation:animate-svg-stroke-12 1s cubic-bezier(0.47,0,0.745,0.715) 0.88s both}@-webkit-keyframes animate-svg-stroke-13{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-13{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-13{-webkit-animation:animate-svg-stroke-13 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s both;animation:animate-svg-stroke-13 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s both}@-webkit-keyframes animate-svg-stroke-14{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-14{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-14{-webkit-animation:animate-svg-stroke-14 1s cubic-bezier(0.47,0,0.745,0.715) 1.04s both;animation:animate-svg-stroke-14 1s cubic-bezier(0.47,0,0.745,0.715) 1.04s both}@-webkit-keyframes animate-svg-stroke-15{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-15{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-15{-webkit-animation:animate-svg-stroke-15 1s cubic-bezier(0.47,0,0.745,0.715) 1.12s both;animation:animate-svg-stroke-15 1s cubic-bezier(0.47,0,0.745,0.715) 1.12s both}@-webkit-keyframes animate-svg-stroke-16{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-16{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-16{-webkit-animation:animate-svg-stroke-16 1s cubic-bezier(0.47,0,0.745,0.715) 1.2s both;animation:animate-svg-stroke-16 1s cubic-bezier(0.47,0,0.745,0.715) 1.2s both}@-webkit-keyframes animate-svg-stroke-17{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}@keyframes animate-svg-stroke-17{0%{stroke-dashoffset:104.63138978076636px;stroke-dasharray:104.63138978076636px}100%{stroke-dashoffset:0;stroke-dasharray:104.63138978076636px}}.svg-elem-17{-webkit-animation:animate-svg-stroke-17 1s cubic-bezier(0.47,0,0.745,0.715) 1.28s both;animation:animate-svg-stroke-17 1s cubic-bezier(0.47,0,0.745,0.715) 1.28s both}@-webkit-keyframes animate-svg-stroke-18{0%{stroke-dashoffset:217.01815795898438px;stroke-dasharray:217.01815795898438px}100%{stroke-dashoffset:0;stroke-dasharray:217.01815795898438px}}@keyframes animate-svg-stroke-18{0%{stroke-dashoffset:217.01815795898438px;stroke-dasharray:217.01815795898438px}100%{stroke-dashoffset:0;stroke-dasharray:217.01815795898438px}}.svg-elem-18{-webkit-animation:animate-svg-stroke-18 1s cubic-bezier(0.47,0,0.745,0.715) 1.36s both;animation:animate-svg-stroke-18 1s cubic-bezier(0.47,0,0.745,0.715) 1.36s both}@-webkit-keyframes animate-svg-stroke-19{0%{stroke-dashoffset:268.07318115234375px;stroke-dasharray:268.07318115234375px}100%{stroke-dashoffset:0;stroke-dasharray:268.07318115234375px}}@keyframes animate-svg-stroke-19{0%{stroke-dashoffset:268.07318115234375px;stroke-dasharray:268.07318115234375px}100%{stroke-dashoffset:0;stroke-dasharray:268.07318115234375px}}.svg-elem-19{-webkit-animation:animate-svg-stroke-19 1s cubic-bezier(0.47,0,0.745,0.715) 1.44s both;animation:animate-svg-stroke-19 1s cubic-bezier(0.47,0,0.745,0.715) 1.44s both}@-webkit-keyframes animate-svg-stroke-20{0%{stroke-dashoffset:268.07305908203125px;stroke-dasharray:268.07305908203125px}100%{stroke-dashoffset:0;stroke-dasharray:268.07305908203125px}}@keyframes animate-svg-stroke-20{0%{stroke-dashoffset:268.07305908203125px;stroke-dasharray:268.07305908203125px}100%{stroke-dashoffset:0;stroke-dasharray:268.07305908203125px}}.svg-elem-20{-webkit-animation:animate-svg-stroke-20 1s cubic-bezier(0.47,0,0.745,0.715) 1.52s both;animation:animate-svg-stroke-20 1s cubic-bezier(0.47,0,0.745,0.715) 1.52s both}@-webkit-keyframes animate-svg-stroke-21{0%{stroke-dashoffset:278.3760070800781px;stroke-dasharray:278.3760070800781px}100%{stroke-dashoffset:0;stroke-dasharray:278.3760070800781px}}@keyframes animate-svg-stroke-21{0%{stroke-dashoffset:278.3760070800781px;stroke-dasharray:278.3760070800781px}100%{stroke-dashoffset:0;stroke-dasharray:278.3760070800781px}}.svg-elem-21{-webkit-animation:animate-svg-stroke-21 1s cubic-bezier(0.47,0,0.745,0.715) 1.6s both;animation:animate-svg-stroke-21 1s cubic-bezier(0.47,0,0.745,0.715) 1.6s both}@-webkit-keyframes animate-svg-stroke-22{0%{stroke-dashoffset:521.7701648024563px;stroke-dasharray:521.7701648024563px}100%{stroke-dashoffset:0;stroke-dasharray:521.7701648024563px}}@keyframes animate-svg-stroke-22{0%{stroke-dashoffset:521.7701648024563px;stroke-dasharray:521.7701648024563px}100%{stroke-dashoffset:0;stroke-dasharray:521.7701648024563px}}.svg-elem-22{-webkit-animation:animate-svg-stroke-22 1s cubic-bezier(0.47,0,0.745,0.715) 1.68s both;animation:animate-svg-stroke-22 1s cubic-bezier(0.47,0,0.745,0.715) 1.68s both}@-webkit-keyframes animate-svg-stroke-23{0%{stroke-dashoffset:156.95742797851562px;stroke-dasharray:156.95742797851562px}100%{stroke-dashoffset:0;stroke-dasharray:156.95742797851562px}}@keyframes animate-svg-stroke-23{0%{stroke-dashoffset:156.95742797851562px;stroke-dasharray:156.95742797851562px}100%{stroke-dashoffset:0;stroke-dasharray:156.95742797851562px}}.svg-elem-23{-webkit-animation:animate-svg-stroke-23 1s cubic-bezier(0.47,0,0.745,0.715) 1.76s both;animation:animate-svg-stroke-23 1s cubic-bezier(0.47,0,0.745,0.715) 1.76s both}@-webkit-keyframes animate-svg-stroke-24{0%{stroke-dashoffset:29.73297023801183px;stroke-dasharray:29.73297023801183px}100%{stroke-dashoffset:0;stroke-dasharray:29.73297023801183px}}@keyframes animate-svg-stroke-24{0%{stroke-dashoffset:29.73297023801183px;stroke-dasharray:29.73297023801183px}100%{stroke-dashoffset:0;stroke-dasharray:29.73297023801183px}}.svg-elem-24{-webkit-animation:animate-svg-stroke-24 1s cubic-bezier(0.47,0,0.745,0.715) 1.84s both;animation:animate-svg-stroke-24 1s cubic-bezier(0.47,0,0.745,0.715) 1.84s both}@-webkit-keyframes animate-svg-stroke-25{0%{stroke-dashoffset:519.7757568359375px;stroke-dasharray:519.7757568359375px}100%{stroke-dashoffset:0;stroke-dasharray:519.7757568359375px}}@keyframes animate-svg-stroke-25{0%{stroke-dashoffset:519.7757568359375px;stroke-dasharray:519.7757568359375px}100%{stroke-dashoffset:0;stroke-dasharray:519.7757568359375px}}.svg-elem-25{-webkit-animation:animate-svg-stroke-25 1s cubic-bezier(0.47,0,0.745,0.715) 1.92s both;animation:animate-svg-stroke-25 1s cubic-bezier(0.47,0,0.745,0.715) 1.92s both}@-webkit-keyframes animate-svg-stroke-26{0%{stroke-dashoffset:800.3845825195312px;stroke-dasharray:800.3845825195312px}100%{stroke-dashoffset:0;stroke-dasharray:800.3845825195312px}}@keyframes animate-svg-stroke-26{0%{stroke-dashoffset:800.3845825195312px;stroke-dasharray:800.3845825195312px}100%{stroke-dashoffset:0;stroke-dasharray:800.3845825195312px}}.svg-elem-26{-webkit-animation:animate-svg-stroke-26 1s cubic-bezier(0.47,0,0.745,0.715) 2s both;animation:animate-svg-stroke-26 1s cubic-bezier(0.47,0,0.745,0.715) 2s both}@-webkit-keyframes animate-svg-stroke-27{0%{stroke-dashoffset:25.051039626722226px;stroke-dasharray:25.051039626722226px}100%{stroke-dashoffset:0;stroke-dasharray:25.051039626722226px}}@keyframes animate-svg-stroke-27{0%{stroke-dashoffset:25.051039626722226px;stroke-dasharray:25.051039626722226px}100%{stroke-dashoffset:0;stroke-dasharray:25.051039626722226px}}.svg-elem-27{-webkit-animation:animate-svg-stroke-27 1s cubic-bezier(0.47,0,0.745,0.715) 2.08s both;animation:animate-svg-stroke-27 1s cubic-bezier(0.47,0,0.745,0.715) 2.08s both}@-webkit-keyframes animate-svg-stroke-28{0%{stroke-dashoffset:25.051039626722226px;stroke-dasharray:25.051039626722226px}100%{stroke-dashoffset:0;stroke-dasharray:25.051039626722226px}}@keyframes animate-svg-stroke-28{0%{stroke-dashoffset:25.051039626722226px;stroke-dasharray:25.051039626722226px}100%{stroke-dashoffset:0;stroke-dasharray:25.051039626722226px}}.svg-elem-28{-webkit-animation:animate-svg-stroke-28 1s cubic-bezier(0.47,0,0.745,0.715) 2.16s both;animation:animate-svg-stroke-28 1s cubic-bezier(0.47,0,0.745,0.715) 2.16s both}
|
static/style.css
ADDED
|
@@ -0,0 +1,274 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
|
| 2 |
+
|
| 3 |
+
:root{
|
| 4 |
+
--red-main : #AA0018;
|
| 5 |
+
--dark-red : #780018;
|
| 6 |
+
--white-main : #FFFFFFFF;
|
| 7 |
+
--gray-main : #7a7777;
|
| 8 |
+
--black-main : #000000FF;
|
| 9 |
+
--red-contrast : #D10047;
|
| 10 |
+
--delight-blue : #5fbcd3;
|
| 11 |
+
|
| 12 |
+
--exact : #3CB371;
|
| 13 |
+
--insert : #4169E1;
|
| 14 |
+
--delsubts : #D2122E;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
body {
|
| 18 |
+
position: relative;
|
| 19 |
+
height: 100%;
|
| 20 |
+
width: 100%;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
#main-container{
|
| 24 |
+
width: 100%;
|
| 25 |
+
height: 100%;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
#name-software{
|
| 29 |
+
font-family: 'Fredoka One', cursive;
|
| 30 |
+
font-size: 2em;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
input[type='checkbox']:hover{
|
| 34 |
+
cursor: pointer;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
#version-software{
|
| 38 |
+
padding: 18px;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
#welcome-title{
|
| 42 |
+
font-family: 'Fredoka One', cursive;
|
| 43 |
+
font-size: 2em;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
#copyright {
|
| 47 |
+
font-size: 13px;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.under-link {
|
| 51 |
+
position: relative;
|
| 52 |
+
display: inline-block;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
a:hover {
|
| 56 |
+
color: var(--delight-blue) !important;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.dash-btn{
|
| 60 |
+
margin-left: 30px;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
#vt-configs{
|
| 64 |
+
margin-top: 10px;
|
| 65 |
+
margin-left: 30px;
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
#fieldset-vt{
|
| 70 |
+
background-color: #F7F7F7;
|
| 71 |
+
max-width:500px;
|
| 72 |
+
padding:16px;
|
| 73 |
+
border-radius: 10px;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
#fieldset-vt-title{
|
| 77 |
+
font-weight: bold ;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.under-link:after {
|
| 81 |
+
content: "";
|
| 82 |
+
position: absolute;
|
| 83 |
+
left:0;
|
| 84 |
+
top: 80%;
|
| 85 |
+
width: 0;
|
| 86 |
+
height: 2px;
|
| 87 |
+
background-color: var(--delight-blue);
|
| 88 |
+
transition: width .3s ease-in-out;
|
| 89 |
+
}
|
| 90 |
+
.under-link:hover:after {
|
| 91 |
+
width: 100%;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
.a_inline {
|
| 96 |
+
color: var(--red-main);
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
#compare-btn{
|
| 100 |
+
background-color: var(--red-main);
|
| 101 |
+
border-color: var(--red-main);
|
| 102 |
+
color: white;
|
| 103 |
+
margin-top: 3%;
|
| 104 |
+
}
|
| 105 |
+
|
| 106 |
+
#compare-btn:hover{
|
| 107 |
+
background-color: var(--dark-red) !important;
|
| 108 |
+
border-color: var(--dark-red) !important;
|
| 109 |
+
color: white;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
/*
|
| 113 |
+
.file-field.medium .file-path-wrapper {
|
| 114 |
+
height: 3rem; }
|
| 115 |
+
.file-field.medium .file-path-wrapper .file-path {
|
| 116 |
+
height: 2.8rem; }
|
| 117 |
+
|
| 118 |
+
.file-field.big-2 .file-path-wrapper {
|
| 119 |
+
height: 3.7rem; }
|
| 120 |
+
.file-field.big-2 .file-path-wrapper .file-path {
|
| 121 |
+
height: 3.5rem; }
|
| 122 |
+
*/
|
| 123 |
+
|
| 124 |
+
#reference{
|
| 125 |
+
box-shadow:0 0 10px var(--white-main);
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
|
| 129 |
+
#top-navbar, #bottom-footer {
|
| 130 |
+
background-color: var(--red-main);
|
| 131 |
+
font-weight: bold;
|
| 132 |
+
color: var(--white-main);
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
#top-navbar a, #top-navbar a:visited, #top-navbar a:link, #top-navbar a:hover {
|
| 136 |
+
color: var(--white-main);
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
#bottom-footer a, #bottom-footer a:visited, #bottom-footer a:link, #bottom-footer a:hover {
|
| 140 |
+
color: var(--white-main);
|
| 141 |
+
}
|
| 142 |
+
|
| 143 |
+
footer{
|
| 144 |
+
background-color: var(--red-main) !important;
|
| 145 |
+
right: 0;bottom:0;left:0;
|
| 146 |
+
clear: both;
|
| 147 |
+
position: relative;
|
| 148 |
+
max-height: 100%;
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
+
/*
|
| 152 |
+
.file-return {
|
| 153 |
+
margin: 0;
|
| 154 |
+
}
|
| 155 |
+
.file-return:not(:empty) {
|
| 156 |
+
margin: 1em 0;
|
| 157 |
+
}
|
| 158 |
+
.js .file-return {
|
| 159 |
+
font-style: italic;
|
| 160 |
+
font-size: .9em;
|
| 161 |
+
font-weight: bold;
|
| 162 |
+
}
|
| 163 |
+
.js .file-return:not(:empty):before {
|
| 164 |
+
content: "Selected file: ";
|
| 165 |
+
font-style: normal;
|
| 166 |
+
font-weight: normal;
|
| 167 |
+
}*/
|
| 168 |
+
|
| 169 |
+
.form-zone {
|
| 170 |
+
border:solid;
|
| 171 |
+
border-color: var(--black-main);
|
| 172 |
+
border-width:thin;
|
| 173 |
+
box-shadow: 2px 2px 20px var(--gray-main);
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
/*.center-image {
|
| 177 |
+
display: block;
|
| 178 |
+
margin-left: auto;
|
| 179 |
+
margin-right: auto;
|
| 180 |
+
width: 50%;
|
| 181 |
+
}*/
|
| 182 |
+
|
| 183 |
+
#title-metrics-dashboard{
|
| 184 |
+
font-family: 'Fredoka One', cursive;
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
+
#title-vt-container{
|
| 188 |
+
font-family: 'Fredoka One', cursive;
|
| 189 |
+
}
|
| 190 |
+
|
| 191 |
+
.jumbotron {
|
| 192 |
+
background-color: var(--white-main);
|
| 193 |
+
}
|
| 194 |
+
|
| 195 |
+
|
| 196 |
+
.panel-title {
|
| 197 |
+
position: relative;
|
| 198 |
+
}
|
| 199 |
+
|
| 200 |
+
.panel-title:hover{
|
| 201 |
+
color: var(--red-main);
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
|
| 205 |
+
.panel-title::after {
|
| 206 |
+
content: "\f107";
|
| 207 |
+
color: #333;
|
| 208 |
+
top: -2px;
|
| 209 |
+
right: 0px;
|
| 210 |
+
position: absolute;
|
| 211 |
+
font-family: "FontAwesome"
|
| 212 |
+
}
|
| 213 |
+
|
| 214 |
+
.panel-title[aria-expanded="true"]::after {
|
| 215 |
+
content: "\f106";
|
| 216 |
+
}
|
| 217 |
+
|
| 218 |
+
.exact-match{
|
| 219 |
+
color:var(--exact);
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
.insertion{
|
| 223 |
+
color: var(--insert);
|
| 224 |
+
}
|
| 225 |
+
|
| 226 |
+
.delSubts{
|
| 227 |
+
color: var(--delsubts);
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
.exact-matchl{
|
| 231 |
+
color:var(--exact);
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.insertionl{
|
| 235 |
+
color: var(--insert);
|
| 236 |
+
}
|
| 237 |
+
|
| 238 |
+
.delSubtsl{
|
| 239 |
+
color: var(--delsubts);
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
.char{
|
| 243 |
+
background: rgba(123, 123, 126, 0.4);
|
| 244 |
+
}
|
| 245 |
+
|
| 246 |
+
.clear {
|
| 247 |
+
color: white !important;
|
| 248 |
+
}
|
| 249 |
+
|
| 250 |
+
tr{
|
| 251 |
+
text-align: center;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.label-vs{
|
| 255 |
+
text-align: center;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.col-vt-text{
|
| 259 |
+
font-family: Helvetica;
|
| 260 |
+
font-size: 17px;
|
| 261 |
+
text-align: justify;
|
| 262 |
+
white-space: pre-wrap;
|
| 263 |
+
}
|
| 264 |
+
|
| 265 |
+
|
| 266 |
+
td, th {
|
| 267 |
+
padding: 1px 4px;
|
| 268 |
+
}
|
| 269 |
+
|
| 270 |
+
.info-metrics{
|
| 271 |
+
display: none;
|
| 272 |
+
}
|
| 273 |
+
|
| 274 |
+
|
templates/error/404.html
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%extends "headerfooter.html"%}
|
| 2 |
+
|
| 3 |
+
{% block body %}
|
| 4 |
+
|
| 5 |
+
<div class = "container" style="padding-top: 5%; padding-bottom: 5%; text-align:center">
|
| 6 |
+
<div class="row" style="padding-top: 5%">
|
| 7 |
+
<div class="col-2" >
|
| 8 |
+
</div>
|
| 9 |
+
<div class="col-7" >
|
| 10 |
+
<h1 style="text-align:center">Error</h1>
|
| 11 |
+
</div>
|
| 12 |
+
<div class="col-3" >
|
| 13 |
+
</div>
|
| 14 |
+
</div>
|
| 15 |
+
<!--<div class="row" style="padding-top: 5%">
|
| 16 |
+
<div class="col-2" ></div>
|
| 17 |
+
<div class="col-7" >
|
| 18 |
+
<img src="{{ url_for('static', filename='img/aspyre-gui_404_mini.png')}}" alt="Error 404" class="center-image">
|
| 19 |
+
</div>
|
| 20 |
+
<div class="col-3" ></div>
|
| 21 |
+
</div>-->
|
| 22 |
+
<div class="row" style="padding-top: 5%">
|
| 23 |
+
<div class="col-2" >
|
| 24 |
+
</div>
|
| 25 |
+
<div class="col-7" >
|
| 26 |
+
<p>Oh no! It seems that you got lost: this page doesn't exist...</p>
|
| 27 |
+
<a href="{{url_for('index')}}">Go back to the main page.</a>
|
| 28 |
+
</div>
|
| 29 |
+
<div class="col-3" >
|
| 30 |
+
</div>
|
| 31 |
+
</div>
|
| 32 |
+
</div>
|
| 33 |
+
|
| 34 |
+
{% endblock %}
|
templates/error/500.html
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%extends "headerfooter.html"%}
|
| 2 |
+
|
| 3 |
+
{% block body %}
|
| 4 |
+
|
| 5 |
+
<div class = "container" style="padding-top: 5%; padding-bottom: 5%; text-align:center">
|
| 6 |
+
<div class="row" style="padding-top: 5%">
|
| 7 |
+
<div class="col-2" >
|
| 8 |
+
</div>
|
| 9 |
+
<div class="col-7" >
|
| 10 |
+
<h1 style="text-align:center">Error 500</h1>
|
| 11 |
+
</div>
|
| 12 |
+
<div class="col-3" >
|
| 13 |
+
</div>
|
| 14 |
+
</div>
|
| 15 |
+
<!--<div class="row" style="padding-top: 5%">
|
| 16 |
+
<div class="col-2" ></div>
|
| 17 |
+
<div class="col-7" >
|
| 18 |
+
<img src="{{ url_for('static', filename='img/aspyre-gui_500_mini.png')}}" alt="Error 500" class="center-image">
|
| 19 |
+
</div>
|
| 20 |
+
<div class="col-3" ></div>
|
| 21 |
+
</div>-->
|
| 22 |
+
<div class="row" style="padding-top: 5%">
|
| 23 |
+
<div class="col-2" >
|
| 24 |
+
</div>
|
| 25 |
+
<div class="col-7" >
|
| 26 |
+
<p>Whoops! Sorry, it looks like I'm not working...</p>
|
| 27 |
+
<a href="{{url_for('index')}}">Try to go back to the main page.</a>
|
| 28 |
+
</div>
|
| 29 |
+
<div class="col-3" >
|
| 30 |
+
</div>
|
| 31 |
+
</div>
|
| 32 |
+
</div>
|
| 33 |
+
|
| 34 |
+
{% endblock %}
|