Spaces:
Sleeping
Sleeping
Upload 114 files
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +1 -0
- Dockerfile +16 -0
- app.py +336 -0
- models/classification.pt +3 -0
- models/detection.pt +3 -0
- requirements.txt +14 -0
- results/results.xlsx +0 -0
- static/css/style1.css +1346 -0
- static/css/styles.css +107 -0
- static/img/about.jpg +3 -0
- static/img/apple-touch-icon.png +0 -0
- static/img/clients/client-1.png +0 -0
- static/img/clients/client-2.png +0 -0
- static/img/clients/client-3.png +0 -0
- static/img/clients/client-4.png +0 -0
- static/img/clients/client-5.png +0 -0
- static/img/clients/client-6.png +0 -0
- static/img/clients/client-7.png +0 -0
- static/img/clients/client-8.png +0 -0
- static/img/favicon.ico +0 -0
- static/img/favicon.png +0 -0
- static/img/features-2.png +0 -0
- static/img/features-3.png +0 -0
- static/img/features.png +0 -0
- static/img/footer-bg.png +0 -0
- static/img/hero-bg.png +0 -0
- static/img/hero-img.png +0 -0
- static/img/hero-img.svg +1 -0
- static/img/logo.png +0 -0
- static/img/pricing-free.png +0 -0
- static/img/team/team.png +0 -0
- static/img/values-1.png +0 -0
- static/img/values-2.png +0 -0
- static/img/values-3.png +0 -0
- static/js/main.js +221 -0
- static/vendor/aos/aos.css +1 -0
- static/vendor/aos/aos.js +1 -0
- static/vendor/bootstrap-icons/bootstrap-icons.css +1390 -0
- static/vendor/bootstrap-icons/bootstrap-icons.json +1372 -0
- static/vendor/bootstrap-icons/fonts/bootstrap-icons.woff +0 -0
- static/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 +0 -0
- static/vendor/bootstrap-icons/index.html +0 -0
- static/vendor/bootstrap/css/bootstrap-grid.css +4997 -0
- static/vendor/bootstrap/css/bootstrap-grid.css.map +0 -0
- static/vendor/bootstrap/css/bootstrap-grid.min.css +7 -0
- static/vendor/bootstrap/css/bootstrap-grid.min.css.map +0 -0
- static/vendor/bootstrap/css/bootstrap-grid.rtl.css +4996 -0
- static/vendor/bootstrap/css/bootstrap-grid.rtl.css.map +0 -0
- static/vendor/bootstrap/css/bootstrap-grid.rtl.min.css +7 -0
- static/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
static/img/about.jpg filter=lfs diff=lfs merge=lfs -text
|
Dockerfile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
| 2 |
+
# you will also find guides on how best to write your Dockerfile
|
| 3 |
+
|
| 4 |
+
FROM python:3.11
|
| 5 |
+
|
| 6 |
+
RUN useradd -m -u 1000 user
|
| 7 |
+
USER user
|
| 8 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
| 9 |
+
|
| 10 |
+
WORKDIR /app
|
| 11 |
+
|
| 12 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
| 13 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
+
|
| 15 |
+
COPY --chown=user . /app
|
| 16 |
+
CMD ["gunicorn", "-b", "0.0.0.0:7860","app:app"]
|
app.py
ADDED
|
@@ -0,0 +1,336 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from flask import Flask, request, jsonify, render_template, send_file
|
| 2 |
+
import os
|
| 3 |
+
from ultralytics import YOLO
|
| 4 |
+
from easyocr import Reader
|
| 5 |
+
import zipfile
|
| 6 |
+
import pandas as pd
|
| 7 |
+
import cv2
|
| 8 |
+
from fuzzywuzzy import fuzz, process
|
| 9 |
+
import re
|
| 10 |
+
import numpy as np
|
| 11 |
+
import json
|
| 12 |
+
import sqlite3
|
| 13 |
+
|
| 14 |
+
app = Flask(__name__)
|
| 15 |
+
app.config['UPLOAD_FOLDER'] = 'uploads/'
|
| 16 |
+
app.config['ALLOWED_EXTENSIONS'] = {'zip', 'xlsx'}
|
| 17 |
+
app.config['RESULTS_FOLDER'] = 'results/'
|
| 18 |
+
app.config['DATABASE'] = 'results_ack.db'
|
| 19 |
+
|
| 20 |
+
classifier = YOLO("./models/classification.pt")
|
| 21 |
+
detector = YOLO("./models/detection.pt")
|
| 22 |
+
reader = Reader(['en'])
|
| 23 |
+
|
| 24 |
+
def process_image(image_path):
|
| 25 |
+
if classifier.predict(image_path)[0].probs.numpy().top1 == 0:
|
| 26 |
+
fields = detector(image_path)
|
| 27 |
+
image = cv2.imread(image_path)
|
| 28 |
+
extracted_data = {}
|
| 29 |
+
for field in fields[0].boxes.data.tolist():
|
| 30 |
+
x1, y1, x2, y2, confidence, class_id = map(int, field[:6])
|
| 31 |
+
field_class = detector.names[class_id]
|
| 32 |
+
cropped_roi = image[y1:y2, x1:x2]
|
| 33 |
+
gray_roi = cv2.cvtColor(cropped_roi, cv2.COLOR_BGR2GRAY)
|
| 34 |
+
text = reader.readtext(gray_roi, detail=0)
|
| 35 |
+
extracted_data[field_class] = ' '.join(text)
|
| 36 |
+
return extracted_data
|
| 37 |
+
return None
|
| 38 |
+
|
| 39 |
+
# Helper Functions
|
| 40 |
+
def normalize_text(text):
|
| 41 |
+
if not text:
|
| 42 |
+
return "text empty"
|
| 43 |
+
text = re.sub(r"[^\w\s]", "", text)
|
| 44 |
+
return " ".join(text.split()).lower()
|
| 45 |
+
|
| 46 |
+
def calculate_match_score(input_value, extracted_value):
|
| 47 |
+
if pd.isna(input_value) or pd.isna(extracted_value):
|
| 48 |
+
return 0
|
| 49 |
+
return fuzz.ratio(str(input_value), str(extracted_value))
|
| 50 |
+
|
| 51 |
+
def name_match(input_name, extracted_name):
|
| 52 |
+
if extracted_name is None:
|
| 53 |
+
return False
|
| 54 |
+
input_name = normalize_text(input_name)
|
| 55 |
+
extracted_name = normalize_text(extracted_name)
|
| 56 |
+
|
| 57 |
+
if input_name == extracted_name:
|
| 58 |
+
return True
|
| 59 |
+
|
| 60 |
+
input_parts = input_name.split()
|
| 61 |
+
extracted_parts = extracted_name.split()
|
| 62 |
+
|
| 63 |
+
if sorted(input_parts) == sorted(extracted_parts):
|
| 64 |
+
return True
|
| 65 |
+
|
| 66 |
+
if len(input_parts) == 2 and len(extracted_parts) == 3:
|
| 67 |
+
if input_parts[0] == extracted_parts[0] and input_parts[1] == extracted_parts[2]:
|
| 68 |
+
return True
|
| 69 |
+
if len(input_parts) == 3 and len(extracted_parts) == 2:
|
| 70 |
+
if extracted_parts[0] == input_parts[0] and extracted_parts[1] == input_parts[2]:
|
| 71 |
+
return True
|
| 72 |
+
|
| 73 |
+
for part in input_parts:
|
| 74 |
+
if part not in extracted_parts:
|
| 75 |
+
return False
|
| 76 |
+
return True
|
| 77 |
+
|
| 78 |
+
def address_match(input_address, extracted_address):
|
| 79 |
+
print(input_address, extracted_address)
|
| 80 |
+
if input_address is None or extracted_address is None:
|
| 81 |
+
return False, 0.0, {}
|
| 82 |
+
|
| 83 |
+
# Handle input_address if it's a Series
|
| 84 |
+
if isinstance(input_address, pd.Series):
|
| 85 |
+
input_address = input_address.to_dict()
|
| 86 |
+
|
| 87 |
+
print(extracted_address)
|
| 88 |
+
extracted_address = normalize_text(extracted_address)
|
| 89 |
+
final_score = 0
|
| 90 |
+
print(extracted_address)
|
| 91 |
+
weights = {
|
| 92 |
+
"State": 0.2,
|
| 93 |
+
"Landmark": 0.2,
|
| 94 |
+
"Premise Building Name": 0.2,
|
| 95 |
+
"City":0.2,
|
| 96 |
+
"Street Road Name":0.1,
|
| 97 |
+
"Floor Number": 0.05,
|
| 98 |
+
"House Flat Number": 0.05
|
| 99 |
+
}
|
| 100 |
+
tokens = extracted_address.split(" ")
|
| 101 |
+
# Component matching logic
|
| 102 |
+
for field, weight in weights.items():
|
| 103 |
+
input_value = input_address.get(field, "")
|
| 104 |
+
match_score = fuzz.token_set_ratio(normalize_text(input_value), extracted_address) if input_value else 0
|
| 105 |
+
input_address[field + " Match Score"] = match_score
|
| 106 |
+
final_score += match_score * weight
|
| 107 |
+
pincode_score = process.extractOne(input_address.get("PINCODE"), tokens)[1]
|
| 108 |
+
input_address['PINCODE Match Score'] = pincode_score
|
| 109 |
+
pincode_matched = True if input_address['PINCODE Match Score'] == 100 else False
|
| 110 |
+
|
| 111 |
+
return final_score >= 70 and pincode_matched, final_score, input_address
|
| 112 |
+
|
| 113 |
+
def compare_data(input_data, json_data):
|
| 114 |
+
excel_data = input_data.copy()
|
| 115 |
+
for idx, row in excel_data.iterrows():
|
| 116 |
+
serial_no = row.get("SrNo")
|
| 117 |
+
uid = row.get("UID")
|
| 118 |
+
extracted = json_data.get(serial_no)
|
| 119 |
+
|
| 120 |
+
if extracted:
|
| 121 |
+
extracted_uid = extracted.get("uid", "").replace(" ", "")
|
| 122 |
+
extracted_name = extracted.get("name", "")
|
| 123 |
+
extracted_address = extracted.get("address", "")
|
| 124 |
+
row['Extracted UID'] = extracted_uid
|
| 125 |
+
row['Extracted Name'] = extracted_name
|
| 126 |
+
row['Extracted Address'] = extracted_address
|
| 127 |
+
# UID Match
|
| 128 |
+
uid_match = uid == extracted_uid
|
| 129 |
+
uid_score = 100 if uid_match else 0
|
| 130 |
+
row['UID Match Score'] = uid_score
|
| 131 |
+
|
| 132 |
+
# Name Match
|
| 133 |
+
name_match_result = name_match(row.get("Name"), extracted_name)
|
| 134 |
+
name_score = calculate_match_score(row.get("Name"), extracted_name)
|
| 135 |
+
row['Name Match Score'] = name_score
|
| 136 |
+
row['Name Match Percentage'] = name_score
|
| 137 |
+
|
| 138 |
+
# Address Match
|
| 139 |
+
address_match_result, address_score, partial_scores = address_match(row, extracted_address)
|
| 140 |
+
if partial_scores:
|
| 141 |
+
row['House Flat Number Match Score'] = partial_scores['House Flat Number Match Score']
|
| 142 |
+
row['Street Road Name Match Score'] = partial_scores['Street Road Name Match Score']
|
| 143 |
+
row['City Match Score'] = partial_scores['City Match Score']
|
| 144 |
+
row['Floor Number Match Score'] = partial_scores['Floor Number Match Score']
|
| 145 |
+
row['Premise Building Name Match Score'] = partial_scores['Premise Building Name Match Score']
|
| 146 |
+
row['Landmark Match Score'] = partial_scores['Landmark Match Score']
|
| 147 |
+
row['State Match Score'] = partial_scores['State Match Score']
|
| 148 |
+
row['Final Address Match'] = address_match_result
|
| 149 |
+
row['Final Address Match Score'] = address_score
|
| 150 |
+
row['PINCODE Match Score'] = partial_scores['PINCODE Match Score']
|
| 151 |
+
|
| 152 |
+
# Final Match
|
| 153 |
+
overall_match = uid_match and name_match_result and address_match_result
|
| 154 |
+
|
| 155 |
+
row['Overall Match'] = overall_match
|
| 156 |
+
|
| 157 |
+
if overall_match:
|
| 158 |
+
row['Final Remarks'] = "All matched"
|
| 159 |
+
elif not uid_match:
|
| 160 |
+
row['Final Remarks'] = "UID mismatch"
|
| 161 |
+
elif not name_match_result:
|
| 162 |
+
row['Final Remarks'] = "Name mismatch"
|
| 163 |
+
elif not address_match_result:
|
| 164 |
+
row['Final Remarks'] = "Address mismatch"
|
| 165 |
+
else:
|
| 166 |
+
if extracted_address is None:
|
| 167 |
+
row['Final Remarks'] = "Address missing in aadhar"
|
| 168 |
+
elif extracted_name is None:
|
| 169 |
+
row['Final Remarks'] = "Name missing in aadhar"
|
| 170 |
+
else:
|
| 171 |
+
row['Final Remarks'] = "Non Aadhar"
|
| 172 |
+
|
| 173 |
+
row["Document Type"] = "Aadhaar" if overall_match else "Non-Aadhaar"
|
| 174 |
+
else:
|
| 175 |
+
row.replace(float('nan'), 0)
|
| 176 |
+
row['Final Remarks'] = "Non Aadhar"
|
| 177 |
+
row['Document Type'] = "Non Aadhar"
|
| 178 |
+
excel_data.loc[idx] = row
|
| 179 |
+
return excel_data
|
| 180 |
+
|
| 181 |
+
def create_visualizations(comparison_results):
|
| 182 |
+
visualization_data = {}
|
| 183 |
+
|
| 184 |
+
# TODO: Implement your visualization logic here
|
| 185 |
+
|
| 186 |
+
# Example: Frequency of 'Final Remarks' (for a bar chart)
|
| 187 |
+
visualization_data['final_remarks_frequency'] = {
|
| 188 |
+
'labels': comparison_results['Final Remarks'].value_counts().index.tolist(),
|
| 189 |
+
'values': comparison_results['Final Remarks'].value_counts().values.tolist()
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
# 2. Document Type Proportion (Pie Chart)
|
| 193 |
+
visualization_data['document_type_proportion'] = {
|
| 194 |
+
'labels': comparison_results['Document Type'].value_counts().index.tolist(),
|
| 195 |
+
'values': comparison_results['Document Type'].value_counts().values.tolist()
|
| 196 |
+
}
|
| 197 |
+
|
| 198 |
+
# 3. Accepted vs. Rejected Proportion (Pie Chart)
|
| 199 |
+
visualization_data['accepted_rejected_proportion'] = {
|
| 200 |
+
'labels': comparison_results['Accepted/Rejected'].value_counts().index.tolist(),
|
| 201 |
+
'values': comparison_results['Accepted/Rejected'].value_counts().values.tolist()
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
# 4. UID Match Score Distribution (Histogram)
|
| 205 |
+
visualization_data['uid_match_score_distribution'] = {
|
| 206 |
+
'values': comparison_results['UID Match Score'].tolist()
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
# 5. Name Match Score Distribution (Histogram)
|
| 210 |
+
visualization_data['name_match_score_distribution'] = {
|
| 211 |
+
'values': comparison_results['Name Match Score'].tolist()
|
| 212 |
+
}
|
| 213 |
+
|
| 214 |
+
# 6. Final Address Match Score Distribution (Histogram)
|
| 215 |
+
visualization_data['address_match_score_distribution'] = {
|
| 216 |
+
'values': comparison_results['Final Address Match Score'].tolist()
|
| 217 |
+
}
|
| 218 |
+
|
| 219 |
+
return visualization_data
|
| 220 |
+
|
| 221 |
+
def create_database_and_table():
|
| 222 |
+
"""Creates the database and table if they don't exist."""
|
| 223 |
+
conn = sqlite3.connect(app.config['DATABASE'])
|
| 224 |
+
cursor = conn.cursor()
|
| 225 |
+
|
| 226 |
+
cursor.execute('''
|
| 227 |
+
CREATE TABLE IF NOT EXISTS results (
|
| 228 |
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
| 229 |
+
SrNo TEXT,
|
| 230 |
+
DocumentType TEXT,
|
| 231 |
+
AcceptedRejected TEXT,
|
| 232 |
+
FinalRemarks TEXT
|
| 233 |
+
)
|
| 234 |
+
''')
|
| 235 |
+
conn.commit()
|
| 236 |
+
conn.close()
|
| 237 |
+
|
| 238 |
+
def save_results_to_database(results):
|
| 239 |
+
"""Saves the provided results to the SQLite database."""
|
| 240 |
+
conn = sqlite3.connect(app.config['DATABASE'])
|
| 241 |
+
cursor = conn.cursor()
|
| 242 |
+
|
| 243 |
+
for result in results:
|
| 244 |
+
cursor.execute('''
|
| 245 |
+
INSERT INTO results (SrNo, DocumentType, AcceptedRejected, FinalRemarks)
|
| 246 |
+
VALUES (?, ?, ?, ?)
|
| 247 |
+
''', (
|
| 248 |
+
result.get('SrNo', ''),
|
| 249 |
+
result.get('Document Type', ''),
|
| 250 |
+
result.get('Accepted/Rejected', ''),
|
| 251 |
+
result.get('Final Remarks', '')
|
| 252 |
+
))
|
| 253 |
+
|
| 254 |
+
conn.commit()
|
| 255 |
+
conn.close()
|
| 256 |
+
|
| 257 |
+
|
| 258 |
+
|
| 259 |
+
@app.route('/download', methods=['GET'])
|
| 260 |
+
def download_results():
|
| 261 |
+
file_path = os.path.join(app.config['RESULTS_FOLDER'], 'results.xlsx')
|
| 262 |
+
return send_file(file_path, as_attachment=True)
|
| 263 |
+
|
| 264 |
+
@app.route('/')
|
| 265 |
+
def home():
|
| 266 |
+
return render_template('index.html')
|
| 267 |
+
|
| 268 |
+
@app.route('/services', methods=['GET'])
|
| 269 |
+
def services():
|
| 270 |
+
return render_template('services.html')
|
| 271 |
+
|
| 272 |
+
@app.route('/about', methods=['GET'])
|
| 273 |
+
def about():
|
| 274 |
+
return render_template('about.html')
|
| 275 |
+
|
| 276 |
+
@app.route('/contact', methods=['GET'])
|
| 277 |
+
def contact():
|
| 278 |
+
return render_template('contact.html')
|
| 279 |
+
|
| 280 |
+
@app.route('/upload', methods=['POST'])
|
| 281 |
+
def upload_files():
|
| 282 |
+
if 'zipfile' in request.files and 'excelfile' in request.files:
|
| 283 |
+
zip_file = request.files['zipfile']
|
| 284 |
+
excel_file = request.files['excelfile']
|
| 285 |
+
|
| 286 |
+
# Save files
|
| 287 |
+
zip_path = os.path.join(app.config['UPLOAD_FOLDER'], zip_file.filename)
|
| 288 |
+
excel_path = os.path.join(app.config['UPLOAD_FOLDER'], excel_file.filename)
|
| 289 |
+
zip_file.save(zip_path)
|
| 290 |
+
excel_file.save(excel_path)
|
| 291 |
+
|
| 292 |
+
# Unzip and process images
|
| 293 |
+
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
|
| 294 |
+
zip_ref.extractall(app.config['UPLOAD_FOLDER'])
|
| 295 |
+
|
| 296 |
+
image_paths = [os.path.join(app.config['UPLOAD_FOLDER'], f) for f in os.listdir(app.config['UPLOAD_FOLDER']) if f.endswith(('.jpg', '.png'))]
|
| 297 |
+
processed_results = {}
|
| 298 |
+
|
| 299 |
+
for image_path in image_paths:
|
| 300 |
+
file_name = os.path.basename(image_path)
|
| 301 |
+
key = file_name.split('.')[0][:3]
|
| 302 |
+
if key not in processed_results: # Check if key already exists
|
| 303 |
+
extracted_data = process_image(image_path)
|
| 304 |
+
if extracted_data:
|
| 305 |
+
processed_results[key] = extracted_data
|
| 306 |
+
|
| 307 |
+
# Read Excel and compare data
|
| 308 |
+
df = pd.read_excel(excel_path)
|
| 309 |
+
df = df.astype('str')
|
| 310 |
+
comparison_results = compare_data(df, processed_results)
|
| 311 |
+
comparison_results['Accepted/Rejected'] = np.where(comparison_results['Final Remarks'] == 'All matched', 'Accepted', 'Rejected')
|
| 312 |
+
|
| 313 |
+
# Save results to a new Excel file
|
| 314 |
+
results_df = pd.DataFrame(comparison_results)
|
| 315 |
+
os.makedirs(app.config['RESULTS_FOLDER'], exist_ok=True)
|
| 316 |
+
results_file_path = os.path.join(app.config['RESULTS_FOLDER'], 'results.xlsx')
|
| 317 |
+
results_df.to_excel(results_file_path, index=False)
|
| 318 |
+
|
| 319 |
+
visualization_data = create_visualizations(comparison_results)
|
| 320 |
+
|
| 321 |
+
create_database_and_table() # Ensure database and table exist
|
| 322 |
+
save_results_to_database(comparison_results[
|
| 323 |
+
['SrNo', 'Document Type', 'Accepted/Rejected', 'Final Remarks']
|
| 324 |
+
].to_dict(orient='records'))
|
| 325 |
+
|
| 326 |
+
return jsonify({"message": "Files processed successfully!",
|
| 327 |
+
"results": comparison_results[
|
| 328 |
+
['SrNo', 'Document Type', 'Accepted/Rejected', 'Final Remarks']
|
| 329 |
+
].to_dict(orient='records'),
|
| 330 |
+
"visualization_data": visualization_data})
|
| 331 |
+
|
| 332 |
+
return jsonify({"error": "Both files are required."}), 400
|
| 333 |
+
|
| 334 |
+
if __name__ == '__main__':
|
| 335 |
+
# Configure HTTPS with self-signed certificate
|
| 336 |
+
app.run(ssl_context=('cert.pem', 'key.pem'), debug=True)
|
models/classification.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9548004141cb4a62416cc1e0d4e607002e2dfc2209ef5b6fd093494c27ebbc2d
|
| 3 |
+
size 3184955
|
models/detection.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f8bc35cb08320f5d35ae57878ceefeec262c9328a7c4613a3b0854caac7210e
|
| 3 |
+
size 5452563
|
requirements.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
easyocr==1.7.2
|
| 2 |
+
Flask==3.1.0
|
| 3 |
+
fuzzywuzzy==0.18.0
|
| 4 |
+
matplotlib==3.10.0
|
| 5 |
+
numpy==2.2.2
|
| 6 |
+
opencv-python==4.11.0.86
|
| 7 |
+
openpyxl==3.1.5
|
| 8 |
+
packaging==24.2
|
| 9 |
+
pandas==2.2.3
|
| 10 |
+
requests==2.32.3
|
| 11 |
+
scikit-image==0.25.0
|
| 12 |
+
ultralytics==8.3.66
|
| 13 |
+
gunicorn
|
| 14 |
+
|
results/results.xlsx
ADDED
|
Binary file (6.32 kB). View file
|
|
|
static/css/style1.css
ADDED
|
@@ -0,0 +1,1346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*--------------------------------------------------------------
|
| 2 |
+
# General
|
| 3 |
+
--------------------------------------------------------------*/
|
| 4 |
+
:root {
|
| 5 |
+
scroll-behavior: smooth;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
body {
|
| 9 |
+
font-family: "Open Sans", sans-serif;
|
| 10 |
+
color: #444444;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
a {
|
| 14 |
+
color: #4154f1;
|
| 15 |
+
text-decoration: none;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
a:hover {
|
| 19 |
+
color: #717ff5;
|
| 20 |
+
text-decoration: none;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
h1, h2, h3, h4, h5, h6 {
|
| 24 |
+
font-family: "Nunito", sans-serif;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
/*--------------------------------------------------------------
|
| 28 |
+
# Sections
|
| 29 |
+
--------------------------------------------------------------*/
|
| 30 |
+
section {
|
| 31 |
+
padding: 60px 0;
|
| 32 |
+
overflow: hidden;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.section-header {
|
| 36 |
+
text-align: center;
|
| 37 |
+
padding-bottom: 40px;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.section-header h2 {
|
| 41 |
+
font-size: 13px;
|
| 42 |
+
letter-spacing: 1px;
|
| 43 |
+
font-weight: 700;
|
| 44 |
+
margin: 0;
|
| 45 |
+
color: #4154f1;
|
| 46 |
+
text-transform: uppercase;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.section-header p {
|
| 50 |
+
margin: 10px 0 0 0;
|
| 51 |
+
padding: 0;
|
| 52 |
+
font-size: 35px;
|
| 53 |
+
line-height: 42px;
|
| 54 |
+
font-weight: 700;
|
| 55 |
+
color: #012970;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
@media (max-width: 768px) {
|
| 59 |
+
.section-header p {
|
| 60 |
+
font-size: 28px;
|
| 61 |
+
line-height: 32px;
|
| 62 |
+
}
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
/*--------------------------------------------------------------
|
| 66 |
+
# Breadcrumbs
|
| 67 |
+
--------------------------------------------------------------*/
|
| 68 |
+
.breadcrumbs {
|
| 69 |
+
padding: 15px 0;
|
| 70 |
+
background: #012970;
|
| 71 |
+
min-height: 40px;
|
| 72 |
+
margin-top: 82px;
|
| 73 |
+
color: #fff;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
@media (max-width: 992px) {
|
| 77 |
+
.breadcrumbs {
|
| 78 |
+
margin-top: 57px;
|
| 79 |
+
}
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
.breadcrumbs h2 {
|
| 83 |
+
font-size: 28px;
|
| 84 |
+
font-weight: 500;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.breadcrumbs ol {
|
| 88 |
+
display: flex;
|
| 89 |
+
flex-wrap: wrap;
|
| 90 |
+
list-style: none;
|
| 91 |
+
padding: 0 0 10px 0;
|
| 92 |
+
margin: 0;
|
| 93 |
+
font-size: 14px;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
.breadcrumbs ol a {
|
| 97 |
+
color: #fff;
|
| 98 |
+
transition: 0.3s;
|
| 99 |
+
}
|
| 100 |
+
|
| 101 |
+
.breadcrumbs ol a:hover {
|
| 102 |
+
text-decoration: underline;
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
.breadcrumbs ol li + li {
|
| 106 |
+
padding-left: 10px;
|
| 107 |
+
}
|
| 108 |
+
|
| 109 |
+
.breadcrumbs ol li + li::before {
|
| 110 |
+
display: inline-block;
|
| 111 |
+
padding-right: 10px;
|
| 112 |
+
color: #8894f6;
|
| 113 |
+
content: "/";
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
/*--------------------------------------------------------------
|
| 117 |
+
# Back to top button
|
| 118 |
+
--------------------------------------------------------------*/
|
| 119 |
+
.back-to-top {
|
| 120 |
+
position: fixed;
|
| 121 |
+
visibility: hidden;
|
| 122 |
+
opacity: 0;
|
| 123 |
+
right: 15px;
|
| 124 |
+
bottom: 15px;
|
| 125 |
+
z-index: 99999;
|
| 126 |
+
background: #4154f1;
|
| 127 |
+
width: 40px;
|
| 128 |
+
height: 40px;
|
| 129 |
+
border-radius: 4px;
|
| 130 |
+
transition: all 0.4s;
|
| 131 |
+
}
|
| 132 |
+
|
| 133 |
+
.back-to-top i {
|
| 134 |
+
font-size: 24px;
|
| 135 |
+
color: #fff;
|
| 136 |
+
line-height: 0;
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
.back-to-top:hover {
|
| 140 |
+
background: #6776f4;
|
| 141 |
+
color: #fff;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
.back-to-top.active {
|
| 145 |
+
visibility: visible;
|
| 146 |
+
opacity: 1;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
/*--------------------------------------------------------------
|
| 150 |
+
# Disable aos animation delay on mobile devices
|
| 151 |
+
--------------------------------------------------------------*/
|
| 152 |
+
@media screen and (max-width: 768px) {
|
| 153 |
+
[data-aos-delay] {
|
| 154 |
+
transition-delay: 0 !important;
|
| 155 |
+
}
|
| 156 |
+
}
|
| 157 |
+
|
| 158 |
+
/*--------------------------------------------------------------
|
| 159 |
+
# Header
|
| 160 |
+
--------------------------------------------------------------*/
|
| 161 |
+
.header {
|
| 162 |
+
transition: all 0.5s;
|
| 163 |
+
z-index: 997;
|
| 164 |
+
padding: 20px 0;
|
| 165 |
+
}
|
| 166 |
+
|
| 167 |
+
.header.header-scrolled {
|
| 168 |
+
background: #fff;
|
| 169 |
+
padding: 15px 0;
|
| 170 |
+
box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
|
| 171 |
+
}
|
| 172 |
+
|
| 173 |
+
.header .logo {
|
| 174 |
+
line-height: 0;
|
| 175 |
+
}
|
| 176 |
+
|
| 177 |
+
.header .logo img {
|
| 178 |
+
max-height: 40px;
|
| 179 |
+
margin-right: 6px;
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
.header .logo span {
|
| 183 |
+
font-size: 30px;
|
| 184 |
+
font-weight: 700;
|
| 185 |
+
letter-spacing: 1px;
|
| 186 |
+
color: #012970;
|
| 187 |
+
font-family: "Nunito", sans-serif;
|
| 188 |
+
margin-top: 3px;
|
| 189 |
+
}
|
| 190 |
+
|
| 191 |
+
/*--------------------------------------------------------------
|
| 192 |
+
# Navigation Menu
|
| 193 |
+
--------------------------------------------------------------*/
|
| 194 |
+
/**
|
| 195 |
+
* Desktop Navigation
|
| 196 |
+
*/
|
| 197 |
+
.navbar {
|
| 198 |
+
padding: 0;
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
.navbar ul {
|
| 202 |
+
margin: 0;
|
| 203 |
+
padding: 0;
|
| 204 |
+
display: flex;
|
| 205 |
+
list-style: none;
|
| 206 |
+
align-items: center;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
.navbar li {
|
| 210 |
+
position: relative;
|
| 211 |
+
}
|
| 212 |
+
|
| 213 |
+
.navbar a, .navbar a:focus {
|
| 214 |
+
display: flex;
|
| 215 |
+
align-items: center;
|
| 216 |
+
justify-content: space-between;
|
| 217 |
+
padding: 10px 0 10px 30px;
|
| 218 |
+
font-family: "Nunito", sans-serif;
|
| 219 |
+
font-size: 16px;
|
| 220 |
+
font-weight: 700;
|
| 221 |
+
color: #013289;
|
| 222 |
+
white-space: nowrap;
|
| 223 |
+
transition: 0.3s;
|
| 224 |
+
}
|
| 225 |
+
|
| 226 |
+
.navbar a i, .navbar a:focus i {
|
| 227 |
+
font-size: 12px;
|
| 228 |
+
line-height: 0;
|
| 229 |
+
margin-left: 5px;
|
| 230 |
+
}
|
| 231 |
+
|
| 232 |
+
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
|
| 233 |
+
color: #4154f1;
|
| 234 |
+
}
|
| 235 |
+
|
| 236 |
+
.navbar .getstarted {
|
| 237 |
+
background: #4154f1;
|
| 238 |
+
padding: 8px 20px;
|
| 239 |
+
margin-left: 30px;
|
| 240 |
+
border-radius: 4px;
|
| 241 |
+
color: #fff;
|
| 242 |
+
}
|
| 243 |
+
.cta-btn {
|
| 244 |
+
margin-left: 40%;
|
| 245 |
+
font-family: "Raleway", sans-serif;
|
| 246 |
+
font-weight: 500;
|
| 247 |
+
font-size: 15px;
|
| 248 |
+
letter-spacing: 1px;
|
| 249 |
+
display: inline-block;
|
| 250 |
+
padding: 8px 28px;
|
| 251 |
+
border-radius: 25px;
|
| 252 |
+
transition: 0.5s;
|
| 253 |
+
margin-top: 10px;
|
| 254 |
+
border: 2px solid #4154f1;
|
| 255 |
+
color: #4154f1;
|
| 256 |
+
}
|
| 257 |
+
.cta-btn:hover{
|
| 258 |
+
color:#fff;
|
| 259 |
+
background: #4154f1;
|
| 260 |
+
}
|
| 261 |
+
.navbar .getstarted:hover {
|
| 262 |
+
color: #fff;
|
| 263 |
+
background: #5969f3;
|
| 264 |
+
}
|
| 265 |
+
|
| 266 |
+
.navbar .dropdown ul {
|
| 267 |
+
display: block;
|
| 268 |
+
position: absolute;
|
| 269 |
+
left: 14px;
|
| 270 |
+
top: calc(100% + 30px);
|
| 271 |
+
margin: 0;
|
| 272 |
+
padding: 10px 0;
|
| 273 |
+
z-index: 99;
|
| 274 |
+
opacity: 0;
|
| 275 |
+
visibility: hidden;
|
| 276 |
+
background: #fff;
|
| 277 |
+
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
|
| 278 |
+
transition: 0.3s;
|
| 279 |
+
border-radius: 4px;
|
| 280 |
+
}
|
| 281 |
+
|
| 282 |
+
.navbar .dropdown ul li {
|
| 283 |
+
min-width: 200px;
|
| 284 |
+
}
|
| 285 |
+
|
| 286 |
+
.navbar .dropdown ul a {
|
| 287 |
+
padding: 10px 20px;
|
| 288 |
+
font-size: 15px;
|
| 289 |
+
text-transform: none;
|
| 290 |
+
font-weight: 600;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
.navbar .dropdown ul a i {
|
| 294 |
+
font-size: 12px;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
|
| 298 |
+
color: #4154f1;
|
| 299 |
+
}
|
| 300 |
+
|
| 301 |
+
.navbar .dropdown:hover > ul {
|
| 302 |
+
opacity: 1;
|
| 303 |
+
top: 100%;
|
| 304 |
+
visibility: visible;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
.navbar .dropdown .dropdown ul {
|
| 308 |
+
top: 0;
|
| 309 |
+
left: calc(100% - 30px);
|
| 310 |
+
visibility: hidden;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
.navbar .dropdown .dropdown:hover > ul {
|
| 314 |
+
opacity: 1;
|
| 315 |
+
top: 0;
|
| 316 |
+
left: 100%;
|
| 317 |
+
visibility: visible;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
@media (max-width: 1366px) {
|
| 321 |
+
.navbar .dropdown .dropdown ul {
|
| 322 |
+
left: -90%;
|
| 323 |
+
}
|
| 324 |
+
.navbar .dropdown .dropdown:hover > ul {
|
| 325 |
+
left: -100%;
|
| 326 |
+
}
|
| 327 |
+
}
|
| 328 |
+
|
| 329 |
+
/**
|
| 330 |
+
* Mobile Navigation
|
| 331 |
+
*/
|
| 332 |
+
.mobile-nav-toggle {
|
| 333 |
+
color: #012970;
|
| 334 |
+
font-size: 28px;
|
| 335 |
+
cursor: pointer;
|
| 336 |
+
display: none;
|
| 337 |
+
line-height: 0;
|
| 338 |
+
transition: 0.5s;
|
| 339 |
+
}
|
| 340 |
+
|
| 341 |
+
.mobile-nav-toggle.bi-x {
|
| 342 |
+
color: #fff;
|
| 343 |
+
}
|
| 344 |
+
|
| 345 |
+
@media (max-width: 991px) {
|
| 346 |
+
.mobile-nav-toggle {
|
| 347 |
+
display: block;
|
| 348 |
+
}
|
| 349 |
+
.navbar ul {
|
| 350 |
+
display: none;
|
| 351 |
+
}
|
| 352 |
+
}
|
| 353 |
+
|
| 354 |
+
.navbar-mobile {
|
| 355 |
+
position: fixed;
|
| 356 |
+
overflow: hidden;
|
| 357 |
+
top: 0;
|
| 358 |
+
right: 0;
|
| 359 |
+
left: 0;
|
| 360 |
+
bottom: 0;
|
| 361 |
+
background: rgba(1, 22, 61, 0.9);
|
| 362 |
+
transition: 0.3s;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
.navbar-mobile .mobile-nav-toggle {
|
| 366 |
+
position: absolute;
|
| 367 |
+
top: 15px;
|
| 368 |
+
right: 15px;
|
| 369 |
+
}
|
| 370 |
+
|
| 371 |
+
.navbar-mobile ul {
|
| 372 |
+
display: block;
|
| 373 |
+
position: absolute;
|
| 374 |
+
top: 55px;
|
| 375 |
+
right: 15px;
|
| 376 |
+
bottom: 15px;
|
| 377 |
+
left: 15px;
|
| 378 |
+
padding: 10px 0;
|
| 379 |
+
border-radius: 10px;
|
| 380 |
+
background-color: #fff;
|
| 381 |
+
overflow-y: auto;
|
| 382 |
+
transition: 0.3s;
|
| 383 |
+
}
|
| 384 |
+
|
| 385 |
+
.navbar-mobile a {
|
| 386 |
+
padding: 10px 20px;
|
| 387 |
+
font-size: 15px;
|
| 388 |
+
color: #012970;
|
| 389 |
+
}
|
| 390 |
+
|
| 391 |
+
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
|
| 392 |
+
color: #4154f1;
|
| 393 |
+
}
|
| 394 |
+
|
| 395 |
+
.navbar-mobile .getstarted {
|
| 396 |
+
margin: 15px;
|
| 397 |
+
}
|
| 398 |
+
|
| 399 |
+
.navbar-mobile .dropdown ul {
|
| 400 |
+
position: static;
|
| 401 |
+
display: none;
|
| 402 |
+
margin: 10px 20px;
|
| 403 |
+
padding: 10px 0;
|
| 404 |
+
z-index: 99;
|
| 405 |
+
opacity: 1;
|
| 406 |
+
visibility: visible;
|
| 407 |
+
background: #fff;
|
| 408 |
+
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
|
| 409 |
+
}
|
| 410 |
+
|
| 411 |
+
.navbar-mobile .dropdown ul li {
|
| 412 |
+
min-width: 200px;
|
| 413 |
+
}
|
| 414 |
+
|
| 415 |
+
.navbar-mobile .dropdown ul a {
|
| 416 |
+
padding: 10px 20px;
|
| 417 |
+
}
|
| 418 |
+
|
| 419 |
+
.navbar-mobile .dropdown ul a i {
|
| 420 |
+
font-size: 12px;
|
| 421 |
+
}
|
| 422 |
+
|
| 423 |
+
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
|
| 424 |
+
color: #4154f1;
|
| 425 |
+
}
|
| 426 |
+
|
| 427 |
+
.navbar-mobile .dropdown > .dropdown-active {
|
| 428 |
+
display: block;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
/*--------------------------------------------------------------
|
| 432 |
+
# Hero Section
|
| 433 |
+
--------------------------------------------------------------*/
|
| 434 |
+
.hero {
|
| 435 |
+
width: 100%;
|
| 436 |
+
height: 100vh;
|
| 437 |
+
background: url(../img/hero-bg.png) top center no-repeat;
|
| 438 |
+
background-size: cover;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.hero h1 {
|
| 442 |
+
margin: 0;
|
| 443 |
+
font-size: 48px;
|
| 444 |
+
font-weight: 700;
|
| 445 |
+
color: #012970;
|
| 446 |
+
}
|
| 447 |
+
|
| 448 |
+
.hero h2 {
|
| 449 |
+
color: #444444;
|
| 450 |
+
margin: 15px 0 0 0;
|
| 451 |
+
font-size: 26px;
|
| 452 |
+
}
|
| 453 |
+
|
| 454 |
+
.hero .btn-get-started {
|
| 455 |
+
margin-top: 30px;
|
| 456 |
+
line-height: 0;
|
| 457 |
+
padding: 15px 40px;
|
| 458 |
+
border-radius: 4px;
|
| 459 |
+
transition: 0.5s;
|
| 460 |
+
color: #fff;
|
| 461 |
+
background: #4154f1;
|
| 462 |
+
box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
|
| 463 |
+
}
|
| 464 |
+
|
| 465 |
+
.hero .btn-get-started span {
|
| 466 |
+
font-family: "Nunito", sans-serif;
|
| 467 |
+
font-weight: 600;
|
| 468 |
+
font-size: 16px;
|
| 469 |
+
letter-spacing: 1px;
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
.hero .btn-get-started i {
|
| 473 |
+
margin-left: 5px;
|
| 474 |
+
font-size: 18px;
|
| 475 |
+
transition: 0.3s;
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
.hero .btn-get-started:hover i {
|
| 479 |
+
transform: translateX(5px);
|
| 480 |
+
}
|
| 481 |
+
|
| 482 |
+
.hero .hero-img {
|
| 483 |
+
text-align: right;
|
| 484 |
+
}
|
| 485 |
+
|
| 486 |
+
@media (min-width: 1024px) {
|
| 487 |
+
.hero {
|
| 488 |
+
background-attachment: fixed;
|
| 489 |
+
}
|
| 490 |
+
}
|
| 491 |
+
|
| 492 |
+
@media (max-width: 991px) {
|
| 493 |
+
.hero {
|
| 494 |
+
height: auto;
|
| 495 |
+
padding: 120px 0 60px 0;
|
| 496 |
+
}
|
| 497 |
+
.hero .hero-img {
|
| 498 |
+
text-align: center;
|
| 499 |
+
margin-top: 80px;
|
| 500 |
+
}
|
| 501 |
+
.hero .hero-img img {
|
| 502 |
+
width: 80%;
|
| 503 |
+
}
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
@media (max-width: 768px) {
|
| 507 |
+
.hero {
|
| 508 |
+
text-align: center;
|
| 509 |
+
}
|
| 510 |
+
.hero h1 {
|
| 511 |
+
font-size: 32px;
|
| 512 |
+
}
|
| 513 |
+
.hero h2 {
|
| 514 |
+
font-size: 24px;
|
| 515 |
+
}
|
| 516 |
+
.hero .hero-img img {
|
| 517 |
+
width: 100%;
|
| 518 |
+
}
|
| 519 |
+
}
|
| 520 |
+
|
| 521 |
+
/*--------------------------------------------------------------
|
| 522 |
+
# Index Page
|
| 523 |
+
--------------------------------------------------------------*/
|
| 524 |
+
/*--------------------------------------------------------------
|
| 525 |
+
# About
|
| 526 |
+
--------------------------------------------------------------*/
|
| 527 |
+
.about .content {
|
| 528 |
+
background-color: #f6f9ff;
|
| 529 |
+
padding: 40px;
|
| 530 |
+
}
|
| 531 |
+
|
| 532 |
+
.about h3 {
|
| 533 |
+
font-size: 14px;
|
| 534 |
+
font-weight: 700;
|
| 535 |
+
color: #4154f1;
|
| 536 |
+
text-transform: uppercase;
|
| 537 |
+
}
|
| 538 |
+
|
| 539 |
+
.about h2 {
|
| 540 |
+
font-size: 24px;
|
| 541 |
+
font-weight: 700;
|
| 542 |
+
color: #012970;
|
| 543 |
+
}
|
| 544 |
+
|
| 545 |
+
.about p {
|
| 546 |
+
margin: 15px 0 30px 0;
|
| 547 |
+
line-height: 24px;
|
| 548 |
+
}
|
| 549 |
+
|
| 550 |
+
.about .btn-read-more {
|
| 551 |
+
line-height: 0;
|
| 552 |
+
padding: 15px 40px;
|
| 553 |
+
border-radius: 4px;
|
| 554 |
+
transition: 0.5s;
|
| 555 |
+
color: #fff;
|
| 556 |
+
background: #4154f1;
|
| 557 |
+
box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
|
| 558 |
+
}
|
| 559 |
+
|
| 560 |
+
.about .btn-read-more span {
|
| 561 |
+
font-family: "Nunito", sans-serif;
|
| 562 |
+
font-weight: 600;
|
| 563 |
+
font-size: 16px;
|
| 564 |
+
letter-spacing: 1px;
|
| 565 |
+
}
|
| 566 |
+
|
| 567 |
+
.about .btn-read-more i {
|
| 568 |
+
margin-left: 5px;
|
| 569 |
+
font-size: 18px;
|
| 570 |
+
transition: 0.3s;
|
| 571 |
+
}
|
| 572 |
+
|
| 573 |
+
.about .btn-read-more:hover i {
|
| 574 |
+
transform: translateX(5px);
|
| 575 |
+
}
|
| 576 |
+
|
| 577 |
+
/*--------------------------------------------------------------
|
| 578 |
+
# Values
|
| 579 |
+
--------------------------------------------------------------*/
|
| 580 |
+
.values .box {
|
| 581 |
+
padding: 30px;
|
| 582 |
+
box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
|
| 583 |
+
text-align: center;
|
| 584 |
+
transition: 0.3s;
|
| 585 |
+
height: 100%;
|
| 586 |
+
}
|
| 587 |
+
|
| 588 |
+
.values .box img {
|
| 589 |
+
padding: 30px 50px;
|
| 590 |
+
transition: 0.5s;
|
| 591 |
+
transform: scale(1.1);
|
| 592 |
+
}
|
| 593 |
+
|
| 594 |
+
.values .box h3 {
|
| 595 |
+
font-size: 24px;
|
| 596 |
+
color: #012970;
|
| 597 |
+
font-weight: 700;
|
| 598 |
+
margin-bottom: 18px;
|
| 599 |
+
}
|
| 600 |
+
|
| 601 |
+
.values .box:hover {
|
| 602 |
+
box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
|
| 603 |
+
}
|
| 604 |
+
|
| 605 |
+
.values .box:hover img {
|
| 606 |
+
transform: scale(1);
|
| 607 |
+
}
|
| 608 |
+
|
| 609 |
+
/*--------------------------------------------------------------
|
| 610 |
+
# Counts
|
| 611 |
+
--------------------------------------------------------------*/
|
| 612 |
+
.counts {
|
| 613 |
+
padding: 70px 0 60px;
|
| 614 |
+
}
|
| 615 |
+
|
| 616 |
+
.counts .count-box {
|
| 617 |
+
display: flex;
|
| 618 |
+
align-items: center;
|
| 619 |
+
padding: 30px;
|
| 620 |
+
width: 100%;
|
| 621 |
+
background: #fff;
|
| 622 |
+
box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
|
| 623 |
+
}
|
| 624 |
+
|
| 625 |
+
.counts .count-box i {
|
| 626 |
+
font-size: 42px;
|
| 627 |
+
line-height: 0;
|
| 628 |
+
margin-right: 20px;
|
| 629 |
+
color: #4154f1;
|
| 630 |
+
}
|
| 631 |
+
|
| 632 |
+
.counts .count-box span {
|
| 633 |
+
font-size: 36px;
|
| 634 |
+
display: block;
|
| 635 |
+
font-weight: 600;
|
| 636 |
+
color: #0b198f;
|
| 637 |
+
}
|
| 638 |
+
|
| 639 |
+
.counts .count-box p {
|
| 640 |
+
padding: 0;
|
| 641 |
+
margin: 0;
|
| 642 |
+
font-family: "Nunito", sans-serif;
|
| 643 |
+
font-size: 14px;
|
| 644 |
+
}
|
| 645 |
+
|
| 646 |
+
/*--------------------------------------------------------------
|
| 647 |
+
# Features
|
| 648 |
+
--------------------------------------------------------------*/
|
| 649 |
+
.features .feature-box {
|
| 650 |
+
padding: 24px 20px;
|
| 651 |
+
box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
|
| 652 |
+
transition: 0.3s;
|
| 653 |
+
height: 100%;
|
| 654 |
+
}
|
| 655 |
+
|
| 656 |
+
.features .feature-box h3 {
|
| 657 |
+
font-size: 18px;
|
| 658 |
+
color: #012970;
|
| 659 |
+
font-weight: 700;
|
| 660 |
+
margin: 0;
|
| 661 |
+
}
|
| 662 |
+
|
| 663 |
+
.features .feature-box i {
|
| 664 |
+
line-height: 0;
|
| 665 |
+
background: #ecf3ff;
|
| 666 |
+
padding: 4px;
|
| 667 |
+
margin-right: 10px;
|
| 668 |
+
font-size: 24px;
|
| 669 |
+
border-radius: 3px;
|
| 670 |
+
transition: 0.3s;
|
| 671 |
+
}
|
| 672 |
+
|
| 673 |
+
.features .feature-box:hover i {
|
| 674 |
+
background: #4154f1;
|
| 675 |
+
color: #fff;
|
| 676 |
+
}
|
| 677 |
+
|
| 678 |
+
.features .feture-tabs {
|
| 679 |
+
margin-top: 120px;
|
| 680 |
+
}
|
| 681 |
+
|
| 682 |
+
.features .feture-tabs h3 {
|
| 683 |
+
color: #012970;
|
| 684 |
+
font-weight: 700;
|
| 685 |
+
font-size: 32px;
|
| 686 |
+
margin-bottom: 10px;
|
| 687 |
+
}
|
| 688 |
+
|
| 689 |
+
@media (max-width: 768px) {
|
| 690 |
+
.features .feture-tabs h3 {
|
| 691 |
+
font-size: 28px;
|
| 692 |
+
}
|
| 693 |
+
}
|
| 694 |
+
|
| 695 |
+
.features .feture-tabs .nav-pills {
|
| 696 |
+
border-bottom: 1px solid #eee;
|
| 697 |
+
}
|
| 698 |
+
|
| 699 |
+
.features .feture-tabs .nav-link {
|
| 700 |
+
background: none;
|
| 701 |
+
text-transform: uppercase;
|
| 702 |
+
font-size: 15px;
|
| 703 |
+
font-weight: 600;
|
| 704 |
+
color: #012970;
|
| 705 |
+
padding: 12px 0;
|
| 706 |
+
margin-right: 25px;
|
| 707 |
+
margin-bottom: -2px;
|
| 708 |
+
border-radius: 0;
|
| 709 |
+
}
|
| 710 |
+
|
| 711 |
+
.features .feture-tabs .nav-link.active {
|
| 712 |
+
color: #4154f1;
|
| 713 |
+
border-bottom: 3px solid #4154f1;
|
| 714 |
+
}
|
| 715 |
+
|
| 716 |
+
.features .feture-tabs .tab-content h4 {
|
| 717 |
+
font-size: 18px;
|
| 718 |
+
margin: 0;
|
| 719 |
+
font-weight: 700;
|
| 720 |
+
color: #012970;
|
| 721 |
+
}
|
| 722 |
+
|
| 723 |
+
.features .feture-tabs .tab-content i {
|
| 724 |
+
font-size: 24px;
|
| 725 |
+
line-height: 0;
|
| 726 |
+
margin-right: 8px;
|
| 727 |
+
color: #4154f1;
|
| 728 |
+
}
|
| 729 |
+
|
| 730 |
+
.features .feature-icons {
|
| 731 |
+
margin-top: 120px;
|
| 732 |
+
}
|
| 733 |
+
|
| 734 |
+
.features .feature-icons h3 {
|
| 735 |
+
color: #012970;
|
| 736 |
+
font-weight: 700;
|
| 737 |
+
font-size: 32px;
|
| 738 |
+
margin-bottom: 20px;
|
| 739 |
+
text-align: center;
|
| 740 |
+
}
|
| 741 |
+
|
| 742 |
+
@media (max-width: 768px) {
|
| 743 |
+
.features .feature-icons h3 {
|
| 744 |
+
font-size: 28px;
|
| 745 |
+
}
|
| 746 |
+
}
|
| 747 |
+
|
| 748 |
+
.features .feature-icons .content .icon-box {
|
| 749 |
+
display: flex;
|
| 750 |
+
}
|
| 751 |
+
|
| 752 |
+
.features .feature-icons .content .icon-box h4 {
|
| 753 |
+
font-size: 20px;
|
| 754 |
+
font-weight: 700;
|
| 755 |
+
margin: 0 0 10px 0;
|
| 756 |
+
color: #012970;
|
| 757 |
+
}
|
| 758 |
+
|
| 759 |
+
.features .feature-icons .content .icon-box i {
|
| 760 |
+
font-size: 44px;
|
| 761 |
+
line-height: 44px;
|
| 762 |
+
color: #0245bc;
|
| 763 |
+
margin-right: 15px;
|
| 764 |
+
}
|
| 765 |
+
|
| 766 |
+
.features .feature-icons .content .icon-box p {
|
| 767 |
+
font-size: 15px;
|
| 768 |
+
color: #848484;
|
| 769 |
+
}
|
| 770 |
+
|
| 771 |
+
/*--------------------------------------------------------------
|
| 772 |
+
# Services
|
| 773 |
+
--------------------------------------------------------------*/
|
| 774 |
+
.services .service-box {
|
| 775 |
+
box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
|
| 776 |
+
height: 100%;
|
| 777 |
+
padding: 60px 30px;
|
| 778 |
+
text-align: center;
|
| 779 |
+
transition: 0.3s;
|
| 780 |
+
border-radius: 5px;
|
| 781 |
+
}
|
| 782 |
+
|
| 783 |
+
.services .service-box .icon {
|
| 784 |
+
font-size: 36px;
|
| 785 |
+
padding: 40px 20px;
|
| 786 |
+
border-radius: 4px;
|
| 787 |
+
position: relative;
|
| 788 |
+
margin-bottom: 25px;
|
| 789 |
+
display: inline-block;
|
| 790 |
+
line-height: 0;
|
| 791 |
+
transition: 0.3s;
|
| 792 |
+
}
|
| 793 |
+
|
| 794 |
+
.services .service-box h3 {
|
| 795 |
+
color: #444444;
|
| 796 |
+
font-weight: 700;
|
| 797 |
+
}
|
| 798 |
+
|
| 799 |
+
.services .service-box .read-more {
|
| 800 |
+
display: inline-flex;
|
| 801 |
+
align-items: center;
|
| 802 |
+
justify-content: center;
|
| 803 |
+
font-weight: 600;
|
| 804 |
+
font-size: 16px;
|
| 805 |
+
padding: 8px 20px;
|
| 806 |
+
}
|
| 807 |
+
|
| 808 |
+
.services .service-box .read-more i {
|
| 809 |
+
line-height: 0;
|
| 810 |
+
margin-left: 5px;
|
| 811 |
+
font-size: 18px;
|
| 812 |
+
}
|
| 813 |
+
|
| 814 |
+
.services .service-box.blue {
|
| 815 |
+
border-bottom: 3px solid #2db6fa;
|
| 816 |
+
}
|
| 817 |
+
|
| 818 |
+
.services .service-box.blue .icon {
|
| 819 |
+
color: #2db6fa;
|
| 820 |
+
background: #dbf3fe;
|
| 821 |
+
}
|
| 822 |
+
|
| 823 |
+
.services .service-box.blue .read-more {
|
| 824 |
+
color: #2db6fa;
|
| 825 |
+
}
|
| 826 |
+
|
| 827 |
+
.services .service-box.blue:hover {
|
| 828 |
+
background: #2db6fa;
|
| 829 |
+
}
|
| 830 |
+
|
| 831 |
+
.services .service-box.orange {
|
| 832 |
+
border-bottom: 3px solid #f68c09;
|
| 833 |
+
}
|
| 834 |
+
|
| 835 |
+
.services .service-box.orange .icon {
|
| 836 |
+
color: #f68c09;
|
| 837 |
+
background: #fde3c4;
|
| 838 |
+
}
|
| 839 |
+
|
| 840 |
+
.services .service-box.orange .read-more {
|
| 841 |
+
color: #f68c09;
|
| 842 |
+
}
|
| 843 |
+
|
| 844 |
+
.services .service-box.orange:hover {
|
| 845 |
+
background: #f68c09;
|
| 846 |
+
}
|
| 847 |
+
|
| 848 |
+
.services .service-box.green {
|
| 849 |
+
border-bottom: 3px solid #08da4e;
|
| 850 |
+
}
|
| 851 |
+
|
| 852 |
+
.services .service-box.green .icon {
|
| 853 |
+
color: #08da4e;
|
| 854 |
+
background: #cffddf;
|
| 855 |
+
}
|
| 856 |
+
|
| 857 |
+
.services .service-box.green .read-more {
|
| 858 |
+
color: #08da4e;
|
| 859 |
+
}
|
| 860 |
+
|
| 861 |
+
.services .service-box.green:hover {
|
| 862 |
+
background: #08da4e;
|
| 863 |
+
}
|
| 864 |
+
|
| 865 |
+
.services .service-box.red {
|
| 866 |
+
border-bottom: 3px solid #e9222c;
|
| 867 |
+
}
|
| 868 |
+
|
| 869 |
+
.services .service-box.red .icon {
|
| 870 |
+
color: #e9222c;
|
| 871 |
+
background: #fef7f8;
|
| 872 |
+
}
|
| 873 |
+
|
| 874 |
+
.services .service-box.red .read-more {
|
| 875 |
+
color: #e9222c;
|
| 876 |
+
}
|
| 877 |
+
|
| 878 |
+
.services .service-box.red:hover {
|
| 879 |
+
background: #e9222c;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
.services .service-box.purple {
|
| 883 |
+
border-bottom: 3px solid #b50edf;
|
| 884 |
+
}
|
| 885 |
+
|
| 886 |
+
.services .service-box.purple .icon {
|
| 887 |
+
color: #b50edf;
|
| 888 |
+
background: #f8e4fd;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
.services .service-box.purple .read-more {
|
| 892 |
+
color: #b50edf;
|
| 893 |
+
}
|
| 894 |
+
|
| 895 |
+
.services .service-box.purple:hover {
|
| 896 |
+
background: #b50edf;
|
| 897 |
+
}
|
| 898 |
+
|
| 899 |
+
.services .service-box.pink {
|
| 900 |
+
border-bottom: 3px solid #f51f9c;
|
| 901 |
+
}
|
| 902 |
+
|
| 903 |
+
.services .service-box.pink .icon {
|
| 904 |
+
color: #f51f9c;
|
| 905 |
+
background: #feecf7;
|
| 906 |
+
}
|
| 907 |
+
|
| 908 |
+
.services .service-box.pink .read-more {
|
| 909 |
+
color: #f51f9c;
|
| 910 |
+
}
|
| 911 |
+
|
| 912 |
+
.services .service-box.pink:hover {
|
| 913 |
+
background: #f51f9c;
|
| 914 |
+
}
|
| 915 |
+
|
| 916 |
+
.services .service-box:hover h3, .services .service-box:hover p, .services .service-box:hover .read-more {
|
| 917 |
+
color: #fff;
|
| 918 |
+
}
|
| 919 |
+
|
| 920 |
+
.services .service-box:hover .icon {
|
| 921 |
+
background: #fff;
|
| 922 |
+
}
|
| 923 |
+
|
| 924 |
+
/*--------------------------------------------------------------
|
| 925 |
+
|
| 926 |
+
/*--------------------------------------------------------------
|
| 927 |
+
# F.A.Q
|
| 928 |
+
--------------------------------------------------------------*/
|
| 929 |
+
.faq .accordion-collapse {
|
| 930 |
+
border: 0;
|
| 931 |
+
}
|
| 932 |
+
|
| 933 |
+
.faq .accordion-button {
|
| 934 |
+
padding: 15px 15px 20px 0;
|
| 935 |
+
font-weight: 600;
|
| 936 |
+
border: 0;
|
| 937 |
+
font-size: 18px;
|
| 938 |
+
color: #444444;
|
| 939 |
+
text-align: left;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
.faq .accordion-button:focus {
|
| 943 |
+
box-shadow: none;
|
| 944 |
+
}
|
| 945 |
+
|
| 946 |
+
.faq .accordion-button:not(.collapsed) {
|
| 947 |
+
background: none;
|
| 948 |
+
color: #4154f1;
|
| 949 |
+
border-bottom: 0;
|
| 950 |
+
}
|
| 951 |
+
|
| 952 |
+
.faq .accordion-body {
|
| 953 |
+
padding: 0 0 25px 0;
|
| 954 |
+
border: 0;
|
| 955 |
+
}
|
| 956 |
+
|
| 957 |
+
/*--------------------------------------------------------------
|
| 958 |
+
|
| 959 |
+
|
| 960 |
+
/*--------------------------------------------------------------
|
| 961 |
+
# Team
|
| 962 |
+
--------------------------------------------------------------*/
|
| 963 |
+
.team {
|
| 964 |
+
background: #fff;
|
| 965 |
+
padding: 60px 0;
|
| 966 |
+
}
|
| 967 |
+
|
| 968 |
+
.team .member {
|
| 969 |
+
overflow: hidden;
|
| 970 |
+
text-align: center;
|
| 971 |
+
border-radius: 5px;
|
| 972 |
+
background: #fff;
|
| 973 |
+
box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
|
| 974 |
+
transition: 0.3s;
|
| 975 |
+
}
|
| 976 |
+
|
| 977 |
+
.team .member .member-img {
|
| 978 |
+
position: relative;
|
| 979 |
+
overflow: hidden;
|
| 980 |
+
}
|
| 981 |
+
|
| 982 |
+
.team .member .member-img:after {
|
| 983 |
+
position: absolute;
|
| 984 |
+
content: "";
|
| 985 |
+
left: 0;
|
| 986 |
+
bottom: 0;
|
| 987 |
+
height: 100%;
|
| 988 |
+
width: 100%;
|
| 989 |
+
background: url(../img/team-shape.svg) no-repeat center bottom;
|
| 990 |
+
background-size: contain;
|
| 991 |
+
z-index: 1;
|
| 992 |
+
}
|
| 993 |
+
|
| 994 |
+
.team .member .social {
|
| 995 |
+
position: absolute;
|
| 996 |
+
right: -100%;
|
| 997 |
+
top: 30px;
|
| 998 |
+
opacity: 0;
|
| 999 |
+
border-radius: 4px;
|
| 1000 |
+
transition: 0.5s;
|
| 1001 |
+
background: rgba(255, 255, 255, 0.3);
|
| 1002 |
+
z-index: 2;
|
| 1003 |
+
}
|
| 1004 |
+
|
| 1005 |
+
.team .member .social a {
|
| 1006 |
+
transition: color 0.3s;
|
| 1007 |
+
color: rgba(1, 41, 112, 0.5);
|
| 1008 |
+
margin: 15px 12px;
|
| 1009 |
+
display: block;
|
| 1010 |
+
line-height: 0;
|
| 1011 |
+
text-align: center;
|
| 1012 |
+
}
|
| 1013 |
+
|
| 1014 |
+
.team .member .social a:hover {
|
| 1015 |
+
color: rgba(1, 41, 112, 0.8);
|
| 1016 |
+
}
|
| 1017 |
+
|
| 1018 |
+
.team .member .social i {
|
| 1019 |
+
font-size: 18px;
|
| 1020 |
+
}
|
| 1021 |
+
|
| 1022 |
+
.team .member .member-info {
|
| 1023 |
+
padding: 10px 15px 20px 15px;
|
| 1024 |
+
}
|
| 1025 |
+
|
| 1026 |
+
.team .member .member-info h4 {
|
| 1027 |
+
font-weight: 700;
|
| 1028 |
+
margin-bottom: 5px;
|
| 1029 |
+
font-size: 20px;
|
| 1030 |
+
color: #012970;
|
| 1031 |
+
}
|
| 1032 |
+
|
| 1033 |
+
.team .member .member-info span {
|
| 1034 |
+
display: block;
|
| 1035 |
+
font-size: 14px;
|
| 1036 |
+
font-weight: 400;
|
| 1037 |
+
color: #aaaaaa;
|
| 1038 |
+
}
|
| 1039 |
+
|
| 1040 |
+
.team .member .member-info p {
|
| 1041 |
+
font-style: italic;
|
| 1042 |
+
font-size: 14px;
|
| 1043 |
+
padding-top: 15px;
|
| 1044 |
+
line-height: 26px;
|
| 1045 |
+
color: #5e5e5e;
|
| 1046 |
+
}
|
| 1047 |
+
|
| 1048 |
+
.team .member:hover {
|
| 1049 |
+
transform: scale(1.08);
|
| 1050 |
+
box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
|
| 1051 |
+
}
|
| 1052 |
+
|
| 1053 |
+
.team .member:hover .social {
|
| 1054 |
+
right: 8px;
|
| 1055 |
+
opacity: 1;
|
| 1056 |
+
}
|
| 1057 |
+
|
| 1058 |
+
/*--------------------------------------------------------------
|
| 1059 |
+
# Clients
|
| 1060 |
+
--------------------------------------------------------------*/
|
| 1061 |
+
.clients .clients-slider .swiper-slide img {
|
| 1062 |
+
opacity: 0.5;
|
| 1063 |
+
transition: 0.3s;
|
| 1064 |
+
}
|
| 1065 |
+
|
| 1066 |
+
.clients .clients-slider .swiper-slide img:hover {
|
| 1067 |
+
opacity: 1;
|
| 1068 |
+
}
|
| 1069 |
+
|
| 1070 |
+
.clients .clients-slider .swiper-pagination {
|
| 1071 |
+
margin-top: 20px;
|
| 1072 |
+
position: relative;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
|
| 1076 |
+
width: 12px;
|
| 1077 |
+
height: 12px;
|
| 1078 |
+
background-color: #fff;
|
| 1079 |
+
opacity: 1;
|
| 1080 |
+
border: 1px solid #4154f1;
|
| 1081 |
+
}
|
| 1082 |
+
|
| 1083 |
+
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
|
| 1084 |
+
background-color: #4154f1;
|
| 1085 |
+
}
|
| 1086 |
+
|
| 1087 |
+
/*--------------------------------------------------------------
|
| 1088 |
+
|
| 1089 |
+
# Contact---------
|
| 1090 |
+
--------------------------------------------------------------*/
|
| 1091 |
+
.contact .info-box {
|
| 1092 |
+
color: #444444;
|
| 1093 |
+
background: #fafbff;
|
| 1094 |
+
padding: 30px;
|
| 1095 |
+
}
|
| 1096 |
+
|
| 1097 |
+
.contact .info-box i {
|
| 1098 |
+
font-size: 38px;
|
| 1099 |
+
line-height: 0;
|
| 1100 |
+
color: #4154f1;
|
| 1101 |
+
}
|
| 1102 |
+
|
| 1103 |
+
.contact .info-box h3 {
|
| 1104 |
+
font-size: 20px;
|
| 1105 |
+
color: #012970;
|
| 1106 |
+
font-weight: 700;
|
| 1107 |
+
margin: 20px 0 10px 0;
|
| 1108 |
+
}
|
| 1109 |
+
|
| 1110 |
+
.contact .info-box p {
|
| 1111 |
+
padding: 0;
|
| 1112 |
+
line-height: 24px;
|
| 1113 |
+
font-size: 14px;
|
| 1114 |
+
margin-bottom: 0;
|
| 1115 |
+
}
|
| 1116 |
+
|
| 1117 |
+
.contact .php-email-form {
|
| 1118 |
+
background: #fafbff;
|
| 1119 |
+
padding: 30px;
|
| 1120 |
+
height: 100%;
|
| 1121 |
+
}
|
| 1122 |
+
|
| 1123 |
+
.contact .php-email-form .error-message {
|
| 1124 |
+
display: none;
|
| 1125 |
+
color: #fff;
|
| 1126 |
+
background: #ed3c0d;
|
| 1127 |
+
text-align: left;
|
| 1128 |
+
padding: 15px;
|
| 1129 |
+
margin-bottom: 24px;
|
| 1130 |
+
font-weight: 600;
|
| 1131 |
+
}
|
| 1132 |
+
|
| 1133 |
+
.contact .php-email-form .sent-message {
|
| 1134 |
+
display: none;
|
| 1135 |
+
color: #fff;
|
| 1136 |
+
background: #18d26e;
|
| 1137 |
+
text-align: center;
|
| 1138 |
+
padding: 15px;
|
| 1139 |
+
margin-bottom: 24px;
|
| 1140 |
+
font-weight: 600;
|
| 1141 |
+
}
|
| 1142 |
+
|
| 1143 |
+
.contact .php-email-form .loading {
|
| 1144 |
+
display: none;
|
| 1145 |
+
background: #fff;
|
| 1146 |
+
text-align: center;
|
| 1147 |
+
padding: 15px;
|
| 1148 |
+
margin-bottom: 24px;
|
| 1149 |
+
}
|
| 1150 |
+
|
| 1151 |
+
.contact .php-email-form .loading:before {
|
| 1152 |
+
content: "";
|
| 1153 |
+
display: inline-block;
|
| 1154 |
+
border-radius: 50%;
|
| 1155 |
+
width: 24px;
|
| 1156 |
+
height: 24px;
|
| 1157 |
+
margin: 0 10px -6px 0;
|
| 1158 |
+
border: 3px solid #18d26e;
|
| 1159 |
+
border-top-color: #eee;
|
| 1160 |
+
-webkit-animation: animate-loading 1s linear infinite;
|
| 1161 |
+
animation: animate-loading 1s linear infinite;
|
| 1162 |
+
}
|
| 1163 |
+
|
| 1164 |
+
.contact .php-email-form input, .contact .php-email-form textarea {
|
| 1165 |
+
border-radius: 0;
|
| 1166 |
+
box-shadow: none;
|
| 1167 |
+
font-size: 14px;
|
| 1168 |
+
border-radius: 0;
|
| 1169 |
+
}
|
| 1170 |
+
|
| 1171 |
+
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
|
| 1172 |
+
border-color: #4154f1;
|
| 1173 |
+
}
|
| 1174 |
+
|
| 1175 |
+
.contact .php-email-form input {
|
| 1176 |
+
padding: 10px 15px;
|
| 1177 |
+
}
|
| 1178 |
+
|
| 1179 |
+
.contact .php-email-form textarea {
|
| 1180 |
+
padding: 12px 15px;
|
| 1181 |
+
}
|
| 1182 |
+
|
| 1183 |
+
.contact .php-email-form button[type="submit"] {
|
| 1184 |
+
background: #4154f1;
|
| 1185 |
+
border: 0;
|
| 1186 |
+
padding: 10px 30px;
|
| 1187 |
+
color: #fff;
|
| 1188 |
+
transition: 0.4s;
|
| 1189 |
+
border-radius: 4px;
|
| 1190 |
+
}
|
| 1191 |
+
|
| 1192 |
+
.contact .php-email-form button[type="submit"]:hover {
|
| 1193 |
+
background: #5969f3;
|
| 1194 |
+
}
|
| 1195 |
+
|
| 1196 |
+
@-webkit-keyframes animate-loading {
|
| 1197 |
+
0% {
|
| 1198 |
+
transform: rotate(0deg);
|
| 1199 |
+
}
|
| 1200 |
+
100% {
|
| 1201 |
+
transform: rotate(360deg);
|
| 1202 |
+
}
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
@keyframes animate-loading {
|
| 1206 |
+
0% {
|
| 1207 |
+
transform: rotate(0deg);
|
| 1208 |
+
}
|
| 1209 |
+
100% {
|
| 1210 |
+
transform: rotate(360deg);
|
| 1211 |
+
}
|
| 1212 |
+
}
|
| 1213 |
+
|
| 1214 |
+
|
| 1215 |
+
/*--------------------------------------------------------------
|
| 1216 |
+
# Footer
|
| 1217 |
+
--------------------------------------------------------------*/
|
| 1218 |
+
.footer {
|
| 1219 |
+
background: #f6f9ff;
|
| 1220 |
+
padding: 0 0 30px 0;
|
| 1221 |
+
font-size: 14px;
|
| 1222 |
+
}
|
| 1223 |
+
|
| 1224 |
+
|
| 1225 |
+
.footer .footer-top {
|
| 1226 |
+
background: white url(../img/footer-bg.png) no-repeat right top;
|
| 1227 |
+
background-size: contain;
|
| 1228 |
+
border-top: 1px solid #e1ecff;
|
| 1229 |
+
border-bottom: 1px solid #e1ecff;
|
| 1230 |
+
padding: 60px 0 30px 0;
|
| 1231 |
+
}
|
| 1232 |
+
|
| 1233 |
+
@media (max-width: 992px) {
|
| 1234 |
+
.footer .footer-top {
|
| 1235 |
+
background-position: center bottom;
|
| 1236 |
+
}
|
| 1237 |
+
}
|
| 1238 |
+
|
| 1239 |
+
.footer .footer-top .footer-info {
|
| 1240 |
+
margin-bottom: 30px;
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
.footer .footer-top .footer-info .logo {
|
| 1244 |
+
line-height: 0;
|
| 1245 |
+
margin-bottom: 15px;
|
| 1246 |
+
}
|
| 1247 |
+
|
| 1248 |
+
.footer .footer-top .footer-info .logo img {
|
| 1249 |
+
max-height: 40px;
|
| 1250 |
+
margin-right: 6px;
|
| 1251 |
+
}
|
| 1252 |
+
|
| 1253 |
+
.footer .footer-top .footer-info .logo span {
|
| 1254 |
+
font-size: 30px;
|
| 1255 |
+
font-weight: 700;
|
| 1256 |
+
letter-spacing: 1px;
|
| 1257 |
+
color: #012970;
|
| 1258 |
+
font-family: "Nunito", sans-serif;
|
| 1259 |
+
margin-top: 3px;
|
| 1260 |
+
}
|
| 1261 |
+
|
| 1262 |
+
.footer .footer-top .footer-info p {
|
| 1263 |
+
font-size: 14px;
|
| 1264 |
+
line-height: 24px;
|
| 1265 |
+
margin-bottom: 0;
|
| 1266 |
+
font-family: "Nunito", sans-serif;
|
| 1267 |
+
}
|
| 1268 |
+
|
| 1269 |
+
.footer .footer-top .social-links a {
|
| 1270 |
+
font-size: 20px;
|
| 1271 |
+
display: inline-block;
|
| 1272 |
+
color: rgba(1, 41, 112, 0.5);
|
| 1273 |
+
line-height: 0;
|
| 1274 |
+
margin-right: 10px;
|
| 1275 |
+
transition: 0.3s;
|
| 1276 |
+
}
|
| 1277 |
+
|
| 1278 |
+
.footer .footer-top .social-links a:hover {
|
| 1279 |
+
color: #012970;
|
| 1280 |
+
}
|
| 1281 |
+
|
| 1282 |
+
.footer .footer-top h4 {
|
| 1283 |
+
font-size: 16px;
|
| 1284 |
+
font-weight: bold;
|
| 1285 |
+
color: #012970;
|
| 1286 |
+
text-transform: uppercase;
|
| 1287 |
+
position: relative;
|
| 1288 |
+
padding-bottom: 12px;
|
| 1289 |
+
}
|
| 1290 |
+
|
| 1291 |
+
.footer .footer-top .footer-links {
|
| 1292 |
+
margin-bottom: 30px;
|
| 1293 |
+
}
|
| 1294 |
+
|
| 1295 |
+
.footer .footer-top .footer-links ul {
|
| 1296 |
+
list-style: none;
|
| 1297 |
+
padding: 0;
|
| 1298 |
+
margin: 0;
|
| 1299 |
+
}
|
| 1300 |
+
|
| 1301 |
+
.footer .footer-top .footer-links ul i {
|
| 1302 |
+
padding-right: 2px;
|
| 1303 |
+
color: #d0d4fc;
|
| 1304 |
+
font-size: 12px;
|
| 1305 |
+
line-height: 0;
|
| 1306 |
+
}
|
| 1307 |
+
|
| 1308 |
+
.footer .footer-top .footer-links ul li {
|
| 1309 |
+
padding: 10px 0;
|
| 1310 |
+
display: flex;
|
| 1311 |
+
align-items: center;
|
| 1312 |
+
}
|
| 1313 |
+
|
| 1314 |
+
.footer .footer-top .footer-links ul li:first-child {
|
| 1315 |
+
padding-top: 0;
|
| 1316 |
+
}
|
| 1317 |
+
|
| 1318 |
+
.footer .footer-top .footer-links ul a {
|
| 1319 |
+
color: #013289;
|
| 1320 |
+
transition: 0.3s;
|
| 1321 |
+
display: inline-block;
|
| 1322 |
+
line-height: 1;
|
| 1323 |
+
}
|
| 1324 |
+
|
| 1325 |
+
.footer .footer-top .footer-links ul a:hover {
|
| 1326 |
+
color: #4154f1;
|
| 1327 |
+
}
|
| 1328 |
+
|
| 1329 |
+
.footer .footer-top .footer-contact p {
|
| 1330 |
+
line-height: 26px;
|
| 1331 |
+
}
|
| 1332 |
+
|
| 1333 |
+
.footer .copyright {
|
| 1334 |
+
text-align: center;
|
| 1335 |
+
padding-top: 30px;
|
| 1336 |
+
color: #012970;
|
| 1337 |
+
}
|
| 1338 |
+
|
| 1339 |
+
.footer .credits {
|
| 1340 |
+
padding-top: 10px;
|
| 1341 |
+
text-align: center;
|
| 1342 |
+
font-size: 13px;
|
| 1343 |
+
color: #012970;
|
| 1344 |
+
}
|
| 1345 |
+
|
| 1346 |
+
|
static/css/styles.css
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* General styles */
|
| 2 |
+
body {
|
| 3 |
+
font-family: Arial, sans-serif;
|
| 4 |
+
background-color: #f8f9fa;
|
| 5 |
+
margin: 0;
|
| 6 |
+
padding: 0;
|
| 7 |
+
color: #343a40;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
h1 {
|
| 11 |
+
color: #007bff;
|
| 12 |
+
text-align: center;
|
| 13 |
+
margin-bottom: 20px;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
/* Container styles */
|
| 17 |
+
.container {
|
| 18 |
+
max-width: 800px;
|
| 19 |
+
margin: 0 auto;
|
| 20 |
+
background: #ffffff;
|
| 21 |
+
padding: 20px;
|
| 22 |
+
border-radius: 8px;
|
| 23 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
/* Form styles */
|
| 27 |
+
form {
|
| 28 |
+
margin-bottom: 30px;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.form-label {
|
| 32 |
+
font-weight: bold;
|
| 33 |
+
margin-bottom: 8px;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
input[type="file"] {
|
| 37 |
+
border: 1px solid #ced4da;
|
| 38 |
+
border-radius: 4px;
|
| 39 |
+
padding: 5px;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
button {
|
| 43 |
+
transition: all 0.2s ease-in-out;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
button:hover {
|
| 47 |
+
transform: scale(1.05);
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.btn-primary {
|
| 51 |
+
background-color: #007bff;
|
| 52 |
+
border: none;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
.btn-primary:hover {
|
| 56 |
+
background-color: #0056b3;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.btn-success {
|
| 60 |
+
background-color: #28a745;
|
| 61 |
+
border: none;
|
| 62 |
+
display: none; /* Hidden by default */
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.btn-success.visible {
|
| 66 |
+
display: inline-block; /* Shown only when results are ready */
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.btn-success:hover {
|
| 70 |
+
background-color: #218838;
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
/* Results table styles */
|
| 74 |
+
table {
|
| 75 |
+
width: 100%;
|
| 76 |
+
border-collapse: collapse;
|
| 77 |
+
margin-top: 20px;
|
| 78 |
+
background-color: #ffffff;
|
| 79 |
+
border: 1px solid #dee2e6;
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
thead {
|
| 83 |
+
background-color: #007bff;
|
| 84 |
+
color: #ffffff;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
thead th {
|
| 88 |
+
padding: 10px;
|
| 89 |
+
text-align: left;
|
| 90 |
+
}
|
| 91 |
+
|
| 92 |
+
tbody tr:nth-child(odd) {
|
| 93 |
+
background-color: #f2f2f2;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
tbody td {
|
| 97 |
+
padding: 10px;
|
| 98 |
+
border: 1px solid #dee2e6;
|
| 99 |
+
}
|
| 100 |
+
|
| 101 |
+
/* Alerts and messages */
|
| 102 |
+
#results p {
|
| 103 |
+
text-align: center;
|
| 104 |
+
font-size: 1.2em;
|
| 105 |
+
color: #6c757d;
|
| 106 |
+
}
|
| 107 |
+
|
static/img/about.jpg
ADDED
|
Git LFS Details
|
static/img/apple-touch-icon.png
ADDED
|
|
static/img/clients/client-1.png
ADDED
|
static/img/clients/client-2.png
ADDED
|
static/img/clients/client-3.png
ADDED
|
static/img/clients/client-4.png
ADDED
|
static/img/clients/client-5.png
ADDED
|
static/img/clients/client-6.png
ADDED
|
static/img/clients/client-7.png
ADDED
|
static/img/clients/client-8.png
ADDED
|
static/img/favicon.ico
ADDED
|
|
static/img/favicon.png
ADDED
|
|
static/img/features-2.png
ADDED
|
static/img/features-3.png
ADDED
|
static/img/features.png
ADDED
|
static/img/footer-bg.png
ADDED
|
static/img/hero-bg.png
ADDED
|
static/img/hero-img.png
ADDED
|
static/img/hero-img.svg
ADDED
|
|
static/img/logo.png
ADDED
|
static/img/pricing-free.png
ADDED
|
static/img/team/team.png
ADDED
|
static/img/values-1.png
ADDED
|
static/img/values-2.png
ADDED
|
static/img/values-3.png
ADDED
|
static/js/main.js
ADDED
|
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
(function() {
|
| 3 |
+
"use strict";
|
| 4 |
+
|
| 5 |
+
/**
|
| 6 |
+
* Easy selector helper function
|
| 7 |
+
*/
|
| 8 |
+
const select = (el, all = false) => {
|
| 9 |
+
el = el.trim()
|
| 10 |
+
if (all) {
|
| 11 |
+
return [...document.querySelectorAll(el)]
|
| 12 |
+
} else {
|
| 13 |
+
return document.querySelector(el)
|
| 14 |
+
}
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
/**
|
| 18 |
+
* Easy event listener function
|
| 19 |
+
*/
|
| 20 |
+
const on = (type, el, listener, all = false) => {
|
| 21 |
+
if (all) {
|
| 22 |
+
select(el, all).forEach(e => e.addEventListener(type, listener))
|
| 23 |
+
} else {
|
| 24 |
+
select(el, all).addEventListener(type, listener)
|
| 25 |
+
}
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
/**
|
| 29 |
+
* Easy on scroll event listener
|
| 30 |
+
*/
|
| 31 |
+
const onscroll = (el, listener) => {
|
| 32 |
+
el.addEventListener('scroll', listener)
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
/**
|
| 36 |
+
* Navbar links active state on scroll
|
| 37 |
+
*/
|
| 38 |
+
let navbarlinks = select('#navbar .scrollto', true)
|
| 39 |
+
const navbarlinksActive = () => {
|
| 40 |
+
let position = window.scrollY + 200
|
| 41 |
+
navbarlinks.forEach(navbarlink => {
|
| 42 |
+
if (!navbarlink.hash) return
|
| 43 |
+
let section = select(navbarlink.hash)
|
| 44 |
+
if (!section) return
|
| 45 |
+
if (position >= section.offsetTop && position <= (section.offsetTop + section.offsetHeight)) {
|
| 46 |
+
navbarlink.classList.add('active')
|
| 47 |
+
} else {
|
| 48 |
+
navbarlink.classList.remove('active')
|
| 49 |
+
}
|
| 50 |
+
})
|
| 51 |
+
}
|
| 52 |
+
window.addEventListener('load', navbarlinksActive)
|
| 53 |
+
onscroll(document, navbarlinksActive)
|
| 54 |
+
|
| 55 |
+
/**
|
| 56 |
+
* Scrolls to an element with header offset
|
| 57 |
+
*/
|
| 58 |
+
const scrollto = (el) => {
|
| 59 |
+
let header = select('#header')
|
| 60 |
+
let offset = header.offsetHeight
|
| 61 |
+
|
| 62 |
+
if (!header.classList.contains('header-scrolled')) {
|
| 63 |
+
offset -= 10
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
let elementPos = select(el).offsetTop
|
| 67 |
+
window.scrollTo({
|
| 68 |
+
top: elementPos - offset,
|
| 69 |
+
behavior: 'smooth'
|
| 70 |
+
})
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
/**
|
| 74 |
+
* Toggle .header-scrolled class to #header when page is scrolled
|
| 75 |
+
*/
|
| 76 |
+
let selectHeader = select('#header')
|
| 77 |
+
if (selectHeader) {
|
| 78 |
+
const headerScrolled = () => {
|
| 79 |
+
if (window.scrollY > 100) {
|
| 80 |
+
selectHeader.classList.add('header-scrolled')
|
| 81 |
+
} else {
|
| 82 |
+
selectHeader.classList.remove('header-scrolled')
|
| 83 |
+
}
|
| 84 |
+
}
|
| 85 |
+
window.addEventListener('load', headerScrolled)
|
| 86 |
+
onscroll(document, headerScrolled)
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
/**
|
| 90 |
+
* Back to top button
|
| 91 |
+
*/
|
| 92 |
+
let backtotop = select('.back-to-top')
|
| 93 |
+
if (backtotop) {
|
| 94 |
+
const toggleBacktotop = () => {
|
| 95 |
+
if (window.scrollY > 100) {
|
| 96 |
+
backtotop.classList.add('active')
|
| 97 |
+
} else {
|
| 98 |
+
backtotop.classList.remove('active')
|
| 99 |
+
}
|
| 100 |
+
}
|
| 101 |
+
window.addEventListener('load', toggleBacktotop)
|
| 102 |
+
onscroll(document, toggleBacktotop)
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
/**
|
| 106 |
+
* Mobile nav toggle
|
| 107 |
+
*/
|
| 108 |
+
on('click', '.mobile-nav-toggle', function(e) {
|
| 109 |
+
select('#navbar').classList.toggle('navbar-mobile')
|
| 110 |
+
this.classList.toggle('bi-list')
|
| 111 |
+
this.classList.toggle('bi-x')
|
| 112 |
+
})
|
| 113 |
+
|
| 114 |
+
/**
|
| 115 |
+
* Mobile nav dropdowns activate
|
| 116 |
+
*/
|
| 117 |
+
on('click', '.navbar .dropdown > a', function(e) {
|
| 118 |
+
if (select('#navbar').classList.contains('navbar-mobile')) {
|
| 119 |
+
e.preventDefault()
|
| 120 |
+
this.nextElementSibling.classList.toggle('dropdown-active')
|
| 121 |
+
}
|
| 122 |
+
}, true)
|
| 123 |
+
|
| 124 |
+
/**
|
| 125 |
+
* Scrool with ofset on links with a class name .scrollto
|
| 126 |
+
*/
|
| 127 |
+
on('click', '.scrollto', function(e) {
|
| 128 |
+
if (select(this.hash)) {
|
| 129 |
+
e.preventDefault()
|
| 130 |
+
|
| 131 |
+
let navbar = select('#navbar')
|
| 132 |
+
if (navbar.classList.contains('navbar-mobile')) {
|
| 133 |
+
navbar.classList.remove('navbar-mobile')
|
| 134 |
+
let navbarToggle = select('.mobile-nav-toggle')
|
| 135 |
+
navbarToggle.classList.toggle('bi-list')
|
| 136 |
+
navbarToggle.classList.toggle('bi-x')
|
| 137 |
+
}
|
| 138 |
+
scrollto(this.hash)
|
| 139 |
+
}
|
| 140 |
+
}, true)
|
| 141 |
+
|
| 142 |
+
/**
|
| 143 |
+
* Scroll with ofset on page load with hash links in the url
|
| 144 |
+
*/
|
| 145 |
+
window.addEventListener('load', () => {
|
| 146 |
+
if (window.location.hash) {
|
| 147 |
+
if (select(window.location.hash)) {
|
| 148 |
+
scrollto(window.location.hash)
|
| 149 |
+
}
|
| 150 |
+
}
|
| 151 |
+
});
|
| 152 |
+
|
| 153 |
+
/**
|
| 154 |
+
* Clients Slider
|
| 155 |
+
*/
|
| 156 |
+
new Swiper('.clients-slider', {
|
| 157 |
+
speed: 400,
|
| 158 |
+
loop: true,
|
| 159 |
+
autoplay: {
|
| 160 |
+
delay: 5000,
|
| 161 |
+
disableOnInteraction: false
|
| 162 |
+
},
|
| 163 |
+
slidesPerView: 'auto',
|
| 164 |
+
pagination: {
|
| 165 |
+
el: '.swiper-pagination',
|
| 166 |
+
type: 'bullets',
|
| 167 |
+
clickable: true
|
| 168 |
+
},
|
| 169 |
+
breakpoints: {
|
| 170 |
+
320: {
|
| 171 |
+
slidesPerView: 2,
|
| 172 |
+
spaceBetween: 40
|
| 173 |
+
},
|
| 174 |
+
480: {
|
| 175 |
+
slidesPerView: 3,
|
| 176 |
+
spaceBetween: 60
|
| 177 |
+
},
|
| 178 |
+
640: {
|
| 179 |
+
slidesPerView: 4,
|
| 180 |
+
spaceBetween: 80
|
| 181 |
+
},
|
| 182 |
+
992: {
|
| 183 |
+
slidesPerView: 6,
|
| 184 |
+
spaceBetween: 120
|
| 185 |
+
}
|
| 186 |
+
}
|
| 187 |
+
});
|
| 188 |
+
|
| 189 |
+
|
| 190 |
+
|
| 191 |
+
|
| 192 |
+
new Swiper('.portfolio-details-slider', {
|
| 193 |
+
speed: 400,
|
| 194 |
+
autoplay: {
|
| 195 |
+
delay: 5000,
|
| 196 |
+
disableOnInteraction: false
|
| 197 |
+
},
|
| 198 |
+
pagination: {
|
| 199 |
+
el: '.swiper-pagination',
|
| 200 |
+
type: 'bullets',
|
| 201 |
+
clickable: true
|
| 202 |
+
}
|
| 203 |
+
});
|
| 204 |
+
|
| 205 |
+
|
| 206 |
+
/**
|
| 207 |
+
* Animation on scroll
|
| 208 |
+
*/
|
| 209 |
+
function aos_init() {
|
| 210 |
+
AOS.init({
|
| 211 |
+
duration: 1000,
|
| 212 |
+
easing: "ease-in-out",
|
| 213 |
+
once: true,
|
| 214 |
+
mirror: false
|
| 215 |
+
});
|
| 216 |
+
}
|
| 217 |
+
window.addEventListener('load', () => {
|
| 218 |
+
aos_init();
|
| 219 |
+
});
|
| 220 |
+
|
| 221 |
+
})();
|
static/vendor/aos/aos.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
|
static/vendor/aos/aos.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},r=n(1),a=(o(r),n(6)),u=o(a),c=n(7),s=o(c),f=n(8),d=o(f),l=n(9),p=o(l),m=n(10),b=o(m),v=n(11),y=o(v),g=n(14),h=o(g),w=[],k=!1,x={offset:120,delay:0,easing:"ease",duration:400,disable:!1,once:!1,startEvent:"DOMContentLoaded",throttleDelay:99,debounceDelay:50,disableMutationObserver:!1},j=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},M=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},_=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?M():(x.disableMutationObserver||d.default.isSupported()||(console.info('\n aos: MutationObserver is not supported on this browser,\n code mutations observing has been disabled.\n You may have to call "refreshHard()" by yourself.\n '),x.disableMutationObserver=!0),document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,s.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,s.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||d.default.ready("[data-aos]",O),w)};e.exports={init:_,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(f,t),M?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function f(){var e=O();return c(e)?d(e):void(h=setTimeout(f,a(e)))}function d(e){return h=void 0,_&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(f,t),o(w)}return void 0===h&&(h=setTimeout(f,t)),g}var b,v,y,g,h,w,k=0,M=!1,S=!1,_=!0;if("function"!=typeof e)throw new TypeError(s);return t=u(t)||0,i(n)&&(M=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,_="trailing"in n?!!n.trailing:_),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(s);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return f;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?f:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s="Expected a function",f=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(f,t),M?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function s(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function f(){var e=j();return s(e)?d(e):void(h=setTimeout(f,u(e)))}function d(e){return h=void 0,_&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=s(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(f,t),i(w)}return void 0===h&&(h=setTimeout(f,t)),g}var b,v,y,g,h,w,O=0,M=!1,S=!1,_=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(M=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,_="trailing"in n?!!n.trailing:_),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==f}function a(e){if("number"==typeof e)return e;if(r(e))return s;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?s:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",s=NaN,f="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e){var t=void 0,o=void 0,i=void 0;for(t=0;t<e.length;t+=1){if(o=e[t],o.dataset&&o.dataset.aos)return!0;if(i=o.children&&n(o.children))return!0}return!1}function o(){return window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver}function i(){return!!o()}function r(e,t){var n=window.document,i=o(),r=new i(a);u=t,r.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function a(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),o=Array.prototype.slice.call(e.removedNodes),i=t.concat(o);if(n(i))return u()})}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){};t.default={isSupported:i,ready:r}},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,n,o){return n&&e(t.prototype,n),o&&e(t,o),t}}(),r=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i,a=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,u=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i,c=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,s=function(){function e(){n(this,e)}return i(e,[{key:"phone",value:function(){var e=o();return!(!r.test(e)&&!a.test(e.substr(0,4)))}},{key:"mobile",value:function(){var e=o();return!(!u.test(e)&&!c.test(e.substr(0,4)))}},{key:"tablet",value:function(){return this.mobile()&&!this.phone()}}]),e}();t.default=new s},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e,t,n){var o=e.node.getAttribute("data-aos-once");t>e.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])});
|
static/vendor/bootstrap-icons/bootstrap-icons.css
ADDED
|
@@ -0,0 +1,1390 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@font-face {
|
| 2 |
+
font-family: "bootstrap-icons";
|
| 3 |
+
src: url("./fonts/bootstrap-icons.woff2?856008caa5eb66df68595e734e59580d") format("woff2"),
|
| 4 |
+
url("./fonts/bootstrap-icons.woff?856008caa5eb66df68595e734e59580d") format("woff");
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
[class^="bi-"]::before,
|
| 8 |
+
[class*=" bi-"]::before {
|
| 9 |
+
display: inline-block;
|
| 10 |
+
font-family: bootstrap-icons !important;
|
| 11 |
+
font-style: normal;
|
| 12 |
+
font-weight: normal !important;
|
| 13 |
+
font-variant: normal;
|
| 14 |
+
text-transform: none;
|
| 15 |
+
line-height: 1;
|
| 16 |
+
vertical-align: -.125em;
|
| 17 |
+
-webkit-font-smoothing: antialiased;
|
| 18 |
+
-moz-osx-font-smoothing: grayscale;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.bi-alarm-fill::before { content: "\f101"; }
|
| 22 |
+
.bi-alarm::before { content: "\f102"; }
|
| 23 |
+
.bi-align-bottom::before { content: "\f103"; }
|
| 24 |
+
.bi-align-center::before { content: "\f104"; }
|
| 25 |
+
.bi-align-end::before { content: "\f105"; }
|
| 26 |
+
.bi-align-middle::before { content: "\f106"; }
|
| 27 |
+
.bi-align-start::before { content: "\f107"; }
|
| 28 |
+
.bi-align-top::before { content: "\f108"; }
|
| 29 |
+
.bi-alt::before { content: "\f109"; }
|
| 30 |
+
.bi-app-indicator::before { content: "\f10a"; }
|
| 31 |
+
.bi-app::before { content: "\f10b"; }
|
| 32 |
+
.bi-archive-fill::before { content: "\f10c"; }
|
| 33 |
+
.bi-archive::before { content: "\f10d"; }
|
| 34 |
+
.bi-arrow-90deg-down::before { content: "\f10e"; }
|
| 35 |
+
.bi-arrow-90deg-left::before { content: "\f10f"; }
|
| 36 |
+
.bi-arrow-90deg-right::before { content: "\f110"; }
|
| 37 |
+
.bi-arrow-90deg-up::before { content: "\f111"; }
|
| 38 |
+
.bi-arrow-bar-down::before { content: "\f112"; }
|
| 39 |
+
.bi-arrow-bar-left::before { content: "\f113"; }
|
| 40 |
+
.bi-arrow-bar-right::before { content: "\f114"; }
|
| 41 |
+
.bi-arrow-bar-up::before { content: "\f115"; }
|
| 42 |
+
.bi-arrow-clockwise::before { content: "\f116"; }
|
| 43 |
+
.bi-arrow-counterclockwise::before { content: "\f117"; }
|
| 44 |
+
.bi-arrow-down-circle-fill::before { content: "\f118"; }
|
| 45 |
+
.bi-arrow-down-circle::before { content: "\f119"; }
|
| 46 |
+
.bi-arrow-down-left-circle-fill::before { content: "\f11a"; }
|
| 47 |
+
.bi-arrow-down-left-circle::before { content: "\f11b"; }
|
| 48 |
+
.bi-arrow-down-left-square-fill::before { content: "\f11c"; }
|
| 49 |
+
.bi-arrow-down-left-square::before { content: "\f11d"; }
|
| 50 |
+
.bi-arrow-down-left::before { content: "\f11e"; }
|
| 51 |
+
.bi-arrow-down-right-circle-fill::before { content: "\f11f"; }
|
| 52 |
+
.bi-arrow-down-right-circle::before { content: "\f120"; }
|
| 53 |
+
.bi-arrow-down-right-square-fill::before { content: "\f121"; }
|
| 54 |
+
.bi-arrow-down-right-square::before { content: "\f122"; }
|
| 55 |
+
.bi-arrow-down-right::before { content: "\f123"; }
|
| 56 |
+
.bi-arrow-down-short::before { content: "\f124"; }
|
| 57 |
+
.bi-arrow-down-square-fill::before { content: "\f125"; }
|
| 58 |
+
.bi-arrow-down-square::before { content: "\f126"; }
|
| 59 |
+
.bi-arrow-down-up::before { content: "\f127"; }
|
| 60 |
+
.bi-arrow-down::before { content: "\f128"; }
|
| 61 |
+
.bi-arrow-left-circle-fill::before { content: "\f129"; }
|
| 62 |
+
.bi-arrow-left-circle::before { content: "\f12a"; }
|
| 63 |
+
.bi-arrow-left-right::before { content: "\f12b"; }
|
| 64 |
+
.bi-arrow-left-short::before { content: "\f12c"; }
|
| 65 |
+
.bi-arrow-left-square-fill::before { content: "\f12d"; }
|
| 66 |
+
.bi-arrow-left-square::before { content: "\f12e"; }
|
| 67 |
+
.bi-arrow-left::before { content: "\f12f"; }
|
| 68 |
+
.bi-arrow-repeat::before { content: "\f130"; }
|
| 69 |
+
.bi-arrow-return-left::before { content: "\f131"; }
|
| 70 |
+
.bi-arrow-return-right::before { content: "\f132"; }
|
| 71 |
+
.bi-arrow-right-circle-fill::before { content: "\f133"; }
|
| 72 |
+
.bi-arrow-right-circle::before { content: "\f134"; }
|
| 73 |
+
.bi-arrow-right-short::before { content: "\f135"; }
|
| 74 |
+
.bi-arrow-right-square-fill::before { content: "\f136"; }
|
| 75 |
+
.bi-arrow-right-square::before { content: "\f137"; }
|
| 76 |
+
.bi-arrow-right::before { content: "\f138"; }
|
| 77 |
+
.bi-arrow-up-circle-fill::before { content: "\f139"; }
|
| 78 |
+
.bi-arrow-up-circle::before { content: "\f13a"; }
|
| 79 |
+
.bi-arrow-up-left-circle-fill::before { content: "\f13b"; }
|
| 80 |
+
.bi-arrow-up-left-circle::before { content: "\f13c"; }
|
| 81 |
+
.bi-arrow-up-left-square-fill::before { content: "\f13d"; }
|
| 82 |
+
.bi-arrow-up-left-square::before { content: "\f13e"; }
|
| 83 |
+
.bi-arrow-up-left::before { content: "\f13f"; }
|
| 84 |
+
.bi-arrow-up-right-circle-fill::before { content: "\f140"; }
|
| 85 |
+
.bi-arrow-up-right-circle::before { content: "\f141"; }
|
| 86 |
+
.bi-arrow-up-right-square-fill::before { content: "\f142"; }
|
| 87 |
+
.bi-arrow-up-right-square::before { content: "\f143"; }
|
| 88 |
+
.bi-arrow-up-right::before { content: "\f144"; }
|
| 89 |
+
.bi-arrow-up-short::before { content: "\f145"; }
|
| 90 |
+
.bi-arrow-up-square-fill::before { content: "\f146"; }
|
| 91 |
+
.bi-arrow-up-square::before { content: "\f147"; }
|
| 92 |
+
.bi-arrow-up::before { content: "\f148"; }
|
| 93 |
+
.bi-arrows-angle-contract::before { content: "\f149"; }
|
| 94 |
+
.bi-arrows-angle-expand::before { content: "\f14a"; }
|
| 95 |
+
.bi-arrows-collapse::before { content: "\f14b"; }
|
| 96 |
+
.bi-arrows-expand::before { content: "\f14c"; }
|
| 97 |
+
.bi-arrows-fullscreen::before { content: "\f14d"; }
|
| 98 |
+
.bi-arrows-move::before { content: "\f14e"; }
|
| 99 |
+
.bi-aspect-ratio-fill::before { content: "\f14f"; }
|
| 100 |
+
.bi-aspect-ratio::before { content: "\f150"; }
|
| 101 |
+
.bi-asterisk::before { content: "\f151"; }
|
| 102 |
+
.bi-at::before { content: "\f152"; }
|
| 103 |
+
.bi-award-fill::before { content: "\f153"; }
|
| 104 |
+
.bi-award::before { content: "\f154"; }
|
| 105 |
+
.bi-back::before { content: "\f155"; }
|
| 106 |
+
.bi-backspace-fill::before { content: "\f156"; }
|
| 107 |
+
.bi-backspace-reverse-fill::before { content: "\f157"; }
|
| 108 |
+
.bi-backspace-reverse::before { content: "\f158"; }
|
| 109 |
+
.bi-backspace::before { content: "\f159"; }
|
| 110 |
+
.bi-badge-3d-fill::before { content: "\f15a"; }
|
| 111 |
+
.bi-badge-3d::before { content: "\f15b"; }
|
| 112 |
+
.bi-badge-4k-fill::before { content: "\f15c"; }
|
| 113 |
+
.bi-badge-4k::before { content: "\f15d"; }
|
| 114 |
+
.bi-badge-8k-fill::before { content: "\f15e"; }
|
| 115 |
+
.bi-badge-8k::before { content: "\f15f"; }
|
| 116 |
+
.bi-badge-ad-fill::before { content: "\f160"; }
|
| 117 |
+
.bi-badge-ad::before { content: "\f161"; }
|
| 118 |
+
.bi-badge-ar-fill::before { content: "\f162"; }
|
| 119 |
+
.bi-badge-ar::before { content: "\f163"; }
|
| 120 |
+
.bi-badge-cc-fill::before { content: "\f164"; }
|
| 121 |
+
.bi-badge-cc::before { content: "\f165"; }
|
| 122 |
+
.bi-badge-hd-fill::before { content: "\f166"; }
|
| 123 |
+
.bi-badge-hd::before { content: "\f167"; }
|
| 124 |
+
.bi-badge-tm-fill::before { content: "\f168"; }
|
| 125 |
+
.bi-badge-tm::before { content: "\f169"; }
|
| 126 |
+
.bi-badge-vo-fill::before { content: "\f16a"; }
|
| 127 |
+
.bi-badge-vo::before { content: "\f16b"; }
|
| 128 |
+
.bi-badge-vr-fill::before { content: "\f16c"; }
|
| 129 |
+
.bi-badge-vr::before { content: "\f16d"; }
|
| 130 |
+
.bi-badge-wc-fill::before { content: "\f16e"; }
|
| 131 |
+
.bi-badge-wc::before { content: "\f16f"; }
|
| 132 |
+
.bi-bag-check-fill::before { content: "\f170"; }
|
| 133 |
+
.bi-bag-check::before { content: "\f171"; }
|
| 134 |
+
.bi-bag-dash-fill::before { content: "\f172"; }
|
| 135 |
+
.bi-bag-dash::before { content: "\f173"; }
|
| 136 |
+
.bi-bag-fill::before { content: "\f174"; }
|
| 137 |
+
.bi-bag-plus-fill::before { content: "\f175"; }
|
| 138 |
+
.bi-bag-plus::before { content: "\f176"; }
|
| 139 |
+
.bi-bag-x-fill::before { content: "\f177"; }
|
| 140 |
+
.bi-bag-x::before { content: "\f178"; }
|
| 141 |
+
.bi-bag::before { content: "\f179"; }
|
| 142 |
+
.bi-bar-chart-fill::before { content: "\f17a"; }
|
| 143 |
+
.bi-bar-chart-line-fill::before { content: "\f17b"; }
|
| 144 |
+
.bi-bar-chart-line::before { content: "\f17c"; }
|
| 145 |
+
.bi-bar-chart-steps::before { content: "\f17d"; }
|
| 146 |
+
.bi-bar-chart::before { content: "\f17e"; }
|
| 147 |
+
.bi-basket-fill::before { content: "\f17f"; }
|
| 148 |
+
.bi-basket::before { content: "\f180"; }
|
| 149 |
+
.bi-basket2-fill::before { content: "\f181"; }
|
| 150 |
+
.bi-basket2::before { content: "\f182"; }
|
| 151 |
+
.bi-basket3-fill::before { content: "\f183"; }
|
| 152 |
+
.bi-basket3::before { content: "\f184"; }
|
| 153 |
+
.bi-battery-charging::before { content: "\f185"; }
|
| 154 |
+
.bi-battery-full::before { content: "\f186"; }
|
| 155 |
+
.bi-battery-half::before { content: "\f187"; }
|
| 156 |
+
.bi-battery::before { content: "\f188"; }
|
| 157 |
+
.bi-bell-fill::before { content: "\f189"; }
|
| 158 |
+
.bi-bell::before { content: "\f18a"; }
|
| 159 |
+
.bi-bezier::before { content: "\f18b"; }
|
| 160 |
+
.bi-bezier2::before { content: "\f18c"; }
|
| 161 |
+
.bi-bicycle::before { content: "\f18d"; }
|
| 162 |
+
.bi-binoculars-fill::before { content: "\f18e"; }
|
| 163 |
+
.bi-binoculars::before { content: "\f18f"; }
|
| 164 |
+
.bi-blockquote-left::before { content: "\f190"; }
|
| 165 |
+
.bi-blockquote-right::before { content: "\f191"; }
|
| 166 |
+
.bi-book-fill::before { content: "\f192"; }
|
| 167 |
+
.bi-book-half::before { content: "\f193"; }
|
| 168 |
+
.bi-book::before { content: "\f194"; }
|
| 169 |
+
.bi-bookmark-check-fill::before { content: "\f195"; }
|
| 170 |
+
.bi-bookmark-check::before { content: "\f196"; }
|
| 171 |
+
.bi-bookmark-dash-fill::before { content: "\f197"; }
|
| 172 |
+
.bi-bookmark-dash::before { content: "\f198"; }
|
| 173 |
+
.bi-bookmark-fill::before { content: "\f199"; }
|
| 174 |
+
.bi-bookmark-heart-fill::before { content: "\f19a"; }
|
| 175 |
+
.bi-bookmark-heart::before { content: "\f19b"; }
|
| 176 |
+
.bi-bookmark-plus-fill::before { content: "\f19c"; }
|
| 177 |
+
.bi-bookmark-plus::before { content: "\f19d"; }
|
| 178 |
+
.bi-bookmark-star-fill::before { content: "\f19e"; }
|
| 179 |
+
.bi-bookmark-star::before { content: "\f19f"; }
|
| 180 |
+
.bi-bookmark-x-fill::before { content: "\f1a0"; }
|
| 181 |
+
.bi-bookmark-x::before { content: "\f1a1"; }
|
| 182 |
+
.bi-bookmark::before { content: "\f1a2"; }
|
| 183 |
+
.bi-bookmarks-fill::before { content: "\f1a3"; }
|
| 184 |
+
.bi-bookmarks::before { content: "\f1a4"; }
|
| 185 |
+
.bi-bookshelf::before { content: "\f1a5"; }
|
| 186 |
+
.bi-bootstrap-fill::before { content: "\f1a6"; }
|
| 187 |
+
.bi-bootstrap-reboot::before { content: "\f1a7"; }
|
| 188 |
+
.bi-bootstrap::before { content: "\f1a8"; }
|
| 189 |
+
.bi-border-all::before { content: "\f1a9"; }
|
| 190 |
+
.bi-border-bottom::before { content: "\f1aa"; }
|
| 191 |
+
.bi-border-center::before { content: "\f1ab"; }
|
| 192 |
+
.bi-border-inner::before { content: "\f1ac"; }
|
| 193 |
+
.bi-border-left::before { content: "\f1ad"; }
|
| 194 |
+
.bi-border-middle::before { content: "\f1ae"; }
|
| 195 |
+
.bi-border-outer::before { content: "\f1af"; }
|
| 196 |
+
.bi-border-right::before { content: "\f1b0"; }
|
| 197 |
+
.bi-border-style::before { content: "\f1b1"; }
|
| 198 |
+
.bi-border-top::before { content: "\f1b2"; }
|
| 199 |
+
.bi-border-width::before { content: "\f1b3"; }
|
| 200 |
+
.bi-border::before { content: "\f1b4"; }
|
| 201 |
+
.bi-bounding-box-circles::before { content: "\f1b5"; }
|
| 202 |
+
.bi-bounding-box::before { content: "\f1b6"; }
|
| 203 |
+
.bi-box-arrow-down-left::before { content: "\f1b7"; }
|
| 204 |
+
.bi-box-arrow-down-right::before { content: "\f1b8"; }
|
| 205 |
+
.bi-box-arrow-down::before { content: "\f1b9"; }
|
| 206 |
+
.bi-box-arrow-in-down-left::before { content: "\f1ba"; }
|
| 207 |
+
.bi-box-arrow-in-down-right::before { content: "\f1bb"; }
|
| 208 |
+
.bi-box-arrow-in-down::before { content: "\f1bc"; }
|
| 209 |
+
.bi-box-arrow-in-left::before { content: "\f1bd"; }
|
| 210 |
+
.bi-box-arrow-in-right::before { content: "\f1be"; }
|
| 211 |
+
.bi-box-arrow-in-up-left::before { content: "\f1bf"; }
|
| 212 |
+
.bi-box-arrow-in-up-right::before { content: "\f1c0"; }
|
| 213 |
+
.bi-box-arrow-in-up::before { content: "\f1c1"; }
|
| 214 |
+
.bi-box-arrow-left::before { content: "\f1c2"; }
|
| 215 |
+
.bi-box-arrow-right::before { content: "\f1c3"; }
|
| 216 |
+
.bi-box-arrow-up-left::before { content: "\f1c4"; }
|
| 217 |
+
.bi-box-arrow-up-right::before { content: "\f1c5"; }
|
| 218 |
+
.bi-box-arrow-up::before { content: "\f1c6"; }
|
| 219 |
+
.bi-box-seam::before { content: "\f1c7"; }
|
| 220 |
+
.bi-box::before { content: "\f1c8"; }
|
| 221 |
+
.bi-braces::before { content: "\f1c9"; }
|
| 222 |
+
.bi-bricks::before { content: "\f1ca"; }
|
| 223 |
+
.bi-briefcase-fill::before { content: "\f1cb"; }
|
| 224 |
+
.bi-briefcase::before { content: "\f1cc"; }
|
| 225 |
+
.bi-brightness-alt-high-fill::before { content: "\f1cd"; }
|
| 226 |
+
.bi-brightness-alt-high::before { content: "\f1ce"; }
|
| 227 |
+
.bi-brightness-alt-low-fill::before { content: "\f1cf"; }
|
| 228 |
+
.bi-brightness-alt-low::before { content: "\f1d0"; }
|
| 229 |
+
.bi-brightness-high-fill::before { content: "\f1d1"; }
|
| 230 |
+
.bi-brightness-high::before { content: "\f1d2"; }
|
| 231 |
+
.bi-brightness-low-fill::before { content: "\f1d3"; }
|
| 232 |
+
.bi-brightness-low::before { content: "\f1d4"; }
|
| 233 |
+
.bi-broadcast-pin::before { content: "\f1d5"; }
|
| 234 |
+
.bi-broadcast::before { content: "\f1d6"; }
|
| 235 |
+
.bi-brush-fill::before { content: "\f1d7"; }
|
| 236 |
+
.bi-brush::before { content: "\f1d8"; }
|
| 237 |
+
.bi-bucket-fill::before { content: "\f1d9"; }
|
| 238 |
+
.bi-bucket::before { content: "\f1da"; }
|
| 239 |
+
.bi-bug-fill::before { content: "\f1db"; }
|
| 240 |
+
.bi-bug::before { content: "\f1dc"; }
|
| 241 |
+
.bi-building::before { content: "\f1dd"; }
|
| 242 |
+
.bi-bullseye::before { content: "\f1de"; }
|
| 243 |
+
.bi-calculator-fill::before { content: "\f1df"; }
|
| 244 |
+
.bi-calculator::before { content: "\f1e0"; }
|
| 245 |
+
.bi-calendar-check-fill::before { content: "\f1e1"; }
|
| 246 |
+
.bi-calendar-check::before { content: "\f1e2"; }
|
| 247 |
+
.bi-calendar-date-fill::before { content: "\f1e3"; }
|
| 248 |
+
.bi-calendar-date::before { content: "\f1e4"; }
|
| 249 |
+
.bi-calendar-day-fill::before { content: "\f1e5"; }
|
| 250 |
+
.bi-calendar-day::before { content: "\f1e6"; }
|
| 251 |
+
.bi-calendar-event-fill::before { content: "\f1e7"; }
|
| 252 |
+
.bi-calendar-event::before { content: "\f1e8"; }
|
| 253 |
+
.bi-calendar-fill::before { content: "\f1e9"; }
|
| 254 |
+
.bi-calendar-minus-fill::before { content: "\f1ea"; }
|
| 255 |
+
.bi-calendar-minus::before { content: "\f1eb"; }
|
| 256 |
+
.bi-calendar-month-fill::before { content: "\f1ec"; }
|
| 257 |
+
.bi-calendar-month::before { content: "\f1ed"; }
|
| 258 |
+
.bi-calendar-plus-fill::before { content: "\f1ee"; }
|
| 259 |
+
.bi-calendar-plus::before { content: "\f1ef"; }
|
| 260 |
+
.bi-calendar-range-fill::before { content: "\f1f0"; }
|
| 261 |
+
.bi-calendar-range::before { content: "\f1f1"; }
|
| 262 |
+
.bi-calendar-week-fill::before { content: "\f1f2"; }
|
| 263 |
+
.bi-calendar-week::before { content: "\f1f3"; }
|
| 264 |
+
.bi-calendar-x-fill::before { content: "\f1f4"; }
|
| 265 |
+
.bi-calendar-x::before { content: "\f1f5"; }
|
| 266 |
+
.bi-calendar::before { content: "\f1f6"; }
|
| 267 |
+
.bi-calendar2-check-fill::before { content: "\f1f7"; }
|
| 268 |
+
.bi-calendar2-check::before { content: "\f1f8"; }
|
| 269 |
+
.bi-calendar2-date-fill::before { content: "\f1f9"; }
|
| 270 |
+
.bi-calendar2-date::before { content: "\f1fa"; }
|
| 271 |
+
.bi-calendar2-day-fill::before { content: "\f1fb"; }
|
| 272 |
+
.bi-calendar2-day::before { content: "\f1fc"; }
|
| 273 |
+
.bi-calendar2-event-fill::before { content: "\f1fd"; }
|
| 274 |
+
.bi-calendar2-event::before { content: "\f1fe"; }
|
| 275 |
+
.bi-calendar2-fill::before { content: "\f1ff"; }
|
| 276 |
+
.bi-calendar2-minus-fill::before { content: "\f200"; }
|
| 277 |
+
.bi-calendar2-minus::before { content: "\f201"; }
|
| 278 |
+
.bi-calendar2-month-fill::before { content: "\f202"; }
|
| 279 |
+
.bi-calendar2-month::before { content: "\f203"; }
|
| 280 |
+
.bi-calendar2-plus-fill::before { content: "\f204"; }
|
| 281 |
+
.bi-calendar2-plus::before { content: "\f205"; }
|
| 282 |
+
.bi-calendar2-range-fill::before { content: "\f206"; }
|
| 283 |
+
.bi-calendar2-range::before { content: "\f207"; }
|
| 284 |
+
.bi-calendar2-week-fill::before { content: "\f208"; }
|
| 285 |
+
.bi-calendar2-week::before { content: "\f209"; }
|
| 286 |
+
.bi-calendar2-x-fill::before { content: "\f20a"; }
|
| 287 |
+
.bi-calendar2-x::before { content: "\f20b"; }
|
| 288 |
+
.bi-calendar2::before { content: "\f20c"; }
|
| 289 |
+
.bi-calendar3-event-fill::before { content: "\f20d"; }
|
| 290 |
+
.bi-calendar3-event::before { content: "\f20e"; }
|
| 291 |
+
.bi-calendar3-fill::before { content: "\f20f"; }
|
| 292 |
+
.bi-calendar3-range-fill::before { content: "\f210"; }
|
| 293 |
+
.bi-calendar3-range::before { content: "\f211"; }
|
| 294 |
+
.bi-calendar3-week-fill::before { content: "\f212"; }
|
| 295 |
+
.bi-calendar3-week::before { content: "\f213"; }
|
| 296 |
+
.bi-calendar3::before { content: "\f214"; }
|
| 297 |
+
.bi-calendar4-event::before { content: "\f215"; }
|
| 298 |
+
.bi-calendar4-range::before { content: "\f216"; }
|
| 299 |
+
.bi-calendar4-week::before { content: "\f217"; }
|
| 300 |
+
.bi-calendar4::before { content: "\f218"; }
|
| 301 |
+
.bi-camera-fill::before { content: "\f219"; }
|
| 302 |
+
.bi-camera-reels-fill::before { content: "\f21a"; }
|
| 303 |
+
.bi-camera-reels::before { content: "\f21b"; }
|
| 304 |
+
.bi-camera-video-fill::before { content: "\f21c"; }
|
| 305 |
+
.bi-camera-video-off-fill::before { content: "\f21d"; }
|
| 306 |
+
.bi-camera-video-off::before { content: "\f21e"; }
|
| 307 |
+
.bi-camera-video::before { content: "\f21f"; }
|
| 308 |
+
.bi-camera::before { content: "\f220"; }
|
| 309 |
+
.bi-camera2::before { content: "\f221"; }
|
| 310 |
+
.bi-capslock-fill::before { content: "\f222"; }
|
| 311 |
+
.bi-capslock::before { content: "\f223"; }
|
| 312 |
+
.bi-card-checklist::before { content: "\f224"; }
|
| 313 |
+
.bi-card-heading::before { content: "\f225"; }
|
| 314 |
+
.bi-card-image::before { content: "\f226"; }
|
| 315 |
+
.bi-card-list::before { content: "\f227"; }
|
| 316 |
+
.bi-card-text::before { content: "\f228"; }
|
| 317 |
+
.bi-caret-down-fill::before { content: "\f229"; }
|
| 318 |
+
.bi-caret-down-square-fill::before { content: "\f22a"; }
|
| 319 |
+
.bi-caret-down-square::before { content: "\f22b"; }
|
| 320 |
+
.bi-caret-down::before { content: "\f22c"; }
|
| 321 |
+
.bi-caret-left-fill::before { content: "\f22d"; }
|
| 322 |
+
.bi-caret-left-square-fill::before { content: "\f22e"; }
|
| 323 |
+
.bi-caret-left-square::before { content: "\f22f"; }
|
| 324 |
+
.bi-caret-left::before { content: "\f230"; }
|
| 325 |
+
.bi-caret-right-fill::before { content: "\f231"; }
|
| 326 |
+
.bi-caret-right-square-fill::before { content: "\f232"; }
|
| 327 |
+
.bi-caret-right-square::before { content: "\f233"; }
|
| 328 |
+
.bi-caret-right::before { content: "\f234"; }
|
| 329 |
+
.bi-caret-up-fill::before { content: "\f235"; }
|
| 330 |
+
.bi-caret-up-square-fill::before { content: "\f236"; }
|
| 331 |
+
.bi-caret-up-square::before { content: "\f237"; }
|
| 332 |
+
.bi-caret-up::before { content: "\f238"; }
|
| 333 |
+
.bi-cart-check-fill::before { content: "\f239"; }
|
| 334 |
+
.bi-cart-check::before { content: "\f23a"; }
|
| 335 |
+
.bi-cart-dash-fill::before { content: "\f23b"; }
|
| 336 |
+
.bi-cart-dash::before { content: "\f23c"; }
|
| 337 |
+
.bi-cart-fill::before { content: "\f23d"; }
|
| 338 |
+
.bi-cart-plus-fill::before { content: "\f23e"; }
|
| 339 |
+
.bi-cart-plus::before { content: "\f23f"; }
|
| 340 |
+
.bi-cart-x-fill::before { content: "\f240"; }
|
| 341 |
+
.bi-cart-x::before { content: "\f241"; }
|
| 342 |
+
.bi-cart::before { content: "\f242"; }
|
| 343 |
+
.bi-cart2::before { content: "\f243"; }
|
| 344 |
+
.bi-cart3::before { content: "\f244"; }
|
| 345 |
+
.bi-cart4::before { content: "\f245"; }
|
| 346 |
+
.bi-cash-stack::before { content: "\f246"; }
|
| 347 |
+
.bi-cash::before { content: "\f247"; }
|
| 348 |
+
.bi-cast::before { content: "\f248"; }
|
| 349 |
+
.bi-chat-dots-fill::before { content: "\f249"; }
|
| 350 |
+
.bi-chat-dots::before { content: "\f24a"; }
|
| 351 |
+
.bi-chat-fill::before { content: "\f24b"; }
|
| 352 |
+
.bi-chat-left-dots-fill::before { content: "\f24c"; }
|
| 353 |
+
.bi-chat-left-dots::before { content: "\f24d"; }
|
| 354 |
+
.bi-chat-left-fill::before { content: "\f24e"; }
|
| 355 |
+
.bi-chat-left-quote-fill::before { content: "\f24f"; }
|
| 356 |
+
.bi-chat-left-quote::before { content: "\f250"; }
|
| 357 |
+
.bi-chat-left-text-fill::before { content: "\f251"; }
|
| 358 |
+
.bi-chat-left-text::before { content: "\f252"; }
|
| 359 |
+
.bi-chat-left::before { content: "\f253"; }
|
| 360 |
+
.bi-chat-quote-fill::before { content: "\f254"; }
|
| 361 |
+
.bi-chat-quote::before { content: "\f255"; }
|
| 362 |
+
.bi-chat-right-dots-fill::before { content: "\f256"; }
|
| 363 |
+
.bi-chat-right-dots::before { content: "\f257"; }
|
| 364 |
+
.bi-chat-right-fill::before { content: "\f258"; }
|
| 365 |
+
.bi-chat-right-quote-fill::before { content: "\f259"; }
|
| 366 |
+
.bi-chat-right-quote::before { content: "\f25a"; }
|
| 367 |
+
.bi-chat-right-text-fill::before { content: "\f25b"; }
|
| 368 |
+
.bi-chat-right-text::before { content: "\f25c"; }
|
| 369 |
+
.bi-chat-right::before { content: "\f25d"; }
|
| 370 |
+
.bi-chat-square-dots-fill::before { content: "\f25e"; }
|
| 371 |
+
.bi-chat-square-dots::before { content: "\f25f"; }
|
| 372 |
+
.bi-chat-square-fill::before { content: "\f260"; }
|
| 373 |
+
.bi-chat-square-quote-fill::before { content: "\f261"; }
|
| 374 |
+
.bi-chat-square-quote::before { content: "\f262"; }
|
| 375 |
+
.bi-chat-square-text-fill::before { content: "\f263"; }
|
| 376 |
+
.bi-chat-square-text::before { content: "\f264"; }
|
| 377 |
+
.bi-chat-square::before { content: "\f265"; }
|
| 378 |
+
.bi-chat-text-fill::before { content: "\f266"; }
|
| 379 |
+
.bi-chat-text::before { content: "\f267"; }
|
| 380 |
+
.bi-chat::before { content: "\f268"; }
|
| 381 |
+
.bi-check-all::before { content: "\f269"; }
|
| 382 |
+
.bi-check-circle-fill::before { content: "\f26a"; }
|
| 383 |
+
.bi-check-circle::before { content: "\f26b"; }
|
| 384 |
+
.bi-check-square-fill::before { content: "\f26c"; }
|
| 385 |
+
.bi-check-square::before { content: "\f26d"; }
|
| 386 |
+
.bi-check::before { content: "\f26e"; }
|
| 387 |
+
.bi-check2-all::before { content: "\f26f"; }
|
| 388 |
+
.bi-check2-circle::before { content: "\f270"; }
|
| 389 |
+
.bi-check2-square::before { content: "\f271"; }
|
| 390 |
+
.bi-check2::before { content: "\f272"; }
|
| 391 |
+
.bi-chevron-bar-contract::before { content: "\f273"; }
|
| 392 |
+
.bi-chevron-bar-down::before { content: "\f274"; }
|
| 393 |
+
.bi-chevron-bar-expand::before { content: "\f275"; }
|
| 394 |
+
.bi-chevron-bar-left::before { content: "\f276"; }
|
| 395 |
+
.bi-chevron-bar-right::before { content: "\f277"; }
|
| 396 |
+
.bi-chevron-bar-up::before { content: "\f278"; }
|
| 397 |
+
.bi-chevron-compact-down::before { content: "\f279"; }
|
| 398 |
+
.bi-chevron-compact-left::before { content: "\f27a"; }
|
| 399 |
+
.bi-chevron-compact-right::before { content: "\f27b"; }
|
| 400 |
+
.bi-chevron-compact-up::before { content: "\f27c"; }
|
| 401 |
+
.bi-chevron-contract::before { content: "\f27d"; }
|
| 402 |
+
.bi-chevron-double-down::before { content: "\f27e"; }
|
| 403 |
+
.bi-chevron-double-left::before { content: "\f27f"; }
|
| 404 |
+
.bi-chevron-double-right::before { content: "\f280"; }
|
| 405 |
+
.bi-chevron-double-up::before { content: "\f281"; }
|
| 406 |
+
.bi-chevron-down::before { content: "\f282"; }
|
| 407 |
+
.bi-chevron-expand::before { content: "\f283"; }
|
| 408 |
+
.bi-chevron-left::before { content: "\f284"; }
|
| 409 |
+
.bi-chevron-right::before { content: "\f285"; }
|
| 410 |
+
.bi-chevron-up::before { content: "\f286"; }
|
| 411 |
+
.bi-circle-fill::before { content: "\f287"; }
|
| 412 |
+
.bi-circle-half::before { content: "\f288"; }
|
| 413 |
+
.bi-circle-square::before { content: "\f289"; }
|
| 414 |
+
.bi-circle::before { content: "\f28a"; }
|
| 415 |
+
.bi-clipboard-check::before { content: "\f28b"; }
|
| 416 |
+
.bi-clipboard-data::before { content: "\f28c"; }
|
| 417 |
+
.bi-clipboard-minus::before { content: "\f28d"; }
|
| 418 |
+
.bi-clipboard-plus::before { content: "\f28e"; }
|
| 419 |
+
.bi-clipboard-x::before { content: "\f28f"; }
|
| 420 |
+
.bi-clipboard::before { content: "\f290"; }
|
| 421 |
+
.bi-clock-fill::before { content: "\f291"; }
|
| 422 |
+
.bi-clock-history::before { content: "\f292"; }
|
| 423 |
+
.bi-clock::before { content: "\f293"; }
|
| 424 |
+
.bi-cloud-arrow-down-fill::before { content: "\f294"; }
|
| 425 |
+
.bi-cloud-arrow-down::before { content: "\f295"; }
|
| 426 |
+
.bi-cloud-arrow-up-fill::before { content: "\f296"; }
|
| 427 |
+
.bi-cloud-arrow-up::before { content: "\f297"; }
|
| 428 |
+
.bi-cloud-check-fill::before { content: "\f298"; }
|
| 429 |
+
.bi-cloud-check::before { content: "\f299"; }
|
| 430 |
+
.bi-cloud-download-fill::before { content: "\f29a"; }
|
| 431 |
+
.bi-cloud-download::before { content: "\f29b"; }
|
| 432 |
+
.bi-cloud-drizzle-fill::before { content: "\f29c"; }
|
| 433 |
+
.bi-cloud-drizzle::before { content: "\f29d"; }
|
| 434 |
+
.bi-cloud-fill::before { content: "\f29e"; }
|
| 435 |
+
.bi-cloud-fog-fill::before { content: "\f29f"; }
|
| 436 |
+
.bi-cloud-fog::before { content: "\f2a0"; }
|
| 437 |
+
.bi-cloud-fog2-fill::before { content: "\f2a1"; }
|
| 438 |
+
.bi-cloud-fog2::before { content: "\f2a2"; }
|
| 439 |
+
.bi-cloud-hail-fill::before { content: "\f2a3"; }
|
| 440 |
+
.bi-cloud-hail::before { content: "\f2a4"; }
|
| 441 |
+
.bi-cloud-haze-1::before { content: "\f2a5"; }
|
| 442 |
+
.bi-cloud-haze-fill::before { content: "\f2a6"; }
|
| 443 |
+
.bi-cloud-haze::before { content: "\f2a7"; }
|
| 444 |
+
.bi-cloud-haze2-fill::before { content: "\f2a8"; }
|
| 445 |
+
.bi-cloud-lightning-fill::before { content: "\f2a9"; }
|
| 446 |
+
.bi-cloud-lightning-rain-fill::before { content: "\f2aa"; }
|
| 447 |
+
.bi-cloud-lightning-rain::before { content: "\f2ab"; }
|
| 448 |
+
.bi-cloud-lightning::before { content: "\f2ac"; }
|
| 449 |
+
.bi-cloud-minus-fill::before { content: "\f2ad"; }
|
| 450 |
+
.bi-cloud-minus::before { content: "\f2ae"; }
|
| 451 |
+
.bi-cloud-moon-fill::before { content: "\f2af"; }
|
| 452 |
+
.bi-cloud-moon::before { content: "\f2b0"; }
|
| 453 |
+
.bi-cloud-plus-fill::before { content: "\f2b1"; }
|
| 454 |
+
.bi-cloud-plus::before { content: "\f2b2"; }
|
| 455 |
+
.bi-cloud-rain-fill::before { content: "\f2b3"; }
|
| 456 |
+
.bi-cloud-rain-heavy-fill::before { content: "\f2b4"; }
|
| 457 |
+
.bi-cloud-rain-heavy::before { content: "\f2b5"; }
|
| 458 |
+
.bi-cloud-rain::before { content: "\f2b6"; }
|
| 459 |
+
.bi-cloud-slash-fill::before { content: "\f2b7"; }
|
| 460 |
+
.bi-cloud-slash::before { content: "\f2b8"; }
|
| 461 |
+
.bi-cloud-sleet-fill::before { content: "\f2b9"; }
|
| 462 |
+
.bi-cloud-sleet::before { content: "\f2ba"; }
|
| 463 |
+
.bi-cloud-snow-fill::before { content: "\f2bb"; }
|
| 464 |
+
.bi-cloud-snow::before { content: "\f2bc"; }
|
| 465 |
+
.bi-cloud-sun-fill::before { content: "\f2bd"; }
|
| 466 |
+
.bi-cloud-sun::before { content: "\f2be"; }
|
| 467 |
+
.bi-cloud-upload-fill::before { content: "\f2bf"; }
|
| 468 |
+
.bi-cloud-upload::before { content: "\f2c0"; }
|
| 469 |
+
.bi-cloud::before { content: "\f2c1"; }
|
| 470 |
+
.bi-clouds-fill::before { content: "\f2c2"; }
|
| 471 |
+
.bi-clouds::before { content: "\f2c3"; }
|
| 472 |
+
.bi-cloudy-fill::before { content: "\f2c4"; }
|
| 473 |
+
.bi-cloudy::before { content: "\f2c5"; }
|
| 474 |
+
.bi-code-slash::before { content: "\f2c6"; }
|
| 475 |
+
.bi-code-square::before { content: "\f2c7"; }
|
| 476 |
+
.bi-code::before { content: "\f2c8"; }
|
| 477 |
+
.bi-collection-fill::before { content: "\f2c9"; }
|
| 478 |
+
.bi-collection-play-fill::before { content: "\f2ca"; }
|
| 479 |
+
.bi-collection-play::before { content: "\f2cb"; }
|
| 480 |
+
.bi-collection::before { content: "\f2cc"; }
|
| 481 |
+
.bi-columns-gap::before { content: "\f2cd"; }
|
| 482 |
+
.bi-columns::before { content: "\f2ce"; }
|
| 483 |
+
.bi-command::before { content: "\f2cf"; }
|
| 484 |
+
.bi-compass-fill::before { content: "\f2d0"; }
|
| 485 |
+
.bi-compass::before { content: "\f2d1"; }
|
| 486 |
+
.bi-cone-striped::before { content: "\f2d2"; }
|
| 487 |
+
.bi-cone::before { content: "\f2d3"; }
|
| 488 |
+
.bi-controller::before { content: "\f2d4"; }
|
| 489 |
+
.bi-cpu-fill::before { content: "\f2d5"; }
|
| 490 |
+
.bi-cpu::before { content: "\f2d6"; }
|
| 491 |
+
.bi-credit-card-2-back-fill::before { content: "\f2d7"; }
|
| 492 |
+
.bi-credit-card-2-back::before { content: "\f2d8"; }
|
| 493 |
+
.bi-credit-card-2-front-fill::before { content: "\f2d9"; }
|
| 494 |
+
.bi-credit-card-2-front::before { content: "\f2da"; }
|
| 495 |
+
.bi-credit-card-fill::before { content: "\f2db"; }
|
| 496 |
+
.bi-credit-card::before { content: "\f2dc"; }
|
| 497 |
+
.bi-crop::before { content: "\f2dd"; }
|
| 498 |
+
.bi-cup-fill::before { content: "\f2de"; }
|
| 499 |
+
.bi-cup-straw::before { content: "\f2df"; }
|
| 500 |
+
.bi-cup::before { content: "\f2e0"; }
|
| 501 |
+
.bi-cursor-fill::before { content: "\f2e1"; }
|
| 502 |
+
.bi-cursor-text::before { content: "\f2e2"; }
|
| 503 |
+
.bi-cursor::before { content: "\f2e3"; }
|
| 504 |
+
.bi-dash-circle-dotted::before { content: "\f2e4"; }
|
| 505 |
+
.bi-dash-circle-fill::before { content: "\f2e5"; }
|
| 506 |
+
.bi-dash-circle::before { content: "\f2e6"; }
|
| 507 |
+
.bi-dash-square-dotted::before { content: "\f2e7"; }
|
| 508 |
+
.bi-dash-square-fill::before { content: "\f2e8"; }
|
| 509 |
+
.bi-dash-square::before { content: "\f2e9"; }
|
| 510 |
+
.bi-dash::before { content: "\f2ea"; }
|
| 511 |
+
.bi-diagram-2-fill::before { content: "\f2eb"; }
|
| 512 |
+
.bi-diagram-2::before { content: "\f2ec"; }
|
| 513 |
+
.bi-diagram-3-fill::before { content: "\f2ed"; }
|
| 514 |
+
.bi-diagram-3::before { content: "\f2ee"; }
|
| 515 |
+
.bi-diamond-fill::before { content: "\f2ef"; }
|
| 516 |
+
.bi-diamond-half::before { content: "\f2f0"; }
|
| 517 |
+
.bi-diamond::before { content: "\f2f1"; }
|
| 518 |
+
.bi-dice-1-fill::before { content: "\f2f2"; }
|
| 519 |
+
.bi-dice-1::before { content: "\f2f3"; }
|
| 520 |
+
.bi-dice-2-fill::before { content: "\f2f4"; }
|
| 521 |
+
.bi-dice-2::before { content: "\f2f5"; }
|
| 522 |
+
.bi-dice-3-fill::before { content: "\f2f6"; }
|
| 523 |
+
.bi-dice-3::before { content: "\f2f7"; }
|
| 524 |
+
.bi-dice-4-fill::before { content: "\f2f8"; }
|
| 525 |
+
.bi-dice-4::before { content: "\f2f9"; }
|
| 526 |
+
.bi-dice-5-fill::before { content: "\f2fa"; }
|
| 527 |
+
.bi-dice-5::before { content: "\f2fb"; }
|
| 528 |
+
.bi-dice-6-fill::before { content: "\f2fc"; }
|
| 529 |
+
.bi-dice-6::before { content: "\f2fd"; }
|
| 530 |
+
.bi-disc-fill::before { content: "\f2fe"; }
|
| 531 |
+
.bi-disc::before { content: "\f2ff"; }
|
| 532 |
+
.bi-discord::before { content: "\f300"; }
|
| 533 |
+
.bi-display-fill::before { content: "\f301"; }
|
| 534 |
+
.bi-display::before { content: "\f302"; }
|
| 535 |
+
.bi-distribute-horizontal::before { content: "\f303"; }
|
| 536 |
+
.bi-distribute-vertical::before { content: "\f304"; }
|
| 537 |
+
.bi-door-closed-fill::before { content: "\f305"; }
|
| 538 |
+
.bi-door-closed::before { content: "\f306"; }
|
| 539 |
+
.bi-door-open-fill::before { content: "\f307"; }
|
| 540 |
+
.bi-door-open::before { content: "\f308"; }
|
| 541 |
+
.bi-dot::before { content: "\f309"; }
|
| 542 |
+
.bi-download::before { content: "\f30a"; }
|
| 543 |
+
.bi-droplet-fill::before { content: "\f30b"; }
|
| 544 |
+
.bi-droplet-half::before { content: "\f30c"; }
|
| 545 |
+
.bi-droplet::before { content: "\f30d"; }
|
| 546 |
+
.bi-earbuds::before { content: "\f30e"; }
|
| 547 |
+
.bi-easel-fill::before { content: "\f30f"; }
|
| 548 |
+
.bi-easel::before { content: "\f310"; }
|
| 549 |
+
.bi-egg-fill::before { content: "\f311"; }
|
| 550 |
+
.bi-egg-fried::before { content: "\f312"; }
|
| 551 |
+
.bi-egg::before { content: "\f313"; }
|
| 552 |
+
.bi-eject-fill::before { content: "\f314"; }
|
| 553 |
+
.bi-eject::before { content: "\f315"; }
|
| 554 |
+
.bi-emoji-angry-fill::before { content: "\f316"; }
|
| 555 |
+
.bi-emoji-angry::before { content: "\f317"; }
|
| 556 |
+
.bi-emoji-dizzy-fill::before { content: "\f318"; }
|
| 557 |
+
.bi-emoji-dizzy::before { content: "\f319"; }
|
| 558 |
+
.bi-emoji-expressionless-fill::before { content: "\f31a"; }
|
| 559 |
+
.bi-emoji-expressionless::before { content: "\f31b"; }
|
| 560 |
+
.bi-emoji-frown-fill::before { content: "\f31c"; }
|
| 561 |
+
.bi-emoji-frown::before { content: "\f31d"; }
|
| 562 |
+
.bi-emoji-heart-eyes-fill::before { content: "\f31e"; }
|
| 563 |
+
.bi-emoji-heart-eyes::before { content: "\f31f"; }
|
| 564 |
+
.bi-emoji-laughing-fill::before { content: "\f320"; }
|
| 565 |
+
.bi-emoji-laughing::before { content: "\f321"; }
|
| 566 |
+
.bi-emoji-neutral-fill::before { content: "\f322"; }
|
| 567 |
+
.bi-emoji-neutral::before { content: "\f323"; }
|
| 568 |
+
.bi-emoji-smile-fill::before { content: "\f324"; }
|
| 569 |
+
.bi-emoji-smile-upside-down-fill::before { content: "\f325"; }
|
| 570 |
+
.bi-emoji-smile-upside-down::before { content: "\f326"; }
|
| 571 |
+
.bi-emoji-smile::before { content: "\f327"; }
|
| 572 |
+
.bi-emoji-sunglasses-fill::before { content: "\f328"; }
|
| 573 |
+
.bi-emoji-sunglasses::before { content: "\f329"; }
|
| 574 |
+
.bi-emoji-wink-fill::before { content: "\f32a"; }
|
| 575 |
+
.bi-emoji-wink::before { content: "\f32b"; }
|
| 576 |
+
.bi-envelope-fill::before { content: "\f32c"; }
|
| 577 |
+
.bi-envelope-open-fill::before { content: "\f32d"; }
|
| 578 |
+
.bi-envelope-open::before { content: "\f32e"; }
|
| 579 |
+
.bi-envelope::before { content: "\f32f"; }
|
| 580 |
+
.bi-eraser-fill::before { content: "\f330"; }
|
| 581 |
+
.bi-eraser::before { content: "\f331"; }
|
| 582 |
+
.bi-exclamation-circle-fill::before { content: "\f332"; }
|
| 583 |
+
.bi-exclamation-circle::before { content: "\f333"; }
|
| 584 |
+
.bi-exclamation-diamond-fill::before { content: "\f334"; }
|
| 585 |
+
.bi-exclamation-diamond::before { content: "\f335"; }
|
| 586 |
+
.bi-exclamation-octagon-fill::before { content: "\f336"; }
|
| 587 |
+
.bi-exclamation-octagon::before { content: "\f337"; }
|
| 588 |
+
.bi-exclamation-square-fill::before { content: "\f338"; }
|
| 589 |
+
.bi-exclamation-square::before { content: "\f339"; }
|
| 590 |
+
.bi-exclamation-triangle-fill::before { content: "\f33a"; }
|
| 591 |
+
.bi-exclamation-triangle::before { content: "\f33b"; }
|
| 592 |
+
.bi-exclamation::before { content: "\f33c"; }
|
| 593 |
+
.bi-exclude::before { content: "\f33d"; }
|
| 594 |
+
.bi-eye-fill::before { content: "\f33e"; }
|
| 595 |
+
.bi-eye-slash-fill::before { content: "\f33f"; }
|
| 596 |
+
.bi-eye-slash::before { content: "\f340"; }
|
| 597 |
+
.bi-eye::before { content: "\f341"; }
|
| 598 |
+
.bi-eyedropper::before { content: "\f342"; }
|
| 599 |
+
.bi-eyeglasses::before { content: "\f343"; }
|
| 600 |
+
.bi-facebook::before { content: "\f344"; }
|
| 601 |
+
.bi-file-arrow-down-fill::before { content: "\f345"; }
|
| 602 |
+
.bi-file-arrow-down::before { content: "\f346"; }
|
| 603 |
+
.bi-file-arrow-up-fill::before { content: "\f347"; }
|
| 604 |
+
.bi-file-arrow-up::before { content: "\f348"; }
|
| 605 |
+
.bi-file-bar-graph-fill::before { content: "\f349"; }
|
| 606 |
+
.bi-file-bar-graph::before { content: "\f34a"; }
|
| 607 |
+
.bi-file-binary-fill::before { content: "\f34b"; }
|
| 608 |
+
.bi-file-binary::before { content: "\f34c"; }
|
| 609 |
+
.bi-file-break-fill::before { content: "\f34d"; }
|
| 610 |
+
.bi-file-break::before { content: "\f34e"; }
|
| 611 |
+
.bi-file-check-fill::before { content: "\f34f"; }
|
| 612 |
+
.bi-file-check::before { content: "\f350"; }
|
| 613 |
+
.bi-file-code-fill::before { content: "\f351"; }
|
| 614 |
+
.bi-file-code::before { content: "\f352"; }
|
| 615 |
+
.bi-file-diff-fill::before { content: "\f353"; }
|
| 616 |
+
.bi-file-diff::before { content: "\f354"; }
|
| 617 |
+
.bi-file-earmark-arrow-down-fill::before { content: "\f355"; }
|
| 618 |
+
.bi-file-earmark-arrow-down::before { content: "\f356"; }
|
| 619 |
+
.bi-file-earmark-arrow-up-fill::before { content: "\f357"; }
|
| 620 |
+
.bi-file-earmark-arrow-up::before { content: "\f358"; }
|
| 621 |
+
.bi-file-earmark-bar-graph-fill::before { content: "\f359"; }
|
| 622 |
+
.bi-file-earmark-bar-graph::before { content: "\f35a"; }
|
| 623 |
+
.bi-file-earmark-binary-fill::before { content: "\f35b"; }
|
| 624 |
+
.bi-file-earmark-binary::before { content: "\f35c"; }
|
| 625 |
+
.bi-file-earmark-break-fill::before { content: "\f35d"; }
|
| 626 |
+
.bi-file-earmark-break::before { content: "\f35e"; }
|
| 627 |
+
.bi-file-earmark-check-fill::before { content: "\f35f"; }
|
| 628 |
+
.bi-file-earmark-check::before { content: "\f360"; }
|
| 629 |
+
.bi-file-earmark-code-fill::before { content: "\f361"; }
|
| 630 |
+
.bi-file-earmark-code::before { content: "\f362"; }
|
| 631 |
+
.bi-file-earmark-diff-fill::before { content: "\f363"; }
|
| 632 |
+
.bi-file-earmark-diff::before { content: "\f364"; }
|
| 633 |
+
.bi-file-earmark-easel-fill::before { content: "\f365"; }
|
| 634 |
+
.bi-file-earmark-easel::before { content: "\f366"; }
|
| 635 |
+
.bi-file-earmark-excel-fill::before { content: "\f367"; }
|
| 636 |
+
.bi-file-earmark-excel::before { content: "\f368"; }
|
| 637 |
+
.bi-file-earmark-fill::before { content: "\f369"; }
|
| 638 |
+
.bi-file-earmark-font-fill::before { content: "\f36a"; }
|
| 639 |
+
.bi-file-earmark-font::before { content: "\f36b"; }
|
| 640 |
+
.bi-file-earmark-image-fill::before { content: "\f36c"; }
|
| 641 |
+
.bi-file-earmark-image::before { content: "\f36d"; }
|
| 642 |
+
.bi-file-earmark-lock-fill::before { content: "\f36e"; }
|
| 643 |
+
.bi-file-earmark-lock::before { content: "\f36f"; }
|
| 644 |
+
.bi-file-earmark-lock2-fill::before { content: "\f370"; }
|
| 645 |
+
.bi-file-earmark-lock2::before { content: "\f371"; }
|
| 646 |
+
.bi-file-earmark-medical-fill::before { content: "\f372"; }
|
| 647 |
+
.bi-file-earmark-medical::before { content: "\f373"; }
|
| 648 |
+
.bi-file-earmark-minus-fill::before { content: "\f374"; }
|
| 649 |
+
.bi-file-earmark-minus::before { content: "\f375"; }
|
| 650 |
+
.bi-file-earmark-music-fill::before { content: "\f376"; }
|
| 651 |
+
.bi-file-earmark-music::before { content: "\f377"; }
|
| 652 |
+
.bi-file-earmark-person-fill::before { content: "\f378"; }
|
| 653 |
+
.bi-file-earmark-person::before { content: "\f379"; }
|
| 654 |
+
.bi-file-earmark-play-fill::before { content: "\f37a"; }
|
| 655 |
+
.bi-file-earmark-play::before { content: "\f37b"; }
|
| 656 |
+
.bi-file-earmark-plus-fill::before { content: "\f37c"; }
|
| 657 |
+
.bi-file-earmark-plus::before { content: "\f37d"; }
|
| 658 |
+
.bi-file-earmark-post-fill::before { content: "\f37e"; }
|
| 659 |
+
.bi-file-earmark-post::before { content: "\f37f"; }
|
| 660 |
+
.bi-file-earmark-ppt-fill::before { content: "\f380"; }
|
| 661 |
+
.bi-file-earmark-ppt::before { content: "\f381"; }
|
| 662 |
+
.bi-file-earmark-richtext-fill::before { content: "\f382"; }
|
| 663 |
+
.bi-file-earmark-richtext::before { content: "\f383"; }
|
| 664 |
+
.bi-file-earmark-ruled-fill::before { content: "\f384"; }
|
| 665 |
+
.bi-file-earmark-ruled::before { content: "\f385"; }
|
| 666 |
+
.bi-file-earmark-slides-fill::before { content: "\f386"; }
|
| 667 |
+
.bi-file-earmark-slides::before { content: "\f387"; }
|
| 668 |
+
.bi-file-earmark-spreadsheet-fill::before { content: "\f388"; }
|
| 669 |
+
.bi-file-earmark-spreadsheet::before { content: "\f389"; }
|
| 670 |
+
.bi-file-earmark-text-fill::before { content: "\f38a"; }
|
| 671 |
+
.bi-file-earmark-text::before { content: "\f38b"; }
|
| 672 |
+
.bi-file-earmark-word-fill::before { content: "\f38c"; }
|
| 673 |
+
.bi-file-earmark-word::before { content: "\f38d"; }
|
| 674 |
+
.bi-file-earmark-x-fill::before { content: "\f38e"; }
|
| 675 |
+
.bi-file-earmark-x::before { content: "\f38f"; }
|
| 676 |
+
.bi-file-earmark-zip-fill::before { content: "\f390"; }
|
| 677 |
+
.bi-file-earmark-zip::before { content: "\f391"; }
|
| 678 |
+
.bi-file-earmark::before { content: "\f392"; }
|
| 679 |
+
.bi-file-easel-fill::before { content: "\f393"; }
|
| 680 |
+
.bi-file-easel::before { content: "\f394"; }
|
| 681 |
+
.bi-file-excel-fill::before { content: "\f395"; }
|
| 682 |
+
.bi-file-excel::before { content: "\f396"; }
|
| 683 |
+
.bi-file-fill::before { content: "\f397"; }
|
| 684 |
+
.bi-file-font-fill::before { content: "\f398"; }
|
| 685 |
+
.bi-file-font::before { content: "\f399"; }
|
| 686 |
+
.bi-file-image-fill::before { content: "\f39a"; }
|
| 687 |
+
.bi-file-image::before { content: "\f39b"; }
|
| 688 |
+
.bi-file-lock-fill::before { content: "\f39c"; }
|
| 689 |
+
.bi-file-lock::before { content: "\f39d"; }
|
| 690 |
+
.bi-file-lock2-fill::before { content: "\f39e"; }
|
| 691 |
+
.bi-file-lock2::before { content: "\f39f"; }
|
| 692 |
+
.bi-file-medical-fill::before { content: "\f3a0"; }
|
| 693 |
+
.bi-file-medical::before { content: "\f3a1"; }
|
| 694 |
+
.bi-file-minus-fill::before { content: "\f3a2"; }
|
| 695 |
+
.bi-file-minus::before { content: "\f3a3"; }
|
| 696 |
+
.bi-file-music-fill::before { content: "\f3a4"; }
|
| 697 |
+
.bi-file-music::before { content: "\f3a5"; }
|
| 698 |
+
.bi-file-person-fill::before { content: "\f3a6"; }
|
| 699 |
+
.bi-file-person::before { content: "\f3a7"; }
|
| 700 |
+
.bi-file-play-fill::before { content: "\f3a8"; }
|
| 701 |
+
.bi-file-play::before { content: "\f3a9"; }
|
| 702 |
+
.bi-file-plus-fill::before { content: "\f3aa"; }
|
| 703 |
+
.bi-file-plus::before { content: "\f3ab"; }
|
| 704 |
+
.bi-file-post-fill::before { content: "\f3ac"; }
|
| 705 |
+
.bi-file-post::before { content: "\f3ad"; }
|
| 706 |
+
.bi-file-ppt-fill::before { content: "\f3ae"; }
|
| 707 |
+
.bi-file-ppt::before { content: "\f3af"; }
|
| 708 |
+
.bi-file-richtext-fill::before { content: "\f3b0"; }
|
| 709 |
+
.bi-file-richtext::before { content: "\f3b1"; }
|
| 710 |
+
.bi-file-ruled-fill::before { content: "\f3b2"; }
|
| 711 |
+
.bi-file-ruled::before { content: "\f3b3"; }
|
| 712 |
+
.bi-file-slides-fill::before { content: "\f3b4"; }
|
| 713 |
+
.bi-file-slides::before { content: "\f3b5"; }
|
| 714 |
+
.bi-file-spreadsheet-fill::before { content: "\f3b6"; }
|
| 715 |
+
.bi-file-spreadsheet::before { content: "\f3b7"; }
|
| 716 |
+
.bi-file-text-fill::before { content: "\f3b8"; }
|
| 717 |
+
.bi-file-text::before { content: "\f3b9"; }
|
| 718 |
+
.bi-file-word-fill::before { content: "\f3ba"; }
|
| 719 |
+
.bi-file-word::before { content: "\f3bb"; }
|
| 720 |
+
.bi-file-x-fill::before { content: "\f3bc"; }
|
| 721 |
+
.bi-file-x::before { content: "\f3bd"; }
|
| 722 |
+
.bi-file-zip-fill::before { content: "\f3be"; }
|
| 723 |
+
.bi-file-zip::before { content: "\f3bf"; }
|
| 724 |
+
.bi-file::before { content: "\f3c0"; }
|
| 725 |
+
.bi-files-alt::before { content: "\f3c1"; }
|
| 726 |
+
.bi-files::before { content: "\f3c2"; }
|
| 727 |
+
.bi-film::before { content: "\f3c3"; }
|
| 728 |
+
.bi-filter-circle-fill::before { content: "\f3c4"; }
|
| 729 |
+
.bi-filter-circle::before { content: "\f3c5"; }
|
| 730 |
+
.bi-filter-left::before { content: "\f3c6"; }
|
| 731 |
+
.bi-filter-right::before { content: "\f3c7"; }
|
| 732 |
+
.bi-filter-square-fill::before { content: "\f3c8"; }
|
| 733 |
+
.bi-filter-square::before { content: "\f3c9"; }
|
| 734 |
+
.bi-filter::before { content: "\f3ca"; }
|
| 735 |
+
.bi-flag-fill::before { content: "\f3cb"; }
|
| 736 |
+
.bi-flag::before { content: "\f3cc"; }
|
| 737 |
+
.bi-flower1::before { content: "\f3cd"; }
|
| 738 |
+
.bi-flower2::before { content: "\f3ce"; }
|
| 739 |
+
.bi-flower3::before { content: "\f3cf"; }
|
| 740 |
+
.bi-folder-check::before { content: "\f3d0"; }
|
| 741 |
+
.bi-folder-fill::before { content: "\f3d1"; }
|
| 742 |
+
.bi-folder-minus::before { content: "\f3d2"; }
|
| 743 |
+
.bi-folder-plus::before { content: "\f3d3"; }
|
| 744 |
+
.bi-folder-symlink-fill::before { content: "\f3d4"; }
|
| 745 |
+
.bi-folder-symlink::before { content: "\f3d5"; }
|
| 746 |
+
.bi-folder-x::before { content: "\f3d6"; }
|
| 747 |
+
.bi-folder::before { content: "\f3d7"; }
|
| 748 |
+
.bi-folder2-open::before { content: "\f3d8"; }
|
| 749 |
+
.bi-folder2::before { content: "\f3d9"; }
|
| 750 |
+
.bi-fonts::before { content: "\f3da"; }
|
| 751 |
+
.bi-forward-fill::before { content: "\f3db"; }
|
| 752 |
+
.bi-forward::before { content: "\f3dc"; }
|
| 753 |
+
.bi-front::before { content: "\f3dd"; }
|
| 754 |
+
.bi-fullscreen-exit::before { content: "\f3de"; }
|
| 755 |
+
.bi-fullscreen::before { content: "\f3df"; }
|
| 756 |
+
.bi-funnel-fill::before { content: "\f3e0"; }
|
| 757 |
+
.bi-funnel::before { content: "\f3e1"; }
|
| 758 |
+
.bi-gear-fill::before { content: "\f3e2"; }
|
| 759 |
+
.bi-gear-wide-connected::before { content: "\f3e3"; }
|
| 760 |
+
.bi-gear-wide::before { content: "\f3e4"; }
|
| 761 |
+
.bi-gear::before { content: "\f3e5"; }
|
| 762 |
+
.bi-gem::before { content: "\f3e6"; }
|
| 763 |
+
.bi-geo-alt-fill::before { content: "\f3e7"; }
|
| 764 |
+
.bi-geo-alt::before { content: "\f3e8"; }
|
| 765 |
+
.bi-geo-fill::before { content: "\f3e9"; }
|
| 766 |
+
.bi-geo::before { content: "\f3ea"; }
|
| 767 |
+
.bi-gift-fill::before { content: "\f3eb"; }
|
| 768 |
+
.bi-gift::before { content: "\f3ec"; }
|
| 769 |
+
.bi-github::before { content: "\f3ed"; }
|
| 770 |
+
.bi-globe::before { content: "\f3ee"; }
|
| 771 |
+
.bi-globe2::before { content: "\f3ef"; }
|
| 772 |
+
.bi-google::before { content: "\f3f0"; }
|
| 773 |
+
.bi-graph-down::before { content: "\f3f1"; }
|
| 774 |
+
.bi-graph-up::before { content: "\f3f2"; }
|
| 775 |
+
.bi-grid-1x2-fill::before { content: "\f3f3"; }
|
| 776 |
+
.bi-grid-1x2::before { content: "\f3f4"; }
|
| 777 |
+
.bi-grid-3x2-gap-fill::before { content: "\f3f5"; }
|
| 778 |
+
.bi-grid-3x2-gap::before { content: "\f3f6"; }
|
| 779 |
+
.bi-grid-3x2::before { content: "\f3f7"; }
|
| 780 |
+
.bi-grid-3x3-gap-fill::before { content: "\f3f8"; }
|
| 781 |
+
.bi-grid-3x3-gap::before { content: "\f3f9"; }
|
| 782 |
+
.bi-grid-3x3::before { content: "\f3fa"; }
|
| 783 |
+
.bi-grid-fill::before { content: "\f3fb"; }
|
| 784 |
+
.bi-grid::before { content: "\f3fc"; }
|
| 785 |
+
.bi-grip-horizontal::before { content: "\f3fd"; }
|
| 786 |
+
.bi-grip-vertical::before { content: "\f3fe"; }
|
| 787 |
+
.bi-hammer::before { content: "\f3ff"; }
|
| 788 |
+
.bi-hand-index-fill::before { content: "\f400"; }
|
| 789 |
+
.bi-hand-index-thumb-fill::before { content: "\f401"; }
|
| 790 |
+
.bi-hand-index-thumb::before { content: "\f402"; }
|
| 791 |
+
.bi-hand-index::before { content: "\f403"; }
|
| 792 |
+
.bi-hand-thumbs-down-fill::before { content: "\f404"; }
|
| 793 |
+
.bi-hand-thumbs-down::before { content: "\f405"; }
|
| 794 |
+
.bi-hand-thumbs-up-fill::before { content: "\f406"; }
|
| 795 |
+
.bi-hand-thumbs-up::before { content: "\f407"; }
|
| 796 |
+
.bi-handbag-fill::before { content: "\f408"; }
|
| 797 |
+
.bi-handbag::before { content: "\f409"; }
|
| 798 |
+
.bi-hash::before { content: "\f40a"; }
|
| 799 |
+
.bi-hdd-fill::before { content: "\f40b"; }
|
| 800 |
+
.bi-hdd-network-fill::before { content: "\f40c"; }
|
| 801 |
+
.bi-hdd-network::before { content: "\f40d"; }
|
| 802 |
+
.bi-hdd-rack-fill::before { content: "\f40e"; }
|
| 803 |
+
.bi-hdd-rack::before { content: "\f40f"; }
|
| 804 |
+
.bi-hdd-stack-fill::before { content: "\f410"; }
|
| 805 |
+
.bi-hdd-stack::before { content: "\f411"; }
|
| 806 |
+
.bi-hdd::before { content: "\f412"; }
|
| 807 |
+
.bi-headphones::before { content: "\f413"; }
|
| 808 |
+
.bi-headset::before { content: "\f414"; }
|
| 809 |
+
.bi-heart-fill::before { content: "\f415"; }
|
| 810 |
+
.bi-heart-half::before { content: "\f416"; }
|
| 811 |
+
.bi-heart::before { content: "\f417"; }
|
| 812 |
+
.bi-heptagon-fill::before { content: "\f418"; }
|
| 813 |
+
.bi-heptagon-half::before { content: "\f419"; }
|
| 814 |
+
.bi-heptagon::before { content: "\f41a"; }
|
| 815 |
+
.bi-hexagon-fill::before { content: "\f41b"; }
|
| 816 |
+
.bi-hexagon-half::before { content: "\f41c"; }
|
| 817 |
+
.bi-hexagon::before { content: "\f41d"; }
|
| 818 |
+
.bi-hourglass-bottom::before { content: "\f41e"; }
|
| 819 |
+
.bi-hourglass-split::before { content: "\f41f"; }
|
| 820 |
+
.bi-hourglass-top::before { content: "\f420"; }
|
| 821 |
+
.bi-hourglass::before { content: "\f421"; }
|
| 822 |
+
.bi-house-door-fill::before { content: "\f422"; }
|
| 823 |
+
.bi-house-door::before { content: "\f423"; }
|
| 824 |
+
.bi-house-fill::before { content: "\f424"; }
|
| 825 |
+
.bi-house::before { content: "\f425"; }
|
| 826 |
+
.bi-hr::before { content: "\f426"; }
|
| 827 |
+
.bi-hurricane::before { content: "\f427"; }
|
| 828 |
+
.bi-image-alt::before { content: "\f428"; }
|
| 829 |
+
.bi-image-fill::before { content: "\f429"; }
|
| 830 |
+
.bi-image::before { content: "\f42a"; }
|
| 831 |
+
.bi-images::before { content: "\f42b"; }
|
| 832 |
+
.bi-inbox-fill::before { content: "\f42c"; }
|
| 833 |
+
.bi-inbox::before { content: "\f42d"; }
|
| 834 |
+
.bi-inboxes-fill::before { content: "\f42e"; }
|
| 835 |
+
.bi-inboxes::before { content: "\f42f"; }
|
| 836 |
+
.bi-info-circle-fill::before { content: "\f430"; }
|
| 837 |
+
.bi-info-circle::before { content: "\f431"; }
|
| 838 |
+
.bi-info-square-fill::before { content: "\f432"; }
|
| 839 |
+
.bi-info-square::before { content: "\f433"; }
|
| 840 |
+
.bi-info::before { content: "\f434"; }
|
| 841 |
+
.bi-input-cursor-text::before { content: "\f435"; }
|
| 842 |
+
.bi-input-cursor::before { content: "\f436"; }
|
| 843 |
+
.bi-instagram::before { content: "\f437"; }
|
| 844 |
+
.bi-intersect::before { content: "\f438"; }
|
| 845 |
+
.bi-journal-album::before { content: "\f439"; }
|
| 846 |
+
.bi-journal-arrow-down::before { content: "\f43a"; }
|
| 847 |
+
.bi-journal-arrow-up::before { content: "\f43b"; }
|
| 848 |
+
.bi-journal-bookmark-fill::before { content: "\f43c"; }
|
| 849 |
+
.bi-journal-bookmark::before { content: "\f43d"; }
|
| 850 |
+
.bi-journal-check::before { content: "\f43e"; }
|
| 851 |
+
.bi-journal-code::before { content: "\f43f"; }
|
| 852 |
+
.bi-journal-medical::before { content: "\f440"; }
|
| 853 |
+
.bi-journal-minus::before { content: "\f441"; }
|
| 854 |
+
.bi-journal-plus::before { content: "\f442"; }
|
| 855 |
+
.bi-journal-richtext::before { content: "\f443"; }
|
| 856 |
+
.bi-journal-text::before { content: "\f444"; }
|
| 857 |
+
.bi-journal-x::before { content: "\f445"; }
|
| 858 |
+
.bi-journal::before { content: "\f446"; }
|
| 859 |
+
.bi-journals::before { content: "\f447"; }
|
| 860 |
+
.bi-joystick::before { content: "\f448"; }
|
| 861 |
+
.bi-justify-left::before { content: "\f449"; }
|
| 862 |
+
.bi-justify-right::before { content: "\f44a"; }
|
| 863 |
+
.bi-justify::before { content: "\f44b"; }
|
| 864 |
+
.bi-kanban-fill::before { content: "\f44c"; }
|
| 865 |
+
.bi-kanban::before { content: "\f44d"; }
|
| 866 |
+
.bi-key-fill::before { content: "\f44e"; }
|
| 867 |
+
.bi-key::before { content: "\f44f"; }
|
| 868 |
+
.bi-keyboard-fill::before { content: "\f450"; }
|
| 869 |
+
.bi-keyboard::before { content: "\f451"; }
|
| 870 |
+
.bi-ladder::before { content: "\f452"; }
|
| 871 |
+
.bi-lamp-fill::before { content: "\f453"; }
|
| 872 |
+
.bi-lamp::before { content: "\f454"; }
|
| 873 |
+
.bi-laptop-fill::before { content: "\f455"; }
|
| 874 |
+
.bi-laptop::before { content: "\f456"; }
|
| 875 |
+
.bi-layer-backward::before { content: "\f457"; }
|
| 876 |
+
.bi-layer-forward::before { content: "\f458"; }
|
| 877 |
+
.bi-layers-fill::before { content: "\f459"; }
|
| 878 |
+
.bi-layers-half::before { content: "\f45a"; }
|
| 879 |
+
.bi-layers::before { content: "\f45b"; }
|
| 880 |
+
.bi-layout-sidebar-inset-reverse::before { content: "\f45c"; }
|
| 881 |
+
.bi-layout-sidebar-inset::before { content: "\f45d"; }
|
| 882 |
+
.bi-layout-sidebar-reverse::before { content: "\f45e"; }
|
| 883 |
+
.bi-layout-sidebar::before { content: "\f45f"; }
|
| 884 |
+
.bi-layout-split::before { content: "\f460"; }
|
| 885 |
+
.bi-layout-text-sidebar-reverse::before { content: "\f461"; }
|
| 886 |
+
.bi-layout-text-sidebar::before { content: "\f462"; }
|
| 887 |
+
.bi-layout-text-window-reverse::before { content: "\f463"; }
|
| 888 |
+
.bi-layout-text-window::before { content: "\f464"; }
|
| 889 |
+
.bi-layout-three-columns::before { content: "\f465"; }
|
| 890 |
+
.bi-layout-wtf::before { content: "\f466"; }
|
| 891 |
+
.bi-life-preserver::before { content: "\f467"; }
|
| 892 |
+
.bi-lightbulb-fill::before { content: "\f468"; }
|
| 893 |
+
.bi-lightbulb-off-fill::before { content: "\f469"; }
|
| 894 |
+
.bi-lightbulb-off::before { content: "\f46a"; }
|
| 895 |
+
.bi-lightbulb::before { content: "\f46b"; }
|
| 896 |
+
.bi-lightning-charge-fill::before { content: "\f46c"; }
|
| 897 |
+
.bi-lightning-charge::before { content: "\f46d"; }
|
| 898 |
+
.bi-lightning-fill::before { content: "\f46e"; }
|
| 899 |
+
.bi-lightning::before { content: "\f46f"; }
|
| 900 |
+
.bi-link-45deg::before { content: "\f470"; }
|
| 901 |
+
.bi-link::before { content: "\f471"; }
|
| 902 |
+
.bi-linkedin::before { content: "\f472"; }
|
| 903 |
+
.bi-list-check::before { content: "\f473"; }
|
| 904 |
+
.bi-list-nested::before { content: "\f474"; }
|
| 905 |
+
.bi-list-ol::before { content: "\f475"; }
|
| 906 |
+
.bi-list-stars::before { content: "\f476"; }
|
| 907 |
+
.bi-list-task::before { content: "\f477"; }
|
| 908 |
+
.bi-list-ul::before { content: "\f478"; }
|
| 909 |
+
.bi-list::before { content: "\f479"; }
|
| 910 |
+
.bi-lock-fill::before { content: "\f47a"; }
|
| 911 |
+
.bi-lock::before { content: "\f47b"; }
|
| 912 |
+
.bi-mailbox::before { content: "\f47c"; }
|
| 913 |
+
.bi-mailbox2::before { content: "\f47d"; }
|
| 914 |
+
.bi-map-fill::before { content: "\f47e"; }
|
| 915 |
+
.bi-map::before { content: "\f47f"; }
|
| 916 |
+
.bi-markdown-fill::before { content: "\f480"; }
|
| 917 |
+
.bi-markdown::before { content: "\f481"; }
|
| 918 |
+
.bi-mask::before { content: "\f482"; }
|
| 919 |
+
.bi-megaphone-fill::before { content: "\f483"; }
|
| 920 |
+
.bi-megaphone::before { content: "\f484"; }
|
| 921 |
+
.bi-menu-app-fill::before { content: "\f485"; }
|
| 922 |
+
.bi-menu-app::before { content: "\f486"; }
|
| 923 |
+
.bi-menu-button-fill::before { content: "\f487"; }
|
| 924 |
+
.bi-menu-button-wide-fill::before { content: "\f488"; }
|
| 925 |
+
.bi-menu-button-wide::before { content: "\f489"; }
|
| 926 |
+
.bi-menu-button::before { content: "\f48a"; }
|
| 927 |
+
.bi-menu-down::before { content: "\f48b"; }
|
| 928 |
+
.bi-menu-up::before { content: "\f48c"; }
|
| 929 |
+
.bi-mic-fill::before { content: "\f48d"; }
|
| 930 |
+
.bi-mic-mute-fill::before { content: "\f48e"; }
|
| 931 |
+
.bi-mic-mute::before { content: "\f48f"; }
|
| 932 |
+
.bi-mic::before { content: "\f490"; }
|
| 933 |
+
.bi-minecart-loaded::before { content: "\f491"; }
|
| 934 |
+
.bi-minecart::before { content: "\f492"; }
|
| 935 |
+
.bi-moisture::before { content: "\f493"; }
|
| 936 |
+
.bi-moon-fill::before { content: "\f494"; }
|
| 937 |
+
.bi-moon-stars-fill::before { content: "\f495"; }
|
| 938 |
+
.bi-moon-stars::before { content: "\f496"; }
|
| 939 |
+
.bi-moon::before { content: "\f497"; }
|
| 940 |
+
.bi-mouse-fill::before { content: "\f498"; }
|
| 941 |
+
.bi-mouse::before { content: "\f499"; }
|
| 942 |
+
.bi-mouse2-fill::before { content: "\f49a"; }
|
| 943 |
+
.bi-mouse2::before { content: "\f49b"; }
|
| 944 |
+
.bi-mouse3-fill::before { content: "\f49c"; }
|
| 945 |
+
.bi-mouse3::before { content: "\f49d"; }
|
| 946 |
+
.bi-music-note-beamed::before { content: "\f49e"; }
|
| 947 |
+
.bi-music-note-list::before { content: "\f49f"; }
|
| 948 |
+
.bi-music-note::before { content: "\f4a0"; }
|
| 949 |
+
.bi-music-player-fill::before { content: "\f4a1"; }
|
| 950 |
+
.bi-music-player::before { content: "\f4a2"; }
|
| 951 |
+
.bi-newspaper::before { content: "\f4a3"; }
|
| 952 |
+
.bi-node-minus-fill::before { content: "\f4a4"; }
|
| 953 |
+
.bi-node-minus::before { content: "\f4a5"; }
|
| 954 |
+
.bi-node-plus-fill::before { content: "\f4a6"; }
|
| 955 |
+
.bi-node-plus::before { content: "\f4a7"; }
|
| 956 |
+
.bi-nut-fill::before { content: "\f4a8"; }
|
| 957 |
+
.bi-nut::before { content: "\f4a9"; }
|
| 958 |
+
.bi-octagon-fill::before { content: "\f4aa"; }
|
| 959 |
+
.bi-octagon-half::before { content: "\f4ab"; }
|
| 960 |
+
.bi-octagon::before { content: "\f4ac"; }
|
| 961 |
+
.bi-option::before { content: "\f4ad"; }
|
| 962 |
+
.bi-outlet::before { content: "\f4ae"; }
|
| 963 |
+
.bi-paint-bucket::before { content: "\f4af"; }
|
| 964 |
+
.bi-palette-fill::before { content: "\f4b0"; }
|
| 965 |
+
.bi-palette::before { content: "\f4b1"; }
|
| 966 |
+
.bi-palette2::before { content: "\f4b2"; }
|
| 967 |
+
.bi-paperclip::before { content: "\f4b3"; }
|
| 968 |
+
.bi-paragraph::before { content: "\f4b4"; }
|
| 969 |
+
.bi-patch-check-fill::before { content: "\f4b5"; }
|
| 970 |
+
.bi-patch-check::before { content: "\f4b6"; }
|
| 971 |
+
.bi-patch-exclamation-fill::before { content: "\f4b7"; }
|
| 972 |
+
.bi-patch-exclamation::before { content: "\f4b8"; }
|
| 973 |
+
.bi-patch-minus-fill::before { content: "\f4b9"; }
|
| 974 |
+
.bi-patch-minus::before { content: "\f4ba"; }
|
| 975 |
+
.bi-patch-plus-fill::before { content: "\f4bb"; }
|
| 976 |
+
.bi-patch-plus::before { content: "\f4bc"; }
|
| 977 |
+
.bi-patch-question-fill::before { content: "\f4bd"; }
|
| 978 |
+
.bi-patch-question::before { content: "\f4be"; }
|
| 979 |
+
.bi-pause-btn-fill::before { content: "\f4bf"; }
|
| 980 |
+
.bi-pause-btn::before { content: "\f4c0"; }
|
| 981 |
+
.bi-pause-circle-fill::before { content: "\f4c1"; }
|
| 982 |
+
.bi-pause-circle::before { content: "\f4c2"; }
|
| 983 |
+
.bi-pause-fill::before { content: "\f4c3"; }
|
| 984 |
+
.bi-pause::before { content: "\f4c4"; }
|
| 985 |
+
.bi-peace-fill::before { content: "\f4c5"; }
|
| 986 |
+
.bi-peace::before { content: "\f4c6"; }
|
| 987 |
+
.bi-pen-fill::before { content: "\f4c7"; }
|
| 988 |
+
.bi-pen::before { content: "\f4c8"; }
|
| 989 |
+
.bi-pencil-fill::before { content: "\f4c9"; }
|
| 990 |
+
.bi-pencil-square::before { content: "\f4ca"; }
|
| 991 |
+
.bi-pencil::before { content: "\f4cb"; }
|
| 992 |
+
.bi-pentagon-fill::before { content: "\f4cc"; }
|
| 993 |
+
.bi-pentagon-half::before { content: "\f4cd"; }
|
| 994 |
+
.bi-pentagon::before { content: "\f4ce"; }
|
| 995 |
+
.bi-people-fill::before { content: "\f4cf"; }
|
| 996 |
+
.bi-people::before { content: "\f4d0"; }
|
| 997 |
+
.bi-percent::before { content: "\f4d1"; }
|
| 998 |
+
.bi-person-badge-fill::before { content: "\f4d2"; }
|
| 999 |
+
.bi-person-badge::before { content: "\f4d3"; }
|
| 1000 |
+
.bi-person-bounding-box::before { content: "\f4d4"; }
|
| 1001 |
+
.bi-person-check-fill::before { content: "\f4d5"; }
|
| 1002 |
+
.bi-person-check::before { content: "\f4d6"; }
|
| 1003 |
+
.bi-person-circle::before { content: "\f4d7"; }
|
| 1004 |
+
.bi-person-dash-fill::before { content: "\f4d8"; }
|
| 1005 |
+
.bi-person-dash::before { content: "\f4d9"; }
|
| 1006 |
+
.bi-person-fill::before { content: "\f4da"; }
|
| 1007 |
+
.bi-person-lines-fill::before { content: "\f4db"; }
|
| 1008 |
+
.bi-person-plus-fill::before { content: "\f4dc"; }
|
| 1009 |
+
.bi-person-plus::before { content: "\f4dd"; }
|
| 1010 |
+
.bi-person-square::before { content: "\f4de"; }
|
| 1011 |
+
.bi-person-x-fill::before { content: "\f4df"; }
|
| 1012 |
+
.bi-person-x::before { content: "\f4e0"; }
|
| 1013 |
+
.bi-person::before { content: "\f4e1"; }
|
| 1014 |
+
.bi-phone-fill::before { content: "\f4e2"; }
|
| 1015 |
+
.bi-phone-landscape-fill::before { content: "\f4e3"; }
|
| 1016 |
+
.bi-phone-landscape::before { content: "\f4e4"; }
|
| 1017 |
+
.bi-phone-vibrate-fill::before { content: "\f4e5"; }
|
| 1018 |
+
.bi-phone-vibrate::before { content: "\f4e6"; }
|
| 1019 |
+
.bi-phone::before { content: "\f4e7"; }
|
| 1020 |
+
.bi-pie-chart-fill::before { content: "\f4e8"; }
|
| 1021 |
+
.bi-pie-chart::before { content: "\f4e9"; }
|
| 1022 |
+
.bi-pin-angle-fill::before { content: "\f4ea"; }
|
| 1023 |
+
.bi-pin-angle::before { content: "\f4eb"; }
|
| 1024 |
+
.bi-pin-fill::before { content: "\f4ec"; }
|
| 1025 |
+
.bi-pin::before { content: "\f4ed"; }
|
| 1026 |
+
.bi-pip-fill::before { content: "\f4ee"; }
|
| 1027 |
+
.bi-pip::before { content: "\f4ef"; }
|
| 1028 |
+
.bi-play-btn-fill::before { content: "\f4f0"; }
|
| 1029 |
+
.bi-play-btn::before { content: "\f4f1"; }
|
| 1030 |
+
.bi-play-circle-fill::before { content: "\f4f2"; }
|
| 1031 |
+
.bi-play-circle::before { content: "\f4f3"; }
|
| 1032 |
+
.bi-play-fill::before { content: "\f4f4"; }
|
| 1033 |
+
.bi-play::before { content: "\f4f5"; }
|
| 1034 |
+
.bi-plug-fill::before { content: "\f4f6"; }
|
| 1035 |
+
.bi-plug::before { content: "\f4f7"; }
|
| 1036 |
+
.bi-plus-circle-dotted::before { content: "\f4f8"; }
|
| 1037 |
+
.bi-plus-circle-fill::before { content: "\f4f9"; }
|
| 1038 |
+
.bi-plus-circle::before { content: "\f4fa"; }
|
| 1039 |
+
.bi-plus-square-dotted::before { content: "\f4fb"; }
|
| 1040 |
+
.bi-plus-square-fill::before { content: "\f4fc"; }
|
| 1041 |
+
.bi-plus-square::before { content: "\f4fd"; }
|
| 1042 |
+
.bi-plus::before { content: "\f4fe"; }
|
| 1043 |
+
.bi-power::before { content: "\f4ff"; }
|
| 1044 |
+
.bi-printer-fill::before { content: "\f500"; }
|
| 1045 |
+
.bi-printer::before { content: "\f501"; }
|
| 1046 |
+
.bi-puzzle-fill::before { content: "\f502"; }
|
| 1047 |
+
.bi-puzzle::before { content: "\f503"; }
|
| 1048 |
+
.bi-question-circle-fill::before { content: "\f504"; }
|
| 1049 |
+
.bi-question-circle::before { content: "\f505"; }
|
| 1050 |
+
.bi-question-diamond-fill::before { content: "\f506"; }
|
| 1051 |
+
.bi-question-diamond::before { content: "\f507"; }
|
| 1052 |
+
.bi-question-octagon-fill::before { content: "\f508"; }
|
| 1053 |
+
.bi-question-octagon::before { content: "\f509"; }
|
| 1054 |
+
.bi-question-square-fill::before { content: "\f50a"; }
|
| 1055 |
+
.bi-question-square::before { content: "\f50b"; }
|
| 1056 |
+
.bi-question::before { content: "\f50c"; }
|
| 1057 |
+
.bi-rainbow::before { content: "\f50d"; }
|
| 1058 |
+
.bi-receipt-cutoff::before { content: "\f50e"; }
|
| 1059 |
+
.bi-receipt::before { content: "\f50f"; }
|
| 1060 |
+
.bi-reception-0::before { content: "\f510"; }
|
| 1061 |
+
.bi-reception-1::before { content: "\f511"; }
|
| 1062 |
+
.bi-reception-2::before { content: "\f512"; }
|
| 1063 |
+
.bi-reception-3::before { content: "\f513"; }
|
| 1064 |
+
.bi-reception-4::before { content: "\f514"; }
|
| 1065 |
+
.bi-record-btn-fill::before { content: "\f515"; }
|
| 1066 |
+
.bi-record-btn::before { content: "\f516"; }
|
| 1067 |
+
.bi-record-circle-fill::before { content: "\f517"; }
|
| 1068 |
+
.bi-record-circle::before { content: "\f518"; }
|
| 1069 |
+
.bi-record-fill::before { content: "\f519"; }
|
| 1070 |
+
.bi-record::before { content: "\f51a"; }
|
| 1071 |
+
.bi-record2-fill::before { content: "\f51b"; }
|
| 1072 |
+
.bi-record2::before { content: "\f51c"; }
|
| 1073 |
+
.bi-reply-all-fill::before { content: "\f51d"; }
|
| 1074 |
+
.bi-reply-all::before { content: "\f51e"; }
|
| 1075 |
+
.bi-reply-fill::before { content: "\f51f"; }
|
| 1076 |
+
.bi-reply::before { content: "\f520"; }
|
| 1077 |
+
.bi-rss-fill::before { content: "\f521"; }
|
| 1078 |
+
.bi-rss::before { content: "\f522"; }
|
| 1079 |
+
.bi-rulers::before { content: "\f523"; }
|
| 1080 |
+
.bi-save-fill::before { content: "\f524"; }
|
| 1081 |
+
.bi-save::before { content: "\f525"; }
|
| 1082 |
+
.bi-save2-fill::before { content: "\f526"; }
|
| 1083 |
+
.bi-save2::before { content: "\f527"; }
|
| 1084 |
+
.bi-scissors::before { content: "\f528"; }
|
| 1085 |
+
.bi-screwdriver::before { content: "\f529"; }
|
| 1086 |
+
.bi-search::before { content: "\f52a"; }
|
| 1087 |
+
.bi-segmented-nav::before { content: "\f52b"; }
|
| 1088 |
+
.bi-server::before { content: "\f52c"; }
|
| 1089 |
+
.bi-share-fill::before { content: "\f52d"; }
|
| 1090 |
+
.bi-share::before { content: "\f52e"; }
|
| 1091 |
+
.bi-shield-check::before { content: "\f52f"; }
|
| 1092 |
+
.bi-shield-exclamation::before { content: "\f530"; }
|
| 1093 |
+
.bi-shield-fill-check::before { content: "\f531"; }
|
| 1094 |
+
.bi-shield-fill-exclamation::before { content: "\f532"; }
|
| 1095 |
+
.bi-shield-fill-minus::before { content: "\f533"; }
|
| 1096 |
+
.bi-shield-fill-plus::before { content: "\f534"; }
|
| 1097 |
+
.bi-shield-fill-x::before { content: "\f535"; }
|
| 1098 |
+
.bi-shield-fill::before { content: "\f536"; }
|
| 1099 |
+
.bi-shield-lock-fill::before { content: "\f537"; }
|
| 1100 |
+
.bi-shield-lock::before { content: "\f538"; }
|
| 1101 |
+
.bi-shield-minus::before { content: "\f539"; }
|
| 1102 |
+
.bi-shield-plus::before { content: "\f53a"; }
|
| 1103 |
+
.bi-shield-shaded::before { content: "\f53b"; }
|
| 1104 |
+
.bi-shield-slash-fill::before { content: "\f53c"; }
|
| 1105 |
+
.bi-shield-slash::before { content: "\f53d"; }
|
| 1106 |
+
.bi-shield-x::before { content: "\f53e"; }
|
| 1107 |
+
.bi-shield::before { content: "\f53f"; }
|
| 1108 |
+
.bi-shift-fill::before { content: "\f540"; }
|
| 1109 |
+
.bi-shift::before { content: "\f541"; }
|
| 1110 |
+
.bi-shop-window::before { content: "\f542"; }
|
| 1111 |
+
.bi-shop::before { content: "\f543"; }
|
| 1112 |
+
.bi-shuffle::before { content: "\f544"; }
|
| 1113 |
+
.bi-signpost-2-fill::before { content: "\f545"; }
|
| 1114 |
+
.bi-signpost-2::before { content: "\f546"; }
|
| 1115 |
+
.bi-signpost-fill::before { content: "\f547"; }
|
| 1116 |
+
.bi-signpost-split-fill::before { content: "\f548"; }
|
| 1117 |
+
.bi-signpost-split::before { content: "\f549"; }
|
| 1118 |
+
.bi-signpost::before { content: "\f54a"; }
|
| 1119 |
+
.bi-sim-fill::before { content: "\f54b"; }
|
| 1120 |
+
.bi-sim::before { content: "\f54c"; }
|
| 1121 |
+
.bi-skip-backward-btn-fill::before { content: "\f54d"; }
|
| 1122 |
+
.bi-skip-backward-btn::before { content: "\f54e"; }
|
| 1123 |
+
.bi-skip-backward-circle-fill::before { content: "\f54f"; }
|
| 1124 |
+
.bi-skip-backward-circle::before { content: "\f550"; }
|
| 1125 |
+
.bi-skip-backward-fill::before { content: "\f551"; }
|
| 1126 |
+
.bi-skip-backward::before { content: "\f552"; }
|
| 1127 |
+
.bi-skip-end-btn-fill::before { content: "\f553"; }
|
| 1128 |
+
.bi-skip-end-btn::before { content: "\f554"; }
|
| 1129 |
+
.bi-skip-end-circle-fill::before { content: "\f555"; }
|
| 1130 |
+
.bi-skip-end-circle::before { content: "\f556"; }
|
| 1131 |
+
.bi-skip-end-fill::before { content: "\f557"; }
|
| 1132 |
+
.bi-skip-end::before { content: "\f558"; }
|
| 1133 |
+
.bi-skip-forward-btn-fill::before { content: "\f559"; }
|
| 1134 |
+
.bi-skip-forward-btn::before { content: "\f55a"; }
|
| 1135 |
+
.bi-skip-forward-circle-fill::before { content: "\f55b"; }
|
| 1136 |
+
.bi-skip-forward-circle::before { content: "\f55c"; }
|
| 1137 |
+
.bi-skip-forward-fill::before { content: "\f55d"; }
|
| 1138 |
+
.bi-skip-forward::before { content: "\f55e"; }
|
| 1139 |
+
.bi-skip-start-btn-fill::before { content: "\f55f"; }
|
| 1140 |
+
.bi-skip-start-btn::before { content: "\f560"; }
|
| 1141 |
+
.bi-skip-start-circle-fill::before { content: "\f561"; }
|
| 1142 |
+
.bi-skip-start-circle::before { content: "\f562"; }
|
| 1143 |
+
.bi-skip-start-fill::before { content: "\f563"; }
|
| 1144 |
+
.bi-skip-start::before { content: "\f564"; }
|
| 1145 |
+
.bi-slack::before { content: "\f565"; }
|
| 1146 |
+
.bi-slash-circle-fill::before { content: "\f566"; }
|
| 1147 |
+
.bi-slash-circle::before { content: "\f567"; }
|
| 1148 |
+
.bi-slash-square-fill::before { content: "\f568"; }
|
| 1149 |
+
.bi-slash-square::before { content: "\f569"; }
|
| 1150 |
+
.bi-slash::before { content: "\f56a"; }
|
| 1151 |
+
.bi-sliders::before { content: "\f56b"; }
|
| 1152 |
+
.bi-smartwatch::before { content: "\f56c"; }
|
| 1153 |
+
.bi-snow::before { content: "\f56d"; }
|
| 1154 |
+
.bi-snow2::before { content: "\f56e"; }
|
| 1155 |
+
.bi-snow3::before { content: "\f56f"; }
|
| 1156 |
+
.bi-sort-alpha-down-alt::before { content: "\f570"; }
|
| 1157 |
+
.bi-sort-alpha-down::before { content: "\f571"; }
|
| 1158 |
+
.bi-sort-alpha-up-alt::before { content: "\f572"; }
|
| 1159 |
+
.bi-sort-alpha-up::before { content: "\f573"; }
|
| 1160 |
+
.bi-sort-down-alt::before { content: "\f574"; }
|
| 1161 |
+
.bi-sort-down::before { content: "\f575"; }
|
| 1162 |
+
.bi-sort-numeric-down-alt::before { content: "\f576"; }
|
| 1163 |
+
.bi-sort-numeric-down::before { content: "\f577"; }
|
| 1164 |
+
.bi-sort-numeric-up-alt::before { content: "\f578"; }
|
| 1165 |
+
.bi-sort-numeric-up::before { content: "\f579"; }
|
| 1166 |
+
.bi-sort-up-alt::before { content: "\f57a"; }
|
| 1167 |
+
.bi-sort-up::before { content: "\f57b"; }
|
| 1168 |
+
.bi-soundwave::before { content: "\f57c"; }
|
| 1169 |
+
.bi-speaker-fill::before { content: "\f57d"; }
|
| 1170 |
+
.bi-speaker::before { content: "\f57e"; }
|
| 1171 |
+
.bi-speedometer::before { content: "\f57f"; }
|
| 1172 |
+
.bi-speedometer2::before { content: "\f580"; }
|
| 1173 |
+
.bi-spellcheck::before { content: "\f581"; }
|
| 1174 |
+
.bi-square-fill::before { content: "\f582"; }
|
| 1175 |
+
.bi-square-half::before { content: "\f583"; }
|
| 1176 |
+
.bi-square::before { content: "\f584"; }
|
| 1177 |
+
.bi-stack::before { content: "\f585"; }
|
| 1178 |
+
.bi-star-fill::before { content: "\f586"; }
|
| 1179 |
+
.bi-star-half::before { content: "\f587"; }
|
| 1180 |
+
.bi-star::before { content: "\f588"; }
|
| 1181 |
+
.bi-stars::before { content: "\f589"; }
|
| 1182 |
+
.bi-stickies-fill::before { content: "\f58a"; }
|
| 1183 |
+
.bi-stickies::before { content: "\f58b"; }
|
| 1184 |
+
.bi-sticky-fill::before { content: "\f58c"; }
|
| 1185 |
+
.bi-sticky::before { content: "\f58d"; }
|
| 1186 |
+
.bi-stop-btn-fill::before { content: "\f58e"; }
|
| 1187 |
+
.bi-stop-btn::before { content: "\f58f"; }
|
| 1188 |
+
.bi-stop-circle-fill::before { content: "\f590"; }
|
| 1189 |
+
.bi-stop-circle::before { content: "\f591"; }
|
| 1190 |
+
.bi-stop-fill::before { content: "\f592"; }
|
| 1191 |
+
.bi-stop::before { content: "\f593"; }
|
| 1192 |
+
.bi-stoplights-fill::before { content: "\f594"; }
|
| 1193 |
+
.bi-stoplights::before { content: "\f595"; }
|
| 1194 |
+
.bi-stopwatch-fill::before { content: "\f596"; }
|
| 1195 |
+
.bi-stopwatch::before { content: "\f597"; }
|
| 1196 |
+
.bi-subtract::before { content: "\f598"; }
|
| 1197 |
+
.bi-suit-club-fill::before { content: "\f599"; }
|
| 1198 |
+
.bi-suit-club::before { content: "\f59a"; }
|
| 1199 |
+
.bi-suit-diamond-fill::before { content: "\f59b"; }
|
| 1200 |
+
.bi-suit-diamond::before { content: "\f59c"; }
|
| 1201 |
+
.bi-suit-heart-fill::before { content: "\f59d"; }
|
| 1202 |
+
.bi-suit-heart::before { content: "\f59e"; }
|
| 1203 |
+
.bi-suit-spade-fill::before { content: "\f59f"; }
|
| 1204 |
+
.bi-suit-spade::before { content: "\f5a0"; }
|
| 1205 |
+
.bi-sun-fill::before { content: "\f5a1"; }
|
| 1206 |
+
.bi-sun::before { content: "\f5a2"; }
|
| 1207 |
+
.bi-sunglasses::before { content: "\f5a3"; }
|
| 1208 |
+
.bi-sunrise-fill::before { content: "\f5a4"; }
|
| 1209 |
+
.bi-sunrise::before { content: "\f5a5"; }
|
| 1210 |
+
.bi-sunset-fill::before { content: "\f5a6"; }
|
| 1211 |
+
.bi-sunset::before { content: "\f5a7"; }
|
| 1212 |
+
.bi-symmetry-horizontal::before { content: "\f5a8"; }
|
| 1213 |
+
.bi-symmetry-vertical::before { content: "\f5a9"; }
|
| 1214 |
+
.bi-table::before { content: "\f5aa"; }
|
| 1215 |
+
.bi-tablet-fill::before { content: "\f5ab"; }
|
| 1216 |
+
.bi-tablet-landscape-fill::before { content: "\f5ac"; }
|
| 1217 |
+
.bi-tablet-landscape::before { content: "\f5ad"; }
|
| 1218 |
+
.bi-tablet::before { content: "\f5ae"; }
|
| 1219 |
+
.bi-tag-fill::before { content: "\f5af"; }
|
| 1220 |
+
.bi-tag::before { content: "\f5b0"; }
|
| 1221 |
+
.bi-tags-fill::before { content: "\f5b1"; }
|
| 1222 |
+
.bi-tags::before { content: "\f5b2"; }
|
| 1223 |
+
.bi-telegram::before { content: "\f5b3"; }
|
| 1224 |
+
.bi-telephone-fill::before { content: "\f5b4"; }
|
| 1225 |
+
.bi-telephone-forward-fill::before { content: "\f5b5"; }
|
| 1226 |
+
.bi-telephone-forward::before { content: "\f5b6"; }
|
| 1227 |
+
.bi-telephone-inbound-fill::before { content: "\f5b7"; }
|
| 1228 |
+
.bi-telephone-inbound::before { content: "\f5b8"; }
|
| 1229 |
+
.bi-telephone-minus-fill::before { content: "\f5b9"; }
|
| 1230 |
+
.bi-telephone-minus::before { content: "\f5ba"; }
|
| 1231 |
+
.bi-telephone-outbound-fill::before { content: "\f5bb"; }
|
| 1232 |
+
.bi-telephone-outbound::before { content: "\f5bc"; }
|
| 1233 |
+
.bi-telephone-plus-fill::before { content: "\f5bd"; }
|
| 1234 |
+
.bi-telephone-plus::before { content: "\f5be"; }
|
| 1235 |
+
.bi-telephone-x-fill::before { content: "\f5bf"; }
|
| 1236 |
+
.bi-telephone-x::before { content: "\f5c0"; }
|
| 1237 |
+
.bi-telephone::before { content: "\f5c1"; }
|
| 1238 |
+
.bi-terminal-fill::before { content: "\f5c2"; }
|
| 1239 |
+
.bi-terminal::before { content: "\f5c3"; }
|
| 1240 |
+
.bi-text-center::before { content: "\f5c4"; }
|
| 1241 |
+
.bi-text-indent-left::before { content: "\f5c5"; }
|
| 1242 |
+
.bi-text-indent-right::before { content: "\f5c6"; }
|
| 1243 |
+
.bi-text-left::before { content: "\f5c7"; }
|
| 1244 |
+
.bi-text-paragraph::before { content: "\f5c8"; }
|
| 1245 |
+
.bi-text-right::before { content: "\f5c9"; }
|
| 1246 |
+
.bi-textarea-resize::before { content: "\f5ca"; }
|
| 1247 |
+
.bi-textarea-t::before { content: "\f5cb"; }
|
| 1248 |
+
.bi-textarea::before { content: "\f5cc"; }
|
| 1249 |
+
.bi-thermometer-half::before { content: "\f5cd"; }
|
| 1250 |
+
.bi-thermometer-high::before { content: "\f5ce"; }
|
| 1251 |
+
.bi-thermometer-low::before { content: "\f5cf"; }
|
| 1252 |
+
.bi-thermometer-snow::before { content: "\f5d0"; }
|
| 1253 |
+
.bi-thermometer-sun::before { content: "\f5d1"; }
|
| 1254 |
+
.bi-thermometer::before { content: "\f5d2"; }
|
| 1255 |
+
.bi-three-dots-vertical::before { content: "\f5d3"; }
|
| 1256 |
+
.bi-three-dots::before { content: "\f5d4"; }
|
| 1257 |
+
.bi-toggle-off::before { content: "\f5d5"; }
|
| 1258 |
+
.bi-toggle-on::before { content: "\f5d6"; }
|
| 1259 |
+
.bi-toggle2-off::before { content: "\f5d7"; }
|
| 1260 |
+
.bi-toggle2-on::before { content: "\f5d8"; }
|
| 1261 |
+
.bi-toggles::before { content: "\f5d9"; }
|
| 1262 |
+
.bi-toggles2::before { content: "\f5da"; }
|
| 1263 |
+
.bi-tools::before { content: "\f5db"; }
|
| 1264 |
+
.bi-tornado::before { content: "\f5dc"; }
|
| 1265 |
+
.bi-trash-fill::before { content: "\f5dd"; }
|
| 1266 |
+
.bi-trash::before { content: "\f5de"; }
|
| 1267 |
+
.bi-trash2-fill::before { content: "\f5df"; }
|
| 1268 |
+
.bi-trash2::before { content: "\f5e0"; }
|
| 1269 |
+
.bi-tree-fill::before { content: "\f5e1"; }
|
| 1270 |
+
.bi-tree::before { content: "\f5e2"; }
|
| 1271 |
+
.bi-triangle-fill::before { content: "\f5e3"; }
|
| 1272 |
+
.bi-triangle-half::before { content: "\f5e4"; }
|
| 1273 |
+
.bi-triangle::before { content: "\f5e5"; }
|
| 1274 |
+
.bi-trophy-fill::before { content: "\f5e6"; }
|
| 1275 |
+
.bi-trophy::before { content: "\f5e7"; }
|
| 1276 |
+
.bi-tropical-storm::before { content: "\f5e8"; }
|
| 1277 |
+
.bi-truck-flatbed::before { content: "\f5e9"; }
|
| 1278 |
+
.bi-truck::before { content: "\f5ea"; }
|
| 1279 |
+
.bi-tsunami::before { content: "\f5eb"; }
|
| 1280 |
+
.bi-tv-fill::before { content: "\f5ec"; }
|
| 1281 |
+
.bi-tv::before { content: "\f5ed"; }
|
| 1282 |
+
.bi-twitch::before { content: "\f5ee"; }
|
| 1283 |
+
.bi-twitter::before { content: "\f5ef"; }
|
| 1284 |
+
.bi-type-bold::before { content: "\f5f0"; }
|
| 1285 |
+
.bi-type-h1::before { content: "\f5f1"; }
|
| 1286 |
+
.bi-type-h2::before { content: "\f5f2"; }
|
| 1287 |
+
.bi-type-h3::before { content: "\f5f3"; }
|
| 1288 |
+
.bi-type-italic::before { content: "\f5f4"; }
|
| 1289 |
+
.bi-type-strikethrough::before { content: "\f5f5"; }
|
| 1290 |
+
.bi-type-underline::before { content: "\f5f6"; }
|
| 1291 |
+
.bi-type::before { content: "\f5f7"; }
|
| 1292 |
+
.bi-ui-checks-grid::before { content: "\f5f8"; }
|
| 1293 |
+
.bi-ui-checks::before { content: "\f5f9"; }
|
| 1294 |
+
.bi-ui-radios-grid::before { content: "\f5fa"; }
|
| 1295 |
+
.bi-ui-radios::before { content: "\f5fb"; }
|
| 1296 |
+
.bi-umbrella-fill::before { content: "\f5fc"; }
|
| 1297 |
+
.bi-umbrella::before { content: "\f5fd"; }
|
| 1298 |
+
.bi-union::before { content: "\f5fe"; }
|
| 1299 |
+
.bi-unlock-fill::before { content: "\f5ff"; }
|
| 1300 |
+
.bi-unlock::before { content: "\f600"; }
|
| 1301 |
+
.bi-upc-scan::before { content: "\f601"; }
|
| 1302 |
+
.bi-upc::before { content: "\f602"; }
|
| 1303 |
+
.bi-upload::before { content: "\f603"; }
|
| 1304 |
+
.bi-vector-pen::before { content: "\f604"; }
|
| 1305 |
+
.bi-view-list::before { content: "\f605"; }
|
| 1306 |
+
.bi-view-stacked::before { content: "\f606"; }
|
| 1307 |
+
.bi-vinyl-fill::before { content: "\f607"; }
|
| 1308 |
+
.bi-vinyl::before { content: "\f608"; }
|
| 1309 |
+
.bi-voicemail::before { content: "\f609"; }
|
| 1310 |
+
.bi-volume-down-fill::before { content: "\f60a"; }
|
| 1311 |
+
.bi-volume-down::before { content: "\f60b"; }
|
| 1312 |
+
.bi-volume-mute-fill::before { content: "\f60c"; }
|
| 1313 |
+
.bi-volume-mute::before { content: "\f60d"; }
|
| 1314 |
+
.bi-volume-off-fill::before { content: "\f60e"; }
|
| 1315 |
+
.bi-volume-off::before { content: "\f60f"; }
|
| 1316 |
+
.bi-volume-up-fill::before { content: "\f610"; }
|
| 1317 |
+
.bi-volume-up::before { content: "\f611"; }
|
| 1318 |
+
.bi-vr::before { content: "\f612"; }
|
| 1319 |
+
.bi-wallet-fill::before { content: "\f613"; }
|
| 1320 |
+
.bi-wallet::before { content: "\f614"; }
|
| 1321 |
+
.bi-wallet2::before { content: "\f615"; }
|
| 1322 |
+
.bi-watch::before { content: "\f616"; }
|
| 1323 |
+
.bi-water::before { content: "\f617"; }
|
| 1324 |
+
.bi-whatsapp::before { content: "\f618"; }
|
| 1325 |
+
.bi-wifi-1::before { content: "\f619"; }
|
| 1326 |
+
.bi-wifi-2::before { content: "\f61a"; }
|
| 1327 |
+
.bi-wifi-off::before { content: "\f61b"; }
|
| 1328 |
+
.bi-wifi::before { content: "\f61c"; }
|
| 1329 |
+
.bi-wind::before { content: "\f61d"; }
|
| 1330 |
+
.bi-window-dock::before { content: "\f61e"; }
|
| 1331 |
+
.bi-window-sidebar::before { content: "\f61f"; }
|
| 1332 |
+
.bi-window::before { content: "\f620"; }
|
| 1333 |
+
.bi-wrench::before { content: "\f621"; }
|
| 1334 |
+
.bi-x-circle-fill::before { content: "\f622"; }
|
| 1335 |
+
.bi-x-circle::before { content: "\f623"; }
|
| 1336 |
+
.bi-x-diamond-fill::before { content: "\f624"; }
|
| 1337 |
+
.bi-x-diamond::before { content: "\f625"; }
|
| 1338 |
+
.bi-x-octagon-fill::before { content: "\f626"; }
|
| 1339 |
+
.bi-x-octagon::before { content: "\f627"; }
|
| 1340 |
+
.bi-x-square-fill::before { content: "\f628"; }
|
| 1341 |
+
.bi-x-square::before { content: "\f629"; }
|
| 1342 |
+
.bi-x::before { content: "\f62a"; }
|
| 1343 |
+
.bi-youtube::before { content: "\f62b"; }
|
| 1344 |
+
.bi-zoom-in::before { content: "\f62c"; }
|
| 1345 |
+
.bi-zoom-out::before { content: "\f62d"; }
|
| 1346 |
+
.bi-bank::before { content: "\f62e"; }
|
| 1347 |
+
.bi-bank2::before { content: "\f62f"; }
|
| 1348 |
+
.bi-bell-slash-fill::before { content: "\f630"; }
|
| 1349 |
+
.bi-bell-slash::before { content: "\f631"; }
|
| 1350 |
+
.bi-cash-coin::before { content: "\f632"; }
|
| 1351 |
+
.bi-check-lg::before { content: "\f633"; }
|
| 1352 |
+
.bi-coin::before { content: "\f634"; }
|
| 1353 |
+
.bi-currency-bitcoin::before { content: "\f635"; }
|
| 1354 |
+
.bi-currency-dollar::before { content: "\f636"; }
|
| 1355 |
+
.bi-currency-euro::before { content: "\f637"; }
|
| 1356 |
+
.bi-currency-exchange::before { content: "\f638"; }
|
| 1357 |
+
.bi-currency-pound::before { content: "\f639"; }
|
| 1358 |
+
.bi-currency-yen::before { content: "\f63a"; }
|
| 1359 |
+
.bi-dash-lg::before { content: "\f63b"; }
|
| 1360 |
+
.bi-exclamation-lg::before { content: "\f63c"; }
|
| 1361 |
+
.bi-file-earmark-pdf-fill::before { content: "\f63d"; }
|
| 1362 |
+
.bi-file-earmark-pdf::before { content: "\f63e"; }
|
| 1363 |
+
.bi-file-pdf-fill::before { content: "\f63f"; }
|
| 1364 |
+
.bi-file-pdf::before { content: "\f640"; }
|
| 1365 |
+
.bi-gender-ambiguous::before { content: "\f641"; }
|
| 1366 |
+
.bi-gender-female::before { content: "\f642"; }
|
| 1367 |
+
.bi-gender-male::before { content: "\f643"; }
|
| 1368 |
+
.bi-gender-trans::before { content: "\f644"; }
|
| 1369 |
+
.bi-headset-vr::before { content: "\f645"; }
|
| 1370 |
+
.bi-info-lg::before { content: "\f646"; }
|
| 1371 |
+
.bi-mastodon::before { content: "\f647"; }
|
| 1372 |
+
.bi-messenger::before { content: "\f648"; }
|
| 1373 |
+
.bi-piggy-bank-fill::before { content: "\f649"; }
|
| 1374 |
+
.bi-piggy-bank::before { content: "\f64a"; }
|
| 1375 |
+
.bi-pin-map-fill::before { content: "\f64b"; }
|
| 1376 |
+
.bi-pin-map::before { content: "\f64c"; }
|
| 1377 |
+
.bi-plus-lg::before { content: "\f64d"; }
|
| 1378 |
+
.bi-question-lg::before { content: "\f64e"; }
|
| 1379 |
+
.bi-recycle::before { content: "\f64f"; }
|
| 1380 |
+
.bi-reddit::before { content: "\f650"; }
|
| 1381 |
+
.bi-safe-fill::before { content: "\f651"; }
|
| 1382 |
+
.bi-safe2-fill::before { content: "\f652"; }
|
| 1383 |
+
.bi-safe2::before { content: "\f653"; }
|
| 1384 |
+
.bi-sd-card-fill::before { content: "\f654"; }
|
| 1385 |
+
.bi-sd-card::before { content: "\f655"; }
|
| 1386 |
+
.bi-skype::before { content: "\f656"; }
|
| 1387 |
+
.bi-slash-lg::before { content: "\f657"; }
|
| 1388 |
+
.bi-translate::before { content: "\f658"; }
|
| 1389 |
+
.bi-x-lg::before { content: "\f659"; }
|
| 1390 |
+
.bi-safe::before { content: "\f65a"; }
|
static/vendor/bootstrap-icons/bootstrap-icons.json
ADDED
|
@@ -0,0 +1,1372 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alarm-fill": 61697,
|
| 3 |
+
"alarm": 61698,
|
| 4 |
+
"align-bottom": 61699,
|
| 5 |
+
"align-center": 61700,
|
| 6 |
+
"align-end": 61701,
|
| 7 |
+
"align-middle": 61702,
|
| 8 |
+
"align-start": 61703,
|
| 9 |
+
"align-top": 61704,
|
| 10 |
+
"alt": 61705,
|
| 11 |
+
"app-indicator": 61706,
|
| 12 |
+
"app": 61707,
|
| 13 |
+
"archive-fill": 61708,
|
| 14 |
+
"archive": 61709,
|
| 15 |
+
"arrow-90deg-down": 61710,
|
| 16 |
+
"arrow-90deg-left": 61711,
|
| 17 |
+
"arrow-90deg-right": 61712,
|
| 18 |
+
"arrow-90deg-up": 61713,
|
| 19 |
+
"arrow-bar-down": 61714,
|
| 20 |
+
"arrow-bar-left": 61715,
|
| 21 |
+
"arrow-bar-right": 61716,
|
| 22 |
+
"arrow-bar-up": 61717,
|
| 23 |
+
"arrow-clockwise": 61718,
|
| 24 |
+
"arrow-counterclockwise": 61719,
|
| 25 |
+
"arrow-down-circle-fill": 61720,
|
| 26 |
+
"arrow-down-circle": 61721,
|
| 27 |
+
"arrow-down-left-circle-fill": 61722,
|
| 28 |
+
"arrow-down-left-circle": 61723,
|
| 29 |
+
"arrow-down-left-square-fill": 61724,
|
| 30 |
+
"arrow-down-left-square": 61725,
|
| 31 |
+
"arrow-down-left": 61726,
|
| 32 |
+
"arrow-down-right-circle-fill": 61727,
|
| 33 |
+
"arrow-down-right-circle": 61728,
|
| 34 |
+
"arrow-down-right-square-fill": 61729,
|
| 35 |
+
"arrow-down-right-square": 61730,
|
| 36 |
+
"arrow-down-right": 61731,
|
| 37 |
+
"arrow-down-short": 61732,
|
| 38 |
+
"arrow-down-square-fill": 61733,
|
| 39 |
+
"arrow-down-square": 61734,
|
| 40 |
+
"arrow-down-up": 61735,
|
| 41 |
+
"arrow-down": 61736,
|
| 42 |
+
"arrow-left-circle-fill": 61737,
|
| 43 |
+
"arrow-left-circle": 61738,
|
| 44 |
+
"arrow-left-right": 61739,
|
| 45 |
+
"arrow-left-short": 61740,
|
| 46 |
+
"arrow-left-square-fill": 61741,
|
| 47 |
+
"arrow-left-square": 61742,
|
| 48 |
+
"arrow-left": 61743,
|
| 49 |
+
"arrow-repeat": 61744,
|
| 50 |
+
"arrow-return-left": 61745,
|
| 51 |
+
"arrow-return-right": 61746,
|
| 52 |
+
"arrow-right-circle-fill": 61747,
|
| 53 |
+
"arrow-right-circle": 61748,
|
| 54 |
+
"arrow-right-short": 61749,
|
| 55 |
+
"arrow-right-square-fill": 61750,
|
| 56 |
+
"arrow-right-square": 61751,
|
| 57 |
+
"arrow-right": 61752,
|
| 58 |
+
"arrow-up-circle-fill": 61753,
|
| 59 |
+
"arrow-up-circle": 61754,
|
| 60 |
+
"arrow-up-left-circle-fill": 61755,
|
| 61 |
+
"arrow-up-left-circle": 61756,
|
| 62 |
+
"arrow-up-left-square-fill": 61757,
|
| 63 |
+
"arrow-up-left-square": 61758,
|
| 64 |
+
"arrow-up-left": 61759,
|
| 65 |
+
"arrow-up-right-circle-fill": 61760,
|
| 66 |
+
"arrow-up-right-circle": 61761,
|
| 67 |
+
"arrow-up-right-square-fill": 61762,
|
| 68 |
+
"arrow-up-right-square": 61763,
|
| 69 |
+
"arrow-up-right": 61764,
|
| 70 |
+
"arrow-up-short": 61765,
|
| 71 |
+
"arrow-up-square-fill": 61766,
|
| 72 |
+
"arrow-up-square": 61767,
|
| 73 |
+
"arrow-up": 61768,
|
| 74 |
+
"arrows-angle-contract": 61769,
|
| 75 |
+
"arrows-angle-expand": 61770,
|
| 76 |
+
"arrows-collapse": 61771,
|
| 77 |
+
"arrows-expand": 61772,
|
| 78 |
+
"arrows-fullscreen": 61773,
|
| 79 |
+
"arrows-move": 61774,
|
| 80 |
+
"aspect-ratio-fill": 61775,
|
| 81 |
+
"aspect-ratio": 61776,
|
| 82 |
+
"asterisk": 61777,
|
| 83 |
+
"at": 61778,
|
| 84 |
+
"award-fill": 61779,
|
| 85 |
+
"award": 61780,
|
| 86 |
+
"back": 61781,
|
| 87 |
+
"backspace-fill": 61782,
|
| 88 |
+
"backspace-reverse-fill": 61783,
|
| 89 |
+
"backspace-reverse": 61784,
|
| 90 |
+
"backspace": 61785,
|
| 91 |
+
"badge-3d-fill": 61786,
|
| 92 |
+
"badge-3d": 61787,
|
| 93 |
+
"badge-4k-fill": 61788,
|
| 94 |
+
"badge-4k": 61789,
|
| 95 |
+
"badge-8k-fill": 61790,
|
| 96 |
+
"badge-8k": 61791,
|
| 97 |
+
"badge-ad-fill": 61792,
|
| 98 |
+
"badge-ad": 61793,
|
| 99 |
+
"badge-ar-fill": 61794,
|
| 100 |
+
"badge-ar": 61795,
|
| 101 |
+
"badge-cc-fill": 61796,
|
| 102 |
+
"badge-cc": 61797,
|
| 103 |
+
"badge-hd-fill": 61798,
|
| 104 |
+
"badge-hd": 61799,
|
| 105 |
+
"badge-tm-fill": 61800,
|
| 106 |
+
"badge-tm": 61801,
|
| 107 |
+
"badge-vo-fill": 61802,
|
| 108 |
+
"badge-vo": 61803,
|
| 109 |
+
"badge-vr-fill": 61804,
|
| 110 |
+
"badge-vr": 61805,
|
| 111 |
+
"badge-wc-fill": 61806,
|
| 112 |
+
"badge-wc": 61807,
|
| 113 |
+
"bag-check-fill": 61808,
|
| 114 |
+
"bag-check": 61809,
|
| 115 |
+
"bag-dash-fill": 61810,
|
| 116 |
+
"bag-dash": 61811,
|
| 117 |
+
"bag-fill": 61812,
|
| 118 |
+
"bag-plus-fill": 61813,
|
| 119 |
+
"bag-plus": 61814,
|
| 120 |
+
"bag-x-fill": 61815,
|
| 121 |
+
"bag-x": 61816,
|
| 122 |
+
"bag": 61817,
|
| 123 |
+
"bar-chart-fill": 61818,
|
| 124 |
+
"bar-chart-line-fill": 61819,
|
| 125 |
+
"bar-chart-line": 61820,
|
| 126 |
+
"bar-chart-steps": 61821,
|
| 127 |
+
"bar-chart": 61822,
|
| 128 |
+
"basket-fill": 61823,
|
| 129 |
+
"basket": 61824,
|
| 130 |
+
"basket2-fill": 61825,
|
| 131 |
+
"basket2": 61826,
|
| 132 |
+
"basket3-fill": 61827,
|
| 133 |
+
"basket3": 61828,
|
| 134 |
+
"battery-charging": 61829,
|
| 135 |
+
"battery-full": 61830,
|
| 136 |
+
"battery-half": 61831,
|
| 137 |
+
"battery": 61832,
|
| 138 |
+
"bell-fill": 61833,
|
| 139 |
+
"bell": 61834,
|
| 140 |
+
"bezier": 61835,
|
| 141 |
+
"bezier2": 61836,
|
| 142 |
+
"bicycle": 61837,
|
| 143 |
+
"binoculars-fill": 61838,
|
| 144 |
+
"binoculars": 61839,
|
| 145 |
+
"blockquote-left": 61840,
|
| 146 |
+
"blockquote-right": 61841,
|
| 147 |
+
"book-fill": 61842,
|
| 148 |
+
"book-half": 61843,
|
| 149 |
+
"book": 61844,
|
| 150 |
+
"bookmark-check-fill": 61845,
|
| 151 |
+
"bookmark-check": 61846,
|
| 152 |
+
"bookmark-dash-fill": 61847,
|
| 153 |
+
"bookmark-dash": 61848,
|
| 154 |
+
"bookmark-fill": 61849,
|
| 155 |
+
"bookmark-heart-fill": 61850,
|
| 156 |
+
"bookmark-heart": 61851,
|
| 157 |
+
"bookmark-plus-fill": 61852,
|
| 158 |
+
"bookmark-plus": 61853,
|
| 159 |
+
"bookmark-star-fill": 61854,
|
| 160 |
+
"bookmark-star": 61855,
|
| 161 |
+
"bookmark-x-fill": 61856,
|
| 162 |
+
"bookmark-x": 61857,
|
| 163 |
+
"bookmark": 61858,
|
| 164 |
+
"bookmarks-fill": 61859,
|
| 165 |
+
"bookmarks": 61860,
|
| 166 |
+
"bookshelf": 61861,
|
| 167 |
+
"bootstrap-fill": 61862,
|
| 168 |
+
"bootstrap-reboot": 61863,
|
| 169 |
+
"bootstrap": 61864,
|
| 170 |
+
"border-all": 61865,
|
| 171 |
+
"border-bottom": 61866,
|
| 172 |
+
"border-center": 61867,
|
| 173 |
+
"border-inner": 61868,
|
| 174 |
+
"border-left": 61869,
|
| 175 |
+
"border-middle": 61870,
|
| 176 |
+
"border-outer": 61871,
|
| 177 |
+
"border-right": 61872,
|
| 178 |
+
"border-style": 61873,
|
| 179 |
+
"border-top": 61874,
|
| 180 |
+
"border-width": 61875,
|
| 181 |
+
"border": 61876,
|
| 182 |
+
"bounding-box-circles": 61877,
|
| 183 |
+
"bounding-box": 61878,
|
| 184 |
+
"box-arrow-down-left": 61879,
|
| 185 |
+
"box-arrow-down-right": 61880,
|
| 186 |
+
"box-arrow-down": 61881,
|
| 187 |
+
"box-arrow-in-down-left": 61882,
|
| 188 |
+
"box-arrow-in-down-right": 61883,
|
| 189 |
+
"box-arrow-in-down": 61884,
|
| 190 |
+
"box-arrow-in-left": 61885,
|
| 191 |
+
"box-arrow-in-right": 61886,
|
| 192 |
+
"box-arrow-in-up-left": 61887,
|
| 193 |
+
"box-arrow-in-up-right": 61888,
|
| 194 |
+
"box-arrow-in-up": 61889,
|
| 195 |
+
"box-arrow-left": 61890,
|
| 196 |
+
"box-arrow-right": 61891,
|
| 197 |
+
"box-arrow-up-left": 61892,
|
| 198 |
+
"box-arrow-up-right": 61893,
|
| 199 |
+
"box-arrow-up": 61894,
|
| 200 |
+
"box-seam": 61895,
|
| 201 |
+
"box": 61896,
|
| 202 |
+
"braces": 61897,
|
| 203 |
+
"bricks": 61898,
|
| 204 |
+
"briefcase-fill": 61899,
|
| 205 |
+
"briefcase": 61900,
|
| 206 |
+
"brightness-alt-high-fill": 61901,
|
| 207 |
+
"brightness-alt-high": 61902,
|
| 208 |
+
"brightness-alt-low-fill": 61903,
|
| 209 |
+
"brightness-alt-low": 61904,
|
| 210 |
+
"brightness-high-fill": 61905,
|
| 211 |
+
"brightness-high": 61906,
|
| 212 |
+
"brightness-low-fill": 61907,
|
| 213 |
+
"brightness-low": 61908,
|
| 214 |
+
"broadcast-pin": 61909,
|
| 215 |
+
"broadcast": 61910,
|
| 216 |
+
"brush-fill": 61911,
|
| 217 |
+
"brush": 61912,
|
| 218 |
+
"bucket-fill": 61913,
|
| 219 |
+
"bucket": 61914,
|
| 220 |
+
"bug-fill": 61915,
|
| 221 |
+
"bug": 61916,
|
| 222 |
+
"building": 61917,
|
| 223 |
+
"bullseye": 61918,
|
| 224 |
+
"calculator-fill": 61919,
|
| 225 |
+
"calculator": 61920,
|
| 226 |
+
"calendar-check-fill": 61921,
|
| 227 |
+
"calendar-check": 61922,
|
| 228 |
+
"calendar-date-fill": 61923,
|
| 229 |
+
"calendar-date": 61924,
|
| 230 |
+
"calendar-day-fill": 61925,
|
| 231 |
+
"calendar-day": 61926,
|
| 232 |
+
"calendar-event-fill": 61927,
|
| 233 |
+
"calendar-event": 61928,
|
| 234 |
+
"calendar-fill": 61929,
|
| 235 |
+
"calendar-minus-fill": 61930,
|
| 236 |
+
"calendar-minus": 61931,
|
| 237 |
+
"calendar-month-fill": 61932,
|
| 238 |
+
"calendar-month": 61933,
|
| 239 |
+
"calendar-plus-fill": 61934,
|
| 240 |
+
"calendar-plus": 61935,
|
| 241 |
+
"calendar-range-fill": 61936,
|
| 242 |
+
"calendar-range": 61937,
|
| 243 |
+
"calendar-week-fill": 61938,
|
| 244 |
+
"calendar-week": 61939,
|
| 245 |
+
"calendar-x-fill": 61940,
|
| 246 |
+
"calendar-x": 61941,
|
| 247 |
+
"calendar": 61942,
|
| 248 |
+
"calendar2-check-fill": 61943,
|
| 249 |
+
"calendar2-check": 61944,
|
| 250 |
+
"calendar2-date-fill": 61945,
|
| 251 |
+
"calendar2-date": 61946,
|
| 252 |
+
"calendar2-day-fill": 61947,
|
| 253 |
+
"calendar2-day": 61948,
|
| 254 |
+
"calendar2-event-fill": 61949,
|
| 255 |
+
"calendar2-event": 61950,
|
| 256 |
+
"calendar2-fill": 61951,
|
| 257 |
+
"calendar2-minus-fill": 61952,
|
| 258 |
+
"calendar2-minus": 61953,
|
| 259 |
+
"calendar2-month-fill": 61954,
|
| 260 |
+
"calendar2-month": 61955,
|
| 261 |
+
"calendar2-plus-fill": 61956,
|
| 262 |
+
"calendar2-plus": 61957,
|
| 263 |
+
"calendar2-range-fill": 61958,
|
| 264 |
+
"calendar2-range": 61959,
|
| 265 |
+
"calendar2-week-fill": 61960,
|
| 266 |
+
"calendar2-week": 61961,
|
| 267 |
+
"calendar2-x-fill": 61962,
|
| 268 |
+
"calendar2-x": 61963,
|
| 269 |
+
"calendar2": 61964,
|
| 270 |
+
"calendar3-event-fill": 61965,
|
| 271 |
+
"calendar3-event": 61966,
|
| 272 |
+
"calendar3-fill": 61967,
|
| 273 |
+
"calendar3-range-fill": 61968,
|
| 274 |
+
"calendar3-range": 61969,
|
| 275 |
+
"calendar3-week-fill": 61970,
|
| 276 |
+
"calendar3-week": 61971,
|
| 277 |
+
"calendar3": 61972,
|
| 278 |
+
"calendar4-event": 61973,
|
| 279 |
+
"calendar4-range": 61974,
|
| 280 |
+
"calendar4-week": 61975,
|
| 281 |
+
"calendar4": 61976,
|
| 282 |
+
"camera-fill": 61977,
|
| 283 |
+
"camera-reels-fill": 61978,
|
| 284 |
+
"camera-reels": 61979,
|
| 285 |
+
"camera-video-fill": 61980,
|
| 286 |
+
"camera-video-off-fill": 61981,
|
| 287 |
+
"camera-video-off": 61982,
|
| 288 |
+
"camera-video": 61983,
|
| 289 |
+
"camera": 61984,
|
| 290 |
+
"camera2": 61985,
|
| 291 |
+
"capslock-fill": 61986,
|
| 292 |
+
"capslock": 61987,
|
| 293 |
+
"card-checklist": 61988,
|
| 294 |
+
"card-heading": 61989,
|
| 295 |
+
"card-image": 61990,
|
| 296 |
+
"card-list": 61991,
|
| 297 |
+
"card-text": 61992,
|
| 298 |
+
"caret-down-fill": 61993,
|
| 299 |
+
"caret-down-square-fill": 61994,
|
| 300 |
+
"caret-down-square": 61995,
|
| 301 |
+
"caret-down": 61996,
|
| 302 |
+
"caret-left-fill": 61997,
|
| 303 |
+
"caret-left-square-fill": 61998,
|
| 304 |
+
"caret-left-square": 61999,
|
| 305 |
+
"caret-left": 62000,
|
| 306 |
+
"caret-right-fill": 62001,
|
| 307 |
+
"caret-right-square-fill": 62002,
|
| 308 |
+
"caret-right-square": 62003,
|
| 309 |
+
"caret-right": 62004,
|
| 310 |
+
"caret-up-fill": 62005,
|
| 311 |
+
"caret-up-square-fill": 62006,
|
| 312 |
+
"caret-up-square": 62007,
|
| 313 |
+
"caret-up": 62008,
|
| 314 |
+
"cart-check-fill": 62009,
|
| 315 |
+
"cart-check": 62010,
|
| 316 |
+
"cart-dash-fill": 62011,
|
| 317 |
+
"cart-dash": 62012,
|
| 318 |
+
"cart-fill": 62013,
|
| 319 |
+
"cart-plus-fill": 62014,
|
| 320 |
+
"cart-plus": 62015,
|
| 321 |
+
"cart-x-fill": 62016,
|
| 322 |
+
"cart-x": 62017,
|
| 323 |
+
"cart": 62018,
|
| 324 |
+
"cart2": 62019,
|
| 325 |
+
"cart3": 62020,
|
| 326 |
+
"cart4": 62021,
|
| 327 |
+
"cash-stack": 62022,
|
| 328 |
+
"cash": 62023,
|
| 329 |
+
"cast": 62024,
|
| 330 |
+
"chat-dots-fill": 62025,
|
| 331 |
+
"chat-dots": 62026,
|
| 332 |
+
"chat-fill": 62027,
|
| 333 |
+
"chat-left-dots-fill": 62028,
|
| 334 |
+
"chat-left-dots": 62029,
|
| 335 |
+
"chat-left-fill": 62030,
|
| 336 |
+
"chat-left-quote-fill": 62031,
|
| 337 |
+
"chat-left-quote": 62032,
|
| 338 |
+
"chat-left-text-fill": 62033,
|
| 339 |
+
"chat-left-text": 62034,
|
| 340 |
+
"chat-left": 62035,
|
| 341 |
+
"chat-quote-fill": 62036,
|
| 342 |
+
"chat-quote": 62037,
|
| 343 |
+
"chat-right-dots-fill": 62038,
|
| 344 |
+
"chat-right-dots": 62039,
|
| 345 |
+
"chat-right-fill": 62040,
|
| 346 |
+
"chat-right-quote-fill": 62041,
|
| 347 |
+
"chat-right-quote": 62042,
|
| 348 |
+
"chat-right-text-fill": 62043,
|
| 349 |
+
"chat-right-text": 62044,
|
| 350 |
+
"chat-right": 62045,
|
| 351 |
+
"chat-square-dots-fill": 62046,
|
| 352 |
+
"chat-square-dots": 62047,
|
| 353 |
+
"chat-square-fill": 62048,
|
| 354 |
+
"chat-square-quote-fill": 62049,
|
| 355 |
+
"chat-square-quote": 62050,
|
| 356 |
+
"chat-square-text-fill": 62051,
|
| 357 |
+
"chat-square-text": 62052,
|
| 358 |
+
"chat-square": 62053,
|
| 359 |
+
"chat-text-fill": 62054,
|
| 360 |
+
"chat-text": 62055,
|
| 361 |
+
"chat": 62056,
|
| 362 |
+
"check-all": 62057,
|
| 363 |
+
"check-circle-fill": 62058,
|
| 364 |
+
"check-circle": 62059,
|
| 365 |
+
"check-square-fill": 62060,
|
| 366 |
+
"check-square": 62061,
|
| 367 |
+
"check": 62062,
|
| 368 |
+
"check2-all": 62063,
|
| 369 |
+
"check2-circle": 62064,
|
| 370 |
+
"check2-square": 62065,
|
| 371 |
+
"check2": 62066,
|
| 372 |
+
"chevron-bar-contract": 62067,
|
| 373 |
+
"chevron-bar-down": 62068,
|
| 374 |
+
"chevron-bar-expand": 62069,
|
| 375 |
+
"chevron-bar-left": 62070,
|
| 376 |
+
"chevron-bar-right": 62071,
|
| 377 |
+
"chevron-bar-up": 62072,
|
| 378 |
+
"chevron-compact-down": 62073,
|
| 379 |
+
"chevron-compact-left": 62074,
|
| 380 |
+
"chevron-compact-right": 62075,
|
| 381 |
+
"chevron-compact-up": 62076,
|
| 382 |
+
"chevron-contract": 62077,
|
| 383 |
+
"chevron-double-down": 62078,
|
| 384 |
+
"chevron-double-left": 62079,
|
| 385 |
+
"chevron-double-right": 62080,
|
| 386 |
+
"chevron-double-up": 62081,
|
| 387 |
+
"chevron-down": 62082,
|
| 388 |
+
"chevron-expand": 62083,
|
| 389 |
+
"chevron-left": 62084,
|
| 390 |
+
"chevron-right": 62085,
|
| 391 |
+
"chevron-up": 62086,
|
| 392 |
+
"circle-fill": 62087,
|
| 393 |
+
"circle-half": 62088,
|
| 394 |
+
"circle-square": 62089,
|
| 395 |
+
"circle": 62090,
|
| 396 |
+
"clipboard-check": 62091,
|
| 397 |
+
"clipboard-data": 62092,
|
| 398 |
+
"clipboard-minus": 62093,
|
| 399 |
+
"clipboard-plus": 62094,
|
| 400 |
+
"clipboard-x": 62095,
|
| 401 |
+
"clipboard": 62096,
|
| 402 |
+
"clock-fill": 62097,
|
| 403 |
+
"clock-history": 62098,
|
| 404 |
+
"clock": 62099,
|
| 405 |
+
"cloud-arrow-down-fill": 62100,
|
| 406 |
+
"cloud-arrow-down": 62101,
|
| 407 |
+
"cloud-arrow-up-fill": 62102,
|
| 408 |
+
"cloud-arrow-up": 62103,
|
| 409 |
+
"cloud-check-fill": 62104,
|
| 410 |
+
"cloud-check": 62105,
|
| 411 |
+
"cloud-download-fill": 62106,
|
| 412 |
+
"cloud-download": 62107,
|
| 413 |
+
"cloud-drizzle-fill": 62108,
|
| 414 |
+
"cloud-drizzle": 62109,
|
| 415 |
+
"cloud-fill": 62110,
|
| 416 |
+
"cloud-fog-fill": 62111,
|
| 417 |
+
"cloud-fog": 62112,
|
| 418 |
+
"cloud-fog2-fill": 62113,
|
| 419 |
+
"cloud-fog2": 62114,
|
| 420 |
+
"cloud-hail-fill": 62115,
|
| 421 |
+
"cloud-hail": 62116,
|
| 422 |
+
"cloud-haze-1": 62117,
|
| 423 |
+
"cloud-haze-fill": 62118,
|
| 424 |
+
"cloud-haze": 62119,
|
| 425 |
+
"cloud-haze2-fill": 62120,
|
| 426 |
+
"cloud-lightning-fill": 62121,
|
| 427 |
+
"cloud-lightning-rain-fill": 62122,
|
| 428 |
+
"cloud-lightning-rain": 62123,
|
| 429 |
+
"cloud-lightning": 62124,
|
| 430 |
+
"cloud-minus-fill": 62125,
|
| 431 |
+
"cloud-minus": 62126,
|
| 432 |
+
"cloud-moon-fill": 62127,
|
| 433 |
+
"cloud-moon": 62128,
|
| 434 |
+
"cloud-plus-fill": 62129,
|
| 435 |
+
"cloud-plus": 62130,
|
| 436 |
+
"cloud-rain-fill": 62131,
|
| 437 |
+
"cloud-rain-heavy-fill": 62132,
|
| 438 |
+
"cloud-rain-heavy": 62133,
|
| 439 |
+
"cloud-rain": 62134,
|
| 440 |
+
"cloud-slash-fill": 62135,
|
| 441 |
+
"cloud-slash": 62136,
|
| 442 |
+
"cloud-sleet-fill": 62137,
|
| 443 |
+
"cloud-sleet": 62138,
|
| 444 |
+
"cloud-snow-fill": 62139,
|
| 445 |
+
"cloud-snow": 62140,
|
| 446 |
+
"cloud-sun-fill": 62141,
|
| 447 |
+
"cloud-sun": 62142,
|
| 448 |
+
"cloud-upload-fill": 62143,
|
| 449 |
+
"cloud-upload": 62144,
|
| 450 |
+
"cloud": 62145,
|
| 451 |
+
"clouds-fill": 62146,
|
| 452 |
+
"clouds": 62147,
|
| 453 |
+
"cloudy-fill": 62148,
|
| 454 |
+
"cloudy": 62149,
|
| 455 |
+
"code-slash": 62150,
|
| 456 |
+
"code-square": 62151,
|
| 457 |
+
"code": 62152,
|
| 458 |
+
"collection-fill": 62153,
|
| 459 |
+
"collection-play-fill": 62154,
|
| 460 |
+
"collection-play": 62155,
|
| 461 |
+
"collection": 62156,
|
| 462 |
+
"columns-gap": 62157,
|
| 463 |
+
"columns": 62158,
|
| 464 |
+
"command": 62159,
|
| 465 |
+
"compass-fill": 62160,
|
| 466 |
+
"compass": 62161,
|
| 467 |
+
"cone-striped": 62162,
|
| 468 |
+
"cone": 62163,
|
| 469 |
+
"controller": 62164,
|
| 470 |
+
"cpu-fill": 62165,
|
| 471 |
+
"cpu": 62166,
|
| 472 |
+
"credit-card-2-back-fill": 62167,
|
| 473 |
+
"credit-card-2-back": 62168,
|
| 474 |
+
"credit-card-2-front-fill": 62169,
|
| 475 |
+
"credit-card-2-front": 62170,
|
| 476 |
+
"credit-card-fill": 62171,
|
| 477 |
+
"credit-card": 62172,
|
| 478 |
+
"crop": 62173,
|
| 479 |
+
"cup-fill": 62174,
|
| 480 |
+
"cup-straw": 62175,
|
| 481 |
+
"cup": 62176,
|
| 482 |
+
"cursor-fill": 62177,
|
| 483 |
+
"cursor-text": 62178,
|
| 484 |
+
"cursor": 62179,
|
| 485 |
+
"dash-circle-dotted": 62180,
|
| 486 |
+
"dash-circle-fill": 62181,
|
| 487 |
+
"dash-circle": 62182,
|
| 488 |
+
"dash-square-dotted": 62183,
|
| 489 |
+
"dash-square-fill": 62184,
|
| 490 |
+
"dash-square": 62185,
|
| 491 |
+
"dash": 62186,
|
| 492 |
+
"diagram-2-fill": 62187,
|
| 493 |
+
"diagram-2": 62188,
|
| 494 |
+
"diagram-3-fill": 62189,
|
| 495 |
+
"diagram-3": 62190,
|
| 496 |
+
"diamond-fill": 62191,
|
| 497 |
+
"diamond-half": 62192,
|
| 498 |
+
"diamond": 62193,
|
| 499 |
+
"dice-1-fill": 62194,
|
| 500 |
+
"dice-1": 62195,
|
| 501 |
+
"dice-2-fill": 62196,
|
| 502 |
+
"dice-2": 62197,
|
| 503 |
+
"dice-3-fill": 62198,
|
| 504 |
+
"dice-3": 62199,
|
| 505 |
+
"dice-4-fill": 62200,
|
| 506 |
+
"dice-4": 62201,
|
| 507 |
+
"dice-5-fill": 62202,
|
| 508 |
+
"dice-5": 62203,
|
| 509 |
+
"dice-6-fill": 62204,
|
| 510 |
+
"dice-6": 62205,
|
| 511 |
+
"disc-fill": 62206,
|
| 512 |
+
"disc": 62207,
|
| 513 |
+
"discord": 62208,
|
| 514 |
+
"display-fill": 62209,
|
| 515 |
+
"display": 62210,
|
| 516 |
+
"distribute-horizontal": 62211,
|
| 517 |
+
"distribute-vertical": 62212,
|
| 518 |
+
"door-closed-fill": 62213,
|
| 519 |
+
"door-closed": 62214,
|
| 520 |
+
"door-open-fill": 62215,
|
| 521 |
+
"door-open": 62216,
|
| 522 |
+
"dot": 62217,
|
| 523 |
+
"download": 62218,
|
| 524 |
+
"droplet-fill": 62219,
|
| 525 |
+
"droplet-half": 62220,
|
| 526 |
+
"droplet": 62221,
|
| 527 |
+
"earbuds": 62222,
|
| 528 |
+
"easel-fill": 62223,
|
| 529 |
+
"easel": 62224,
|
| 530 |
+
"egg-fill": 62225,
|
| 531 |
+
"egg-fried": 62226,
|
| 532 |
+
"egg": 62227,
|
| 533 |
+
"eject-fill": 62228,
|
| 534 |
+
"eject": 62229,
|
| 535 |
+
"emoji-angry-fill": 62230,
|
| 536 |
+
"emoji-angry": 62231,
|
| 537 |
+
"emoji-dizzy-fill": 62232,
|
| 538 |
+
"emoji-dizzy": 62233,
|
| 539 |
+
"emoji-expressionless-fill": 62234,
|
| 540 |
+
"emoji-expressionless": 62235,
|
| 541 |
+
"emoji-frown-fill": 62236,
|
| 542 |
+
"emoji-frown": 62237,
|
| 543 |
+
"emoji-heart-eyes-fill": 62238,
|
| 544 |
+
"emoji-heart-eyes": 62239,
|
| 545 |
+
"emoji-laughing-fill": 62240,
|
| 546 |
+
"emoji-laughing": 62241,
|
| 547 |
+
"emoji-neutral-fill": 62242,
|
| 548 |
+
"emoji-neutral": 62243,
|
| 549 |
+
"emoji-smile-fill": 62244,
|
| 550 |
+
"emoji-smile-upside-down-fill": 62245,
|
| 551 |
+
"emoji-smile-upside-down": 62246,
|
| 552 |
+
"emoji-smile": 62247,
|
| 553 |
+
"emoji-sunglasses-fill": 62248,
|
| 554 |
+
"emoji-sunglasses": 62249,
|
| 555 |
+
"emoji-wink-fill": 62250,
|
| 556 |
+
"emoji-wink": 62251,
|
| 557 |
+
"envelope-fill": 62252,
|
| 558 |
+
"envelope-open-fill": 62253,
|
| 559 |
+
"envelope-open": 62254,
|
| 560 |
+
"envelope": 62255,
|
| 561 |
+
"eraser-fill": 62256,
|
| 562 |
+
"eraser": 62257,
|
| 563 |
+
"exclamation-circle-fill": 62258,
|
| 564 |
+
"exclamation-circle": 62259,
|
| 565 |
+
"exclamation-diamond-fill": 62260,
|
| 566 |
+
"exclamation-diamond": 62261,
|
| 567 |
+
"exclamation-octagon-fill": 62262,
|
| 568 |
+
"exclamation-octagon": 62263,
|
| 569 |
+
"exclamation-square-fill": 62264,
|
| 570 |
+
"exclamation-square": 62265,
|
| 571 |
+
"exclamation-triangle-fill": 62266,
|
| 572 |
+
"exclamation-triangle": 62267,
|
| 573 |
+
"exclamation": 62268,
|
| 574 |
+
"exclude": 62269,
|
| 575 |
+
"eye-fill": 62270,
|
| 576 |
+
"eye-slash-fill": 62271,
|
| 577 |
+
"eye-slash": 62272,
|
| 578 |
+
"eye": 62273,
|
| 579 |
+
"eyedropper": 62274,
|
| 580 |
+
"eyeglasses": 62275,
|
| 581 |
+
"facebook": 62276,
|
| 582 |
+
"file-arrow-down-fill": 62277,
|
| 583 |
+
"file-arrow-down": 62278,
|
| 584 |
+
"file-arrow-up-fill": 62279,
|
| 585 |
+
"file-arrow-up": 62280,
|
| 586 |
+
"file-bar-graph-fill": 62281,
|
| 587 |
+
"file-bar-graph": 62282,
|
| 588 |
+
"file-binary-fill": 62283,
|
| 589 |
+
"file-binary": 62284,
|
| 590 |
+
"file-break-fill": 62285,
|
| 591 |
+
"file-break": 62286,
|
| 592 |
+
"file-check-fill": 62287,
|
| 593 |
+
"file-check": 62288,
|
| 594 |
+
"file-code-fill": 62289,
|
| 595 |
+
"file-code": 62290,
|
| 596 |
+
"file-diff-fill": 62291,
|
| 597 |
+
"file-diff": 62292,
|
| 598 |
+
"file-earmark-arrow-down-fill": 62293,
|
| 599 |
+
"file-earmark-arrow-down": 62294,
|
| 600 |
+
"file-earmark-arrow-up-fill": 62295,
|
| 601 |
+
"file-earmark-arrow-up": 62296,
|
| 602 |
+
"file-earmark-bar-graph-fill": 62297,
|
| 603 |
+
"file-earmark-bar-graph": 62298,
|
| 604 |
+
"file-earmark-binary-fill": 62299,
|
| 605 |
+
"file-earmark-binary": 62300,
|
| 606 |
+
"file-earmark-break-fill": 62301,
|
| 607 |
+
"file-earmark-break": 62302,
|
| 608 |
+
"file-earmark-check-fill": 62303,
|
| 609 |
+
"file-earmark-check": 62304,
|
| 610 |
+
"file-earmark-code-fill": 62305,
|
| 611 |
+
"file-earmark-code": 62306,
|
| 612 |
+
"file-earmark-diff-fill": 62307,
|
| 613 |
+
"file-earmark-diff": 62308,
|
| 614 |
+
"file-earmark-easel-fill": 62309,
|
| 615 |
+
"file-earmark-easel": 62310,
|
| 616 |
+
"file-earmark-excel-fill": 62311,
|
| 617 |
+
"file-earmark-excel": 62312,
|
| 618 |
+
"file-earmark-fill": 62313,
|
| 619 |
+
"file-earmark-font-fill": 62314,
|
| 620 |
+
"file-earmark-font": 62315,
|
| 621 |
+
"file-earmark-image-fill": 62316,
|
| 622 |
+
"file-earmark-image": 62317,
|
| 623 |
+
"file-earmark-lock-fill": 62318,
|
| 624 |
+
"file-earmark-lock": 62319,
|
| 625 |
+
"file-earmark-lock2-fill": 62320,
|
| 626 |
+
"file-earmark-lock2": 62321,
|
| 627 |
+
"file-earmark-medical-fill": 62322,
|
| 628 |
+
"file-earmark-medical": 62323,
|
| 629 |
+
"file-earmark-minus-fill": 62324,
|
| 630 |
+
"file-earmark-minus": 62325,
|
| 631 |
+
"file-earmark-music-fill": 62326,
|
| 632 |
+
"file-earmark-music": 62327,
|
| 633 |
+
"file-earmark-person-fill": 62328,
|
| 634 |
+
"file-earmark-person": 62329,
|
| 635 |
+
"file-earmark-play-fill": 62330,
|
| 636 |
+
"file-earmark-play": 62331,
|
| 637 |
+
"file-earmark-plus-fill": 62332,
|
| 638 |
+
"file-earmark-plus": 62333,
|
| 639 |
+
"file-earmark-post-fill": 62334,
|
| 640 |
+
"file-earmark-post": 62335,
|
| 641 |
+
"file-earmark-ppt-fill": 62336,
|
| 642 |
+
"file-earmark-ppt": 62337,
|
| 643 |
+
"file-earmark-richtext-fill": 62338,
|
| 644 |
+
"file-earmark-richtext": 62339,
|
| 645 |
+
"file-earmark-ruled-fill": 62340,
|
| 646 |
+
"file-earmark-ruled": 62341,
|
| 647 |
+
"file-earmark-slides-fill": 62342,
|
| 648 |
+
"file-earmark-slides": 62343,
|
| 649 |
+
"file-earmark-spreadsheet-fill": 62344,
|
| 650 |
+
"file-earmark-spreadsheet": 62345,
|
| 651 |
+
"file-earmark-text-fill": 62346,
|
| 652 |
+
"file-earmark-text": 62347,
|
| 653 |
+
"file-earmark-word-fill": 62348,
|
| 654 |
+
"file-earmark-word": 62349,
|
| 655 |
+
"file-earmark-x-fill": 62350,
|
| 656 |
+
"file-earmark-x": 62351,
|
| 657 |
+
"file-earmark-zip-fill": 62352,
|
| 658 |
+
"file-earmark-zip": 62353,
|
| 659 |
+
"file-earmark": 62354,
|
| 660 |
+
"file-easel-fill": 62355,
|
| 661 |
+
"file-easel": 62356,
|
| 662 |
+
"file-excel-fill": 62357,
|
| 663 |
+
"file-excel": 62358,
|
| 664 |
+
"file-fill": 62359,
|
| 665 |
+
"file-font-fill": 62360,
|
| 666 |
+
"file-font": 62361,
|
| 667 |
+
"file-image-fill": 62362,
|
| 668 |
+
"file-image": 62363,
|
| 669 |
+
"file-lock-fill": 62364,
|
| 670 |
+
"file-lock": 62365,
|
| 671 |
+
"file-lock2-fill": 62366,
|
| 672 |
+
"file-lock2": 62367,
|
| 673 |
+
"file-medical-fill": 62368,
|
| 674 |
+
"file-medical": 62369,
|
| 675 |
+
"file-minus-fill": 62370,
|
| 676 |
+
"file-minus": 62371,
|
| 677 |
+
"file-music-fill": 62372,
|
| 678 |
+
"file-music": 62373,
|
| 679 |
+
"file-person-fill": 62374,
|
| 680 |
+
"file-person": 62375,
|
| 681 |
+
"file-play-fill": 62376,
|
| 682 |
+
"file-play": 62377,
|
| 683 |
+
"file-plus-fill": 62378,
|
| 684 |
+
"file-plus": 62379,
|
| 685 |
+
"file-post-fill": 62380,
|
| 686 |
+
"file-post": 62381,
|
| 687 |
+
"file-ppt-fill": 62382,
|
| 688 |
+
"file-ppt": 62383,
|
| 689 |
+
"file-richtext-fill": 62384,
|
| 690 |
+
"file-richtext": 62385,
|
| 691 |
+
"file-ruled-fill": 62386,
|
| 692 |
+
"file-ruled": 62387,
|
| 693 |
+
"file-slides-fill": 62388,
|
| 694 |
+
"file-slides": 62389,
|
| 695 |
+
"file-spreadsheet-fill": 62390,
|
| 696 |
+
"file-spreadsheet": 62391,
|
| 697 |
+
"file-text-fill": 62392,
|
| 698 |
+
"file-text": 62393,
|
| 699 |
+
"file-word-fill": 62394,
|
| 700 |
+
"file-word": 62395,
|
| 701 |
+
"file-x-fill": 62396,
|
| 702 |
+
"file-x": 62397,
|
| 703 |
+
"file-zip-fill": 62398,
|
| 704 |
+
"file-zip": 62399,
|
| 705 |
+
"file": 62400,
|
| 706 |
+
"files-alt": 62401,
|
| 707 |
+
"files": 62402,
|
| 708 |
+
"film": 62403,
|
| 709 |
+
"filter-circle-fill": 62404,
|
| 710 |
+
"filter-circle": 62405,
|
| 711 |
+
"filter-left": 62406,
|
| 712 |
+
"filter-right": 62407,
|
| 713 |
+
"filter-square-fill": 62408,
|
| 714 |
+
"filter-square": 62409,
|
| 715 |
+
"filter": 62410,
|
| 716 |
+
"flag-fill": 62411,
|
| 717 |
+
"flag": 62412,
|
| 718 |
+
"flower1": 62413,
|
| 719 |
+
"flower2": 62414,
|
| 720 |
+
"flower3": 62415,
|
| 721 |
+
"folder-check": 62416,
|
| 722 |
+
"folder-fill": 62417,
|
| 723 |
+
"folder-minus": 62418,
|
| 724 |
+
"folder-plus": 62419,
|
| 725 |
+
"folder-symlink-fill": 62420,
|
| 726 |
+
"folder-symlink": 62421,
|
| 727 |
+
"folder-x": 62422,
|
| 728 |
+
"folder": 62423,
|
| 729 |
+
"folder2-open": 62424,
|
| 730 |
+
"folder2": 62425,
|
| 731 |
+
"fonts": 62426,
|
| 732 |
+
"forward-fill": 62427,
|
| 733 |
+
"forward": 62428,
|
| 734 |
+
"front": 62429,
|
| 735 |
+
"fullscreen-exit": 62430,
|
| 736 |
+
"fullscreen": 62431,
|
| 737 |
+
"funnel-fill": 62432,
|
| 738 |
+
"funnel": 62433,
|
| 739 |
+
"gear-fill": 62434,
|
| 740 |
+
"gear-wide-connected": 62435,
|
| 741 |
+
"gear-wide": 62436,
|
| 742 |
+
"gear": 62437,
|
| 743 |
+
"gem": 62438,
|
| 744 |
+
"geo-alt-fill": 62439,
|
| 745 |
+
"geo-alt": 62440,
|
| 746 |
+
"geo-fill": 62441,
|
| 747 |
+
"geo": 62442,
|
| 748 |
+
"gift-fill": 62443,
|
| 749 |
+
"gift": 62444,
|
| 750 |
+
"github": 62445,
|
| 751 |
+
"globe": 62446,
|
| 752 |
+
"globe2": 62447,
|
| 753 |
+
"google": 62448,
|
| 754 |
+
"graph-down": 62449,
|
| 755 |
+
"graph-up": 62450,
|
| 756 |
+
"grid-1x2-fill": 62451,
|
| 757 |
+
"grid-1x2": 62452,
|
| 758 |
+
"grid-3x2-gap-fill": 62453,
|
| 759 |
+
"grid-3x2-gap": 62454,
|
| 760 |
+
"grid-3x2": 62455,
|
| 761 |
+
"grid-3x3-gap-fill": 62456,
|
| 762 |
+
"grid-3x3-gap": 62457,
|
| 763 |
+
"grid-3x3": 62458,
|
| 764 |
+
"grid-fill": 62459,
|
| 765 |
+
"grid": 62460,
|
| 766 |
+
"grip-horizontal": 62461,
|
| 767 |
+
"grip-vertical": 62462,
|
| 768 |
+
"hammer": 62463,
|
| 769 |
+
"hand-index-fill": 62464,
|
| 770 |
+
"hand-index-thumb-fill": 62465,
|
| 771 |
+
"hand-index-thumb": 62466,
|
| 772 |
+
"hand-index": 62467,
|
| 773 |
+
"hand-thumbs-down-fill": 62468,
|
| 774 |
+
"hand-thumbs-down": 62469,
|
| 775 |
+
"hand-thumbs-up-fill": 62470,
|
| 776 |
+
"hand-thumbs-up": 62471,
|
| 777 |
+
"handbag-fill": 62472,
|
| 778 |
+
"handbag": 62473,
|
| 779 |
+
"hash": 62474,
|
| 780 |
+
"hdd-fill": 62475,
|
| 781 |
+
"hdd-network-fill": 62476,
|
| 782 |
+
"hdd-network": 62477,
|
| 783 |
+
"hdd-rack-fill": 62478,
|
| 784 |
+
"hdd-rack": 62479,
|
| 785 |
+
"hdd-stack-fill": 62480,
|
| 786 |
+
"hdd-stack": 62481,
|
| 787 |
+
"hdd": 62482,
|
| 788 |
+
"headphones": 62483,
|
| 789 |
+
"headset": 62484,
|
| 790 |
+
"heart-fill": 62485,
|
| 791 |
+
"heart-half": 62486,
|
| 792 |
+
"heart": 62487,
|
| 793 |
+
"heptagon-fill": 62488,
|
| 794 |
+
"heptagon-half": 62489,
|
| 795 |
+
"heptagon": 62490,
|
| 796 |
+
"hexagon-fill": 62491,
|
| 797 |
+
"hexagon-half": 62492,
|
| 798 |
+
"hexagon": 62493,
|
| 799 |
+
"hourglass-bottom": 62494,
|
| 800 |
+
"hourglass-split": 62495,
|
| 801 |
+
"hourglass-top": 62496,
|
| 802 |
+
"hourglass": 62497,
|
| 803 |
+
"house-door-fill": 62498,
|
| 804 |
+
"house-door": 62499,
|
| 805 |
+
"house-fill": 62500,
|
| 806 |
+
"house": 62501,
|
| 807 |
+
"hr": 62502,
|
| 808 |
+
"hurricane": 62503,
|
| 809 |
+
"image-alt": 62504,
|
| 810 |
+
"image-fill": 62505,
|
| 811 |
+
"image": 62506,
|
| 812 |
+
"images": 62507,
|
| 813 |
+
"inbox-fill": 62508,
|
| 814 |
+
"inbox": 62509,
|
| 815 |
+
"inboxes-fill": 62510,
|
| 816 |
+
"inboxes": 62511,
|
| 817 |
+
"info-circle-fill": 62512,
|
| 818 |
+
"info-circle": 62513,
|
| 819 |
+
"info-square-fill": 62514,
|
| 820 |
+
"info-square": 62515,
|
| 821 |
+
"info": 62516,
|
| 822 |
+
"input-cursor-text": 62517,
|
| 823 |
+
"input-cursor": 62518,
|
| 824 |
+
"instagram": 62519,
|
| 825 |
+
"intersect": 62520,
|
| 826 |
+
"journal-album": 62521,
|
| 827 |
+
"journal-arrow-down": 62522,
|
| 828 |
+
"journal-arrow-up": 62523,
|
| 829 |
+
"journal-bookmark-fill": 62524,
|
| 830 |
+
"journal-bookmark": 62525,
|
| 831 |
+
"journal-check": 62526,
|
| 832 |
+
"journal-code": 62527,
|
| 833 |
+
"journal-medical": 62528,
|
| 834 |
+
"journal-minus": 62529,
|
| 835 |
+
"journal-plus": 62530,
|
| 836 |
+
"journal-richtext": 62531,
|
| 837 |
+
"journal-text": 62532,
|
| 838 |
+
"journal-x": 62533,
|
| 839 |
+
"journal": 62534,
|
| 840 |
+
"journals": 62535,
|
| 841 |
+
"joystick": 62536,
|
| 842 |
+
"justify-left": 62537,
|
| 843 |
+
"justify-right": 62538,
|
| 844 |
+
"justify": 62539,
|
| 845 |
+
"kanban-fill": 62540,
|
| 846 |
+
"kanban": 62541,
|
| 847 |
+
"key-fill": 62542,
|
| 848 |
+
"key": 62543,
|
| 849 |
+
"keyboard-fill": 62544,
|
| 850 |
+
"keyboard": 62545,
|
| 851 |
+
"ladder": 62546,
|
| 852 |
+
"lamp-fill": 62547,
|
| 853 |
+
"lamp": 62548,
|
| 854 |
+
"laptop-fill": 62549,
|
| 855 |
+
"laptop": 62550,
|
| 856 |
+
"layer-backward": 62551,
|
| 857 |
+
"layer-forward": 62552,
|
| 858 |
+
"layers-fill": 62553,
|
| 859 |
+
"layers-half": 62554,
|
| 860 |
+
"layers": 62555,
|
| 861 |
+
"layout-sidebar-inset-reverse": 62556,
|
| 862 |
+
"layout-sidebar-inset": 62557,
|
| 863 |
+
"layout-sidebar-reverse": 62558,
|
| 864 |
+
"layout-sidebar": 62559,
|
| 865 |
+
"layout-split": 62560,
|
| 866 |
+
"layout-text-sidebar-reverse": 62561,
|
| 867 |
+
"layout-text-sidebar": 62562,
|
| 868 |
+
"layout-text-window-reverse": 62563,
|
| 869 |
+
"layout-text-window": 62564,
|
| 870 |
+
"layout-three-columns": 62565,
|
| 871 |
+
"layout-wtf": 62566,
|
| 872 |
+
"life-preserver": 62567,
|
| 873 |
+
"lightbulb-fill": 62568,
|
| 874 |
+
"lightbulb-off-fill": 62569,
|
| 875 |
+
"lightbulb-off": 62570,
|
| 876 |
+
"lightbulb": 62571,
|
| 877 |
+
"lightning-charge-fill": 62572,
|
| 878 |
+
"lightning-charge": 62573,
|
| 879 |
+
"lightning-fill": 62574,
|
| 880 |
+
"lightning": 62575,
|
| 881 |
+
"link-45deg": 62576,
|
| 882 |
+
"link": 62577,
|
| 883 |
+
"linkedin": 62578,
|
| 884 |
+
"list-check": 62579,
|
| 885 |
+
"list-nested": 62580,
|
| 886 |
+
"list-ol": 62581,
|
| 887 |
+
"list-stars": 62582,
|
| 888 |
+
"list-task": 62583,
|
| 889 |
+
"list-ul": 62584,
|
| 890 |
+
"list": 62585,
|
| 891 |
+
"lock-fill": 62586,
|
| 892 |
+
"lock": 62587,
|
| 893 |
+
"mailbox": 62588,
|
| 894 |
+
"mailbox2": 62589,
|
| 895 |
+
"map-fill": 62590,
|
| 896 |
+
"map": 62591,
|
| 897 |
+
"markdown-fill": 62592,
|
| 898 |
+
"markdown": 62593,
|
| 899 |
+
"mask": 62594,
|
| 900 |
+
"megaphone-fill": 62595,
|
| 901 |
+
"megaphone": 62596,
|
| 902 |
+
"menu-app-fill": 62597,
|
| 903 |
+
"menu-app": 62598,
|
| 904 |
+
"menu-button-fill": 62599,
|
| 905 |
+
"menu-button-wide-fill": 62600,
|
| 906 |
+
"menu-button-wide": 62601,
|
| 907 |
+
"menu-button": 62602,
|
| 908 |
+
"menu-down": 62603,
|
| 909 |
+
"menu-up": 62604,
|
| 910 |
+
"mic-fill": 62605,
|
| 911 |
+
"mic-mute-fill": 62606,
|
| 912 |
+
"mic-mute": 62607,
|
| 913 |
+
"mic": 62608,
|
| 914 |
+
"minecart-loaded": 62609,
|
| 915 |
+
"minecart": 62610,
|
| 916 |
+
"moisture": 62611,
|
| 917 |
+
"moon-fill": 62612,
|
| 918 |
+
"moon-stars-fill": 62613,
|
| 919 |
+
"moon-stars": 62614,
|
| 920 |
+
"moon": 62615,
|
| 921 |
+
"mouse-fill": 62616,
|
| 922 |
+
"mouse": 62617,
|
| 923 |
+
"mouse2-fill": 62618,
|
| 924 |
+
"mouse2": 62619,
|
| 925 |
+
"mouse3-fill": 62620,
|
| 926 |
+
"mouse3": 62621,
|
| 927 |
+
"music-note-beamed": 62622,
|
| 928 |
+
"music-note-list": 62623,
|
| 929 |
+
"music-note": 62624,
|
| 930 |
+
"music-player-fill": 62625,
|
| 931 |
+
"music-player": 62626,
|
| 932 |
+
"newspaper": 62627,
|
| 933 |
+
"node-minus-fill": 62628,
|
| 934 |
+
"node-minus": 62629,
|
| 935 |
+
"node-plus-fill": 62630,
|
| 936 |
+
"node-plus": 62631,
|
| 937 |
+
"nut-fill": 62632,
|
| 938 |
+
"nut": 62633,
|
| 939 |
+
"octagon-fill": 62634,
|
| 940 |
+
"octagon-half": 62635,
|
| 941 |
+
"octagon": 62636,
|
| 942 |
+
"option": 62637,
|
| 943 |
+
"outlet": 62638,
|
| 944 |
+
"paint-bucket": 62639,
|
| 945 |
+
"palette-fill": 62640,
|
| 946 |
+
"palette": 62641,
|
| 947 |
+
"palette2": 62642,
|
| 948 |
+
"paperclip": 62643,
|
| 949 |
+
"paragraph": 62644,
|
| 950 |
+
"patch-check-fill": 62645,
|
| 951 |
+
"patch-check": 62646,
|
| 952 |
+
"patch-exclamation-fill": 62647,
|
| 953 |
+
"patch-exclamation": 62648,
|
| 954 |
+
"patch-minus-fill": 62649,
|
| 955 |
+
"patch-minus": 62650,
|
| 956 |
+
"patch-plus-fill": 62651,
|
| 957 |
+
"patch-plus": 62652,
|
| 958 |
+
"patch-question-fill": 62653,
|
| 959 |
+
"patch-question": 62654,
|
| 960 |
+
"pause-btn-fill": 62655,
|
| 961 |
+
"pause-btn": 62656,
|
| 962 |
+
"pause-circle-fill": 62657,
|
| 963 |
+
"pause-circle": 62658,
|
| 964 |
+
"pause-fill": 62659,
|
| 965 |
+
"pause": 62660,
|
| 966 |
+
"peace-fill": 62661,
|
| 967 |
+
"peace": 62662,
|
| 968 |
+
"pen-fill": 62663,
|
| 969 |
+
"pen": 62664,
|
| 970 |
+
"pencil-fill": 62665,
|
| 971 |
+
"pencil-square": 62666,
|
| 972 |
+
"pencil": 62667,
|
| 973 |
+
"pentagon-fill": 62668,
|
| 974 |
+
"pentagon-half": 62669,
|
| 975 |
+
"pentagon": 62670,
|
| 976 |
+
"people-fill": 62671,
|
| 977 |
+
"people": 62672,
|
| 978 |
+
"percent": 62673,
|
| 979 |
+
"person-badge-fill": 62674,
|
| 980 |
+
"person-badge": 62675,
|
| 981 |
+
"person-bounding-box": 62676,
|
| 982 |
+
"person-check-fill": 62677,
|
| 983 |
+
"person-check": 62678,
|
| 984 |
+
"person-circle": 62679,
|
| 985 |
+
"person-dash-fill": 62680,
|
| 986 |
+
"person-dash": 62681,
|
| 987 |
+
"person-fill": 62682,
|
| 988 |
+
"person-lines-fill": 62683,
|
| 989 |
+
"person-plus-fill": 62684,
|
| 990 |
+
"person-plus": 62685,
|
| 991 |
+
"person-square": 62686,
|
| 992 |
+
"person-x-fill": 62687,
|
| 993 |
+
"person-x": 62688,
|
| 994 |
+
"person": 62689,
|
| 995 |
+
"phone-fill": 62690,
|
| 996 |
+
"phone-landscape-fill": 62691,
|
| 997 |
+
"phone-landscape": 62692,
|
| 998 |
+
"phone-vibrate-fill": 62693,
|
| 999 |
+
"phone-vibrate": 62694,
|
| 1000 |
+
"phone": 62695,
|
| 1001 |
+
"pie-chart-fill": 62696,
|
| 1002 |
+
"pie-chart": 62697,
|
| 1003 |
+
"pin-angle-fill": 62698,
|
| 1004 |
+
"pin-angle": 62699,
|
| 1005 |
+
"pin-fill": 62700,
|
| 1006 |
+
"pin": 62701,
|
| 1007 |
+
"pip-fill": 62702,
|
| 1008 |
+
"pip": 62703,
|
| 1009 |
+
"play-btn-fill": 62704,
|
| 1010 |
+
"play-btn": 62705,
|
| 1011 |
+
"play-circle-fill": 62706,
|
| 1012 |
+
"play-circle": 62707,
|
| 1013 |
+
"play-fill": 62708,
|
| 1014 |
+
"play": 62709,
|
| 1015 |
+
"plug-fill": 62710,
|
| 1016 |
+
"plug": 62711,
|
| 1017 |
+
"plus-circle-dotted": 62712,
|
| 1018 |
+
"plus-circle-fill": 62713,
|
| 1019 |
+
"plus-circle": 62714,
|
| 1020 |
+
"plus-square-dotted": 62715,
|
| 1021 |
+
"plus-square-fill": 62716,
|
| 1022 |
+
"plus-square": 62717,
|
| 1023 |
+
"plus": 62718,
|
| 1024 |
+
"power": 62719,
|
| 1025 |
+
"printer-fill": 62720,
|
| 1026 |
+
"printer": 62721,
|
| 1027 |
+
"puzzle-fill": 62722,
|
| 1028 |
+
"puzzle": 62723,
|
| 1029 |
+
"question-circle-fill": 62724,
|
| 1030 |
+
"question-circle": 62725,
|
| 1031 |
+
"question-diamond-fill": 62726,
|
| 1032 |
+
"question-diamond": 62727,
|
| 1033 |
+
"question-octagon-fill": 62728,
|
| 1034 |
+
"question-octagon": 62729,
|
| 1035 |
+
"question-square-fill": 62730,
|
| 1036 |
+
"question-square": 62731,
|
| 1037 |
+
"question": 62732,
|
| 1038 |
+
"rainbow": 62733,
|
| 1039 |
+
"receipt-cutoff": 62734,
|
| 1040 |
+
"receipt": 62735,
|
| 1041 |
+
"reception-0": 62736,
|
| 1042 |
+
"reception-1": 62737,
|
| 1043 |
+
"reception-2": 62738,
|
| 1044 |
+
"reception-3": 62739,
|
| 1045 |
+
"reception-4": 62740,
|
| 1046 |
+
"record-btn-fill": 62741,
|
| 1047 |
+
"record-btn": 62742,
|
| 1048 |
+
"record-circle-fill": 62743,
|
| 1049 |
+
"record-circle": 62744,
|
| 1050 |
+
"record-fill": 62745,
|
| 1051 |
+
"record": 62746,
|
| 1052 |
+
"record2-fill": 62747,
|
| 1053 |
+
"record2": 62748,
|
| 1054 |
+
"reply-all-fill": 62749,
|
| 1055 |
+
"reply-all": 62750,
|
| 1056 |
+
"reply-fill": 62751,
|
| 1057 |
+
"reply": 62752,
|
| 1058 |
+
"rss-fill": 62753,
|
| 1059 |
+
"rss": 62754,
|
| 1060 |
+
"rulers": 62755,
|
| 1061 |
+
"save-fill": 62756,
|
| 1062 |
+
"save": 62757,
|
| 1063 |
+
"save2-fill": 62758,
|
| 1064 |
+
"save2": 62759,
|
| 1065 |
+
"scissors": 62760,
|
| 1066 |
+
"screwdriver": 62761,
|
| 1067 |
+
"search": 62762,
|
| 1068 |
+
"segmented-nav": 62763,
|
| 1069 |
+
"server": 62764,
|
| 1070 |
+
"share-fill": 62765,
|
| 1071 |
+
"share": 62766,
|
| 1072 |
+
"shield-check": 62767,
|
| 1073 |
+
"shield-exclamation": 62768,
|
| 1074 |
+
"shield-fill-check": 62769,
|
| 1075 |
+
"shield-fill-exclamation": 62770,
|
| 1076 |
+
"shield-fill-minus": 62771,
|
| 1077 |
+
"shield-fill-plus": 62772,
|
| 1078 |
+
"shield-fill-x": 62773,
|
| 1079 |
+
"shield-fill": 62774,
|
| 1080 |
+
"shield-lock-fill": 62775,
|
| 1081 |
+
"shield-lock": 62776,
|
| 1082 |
+
"shield-minus": 62777,
|
| 1083 |
+
"shield-plus": 62778,
|
| 1084 |
+
"shield-shaded": 62779,
|
| 1085 |
+
"shield-slash-fill": 62780,
|
| 1086 |
+
"shield-slash": 62781,
|
| 1087 |
+
"shield-x": 62782,
|
| 1088 |
+
"shield": 62783,
|
| 1089 |
+
"shift-fill": 62784,
|
| 1090 |
+
"shift": 62785,
|
| 1091 |
+
"shop-window": 62786,
|
| 1092 |
+
"shop": 62787,
|
| 1093 |
+
"shuffle": 62788,
|
| 1094 |
+
"signpost-2-fill": 62789,
|
| 1095 |
+
"signpost-2": 62790,
|
| 1096 |
+
"signpost-fill": 62791,
|
| 1097 |
+
"signpost-split-fill": 62792,
|
| 1098 |
+
"signpost-split": 62793,
|
| 1099 |
+
"signpost": 62794,
|
| 1100 |
+
"sim-fill": 62795,
|
| 1101 |
+
"sim": 62796,
|
| 1102 |
+
"skip-backward-btn-fill": 62797,
|
| 1103 |
+
"skip-backward-btn": 62798,
|
| 1104 |
+
"skip-backward-circle-fill": 62799,
|
| 1105 |
+
"skip-backward-circle": 62800,
|
| 1106 |
+
"skip-backward-fill": 62801,
|
| 1107 |
+
"skip-backward": 62802,
|
| 1108 |
+
"skip-end-btn-fill": 62803,
|
| 1109 |
+
"skip-end-btn": 62804,
|
| 1110 |
+
"skip-end-circle-fill": 62805,
|
| 1111 |
+
"skip-end-circle": 62806,
|
| 1112 |
+
"skip-end-fill": 62807,
|
| 1113 |
+
"skip-end": 62808,
|
| 1114 |
+
"skip-forward-btn-fill": 62809,
|
| 1115 |
+
"skip-forward-btn": 62810,
|
| 1116 |
+
"skip-forward-circle-fill": 62811,
|
| 1117 |
+
"skip-forward-circle": 62812,
|
| 1118 |
+
"skip-forward-fill": 62813,
|
| 1119 |
+
"skip-forward": 62814,
|
| 1120 |
+
"skip-start-btn-fill": 62815,
|
| 1121 |
+
"skip-start-btn": 62816,
|
| 1122 |
+
"skip-start-circle-fill": 62817,
|
| 1123 |
+
"skip-start-circle": 62818,
|
| 1124 |
+
"skip-start-fill": 62819,
|
| 1125 |
+
"skip-start": 62820,
|
| 1126 |
+
"slack": 62821,
|
| 1127 |
+
"slash-circle-fill": 62822,
|
| 1128 |
+
"slash-circle": 62823,
|
| 1129 |
+
"slash-square-fill": 62824,
|
| 1130 |
+
"slash-square": 62825,
|
| 1131 |
+
"slash": 62826,
|
| 1132 |
+
"sliders": 62827,
|
| 1133 |
+
"smartwatch": 62828,
|
| 1134 |
+
"snow": 62829,
|
| 1135 |
+
"snow2": 62830,
|
| 1136 |
+
"snow3": 62831,
|
| 1137 |
+
"sort-alpha-down-alt": 62832,
|
| 1138 |
+
"sort-alpha-down": 62833,
|
| 1139 |
+
"sort-alpha-up-alt": 62834,
|
| 1140 |
+
"sort-alpha-up": 62835,
|
| 1141 |
+
"sort-down-alt": 62836,
|
| 1142 |
+
"sort-down": 62837,
|
| 1143 |
+
"sort-numeric-down-alt": 62838,
|
| 1144 |
+
"sort-numeric-down": 62839,
|
| 1145 |
+
"sort-numeric-up-alt": 62840,
|
| 1146 |
+
"sort-numeric-up": 62841,
|
| 1147 |
+
"sort-up-alt": 62842,
|
| 1148 |
+
"sort-up": 62843,
|
| 1149 |
+
"soundwave": 62844,
|
| 1150 |
+
"speaker-fill": 62845,
|
| 1151 |
+
"speaker": 62846,
|
| 1152 |
+
"speedometer": 62847,
|
| 1153 |
+
"speedometer2": 62848,
|
| 1154 |
+
"spellcheck": 62849,
|
| 1155 |
+
"square-fill": 62850,
|
| 1156 |
+
"square-half": 62851,
|
| 1157 |
+
"square": 62852,
|
| 1158 |
+
"stack": 62853,
|
| 1159 |
+
"star-fill": 62854,
|
| 1160 |
+
"star-half": 62855,
|
| 1161 |
+
"star": 62856,
|
| 1162 |
+
"stars": 62857,
|
| 1163 |
+
"stickies-fill": 62858,
|
| 1164 |
+
"stickies": 62859,
|
| 1165 |
+
"sticky-fill": 62860,
|
| 1166 |
+
"sticky": 62861,
|
| 1167 |
+
"stop-btn-fill": 62862,
|
| 1168 |
+
"stop-btn": 62863,
|
| 1169 |
+
"stop-circle-fill": 62864,
|
| 1170 |
+
"stop-circle": 62865,
|
| 1171 |
+
"stop-fill": 62866,
|
| 1172 |
+
"stop": 62867,
|
| 1173 |
+
"stoplights-fill": 62868,
|
| 1174 |
+
"stoplights": 62869,
|
| 1175 |
+
"stopwatch-fill": 62870,
|
| 1176 |
+
"stopwatch": 62871,
|
| 1177 |
+
"subtract": 62872,
|
| 1178 |
+
"suit-club-fill": 62873,
|
| 1179 |
+
"suit-club": 62874,
|
| 1180 |
+
"suit-diamond-fill": 62875,
|
| 1181 |
+
"suit-diamond": 62876,
|
| 1182 |
+
"suit-heart-fill": 62877,
|
| 1183 |
+
"suit-heart": 62878,
|
| 1184 |
+
"suit-spade-fill": 62879,
|
| 1185 |
+
"suit-spade": 62880,
|
| 1186 |
+
"sun-fill": 62881,
|
| 1187 |
+
"sun": 62882,
|
| 1188 |
+
"sunglasses": 62883,
|
| 1189 |
+
"sunrise-fill": 62884,
|
| 1190 |
+
"sunrise": 62885,
|
| 1191 |
+
"sunset-fill": 62886,
|
| 1192 |
+
"sunset": 62887,
|
| 1193 |
+
"symmetry-horizontal": 62888,
|
| 1194 |
+
"symmetry-vertical": 62889,
|
| 1195 |
+
"table": 62890,
|
| 1196 |
+
"tablet-fill": 62891,
|
| 1197 |
+
"tablet-landscape-fill": 62892,
|
| 1198 |
+
"tablet-landscape": 62893,
|
| 1199 |
+
"tablet": 62894,
|
| 1200 |
+
"tag-fill": 62895,
|
| 1201 |
+
"tag": 62896,
|
| 1202 |
+
"tags-fill": 62897,
|
| 1203 |
+
"tags": 62898,
|
| 1204 |
+
"telegram": 62899,
|
| 1205 |
+
"telephone-fill": 62900,
|
| 1206 |
+
"telephone-forward-fill": 62901,
|
| 1207 |
+
"telephone-forward": 62902,
|
| 1208 |
+
"telephone-inbound-fill": 62903,
|
| 1209 |
+
"telephone-inbound": 62904,
|
| 1210 |
+
"telephone-minus-fill": 62905,
|
| 1211 |
+
"telephone-minus": 62906,
|
| 1212 |
+
"telephone-outbound-fill": 62907,
|
| 1213 |
+
"telephone-outbound": 62908,
|
| 1214 |
+
"telephone-plus-fill": 62909,
|
| 1215 |
+
"telephone-plus": 62910,
|
| 1216 |
+
"telephone-x-fill": 62911,
|
| 1217 |
+
"telephone-x": 62912,
|
| 1218 |
+
"telephone": 62913,
|
| 1219 |
+
"terminal-fill": 62914,
|
| 1220 |
+
"terminal": 62915,
|
| 1221 |
+
"text-center": 62916,
|
| 1222 |
+
"text-indent-left": 62917,
|
| 1223 |
+
"text-indent-right": 62918,
|
| 1224 |
+
"text-left": 62919,
|
| 1225 |
+
"text-paragraph": 62920,
|
| 1226 |
+
"text-right": 62921,
|
| 1227 |
+
"textarea-resize": 62922,
|
| 1228 |
+
"textarea-t": 62923,
|
| 1229 |
+
"textarea": 62924,
|
| 1230 |
+
"thermometer-half": 62925,
|
| 1231 |
+
"thermometer-high": 62926,
|
| 1232 |
+
"thermometer-low": 62927,
|
| 1233 |
+
"thermometer-snow": 62928,
|
| 1234 |
+
"thermometer-sun": 62929,
|
| 1235 |
+
"thermometer": 62930,
|
| 1236 |
+
"three-dots-vertical": 62931,
|
| 1237 |
+
"three-dots": 62932,
|
| 1238 |
+
"toggle-off": 62933,
|
| 1239 |
+
"toggle-on": 62934,
|
| 1240 |
+
"toggle2-off": 62935,
|
| 1241 |
+
"toggle2-on": 62936,
|
| 1242 |
+
"toggles": 62937,
|
| 1243 |
+
"toggles2": 62938,
|
| 1244 |
+
"tools": 62939,
|
| 1245 |
+
"tornado": 62940,
|
| 1246 |
+
"trash-fill": 62941,
|
| 1247 |
+
"trash": 62942,
|
| 1248 |
+
"trash2-fill": 62943,
|
| 1249 |
+
"trash2": 62944,
|
| 1250 |
+
"tree-fill": 62945,
|
| 1251 |
+
"tree": 62946,
|
| 1252 |
+
"triangle-fill": 62947,
|
| 1253 |
+
"triangle-half": 62948,
|
| 1254 |
+
"triangle": 62949,
|
| 1255 |
+
"trophy-fill": 62950,
|
| 1256 |
+
"trophy": 62951,
|
| 1257 |
+
"tropical-storm": 62952,
|
| 1258 |
+
"truck-flatbed": 62953,
|
| 1259 |
+
"truck": 62954,
|
| 1260 |
+
"tsunami": 62955,
|
| 1261 |
+
"tv-fill": 62956,
|
| 1262 |
+
"tv": 62957,
|
| 1263 |
+
"twitch": 62958,
|
| 1264 |
+
"twitter": 62959,
|
| 1265 |
+
"type-bold": 62960,
|
| 1266 |
+
"type-h1": 62961,
|
| 1267 |
+
"type-h2": 62962,
|
| 1268 |
+
"type-h3": 62963,
|
| 1269 |
+
"type-italic": 62964,
|
| 1270 |
+
"type-strikethrough": 62965,
|
| 1271 |
+
"type-underline": 62966,
|
| 1272 |
+
"type": 62967,
|
| 1273 |
+
"ui-checks-grid": 62968,
|
| 1274 |
+
"ui-checks": 62969,
|
| 1275 |
+
"ui-radios-grid": 62970,
|
| 1276 |
+
"ui-radios": 62971,
|
| 1277 |
+
"umbrella-fill": 62972,
|
| 1278 |
+
"umbrella": 62973,
|
| 1279 |
+
"union": 62974,
|
| 1280 |
+
"unlock-fill": 62975,
|
| 1281 |
+
"unlock": 62976,
|
| 1282 |
+
"upc-scan": 62977,
|
| 1283 |
+
"upc": 62978,
|
| 1284 |
+
"upload": 62979,
|
| 1285 |
+
"vector-pen": 62980,
|
| 1286 |
+
"view-list": 62981,
|
| 1287 |
+
"view-stacked": 62982,
|
| 1288 |
+
"vinyl-fill": 62983,
|
| 1289 |
+
"vinyl": 62984,
|
| 1290 |
+
"voicemail": 62985,
|
| 1291 |
+
"volume-down-fill": 62986,
|
| 1292 |
+
"volume-down": 62987,
|
| 1293 |
+
"volume-mute-fill": 62988,
|
| 1294 |
+
"volume-mute": 62989,
|
| 1295 |
+
"volume-off-fill": 62990,
|
| 1296 |
+
"volume-off": 62991,
|
| 1297 |
+
"volume-up-fill": 62992,
|
| 1298 |
+
"volume-up": 62993,
|
| 1299 |
+
"vr": 62994,
|
| 1300 |
+
"wallet-fill": 62995,
|
| 1301 |
+
"wallet": 62996,
|
| 1302 |
+
"wallet2": 62997,
|
| 1303 |
+
"watch": 62998,
|
| 1304 |
+
"water": 62999,
|
| 1305 |
+
"whatsapp": 63000,
|
| 1306 |
+
"wifi-1": 63001,
|
| 1307 |
+
"wifi-2": 63002,
|
| 1308 |
+
"wifi-off": 63003,
|
| 1309 |
+
"wifi": 63004,
|
| 1310 |
+
"wind": 63005,
|
| 1311 |
+
"window-dock": 63006,
|
| 1312 |
+
"window-sidebar": 63007,
|
| 1313 |
+
"window": 63008,
|
| 1314 |
+
"wrench": 63009,
|
| 1315 |
+
"x-circle-fill": 63010,
|
| 1316 |
+
"x-circle": 63011,
|
| 1317 |
+
"x-diamond-fill": 63012,
|
| 1318 |
+
"x-diamond": 63013,
|
| 1319 |
+
"x-octagon-fill": 63014,
|
| 1320 |
+
"x-octagon": 63015,
|
| 1321 |
+
"x-square-fill": 63016,
|
| 1322 |
+
"x-square": 63017,
|
| 1323 |
+
"x": 63018,
|
| 1324 |
+
"youtube": 63019,
|
| 1325 |
+
"zoom-in": 63020,
|
| 1326 |
+
"zoom-out": 63021,
|
| 1327 |
+
"bank": 63022,
|
| 1328 |
+
"bank2": 63023,
|
| 1329 |
+
"bell-slash-fill": 63024,
|
| 1330 |
+
"bell-slash": 63025,
|
| 1331 |
+
"cash-coin": 63026,
|
| 1332 |
+
"check-lg": 63027,
|
| 1333 |
+
"coin": 63028,
|
| 1334 |
+
"currency-bitcoin": 63029,
|
| 1335 |
+
"currency-dollar": 63030,
|
| 1336 |
+
"currency-euro": 63031,
|
| 1337 |
+
"currency-exchange": 63032,
|
| 1338 |
+
"currency-pound": 63033,
|
| 1339 |
+
"currency-yen": 63034,
|
| 1340 |
+
"dash-lg": 63035,
|
| 1341 |
+
"exclamation-lg": 63036,
|
| 1342 |
+
"file-earmark-pdf-fill": 63037,
|
| 1343 |
+
"file-earmark-pdf": 63038,
|
| 1344 |
+
"file-pdf-fill": 63039,
|
| 1345 |
+
"file-pdf": 63040,
|
| 1346 |
+
"gender-ambiguous": 63041,
|
| 1347 |
+
"gender-female": 63042,
|
| 1348 |
+
"gender-male": 63043,
|
| 1349 |
+
"gender-trans": 63044,
|
| 1350 |
+
"headset-vr": 63045,
|
| 1351 |
+
"info-lg": 63046,
|
| 1352 |
+
"mastodon": 63047,
|
| 1353 |
+
"messenger": 63048,
|
| 1354 |
+
"piggy-bank-fill": 63049,
|
| 1355 |
+
"piggy-bank": 63050,
|
| 1356 |
+
"pin-map-fill": 63051,
|
| 1357 |
+
"pin-map": 63052,
|
| 1358 |
+
"plus-lg": 63053,
|
| 1359 |
+
"question-lg": 63054,
|
| 1360 |
+
"recycle": 63055,
|
| 1361 |
+
"reddit": 63056,
|
| 1362 |
+
"safe-fill": 63057,
|
| 1363 |
+
"safe2-fill": 63058,
|
| 1364 |
+
"safe2": 63059,
|
| 1365 |
+
"sd-card-fill": 63060,
|
| 1366 |
+
"sd-card": 63061,
|
| 1367 |
+
"skype": 63062,
|
| 1368 |
+
"slash-lg": 63063,
|
| 1369 |
+
"translate": 63064,
|
| 1370 |
+
"x-lg": 63065,
|
| 1371 |
+
"safe": 63066
|
| 1372 |
+
}
|
static/vendor/bootstrap-icons/fonts/bootstrap-icons.woff
ADDED
|
Binary file (120 kB). View file
|
|
|
static/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2
ADDED
|
Binary file (90.5 kB). View file
|
|
|
static/vendor/bootstrap-icons/index.html
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/vendor/bootstrap/css/bootstrap-grid.css
ADDED
|
@@ -0,0 +1,4997 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Grid v5.0.1 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2021 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2021 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
*/
|
| 7 |
+
.container,
|
| 8 |
+
.container-fluid,
|
| 9 |
+
.container-xxl,
|
| 10 |
+
.container-xl,
|
| 11 |
+
.container-lg,
|
| 12 |
+
.container-md,
|
| 13 |
+
.container-sm {
|
| 14 |
+
width: 100%;
|
| 15 |
+
padding-right: var(--bs-gutter-x, 0.75rem);
|
| 16 |
+
padding-left: var(--bs-gutter-x, 0.75rem);
|
| 17 |
+
margin-right: auto;
|
| 18 |
+
margin-left: auto;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
@media (min-width: 576px) {
|
| 22 |
+
.container-sm, .container {
|
| 23 |
+
max-width: 540px;
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
@media (min-width: 768px) {
|
| 27 |
+
.container-md, .container-sm, .container {
|
| 28 |
+
max-width: 720px;
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
@media (min-width: 992px) {
|
| 32 |
+
.container-lg, .container-md, .container-sm, .container {
|
| 33 |
+
max-width: 960px;
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
@media (min-width: 1200px) {
|
| 37 |
+
.container-xl, .container-lg, .container-md, .container-sm, .container {
|
| 38 |
+
max-width: 1140px;
|
| 39 |
+
}
|
| 40 |
+
}
|
| 41 |
+
@media (min-width: 1400px) {
|
| 42 |
+
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
|
| 43 |
+
max-width: 1320px;
|
| 44 |
+
}
|
| 45 |
+
}
|
| 46 |
+
.row {
|
| 47 |
+
--bs-gutter-x: 1.5rem;
|
| 48 |
+
--bs-gutter-y: 0;
|
| 49 |
+
display: flex;
|
| 50 |
+
flex-wrap: wrap;
|
| 51 |
+
margin-top: calc(var(--bs-gutter-y) * -1);
|
| 52 |
+
margin-right: calc(var(--bs-gutter-x) / -2);
|
| 53 |
+
margin-left: calc(var(--bs-gutter-x) / -2);
|
| 54 |
+
}
|
| 55 |
+
.row > * {
|
| 56 |
+
box-sizing: border-box;
|
| 57 |
+
flex-shrink: 0;
|
| 58 |
+
width: 100%;
|
| 59 |
+
max-width: 100%;
|
| 60 |
+
padding-right: calc(var(--bs-gutter-x) / 2);
|
| 61 |
+
padding-left: calc(var(--bs-gutter-x) / 2);
|
| 62 |
+
margin-top: var(--bs-gutter-y);
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.col {
|
| 66 |
+
flex: 1 0 0%;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.row-cols-auto > * {
|
| 70 |
+
flex: 0 0 auto;
|
| 71 |
+
width: auto;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
.row-cols-1 > * {
|
| 75 |
+
flex: 0 0 auto;
|
| 76 |
+
width: 100%;
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
.row-cols-2 > * {
|
| 80 |
+
flex: 0 0 auto;
|
| 81 |
+
width: 50%;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
.row-cols-3 > * {
|
| 85 |
+
flex: 0 0 auto;
|
| 86 |
+
width: 33.3333333333%;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
.row-cols-4 > * {
|
| 90 |
+
flex: 0 0 auto;
|
| 91 |
+
width: 25%;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
.row-cols-5 > * {
|
| 95 |
+
flex: 0 0 auto;
|
| 96 |
+
width: 20%;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.row-cols-6 > * {
|
| 100 |
+
flex: 0 0 auto;
|
| 101 |
+
width: 16.6666666667%;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
.col-auto {
|
| 105 |
+
flex: 0 0 auto;
|
| 106 |
+
width: auto;
|
| 107 |
+
}
|
| 108 |
+
|
| 109 |
+
.col-1 {
|
| 110 |
+
flex: 0 0 auto;
|
| 111 |
+
width: 8.3333333333%;
|
| 112 |
+
}
|
| 113 |
+
|
| 114 |
+
.col-2 {
|
| 115 |
+
flex: 0 0 auto;
|
| 116 |
+
width: 16.6666666667%;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
.col-3 {
|
| 120 |
+
flex: 0 0 auto;
|
| 121 |
+
width: 25%;
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
.col-4 {
|
| 125 |
+
flex: 0 0 auto;
|
| 126 |
+
width: 33.3333333333%;
|
| 127 |
+
}
|
| 128 |
+
|
| 129 |
+
.col-5 {
|
| 130 |
+
flex: 0 0 auto;
|
| 131 |
+
width: 41.6666666667%;
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
.col-6 {
|
| 135 |
+
flex: 0 0 auto;
|
| 136 |
+
width: 50%;
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
.col-7 {
|
| 140 |
+
flex: 0 0 auto;
|
| 141 |
+
width: 58.3333333333%;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
.col-8 {
|
| 145 |
+
flex: 0 0 auto;
|
| 146 |
+
width: 66.6666666667%;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
.col-9 {
|
| 150 |
+
flex: 0 0 auto;
|
| 151 |
+
width: 75%;
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
.col-10 {
|
| 155 |
+
flex: 0 0 auto;
|
| 156 |
+
width: 83.3333333333%;
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
+
.col-11 {
|
| 160 |
+
flex: 0 0 auto;
|
| 161 |
+
width: 91.6666666667%;
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
+
.col-12 {
|
| 165 |
+
flex: 0 0 auto;
|
| 166 |
+
width: 100%;
|
| 167 |
+
}
|
| 168 |
+
|
| 169 |
+
.offset-1 {
|
| 170 |
+
margin-left: 8.3333333333%;
|
| 171 |
+
}
|
| 172 |
+
|
| 173 |
+
.offset-2 {
|
| 174 |
+
margin-left: 16.6666666667%;
|
| 175 |
+
}
|
| 176 |
+
|
| 177 |
+
.offset-3 {
|
| 178 |
+
margin-left: 25%;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.offset-4 {
|
| 182 |
+
margin-left: 33.3333333333%;
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
.offset-5 {
|
| 186 |
+
margin-left: 41.6666666667%;
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
+
.offset-6 {
|
| 190 |
+
margin-left: 50%;
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
.offset-7 {
|
| 194 |
+
margin-left: 58.3333333333%;
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
.offset-8 {
|
| 198 |
+
margin-left: 66.6666666667%;
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
.offset-9 {
|
| 202 |
+
margin-left: 75%;
|
| 203 |
+
}
|
| 204 |
+
|
| 205 |
+
.offset-10 {
|
| 206 |
+
margin-left: 83.3333333333%;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
.offset-11 {
|
| 210 |
+
margin-left: 91.6666666667%;
|
| 211 |
+
}
|
| 212 |
+
|
| 213 |
+
.g-0,
|
| 214 |
+
.gx-0 {
|
| 215 |
+
--bs-gutter-x: 0;
|
| 216 |
+
}
|
| 217 |
+
|
| 218 |
+
.g-0,
|
| 219 |
+
.gy-0 {
|
| 220 |
+
--bs-gutter-y: 0;
|
| 221 |
+
}
|
| 222 |
+
|
| 223 |
+
.g-1,
|
| 224 |
+
.gx-1 {
|
| 225 |
+
--bs-gutter-x: 0.25rem;
|
| 226 |
+
}
|
| 227 |
+
|
| 228 |
+
.g-1,
|
| 229 |
+
.gy-1 {
|
| 230 |
+
--bs-gutter-y: 0.25rem;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
.g-2,
|
| 234 |
+
.gx-2 {
|
| 235 |
+
--bs-gutter-x: 0.5rem;
|
| 236 |
+
}
|
| 237 |
+
|
| 238 |
+
.g-2,
|
| 239 |
+
.gy-2 {
|
| 240 |
+
--bs-gutter-y: 0.5rem;
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
.g-3,
|
| 244 |
+
.gx-3 {
|
| 245 |
+
--bs-gutter-x: 1rem;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
.g-3,
|
| 249 |
+
.gy-3 {
|
| 250 |
+
--bs-gutter-y: 1rem;
|
| 251 |
+
}
|
| 252 |
+
|
| 253 |
+
.g-4,
|
| 254 |
+
.gx-4 {
|
| 255 |
+
--bs-gutter-x: 1.5rem;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.g-4,
|
| 259 |
+
.gy-4 {
|
| 260 |
+
--bs-gutter-y: 1.5rem;
|
| 261 |
+
}
|
| 262 |
+
|
| 263 |
+
.g-5,
|
| 264 |
+
.gx-5 {
|
| 265 |
+
--bs-gutter-x: 3rem;
|
| 266 |
+
}
|
| 267 |
+
|
| 268 |
+
.g-5,
|
| 269 |
+
.gy-5 {
|
| 270 |
+
--bs-gutter-y: 3rem;
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
@media (min-width: 576px) {
|
| 274 |
+
.col-sm {
|
| 275 |
+
flex: 1 0 0%;
|
| 276 |
+
}
|
| 277 |
+
|
| 278 |
+
.row-cols-sm-auto > * {
|
| 279 |
+
flex: 0 0 auto;
|
| 280 |
+
width: auto;
|
| 281 |
+
}
|
| 282 |
+
|
| 283 |
+
.row-cols-sm-1 > * {
|
| 284 |
+
flex: 0 0 auto;
|
| 285 |
+
width: 100%;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
.row-cols-sm-2 > * {
|
| 289 |
+
flex: 0 0 auto;
|
| 290 |
+
width: 50%;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
.row-cols-sm-3 > * {
|
| 294 |
+
flex: 0 0 auto;
|
| 295 |
+
width: 33.3333333333%;
|
| 296 |
+
}
|
| 297 |
+
|
| 298 |
+
.row-cols-sm-4 > * {
|
| 299 |
+
flex: 0 0 auto;
|
| 300 |
+
width: 25%;
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
+
.row-cols-sm-5 > * {
|
| 304 |
+
flex: 0 0 auto;
|
| 305 |
+
width: 20%;
|
| 306 |
+
}
|
| 307 |
+
|
| 308 |
+
.row-cols-sm-6 > * {
|
| 309 |
+
flex: 0 0 auto;
|
| 310 |
+
width: 16.6666666667%;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
.col-sm-auto {
|
| 314 |
+
flex: 0 0 auto;
|
| 315 |
+
width: auto;
|
| 316 |
+
}
|
| 317 |
+
|
| 318 |
+
.col-sm-1 {
|
| 319 |
+
flex: 0 0 auto;
|
| 320 |
+
width: 8.3333333333%;
|
| 321 |
+
}
|
| 322 |
+
|
| 323 |
+
.col-sm-2 {
|
| 324 |
+
flex: 0 0 auto;
|
| 325 |
+
width: 16.6666666667%;
|
| 326 |
+
}
|
| 327 |
+
|
| 328 |
+
.col-sm-3 {
|
| 329 |
+
flex: 0 0 auto;
|
| 330 |
+
width: 25%;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
.col-sm-4 {
|
| 334 |
+
flex: 0 0 auto;
|
| 335 |
+
width: 33.3333333333%;
|
| 336 |
+
}
|
| 337 |
+
|
| 338 |
+
.col-sm-5 {
|
| 339 |
+
flex: 0 0 auto;
|
| 340 |
+
width: 41.6666666667%;
|
| 341 |
+
}
|
| 342 |
+
|
| 343 |
+
.col-sm-6 {
|
| 344 |
+
flex: 0 0 auto;
|
| 345 |
+
width: 50%;
|
| 346 |
+
}
|
| 347 |
+
|
| 348 |
+
.col-sm-7 {
|
| 349 |
+
flex: 0 0 auto;
|
| 350 |
+
width: 58.3333333333%;
|
| 351 |
+
}
|
| 352 |
+
|
| 353 |
+
.col-sm-8 {
|
| 354 |
+
flex: 0 0 auto;
|
| 355 |
+
width: 66.6666666667%;
|
| 356 |
+
}
|
| 357 |
+
|
| 358 |
+
.col-sm-9 {
|
| 359 |
+
flex: 0 0 auto;
|
| 360 |
+
width: 75%;
|
| 361 |
+
}
|
| 362 |
+
|
| 363 |
+
.col-sm-10 {
|
| 364 |
+
flex: 0 0 auto;
|
| 365 |
+
width: 83.3333333333%;
|
| 366 |
+
}
|
| 367 |
+
|
| 368 |
+
.col-sm-11 {
|
| 369 |
+
flex: 0 0 auto;
|
| 370 |
+
width: 91.6666666667%;
|
| 371 |
+
}
|
| 372 |
+
|
| 373 |
+
.col-sm-12 {
|
| 374 |
+
flex: 0 0 auto;
|
| 375 |
+
width: 100%;
|
| 376 |
+
}
|
| 377 |
+
|
| 378 |
+
.offset-sm-0 {
|
| 379 |
+
margin-left: 0;
|
| 380 |
+
}
|
| 381 |
+
|
| 382 |
+
.offset-sm-1 {
|
| 383 |
+
margin-left: 8.3333333333%;
|
| 384 |
+
}
|
| 385 |
+
|
| 386 |
+
.offset-sm-2 {
|
| 387 |
+
margin-left: 16.6666666667%;
|
| 388 |
+
}
|
| 389 |
+
|
| 390 |
+
.offset-sm-3 {
|
| 391 |
+
margin-left: 25%;
|
| 392 |
+
}
|
| 393 |
+
|
| 394 |
+
.offset-sm-4 {
|
| 395 |
+
margin-left: 33.3333333333%;
|
| 396 |
+
}
|
| 397 |
+
|
| 398 |
+
.offset-sm-5 {
|
| 399 |
+
margin-left: 41.6666666667%;
|
| 400 |
+
}
|
| 401 |
+
|
| 402 |
+
.offset-sm-6 {
|
| 403 |
+
margin-left: 50%;
|
| 404 |
+
}
|
| 405 |
+
|
| 406 |
+
.offset-sm-7 {
|
| 407 |
+
margin-left: 58.3333333333%;
|
| 408 |
+
}
|
| 409 |
+
|
| 410 |
+
.offset-sm-8 {
|
| 411 |
+
margin-left: 66.6666666667%;
|
| 412 |
+
}
|
| 413 |
+
|
| 414 |
+
.offset-sm-9 {
|
| 415 |
+
margin-left: 75%;
|
| 416 |
+
}
|
| 417 |
+
|
| 418 |
+
.offset-sm-10 {
|
| 419 |
+
margin-left: 83.3333333333%;
|
| 420 |
+
}
|
| 421 |
+
|
| 422 |
+
.offset-sm-11 {
|
| 423 |
+
margin-left: 91.6666666667%;
|
| 424 |
+
}
|
| 425 |
+
|
| 426 |
+
.g-sm-0,
|
| 427 |
+
.gx-sm-0 {
|
| 428 |
+
--bs-gutter-x: 0;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
.g-sm-0,
|
| 432 |
+
.gy-sm-0 {
|
| 433 |
+
--bs-gutter-y: 0;
|
| 434 |
+
}
|
| 435 |
+
|
| 436 |
+
.g-sm-1,
|
| 437 |
+
.gx-sm-1 {
|
| 438 |
+
--bs-gutter-x: 0.25rem;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.g-sm-1,
|
| 442 |
+
.gy-sm-1 {
|
| 443 |
+
--bs-gutter-y: 0.25rem;
|
| 444 |
+
}
|
| 445 |
+
|
| 446 |
+
.g-sm-2,
|
| 447 |
+
.gx-sm-2 {
|
| 448 |
+
--bs-gutter-x: 0.5rem;
|
| 449 |
+
}
|
| 450 |
+
|
| 451 |
+
.g-sm-2,
|
| 452 |
+
.gy-sm-2 {
|
| 453 |
+
--bs-gutter-y: 0.5rem;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
.g-sm-3,
|
| 457 |
+
.gx-sm-3 {
|
| 458 |
+
--bs-gutter-x: 1rem;
|
| 459 |
+
}
|
| 460 |
+
|
| 461 |
+
.g-sm-3,
|
| 462 |
+
.gy-sm-3 {
|
| 463 |
+
--bs-gutter-y: 1rem;
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.g-sm-4,
|
| 467 |
+
.gx-sm-4 {
|
| 468 |
+
--bs-gutter-x: 1.5rem;
|
| 469 |
+
}
|
| 470 |
+
|
| 471 |
+
.g-sm-4,
|
| 472 |
+
.gy-sm-4 {
|
| 473 |
+
--bs-gutter-y: 1.5rem;
|
| 474 |
+
}
|
| 475 |
+
|
| 476 |
+
.g-sm-5,
|
| 477 |
+
.gx-sm-5 {
|
| 478 |
+
--bs-gutter-x: 3rem;
|
| 479 |
+
}
|
| 480 |
+
|
| 481 |
+
.g-sm-5,
|
| 482 |
+
.gy-sm-5 {
|
| 483 |
+
--bs-gutter-y: 3rem;
|
| 484 |
+
}
|
| 485 |
+
}
|
| 486 |
+
@media (min-width: 768px) {
|
| 487 |
+
.col-md {
|
| 488 |
+
flex: 1 0 0%;
|
| 489 |
+
}
|
| 490 |
+
|
| 491 |
+
.row-cols-md-auto > * {
|
| 492 |
+
flex: 0 0 auto;
|
| 493 |
+
width: auto;
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
.row-cols-md-1 > * {
|
| 497 |
+
flex: 0 0 auto;
|
| 498 |
+
width: 100%;
|
| 499 |
+
}
|
| 500 |
+
|
| 501 |
+
.row-cols-md-2 > * {
|
| 502 |
+
flex: 0 0 auto;
|
| 503 |
+
width: 50%;
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
.row-cols-md-3 > * {
|
| 507 |
+
flex: 0 0 auto;
|
| 508 |
+
width: 33.3333333333%;
|
| 509 |
+
}
|
| 510 |
+
|
| 511 |
+
.row-cols-md-4 > * {
|
| 512 |
+
flex: 0 0 auto;
|
| 513 |
+
width: 25%;
|
| 514 |
+
}
|
| 515 |
+
|
| 516 |
+
.row-cols-md-5 > * {
|
| 517 |
+
flex: 0 0 auto;
|
| 518 |
+
width: 20%;
|
| 519 |
+
}
|
| 520 |
+
|
| 521 |
+
.row-cols-md-6 > * {
|
| 522 |
+
flex: 0 0 auto;
|
| 523 |
+
width: 16.6666666667%;
|
| 524 |
+
}
|
| 525 |
+
|
| 526 |
+
.col-md-auto {
|
| 527 |
+
flex: 0 0 auto;
|
| 528 |
+
width: auto;
|
| 529 |
+
}
|
| 530 |
+
|
| 531 |
+
.col-md-1 {
|
| 532 |
+
flex: 0 0 auto;
|
| 533 |
+
width: 8.3333333333%;
|
| 534 |
+
}
|
| 535 |
+
|
| 536 |
+
.col-md-2 {
|
| 537 |
+
flex: 0 0 auto;
|
| 538 |
+
width: 16.6666666667%;
|
| 539 |
+
}
|
| 540 |
+
|
| 541 |
+
.col-md-3 {
|
| 542 |
+
flex: 0 0 auto;
|
| 543 |
+
width: 25%;
|
| 544 |
+
}
|
| 545 |
+
|
| 546 |
+
.col-md-4 {
|
| 547 |
+
flex: 0 0 auto;
|
| 548 |
+
width: 33.3333333333%;
|
| 549 |
+
}
|
| 550 |
+
|
| 551 |
+
.col-md-5 {
|
| 552 |
+
flex: 0 0 auto;
|
| 553 |
+
width: 41.6666666667%;
|
| 554 |
+
}
|
| 555 |
+
|
| 556 |
+
.col-md-6 {
|
| 557 |
+
flex: 0 0 auto;
|
| 558 |
+
width: 50%;
|
| 559 |
+
}
|
| 560 |
+
|
| 561 |
+
.col-md-7 {
|
| 562 |
+
flex: 0 0 auto;
|
| 563 |
+
width: 58.3333333333%;
|
| 564 |
+
}
|
| 565 |
+
|
| 566 |
+
.col-md-8 {
|
| 567 |
+
flex: 0 0 auto;
|
| 568 |
+
width: 66.6666666667%;
|
| 569 |
+
}
|
| 570 |
+
|
| 571 |
+
.col-md-9 {
|
| 572 |
+
flex: 0 0 auto;
|
| 573 |
+
width: 75%;
|
| 574 |
+
}
|
| 575 |
+
|
| 576 |
+
.col-md-10 {
|
| 577 |
+
flex: 0 0 auto;
|
| 578 |
+
width: 83.3333333333%;
|
| 579 |
+
}
|
| 580 |
+
|
| 581 |
+
.col-md-11 {
|
| 582 |
+
flex: 0 0 auto;
|
| 583 |
+
width: 91.6666666667%;
|
| 584 |
+
}
|
| 585 |
+
|
| 586 |
+
.col-md-12 {
|
| 587 |
+
flex: 0 0 auto;
|
| 588 |
+
width: 100%;
|
| 589 |
+
}
|
| 590 |
+
|
| 591 |
+
.offset-md-0 {
|
| 592 |
+
margin-left: 0;
|
| 593 |
+
}
|
| 594 |
+
|
| 595 |
+
.offset-md-1 {
|
| 596 |
+
margin-left: 8.3333333333%;
|
| 597 |
+
}
|
| 598 |
+
|
| 599 |
+
.offset-md-2 {
|
| 600 |
+
margin-left: 16.6666666667%;
|
| 601 |
+
}
|
| 602 |
+
|
| 603 |
+
.offset-md-3 {
|
| 604 |
+
margin-left: 25%;
|
| 605 |
+
}
|
| 606 |
+
|
| 607 |
+
.offset-md-4 {
|
| 608 |
+
margin-left: 33.3333333333%;
|
| 609 |
+
}
|
| 610 |
+
|
| 611 |
+
.offset-md-5 {
|
| 612 |
+
margin-left: 41.6666666667%;
|
| 613 |
+
}
|
| 614 |
+
|
| 615 |
+
.offset-md-6 {
|
| 616 |
+
margin-left: 50%;
|
| 617 |
+
}
|
| 618 |
+
|
| 619 |
+
.offset-md-7 {
|
| 620 |
+
margin-left: 58.3333333333%;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
.offset-md-8 {
|
| 624 |
+
margin-left: 66.6666666667%;
|
| 625 |
+
}
|
| 626 |
+
|
| 627 |
+
.offset-md-9 {
|
| 628 |
+
margin-left: 75%;
|
| 629 |
+
}
|
| 630 |
+
|
| 631 |
+
.offset-md-10 {
|
| 632 |
+
margin-left: 83.3333333333%;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
.offset-md-11 {
|
| 636 |
+
margin-left: 91.6666666667%;
|
| 637 |
+
}
|
| 638 |
+
|
| 639 |
+
.g-md-0,
|
| 640 |
+
.gx-md-0 {
|
| 641 |
+
--bs-gutter-x: 0;
|
| 642 |
+
}
|
| 643 |
+
|
| 644 |
+
.g-md-0,
|
| 645 |
+
.gy-md-0 {
|
| 646 |
+
--bs-gutter-y: 0;
|
| 647 |
+
}
|
| 648 |
+
|
| 649 |
+
.g-md-1,
|
| 650 |
+
.gx-md-1 {
|
| 651 |
+
--bs-gutter-x: 0.25rem;
|
| 652 |
+
}
|
| 653 |
+
|
| 654 |
+
.g-md-1,
|
| 655 |
+
.gy-md-1 {
|
| 656 |
+
--bs-gutter-y: 0.25rem;
|
| 657 |
+
}
|
| 658 |
+
|
| 659 |
+
.g-md-2,
|
| 660 |
+
.gx-md-2 {
|
| 661 |
+
--bs-gutter-x: 0.5rem;
|
| 662 |
+
}
|
| 663 |
+
|
| 664 |
+
.g-md-2,
|
| 665 |
+
.gy-md-2 {
|
| 666 |
+
--bs-gutter-y: 0.5rem;
|
| 667 |
+
}
|
| 668 |
+
|
| 669 |
+
.g-md-3,
|
| 670 |
+
.gx-md-3 {
|
| 671 |
+
--bs-gutter-x: 1rem;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
.g-md-3,
|
| 675 |
+
.gy-md-3 {
|
| 676 |
+
--bs-gutter-y: 1rem;
|
| 677 |
+
}
|
| 678 |
+
|
| 679 |
+
.g-md-4,
|
| 680 |
+
.gx-md-4 {
|
| 681 |
+
--bs-gutter-x: 1.5rem;
|
| 682 |
+
}
|
| 683 |
+
|
| 684 |
+
.g-md-4,
|
| 685 |
+
.gy-md-4 {
|
| 686 |
+
--bs-gutter-y: 1.5rem;
|
| 687 |
+
}
|
| 688 |
+
|
| 689 |
+
.g-md-5,
|
| 690 |
+
.gx-md-5 {
|
| 691 |
+
--bs-gutter-x: 3rem;
|
| 692 |
+
}
|
| 693 |
+
|
| 694 |
+
.g-md-5,
|
| 695 |
+
.gy-md-5 {
|
| 696 |
+
--bs-gutter-y: 3rem;
|
| 697 |
+
}
|
| 698 |
+
}
|
| 699 |
+
@media (min-width: 992px) {
|
| 700 |
+
.col-lg {
|
| 701 |
+
flex: 1 0 0%;
|
| 702 |
+
}
|
| 703 |
+
|
| 704 |
+
.row-cols-lg-auto > * {
|
| 705 |
+
flex: 0 0 auto;
|
| 706 |
+
width: auto;
|
| 707 |
+
}
|
| 708 |
+
|
| 709 |
+
.row-cols-lg-1 > * {
|
| 710 |
+
flex: 0 0 auto;
|
| 711 |
+
width: 100%;
|
| 712 |
+
}
|
| 713 |
+
|
| 714 |
+
.row-cols-lg-2 > * {
|
| 715 |
+
flex: 0 0 auto;
|
| 716 |
+
width: 50%;
|
| 717 |
+
}
|
| 718 |
+
|
| 719 |
+
.row-cols-lg-3 > * {
|
| 720 |
+
flex: 0 0 auto;
|
| 721 |
+
width: 33.3333333333%;
|
| 722 |
+
}
|
| 723 |
+
|
| 724 |
+
.row-cols-lg-4 > * {
|
| 725 |
+
flex: 0 0 auto;
|
| 726 |
+
width: 25%;
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
.row-cols-lg-5 > * {
|
| 730 |
+
flex: 0 0 auto;
|
| 731 |
+
width: 20%;
|
| 732 |
+
}
|
| 733 |
+
|
| 734 |
+
.row-cols-lg-6 > * {
|
| 735 |
+
flex: 0 0 auto;
|
| 736 |
+
width: 16.6666666667%;
|
| 737 |
+
}
|
| 738 |
+
|
| 739 |
+
.col-lg-auto {
|
| 740 |
+
flex: 0 0 auto;
|
| 741 |
+
width: auto;
|
| 742 |
+
}
|
| 743 |
+
|
| 744 |
+
.col-lg-1 {
|
| 745 |
+
flex: 0 0 auto;
|
| 746 |
+
width: 8.3333333333%;
|
| 747 |
+
}
|
| 748 |
+
|
| 749 |
+
.col-lg-2 {
|
| 750 |
+
flex: 0 0 auto;
|
| 751 |
+
width: 16.6666666667%;
|
| 752 |
+
}
|
| 753 |
+
|
| 754 |
+
.col-lg-3 {
|
| 755 |
+
flex: 0 0 auto;
|
| 756 |
+
width: 25%;
|
| 757 |
+
}
|
| 758 |
+
|
| 759 |
+
.col-lg-4 {
|
| 760 |
+
flex: 0 0 auto;
|
| 761 |
+
width: 33.3333333333%;
|
| 762 |
+
}
|
| 763 |
+
|
| 764 |
+
.col-lg-5 {
|
| 765 |
+
flex: 0 0 auto;
|
| 766 |
+
width: 41.6666666667%;
|
| 767 |
+
}
|
| 768 |
+
|
| 769 |
+
.col-lg-6 {
|
| 770 |
+
flex: 0 0 auto;
|
| 771 |
+
width: 50%;
|
| 772 |
+
}
|
| 773 |
+
|
| 774 |
+
.col-lg-7 {
|
| 775 |
+
flex: 0 0 auto;
|
| 776 |
+
width: 58.3333333333%;
|
| 777 |
+
}
|
| 778 |
+
|
| 779 |
+
.col-lg-8 {
|
| 780 |
+
flex: 0 0 auto;
|
| 781 |
+
width: 66.6666666667%;
|
| 782 |
+
}
|
| 783 |
+
|
| 784 |
+
.col-lg-9 {
|
| 785 |
+
flex: 0 0 auto;
|
| 786 |
+
width: 75%;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
.col-lg-10 {
|
| 790 |
+
flex: 0 0 auto;
|
| 791 |
+
width: 83.3333333333%;
|
| 792 |
+
}
|
| 793 |
+
|
| 794 |
+
.col-lg-11 {
|
| 795 |
+
flex: 0 0 auto;
|
| 796 |
+
width: 91.6666666667%;
|
| 797 |
+
}
|
| 798 |
+
|
| 799 |
+
.col-lg-12 {
|
| 800 |
+
flex: 0 0 auto;
|
| 801 |
+
width: 100%;
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
.offset-lg-0 {
|
| 805 |
+
margin-left: 0;
|
| 806 |
+
}
|
| 807 |
+
|
| 808 |
+
.offset-lg-1 {
|
| 809 |
+
margin-left: 8.3333333333%;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
.offset-lg-2 {
|
| 813 |
+
margin-left: 16.6666666667%;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
.offset-lg-3 {
|
| 817 |
+
margin-left: 25%;
|
| 818 |
+
}
|
| 819 |
+
|
| 820 |
+
.offset-lg-4 {
|
| 821 |
+
margin-left: 33.3333333333%;
|
| 822 |
+
}
|
| 823 |
+
|
| 824 |
+
.offset-lg-5 {
|
| 825 |
+
margin-left: 41.6666666667%;
|
| 826 |
+
}
|
| 827 |
+
|
| 828 |
+
.offset-lg-6 {
|
| 829 |
+
margin-left: 50%;
|
| 830 |
+
}
|
| 831 |
+
|
| 832 |
+
.offset-lg-7 {
|
| 833 |
+
margin-left: 58.3333333333%;
|
| 834 |
+
}
|
| 835 |
+
|
| 836 |
+
.offset-lg-8 {
|
| 837 |
+
margin-left: 66.6666666667%;
|
| 838 |
+
}
|
| 839 |
+
|
| 840 |
+
.offset-lg-9 {
|
| 841 |
+
margin-left: 75%;
|
| 842 |
+
}
|
| 843 |
+
|
| 844 |
+
.offset-lg-10 {
|
| 845 |
+
margin-left: 83.3333333333%;
|
| 846 |
+
}
|
| 847 |
+
|
| 848 |
+
.offset-lg-11 {
|
| 849 |
+
margin-left: 91.6666666667%;
|
| 850 |
+
}
|
| 851 |
+
|
| 852 |
+
.g-lg-0,
|
| 853 |
+
.gx-lg-0 {
|
| 854 |
+
--bs-gutter-x: 0;
|
| 855 |
+
}
|
| 856 |
+
|
| 857 |
+
.g-lg-0,
|
| 858 |
+
.gy-lg-0 {
|
| 859 |
+
--bs-gutter-y: 0;
|
| 860 |
+
}
|
| 861 |
+
|
| 862 |
+
.g-lg-1,
|
| 863 |
+
.gx-lg-1 {
|
| 864 |
+
--bs-gutter-x: 0.25rem;
|
| 865 |
+
}
|
| 866 |
+
|
| 867 |
+
.g-lg-1,
|
| 868 |
+
.gy-lg-1 {
|
| 869 |
+
--bs-gutter-y: 0.25rem;
|
| 870 |
+
}
|
| 871 |
+
|
| 872 |
+
.g-lg-2,
|
| 873 |
+
.gx-lg-2 {
|
| 874 |
+
--bs-gutter-x: 0.5rem;
|
| 875 |
+
}
|
| 876 |
+
|
| 877 |
+
.g-lg-2,
|
| 878 |
+
.gy-lg-2 {
|
| 879 |
+
--bs-gutter-y: 0.5rem;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
.g-lg-3,
|
| 883 |
+
.gx-lg-3 {
|
| 884 |
+
--bs-gutter-x: 1rem;
|
| 885 |
+
}
|
| 886 |
+
|
| 887 |
+
.g-lg-3,
|
| 888 |
+
.gy-lg-3 {
|
| 889 |
+
--bs-gutter-y: 1rem;
|
| 890 |
+
}
|
| 891 |
+
|
| 892 |
+
.g-lg-4,
|
| 893 |
+
.gx-lg-4 {
|
| 894 |
+
--bs-gutter-x: 1.5rem;
|
| 895 |
+
}
|
| 896 |
+
|
| 897 |
+
.g-lg-4,
|
| 898 |
+
.gy-lg-4 {
|
| 899 |
+
--bs-gutter-y: 1.5rem;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
.g-lg-5,
|
| 903 |
+
.gx-lg-5 {
|
| 904 |
+
--bs-gutter-x: 3rem;
|
| 905 |
+
}
|
| 906 |
+
|
| 907 |
+
.g-lg-5,
|
| 908 |
+
.gy-lg-5 {
|
| 909 |
+
--bs-gutter-y: 3rem;
|
| 910 |
+
}
|
| 911 |
+
}
|
| 912 |
+
@media (min-width: 1200px) {
|
| 913 |
+
.col-xl {
|
| 914 |
+
flex: 1 0 0%;
|
| 915 |
+
}
|
| 916 |
+
|
| 917 |
+
.row-cols-xl-auto > * {
|
| 918 |
+
flex: 0 0 auto;
|
| 919 |
+
width: auto;
|
| 920 |
+
}
|
| 921 |
+
|
| 922 |
+
.row-cols-xl-1 > * {
|
| 923 |
+
flex: 0 0 auto;
|
| 924 |
+
width: 100%;
|
| 925 |
+
}
|
| 926 |
+
|
| 927 |
+
.row-cols-xl-2 > * {
|
| 928 |
+
flex: 0 0 auto;
|
| 929 |
+
width: 50%;
|
| 930 |
+
}
|
| 931 |
+
|
| 932 |
+
.row-cols-xl-3 > * {
|
| 933 |
+
flex: 0 0 auto;
|
| 934 |
+
width: 33.3333333333%;
|
| 935 |
+
}
|
| 936 |
+
|
| 937 |
+
.row-cols-xl-4 > * {
|
| 938 |
+
flex: 0 0 auto;
|
| 939 |
+
width: 25%;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
.row-cols-xl-5 > * {
|
| 943 |
+
flex: 0 0 auto;
|
| 944 |
+
width: 20%;
|
| 945 |
+
}
|
| 946 |
+
|
| 947 |
+
.row-cols-xl-6 > * {
|
| 948 |
+
flex: 0 0 auto;
|
| 949 |
+
width: 16.6666666667%;
|
| 950 |
+
}
|
| 951 |
+
|
| 952 |
+
.col-xl-auto {
|
| 953 |
+
flex: 0 0 auto;
|
| 954 |
+
width: auto;
|
| 955 |
+
}
|
| 956 |
+
|
| 957 |
+
.col-xl-1 {
|
| 958 |
+
flex: 0 0 auto;
|
| 959 |
+
width: 8.3333333333%;
|
| 960 |
+
}
|
| 961 |
+
|
| 962 |
+
.col-xl-2 {
|
| 963 |
+
flex: 0 0 auto;
|
| 964 |
+
width: 16.6666666667%;
|
| 965 |
+
}
|
| 966 |
+
|
| 967 |
+
.col-xl-3 {
|
| 968 |
+
flex: 0 0 auto;
|
| 969 |
+
width: 25%;
|
| 970 |
+
}
|
| 971 |
+
|
| 972 |
+
.col-xl-4 {
|
| 973 |
+
flex: 0 0 auto;
|
| 974 |
+
width: 33.3333333333%;
|
| 975 |
+
}
|
| 976 |
+
|
| 977 |
+
.col-xl-5 {
|
| 978 |
+
flex: 0 0 auto;
|
| 979 |
+
width: 41.6666666667%;
|
| 980 |
+
}
|
| 981 |
+
|
| 982 |
+
.col-xl-6 {
|
| 983 |
+
flex: 0 0 auto;
|
| 984 |
+
width: 50%;
|
| 985 |
+
}
|
| 986 |
+
|
| 987 |
+
.col-xl-7 {
|
| 988 |
+
flex: 0 0 auto;
|
| 989 |
+
width: 58.3333333333%;
|
| 990 |
+
}
|
| 991 |
+
|
| 992 |
+
.col-xl-8 {
|
| 993 |
+
flex: 0 0 auto;
|
| 994 |
+
width: 66.6666666667%;
|
| 995 |
+
}
|
| 996 |
+
|
| 997 |
+
.col-xl-9 {
|
| 998 |
+
flex: 0 0 auto;
|
| 999 |
+
width: 75%;
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.col-xl-10 {
|
| 1003 |
+
flex: 0 0 auto;
|
| 1004 |
+
width: 83.3333333333%;
|
| 1005 |
+
}
|
| 1006 |
+
|
| 1007 |
+
.col-xl-11 {
|
| 1008 |
+
flex: 0 0 auto;
|
| 1009 |
+
width: 91.6666666667%;
|
| 1010 |
+
}
|
| 1011 |
+
|
| 1012 |
+
.col-xl-12 {
|
| 1013 |
+
flex: 0 0 auto;
|
| 1014 |
+
width: 100%;
|
| 1015 |
+
}
|
| 1016 |
+
|
| 1017 |
+
.offset-xl-0 {
|
| 1018 |
+
margin-left: 0;
|
| 1019 |
+
}
|
| 1020 |
+
|
| 1021 |
+
.offset-xl-1 {
|
| 1022 |
+
margin-left: 8.3333333333%;
|
| 1023 |
+
}
|
| 1024 |
+
|
| 1025 |
+
.offset-xl-2 {
|
| 1026 |
+
margin-left: 16.6666666667%;
|
| 1027 |
+
}
|
| 1028 |
+
|
| 1029 |
+
.offset-xl-3 {
|
| 1030 |
+
margin-left: 25%;
|
| 1031 |
+
}
|
| 1032 |
+
|
| 1033 |
+
.offset-xl-4 {
|
| 1034 |
+
margin-left: 33.3333333333%;
|
| 1035 |
+
}
|
| 1036 |
+
|
| 1037 |
+
.offset-xl-5 {
|
| 1038 |
+
margin-left: 41.6666666667%;
|
| 1039 |
+
}
|
| 1040 |
+
|
| 1041 |
+
.offset-xl-6 {
|
| 1042 |
+
margin-left: 50%;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
.offset-xl-7 {
|
| 1046 |
+
margin-left: 58.3333333333%;
|
| 1047 |
+
}
|
| 1048 |
+
|
| 1049 |
+
.offset-xl-8 {
|
| 1050 |
+
margin-left: 66.6666666667%;
|
| 1051 |
+
}
|
| 1052 |
+
|
| 1053 |
+
.offset-xl-9 {
|
| 1054 |
+
margin-left: 75%;
|
| 1055 |
+
}
|
| 1056 |
+
|
| 1057 |
+
.offset-xl-10 {
|
| 1058 |
+
margin-left: 83.3333333333%;
|
| 1059 |
+
}
|
| 1060 |
+
|
| 1061 |
+
.offset-xl-11 {
|
| 1062 |
+
margin-left: 91.6666666667%;
|
| 1063 |
+
}
|
| 1064 |
+
|
| 1065 |
+
.g-xl-0,
|
| 1066 |
+
.gx-xl-0 {
|
| 1067 |
+
--bs-gutter-x: 0;
|
| 1068 |
+
}
|
| 1069 |
+
|
| 1070 |
+
.g-xl-0,
|
| 1071 |
+
.gy-xl-0 {
|
| 1072 |
+
--bs-gutter-y: 0;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.g-xl-1,
|
| 1076 |
+
.gx-xl-1 {
|
| 1077 |
+
--bs-gutter-x: 0.25rem;
|
| 1078 |
+
}
|
| 1079 |
+
|
| 1080 |
+
.g-xl-1,
|
| 1081 |
+
.gy-xl-1 {
|
| 1082 |
+
--bs-gutter-y: 0.25rem;
|
| 1083 |
+
}
|
| 1084 |
+
|
| 1085 |
+
.g-xl-2,
|
| 1086 |
+
.gx-xl-2 {
|
| 1087 |
+
--bs-gutter-x: 0.5rem;
|
| 1088 |
+
}
|
| 1089 |
+
|
| 1090 |
+
.g-xl-2,
|
| 1091 |
+
.gy-xl-2 {
|
| 1092 |
+
--bs-gutter-y: 0.5rem;
|
| 1093 |
+
}
|
| 1094 |
+
|
| 1095 |
+
.g-xl-3,
|
| 1096 |
+
.gx-xl-3 {
|
| 1097 |
+
--bs-gutter-x: 1rem;
|
| 1098 |
+
}
|
| 1099 |
+
|
| 1100 |
+
.g-xl-3,
|
| 1101 |
+
.gy-xl-3 {
|
| 1102 |
+
--bs-gutter-y: 1rem;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.g-xl-4,
|
| 1106 |
+
.gx-xl-4 {
|
| 1107 |
+
--bs-gutter-x: 1.5rem;
|
| 1108 |
+
}
|
| 1109 |
+
|
| 1110 |
+
.g-xl-4,
|
| 1111 |
+
.gy-xl-4 {
|
| 1112 |
+
--bs-gutter-y: 1.5rem;
|
| 1113 |
+
}
|
| 1114 |
+
|
| 1115 |
+
.g-xl-5,
|
| 1116 |
+
.gx-xl-5 {
|
| 1117 |
+
--bs-gutter-x: 3rem;
|
| 1118 |
+
}
|
| 1119 |
+
|
| 1120 |
+
.g-xl-5,
|
| 1121 |
+
.gy-xl-5 {
|
| 1122 |
+
--bs-gutter-y: 3rem;
|
| 1123 |
+
}
|
| 1124 |
+
}
|
| 1125 |
+
@media (min-width: 1400px) {
|
| 1126 |
+
.col-xxl {
|
| 1127 |
+
flex: 1 0 0%;
|
| 1128 |
+
}
|
| 1129 |
+
|
| 1130 |
+
.row-cols-xxl-auto > * {
|
| 1131 |
+
flex: 0 0 auto;
|
| 1132 |
+
width: auto;
|
| 1133 |
+
}
|
| 1134 |
+
|
| 1135 |
+
.row-cols-xxl-1 > * {
|
| 1136 |
+
flex: 0 0 auto;
|
| 1137 |
+
width: 100%;
|
| 1138 |
+
}
|
| 1139 |
+
|
| 1140 |
+
.row-cols-xxl-2 > * {
|
| 1141 |
+
flex: 0 0 auto;
|
| 1142 |
+
width: 50%;
|
| 1143 |
+
}
|
| 1144 |
+
|
| 1145 |
+
.row-cols-xxl-3 > * {
|
| 1146 |
+
flex: 0 0 auto;
|
| 1147 |
+
width: 33.3333333333%;
|
| 1148 |
+
}
|
| 1149 |
+
|
| 1150 |
+
.row-cols-xxl-4 > * {
|
| 1151 |
+
flex: 0 0 auto;
|
| 1152 |
+
width: 25%;
|
| 1153 |
+
}
|
| 1154 |
+
|
| 1155 |
+
.row-cols-xxl-5 > * {
|
| 1156 |
+
flex: 0 0 auto;
|
| 1157 |
+
width: 20%;
|
| 1158 |
+
}
|
| 1159 |
+
|
| 1160 |
+
.row-cols-xxl-6 > * {
|
| 1161 |
+
flex: 0 0 auto;
|
| 1162 |
+
width: 16.6666666667%;
|
| 1163 |
+
}
|
| 1164 |
+
|
| 1165 |
+
.col-xxl-auto {
|
| 1166 |
+
flex: 0 0 auto;
|
| 1167 |
+
width: auto;
|
| 1168 |
+
}
|
| 1169 |
+
|
| 1170 |
+
.col-xxl-1 {
|
| 1171 |
+
flex: 0 0 auto;
|
| 1172 |
+
width: 8.3333333333%;
|
| 1173 |
+
}
|
| 1174 |
+
|
| 1175 |
+
.col-xxl-2 {
|
| 1176 |
+
flex: 0 0 auto;
|
| 1177 |
+
width: 16.6666666667%;
|
| 1178 |
+
}
|
| 1179 |
+
|
| 1180 |
+
.col-xxl-3 {
|
| 1181 |
+
flex: 0 0 auto;
|
| 1182 |
+
width: 25%;
|
| 1183 |
+
}
|
| 1184 |
+
|
| 1185 |
+
.col-xxl-4 {
|
| 1186 |
+
flex: 0 0 auto;
|
| 1187 |
+
width: 33.3333333333%;
|
| 1188 |
+
}
|
| 1189 |
+
|
| 1190 |
+
.col-xxl-5 {
|
| 1191 |
+
flex: 0 0 auto;
|
| 1192 |
+
width: 41.6666666667%;
|
| 1193 |
+
}
|
| 1194 |
+
|
| 1195 |
+
.col-xxl-6 {
|
| 1196 |
+
flex: 0 0 auto;
|
| 1197 |
+
width: 50%;
|
| 1198 |
+
}
|
| 1199 |
+
|
| 1200 |
+
.col-xxl-7 {
|
| 1201 |
+
flex: 0 0 auto;
|
| 1202 |
+
width: 58.3333333333%;
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
.col-xxl-8 {
|
| 1206 |
+
flex: 0 0 auto;
|
| 1207 |
+
width: 66.6666666667%;
|
| 1208 |
+
}
|
| 1209 |
+
|
| 1210 |
+
.col-xxl-9 {
|
| 1211 |
+
flex: 0 0 auto;
|
| 1212 |
+
width: 75%;
|
| 1213 |
+
}
|
| 1214 |
+
|
| 1215 |
+
.col-xxl-10 {
|
| 1216 |
+
flex: 0 0 auto;
|
| 1217 |
+
width: 83.3333333333%;
|
| 1218 |
+
}
|
| 1219 |
+
|
| 1220 |
+
.col-xxl-11 {
|
| 1221 |
+
flex: 0 0 auto;
|
| 1222 |
+
width: 91.6666666667%;
|
| 1223 |
+
}
|
| 1224 |
+
|
| 1225 |
+
.col-xxl-12 {
|
| 1226 |
+
flex: 0 0 auto;
|
| 1227 |
+
width: 100%;
|
| 1228 |
+
}
|
| 1229 |
+
|
| 1230 |
+
.offset-xxl-0 {
|
| 1231 |
+
margin-left: 0;
|
| 1232 |
+
}
|
| 1233 |
+
|
| 1234 |
+
.offset-xxl-1 {
|
| 1235 |
+
margin-left: 8.3333333333%;
|
| 1236 |
+
}
|
| 1237 |
+
|
| 1238 |
+
.offset-xxl-2 {
|
| 1239 |
+
margin-left: 16.6666666667%;
|
| 1240 |
+
}
|
| 1241 |
+
|
| 1242 |
+
.offset-xxl-3 {
|
| 1243 |
+
margin-left: 25%;
|
| 1244 |
+
}
|
| 1245 |
+
|
| 1246 |
+
.offset-xxl-4 {
|
| 1247 |
+
margin-left: 33.3333333333%;
|
| 1248 |
+
}
|
| 1249 |
+
|
| 1250 |
+
.offset-xxl-5 {
|
| 1251 |
+
margin-left: 41.6666666667%;
|
| 1252 |
+
}
|
| 1253 |
+
|
| 1254 |
+
.offset-xxl-6 {
|
| 1255 |
+
margin-left: 50%;
|
| 1256 |
+
}
|
| 1257 |
+
|
| 1258 |
+
.offset-xxl-7 {
|
| 1259 |
+
margin-left: 58.3333333333%;
|
| 1260 |
+
}
|
| 1261 |
+
|
| 1262 |
+
.offset-xxl-8 {
|
| 1263 |
+
margin-left: 66.6666666667%;
|
| 1264 |
+
}
|
| 1265 |
+
|
| 1266 |
+
.offset-xxl-9 {
|
| 1267 |
+
margin-left: 75%;
|
| 1268 |
+
}
|
| 1269 |
+
|
| 1270 |
+
.offset-xxl-10 {
|
| 1271 |
+
margin-left: 83.3333333333%;
|
| 1272 |
+
}
|
| 1273 |
+
|
| 1274 |
+
.offset-xxl-11 {
|
| 1275 |
+
margin-left: 91.6666666667%;
|
| 1276 |
+
}
|
| 1277 |
+
|
| 1278 |
+
.g-xxl-0,
|
| 1279 |
+
.gx-xxl-0 {
|
| 1280 |
+
--bs-gutter-x: 0;
|
| 1281 |
+
}
|
| 1282 |
+
|
| 1283 |
+
.g-xxl-0,
|
| 1284 |
+
.gy-xxl-0 {
|
| 1285 |
+
--bs-gutter-y: 0;
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
.g-xxl-1,
|
| 1289 |
+
.gx-xxl-1 {
|
| 1290 |
+
--bs-gutter-x: 0.25rem;
|
| 1291 |
+
}
|
| 1292 |
+
|
| 1293 |
+
.g-xxl-1,
|
| 1294 |
+
.gy-xxl-1 {
|
| 1295 |
+
--bs-gutter-y: 0.25rem;
|
| 1296 |
+
}
|
| 1297 |
+
|
| 1298 |
+
.g-xxl-2,
|
| 1299 |
+
.gx-xxl-2 {
|
| 1300 |
+
--bs-gutter-x: 0.5rem;
|
| 1301 |
+
}
|
| 1302 |
+
|
| 1303 |
+
.g-xxl-2,
|
| 1304 |
+
.gy-xxl-2 {
|
| 1305 |
+
--bs-gutter-y: 0.5rem;
|
| 1306 |
+
}
|
| 1307 |
+
|
| 1308 |
+
.g-xxl-3,
|
| 1309 |
+
.gx-xxl-3 {
|
| 1310 |
+
--bs-gutter-x: 1rem;
|
| 1311 |
+
}
|
| 1312 |
+
|
| 1313 |
+
.g-xxl-3,
|
| 1314 |
+
.gy-xxl-3 {
|
| 1315 |
+
--bs-gutter-y: 1rem;
|
| 1316 |
+
}
|
| 1317 |
+
|
| 1318 |
+
.g-xxl-4,
|
| 1319 |
+
.gx-xxl-4 {
|
| 1320 |
+
--bs-gutter-x: 1.5rem;
|
| 1321 |
+
}
|
| 1322 |
+
|
| 1323 |
+
.g-xxl-4,
|
| 1324 |
+
.gy-xxl-4 {
|
| 1325 |
+
--bs-gutter-y: 1.5rem;
|
| 1326 |
+
}
|
| 1327 |
+
|
| 1328 |
+
.g-xxl-5,
|
| 1329 |
+
.gx-xxl-5 {
|
| 1330 |
+
--bs-gutter-x: 3rem;
|
| 1331 |
+
}
|
| 1332 |
+
|
| 1333 |
+
.g-xxl-5,
|
| 1334 |
+
.gy-xxl-5 {
|
| 1335 |
+
--bs-gutter-y: 3rem;
|
| 1336 |
+
}
|
| 1337 |
+
}
|
| 1338 |
+
.d-inline {
|
| 1339 |
+
display: inline !important;
|
| 1340 |
+
}
|
| 1341 |
+
|
| 1342 |
+
.d-inline-block {
|
| 1343 |
+
display: inline-block !important;
|
| 1344 |
+
}
|
| 1345 |
+
|
| 1346 |
+
.d-block {
|
| 1347 |
+
display: block !important;
|
| 1348 |
+
}
|
| 1349 |
+
|
| 1350 |
+
.d-grid {
|
| 1351 |
+
display: grid !important;
|
| 1352 |
+
}
|
| 1353 |
+
|
| 1354 |
+
.d-table {
|
| 1355 |
+
display: table !important;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
.d-table-row {
|
| 1359 |
+
display: table-row !important;
|
| 1360 |
+
}
|
| 1361 |
+
|
| 1362 |
+
.d-table-cell {
|
| 1363 |
+
display: table-cell !important;
|
| 1364 |
+
}
|
| 1365 |
+
|
| 1366 |
+
.d-flex {
|
| 1367 |
+
display: flex !important;
|
| 1368 |
+
}
|
| 1369 |
+
|
| 1370 |
+
.d-inline-flex {
|
| 1371 |
+
display: inline-flex !important;
|
| 1372 |
+
}
|
| 1373 |
+
|
| 1374 |
+
.d-none {
|
| 1375 |
+
display: none !important;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
.flex-fill {
|
| 1379 |
+
flex: 1 1 auto !important;
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
.flex-row {
|
| 1383 |
+
flex-direction: row !important;
|
| 1384 |
+
}
|
| 1385 |
+
|
| 1386 |
+
.flex-column {
|
| 1387 |
+
flex-direction: column !important;
|
| 1388 |
+
}
|
| 1389 |
+
|
| 1390 |
+
.flex-row-reverse {
|
| 1391 |
+
flex-direction: row-reverse !important;
|
| 1392 |
+
}
|
| 1393 |
+
|
| 1394 |
+
.flex-column-reverse {
|
| 1395 |
+
flex-direction: column-reverse !important;
|
| 1396 |
+
}
|
| 1397 |
+
|
| 1398 |
+
.flex-grow-0 {
|
| 1399 |
+
flex-grow: 0 !important;
|
| 1400 |
+
}
|
| 1401 |
+
|
| 1402 |
+
.flex-grow-1 {
|
| 1403 |
+
flex-grow: 1 !important;
|
| 1404 |
+
}
|
| 1405 |
+
|
| 1406 |
+
.flex-shrink-0 {
|
| 1407 |
+
flex-shrink: 0 !important;
|
| 1408 |
+
}
|
| 1409 |
+
|
| 1410 |
+
.flex-shrink-1 {
|
| 1411 |
+
flex-shrink: 1 !important;
|
| 1412 |
+
}
|
| 1413 |
+
|
| 1414 |
+
.flex-wrap {
|
| 1415 |
+
flex-wrap: wrap !important;
|
| 1416 |
+
}
|
| 1417 |
+
|
| 1418 |
+
.flex-nowrap {
|
| 1419 |
+
flex-wrap: nowrap !important;
|
| 1420 |
+
}
|
| 1421 |
+
|
| 1422 |
+
.flex-wrap-reverse {
|
| 1423 |
+
flex-wrap: wrap-reverse !important;
|
| 1424 |
+
}
|
| 1425 |
+
|
| 1426 |
+
.justify-content-start {
|
| 1427 |
+
justify-content: flex-start !important;
|
| 1428 |
+
}
|
| 1429 |
+
|
| 1430 |
+
.justify-content-end {
|
| 1431 |
+
justify-content: flex-end !important;
|
| 1432 |
+
}
|
| 1433 |
+
|
| 1434 |
+
.justify-content-center {
|
| 1435 |
+
justify-content: center !important;
|
| 1436 |
+
}
|
| 1437 |
+
|
| 1438 |
+
.justify-content-between {
|
| 1439 |
+
justify-content: space-between !important;
|
| 1440 |
+
}
|
| 1441 |
+
|
| 1442 |
+
.justify-content-around {
|
| 1443 |
+
justify-content: space-around !important;
|
| 1444 |
+
}
|
| 1445 |
+
|
| 1446 |
+
.justify-content-evenly {
|
| 1447 |
+
justify-content: space-evenly !important;
|
| 1448 |
+
}
|
| 1449 |
+
|
| 1450 |
+
.align-items-start {
|
| 1451 |
+
align-items: flex-start !important;
|
| 1452 |
+
}
|
| 1453 |
+
|
| 1454 |
+
.align-items-end {
|
| 1455 |
+
align-items: flex-end !important;
|
| 1456 |
+
}
|
| 1457 |
+
|
| 1458 |
+
.align-items-center {
|
| 1459 |
+
align-items: center !important;
|
| 1460 |
+
}
|
| 1461 |
+
|
| 1462 |
+
.align-items-baseline {
|
| 1463 |
+
align-items: baseline !important;
|
| 1464 |
+
}
|
| 1465 |
+
|
| 1466 |
+
.align-items-stretch {
|
| 1467 |
+
align-items: stretch !important;
|
| 1468 |
+
}
|
| 1469 |
+
|
| 1470 |
+
.align-content-start {
|
| 1471 |
+
align-content: flex-start !important;
|
| 1472 |
+
}
|
| 1473 |
+
|
| 1474 |
+
.align-content-end {
|
| 1475 |
+
align-content: flex-end !important;
|
| 1476 |
+
}
|
| 1477 |
+
|
| 1478 |
+
.align-content-center {
|
| 1479 |
+
align-content: center !important;
|
| 1480 |
+
}
|
| 1481 |
+
|
| 1482 |
+
.align-content-between {
|
| 1483 |
+
align-content: space-between !important;
|
| 1484 |
+
}
|
| 1485 |
+
|
| 1486 |
+
.align-content-around {
|
| 1487 |
+
align-content: space-around !important;
|
| 1488 |
+
}
|
| 1489 |
+
|
| 1490 |
+
.align-content-stretch {
|
| 1491 |
+
align-content: stretch !important;
|
| 1492 |
+
}
|
| 1493 |
+
|
| 1494 |
+
.align-self-auto {
|
| 1495 |
+
align-self: auto !important;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
.align-self-start {
|
| 1499 |
+
align-self: flex-start !important;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
.align-self-end {
|
| 1503 |
+
align-self: flex-end !important;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
.align-self-center {
|
| 1507 |
+
align-self: center !important;
|
| 1508 |
+
}
|
| 1509 |
+
|
| 1510 |
+
.align-self-baseline {
|
| 1511 |
+
align-self: baseline !important;
|
| 1512 |
+
}
|
| 1513 |
+
|
| 1514 |
+
.align-self-stretch {
|
| 1515 |
+
align-self: stretch !important;
|
| 1516 |
+
}
|
| 1517 |
+
|
| 1518 |
+
.order-first {
|
| 1519 |
+
order: -1 !important;
|
| 1520 |
+
}
|
| 1521 |
+
|
| 1522 |
+
.order-0 {
|
| 1523 |
+
order: 0 !important;
|
| 1524 |
+
}
|
| 1525 |
+
|
| 1526 |
+
.order-1 {
|
| 1527 |
+
order: 1 !important;
|
| 1528 |
+
}
|
| 1529 |
+
|
| 1530 |
+
.order-2 {
|
| 1531 |
+
order: 2 !important;
|
| 1532 |
+
}
|
| 1533 |
+
|
| 1534 |
+
.order-3 {
|
| 1535 |
+
order: 3 !important;
|
| 1536 |
+
}
|
| 1537 |
+
|
| 1538 |
+
.order-4 {
|
| 1539 |
+
order: 4 !important;
|
| 1540 |
+
}
|
| 1541 |
+
|
| 1542 |
+
.order-5 {
|
| 1543 |
+
order: 5 !important;
|
| 1544 |
+
}
|
| 1545 |
+
|
| 1546 |
+
.order-last {
|
| 1547 |
+
order: 6 !important;
|
| 1548 |
+
}
|
| 1549 |
+
|
| 1550 |
+
.m-0 {
|
| 1551 |
+
margin: 0 !important;
|
| 1552 |
+
}
|
| 1553 |
+
|
| 1554 |
+
.m-1 {
|
| 1555 |
+
margin: 0.25rem !important;
|
| 1556 |
+
}
|
| 1557 |
+
|
| 1558 |
+
.m-2 {
|
| 1559 |
+
margin: 0.5rem !important;
|
| 1560 |
+
}
|
| 1561 |
+
|
| 1562 |
+
.m-3 {
|
| 1563 |
+
margin: 1rem !important;
|
| 1564 |
+
}
|
| 1565 |
+
|
| 1566 |
+
.m-4 {
|
| 1567 |
+
margin: 1.5rem !important;
|
| 1568 |
+
}
|
| 1569 |
+
|
| 1570 |
+
.m-5 {
|
| 1571 |
+
margin: 3rem !important;
|
| 1572 |
+
}
|
| 1573 |
+
|
| 1574 |
+
.m-auto {
|
| 1575 |
+
margin: auto !important;
|
| 1576 |
+
}
|
| 1577 |
+
|
| 1578 |
+
.mx-0 {
|
| 1579 |
+
margin-right: 0 !important;
|
| 1580 |
+
margin-left: 0 !important;
|
| 1581 |
+
}
|
| 1582 |
+
|
| 1583 |
+
.mx-1 {
|
| 1584 |
+
margin-right: 0.25rem !important;
|
| 1585 |
+
margin-left: 0.25rem !important;
|
| 1586 |
+
}
|
| 1587 |
+
|
| 1588 |
+
.mx-2 {
|
| 1589 |
+
margin-right: 0.5rem !important;
|
| 1590 |
+
margin-left: 0.5rem !important;
|
| 1591 |
+
}
|
| 1592 |
+
|
| 1593 |
+
.mx-3 {
|
| 1594 |
+
margin-right: 1rem !important;
|
| 1595 |
+
margin-left: 1rem !important;
|
| 1596 |
+
}
|
| 1597 |
+
|
| 1598 |
+
.mx-4 {
|
| 1599 |
+
margin-right: 1.5rem !important;
|
| 1600 |
+
margin-left: 1.5rem !important;
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
.mx-5 {
|
| 1604 |
+
margin-right: 3rem !important;
|
| 1605 |
+
margin-left: 3rem !important;
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
.mx-auto {
|
| 1609 |
+
margin-right: auto !important;
|
| 1610 |
+
margin-left: auto !important;
|
| 1611 |
+
}
|
| 1612 |
+
|
| 1613 |
+
.my-0 {
|
| 1614 |
+
margin-top: 0 !important;
|
| 1615 |
+
margin-bottom: 0 !important;
|
| 1616 |
+
}
|
| 1617 |
+
|
| 1618 |
+
.my-1 {
|
| 1619 |
+
margin-top: 0.25rem !important;
|
| 1620 |
+
margin-bottom: 0.25rem !important;
|
| 1621 |
+
}
|
| 1622 |
+
|
| 1623 |
+
.my-2 {
|
| 1624 |
+
margin-top: 0.5rem !important;
|
| 1625 |
+
margin-bottom: 0.5rem !important;
|
| 1626 |
+
}
|
| 1627 |
+
|
| 1628 |
+
.my-3 {
|
| 1629 |
+
margin-top: 1rem !important;
|
| 1630 |
+
margin-bottom: 1rem !important;
|
| 1631 |
+
}
|
| 1632 |
+
|
| 1633 |
+
.my-4 {
|
| 1634 |
+
margin-top: 1.5rem !important;
|
| 1635 |
+
margin-bottom: 1.5rem !important;
|
| 1636 |
+
}
|
| 1637 |
+
|
| 1638 |
+
.my-5 {
|
| 1639 |
+
margin-top: 3rem !important;
|
| 1640 |
+
margin-bottom: 3rem !important;
|
| 1641 |
+
}
|
| 1642 |
+
|
| 1643 |
+
.my-auto {
|
| 1644 |
+
margin-top: auto !important;
|
| 1645 |
+
margin-bottom: auto !important;
|
| 1646 |
+
}
|
| 1647 |
+
|
| 1648 |
+
.mt-0 {
|
| 1649 |
+
margin-top: 0 !important;
|
| 1650 |
+
}
|
| 1651 |
+
|
| 1652 |
+
.mt-1 {
|
| 1653 |
+
margin-top: 0.25rem !important;
|
| 1654 |
+
}
|
| 1655 |
+
|
| 1656 |
+
.mt-2 {
|
| 1657 |
+
margin-top: 0.5rem !important;
|
| 1658 |
+
}
|
| 1659 |
+
|
| 1660 |
+
.mt-3 {
|
| 1661 |
+
margin-top: 1rem !important;
|
| 1662 |
+
}
|
| 1663 |
+
|
| 1664 |
+
.mt-4 {
|
| 1665 |
+
margin-top: 1.5rem !important;
|
| 1666 |
+
}
|
| 1667 |
+
|
| 1668 |
+
.mt-5 {
|
| 1669 |
+
margin-top: 3rem !important;
|
| 1670 |
+
}
|
| 1671 |
+
|
| 1672 |
+
.mt-auto {
|
| 1673 |
+
margin-top: auto !important;
|
| 1674 |
+
}
|
| 1675 |
+
|
| 1676 |
+
.me-0 {
|
| 1677 |
+
margin-right: 0 !important;
|
| 1678 |
+
}
|
| 1679 |
+
|
| 1680 |
+
.me-1 {
|
| 1681 |
+
margin-right: 0.25rem !important;
|
| 1682 |
+
}
|
| 1683 |
+
|
| 1684 |
+
.me-2 {
|
| 1685 |
+
margin-right: 0.5rem !important;
|
| 1686 |
+
}
|
| 1687 |
+
|
| 1688 |
+
.me-3 {
|
| 1689 |
+
margin-right: 1rem !important;
|
| 1690 |
+
}
|
| 1691 |
+
|
| 1692 |
+
.me-4 {
|
| 1693 |
+
margin-right: 1.5rem !important;
|
| 1694 |
+
}
|
| 1695 |
+
|
| 1696 |
+
.me-5 {
|
| 1697 |
+
margin-right: 3rem !important;
|
| 1698 |
+
}
|
| 1699 |
+
|
| 1700 |
+
.me-auto {
|
| 1701 |
+
margin-right: auto !important;
|
| 1702 |
+
}
|
| 1703 |
+
|
| 1704 |
+
.mb-0 {
|
| 1705 |
+
margin-bottom: 0 !important;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
.mb-1 {
|
| 1709 |
+
margin-bottom: 0.25rem !important;
|
| 1710 |
+
}
|
| 1711 |
+
|
| 1712 |
+
.mb-2 {
|
| 1713 |
+
margin-bottom: 0.5rem !important;
|
| 1714 |
+
}
|
| 1715 |
+
|
| 1716 |
+
.mb-3 {
|
| 1717 |
+
margin-bottom: 1rem !important;
|
| 1718 |
+
}
|
| 1719 |
+
|
| 1720 |
+
.mb-4 {
|
| 1721 |
+
margin-bottom: 1.5rem !important;
|
| 1722 |
+
}
|
| 1723 |
+
|
| 1724 |
+
.mb-5 {
|
| 1725 |
+
margin-bottom: 3rem !important;
|
| 1726 |
+
}
|
| 1727 |
+
|
| 1728 |
+
.mb-auto {
|
| 1729 |
+
margin-bottom: auto !important;
|
| 1730 |
+
}
|
| 1731 |
+
|
| 1732 |
+
.ms-0 {
|
| 1733 |
+
margin-left: 0 !important;
|
| 1734 |
+
}
|
| 1735 |
+
|
| 1736 |
+
.ms-1 {
|
| 1737 |
+
margin-left: 0.25rem !important;
|
| 1738 |
+
}
|
| 1739 |
+
|
| 1740 |
+
.ms-2 {
|
| 1741 |
+
margin-left: 0.5rem !important;
|
| 1742 |
+
}
|
| 1743 |
+
|
| 1744 |
+
.ms-3 {
|
| 1745 |
+
margin-left: 1rem !important;
|
| 1746 |
+
}
|
| 1747 |
+
|
| 1748 |
+
.ms-4 {
|
| 1749 |
+
margin-left: 1.5rem !important;
|
| 1750 |
+
}
|
| 1751 |
+
|
| 1752 |
+
.ms-5 {
|
| 1753 |
+
margin-left: 3rem !important;
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
.ms-auto {
|
| 1757 |
+
margin-left: auto !important;
|
| 1758 |
+
}
|
| 1759 |
+
|
| 1760 |
+
.p-0 {
|
| 1761 |
+
padding: 0 !important;
|
| 1762 |
+
}
|
| 1763 |
+
|
| 1764 |
+
.p-1 {
|
| 1765 |
+
padding: 0.25rem !important;
|
| 1766 |
+
}
|
| 1767 |
+
|
| 1768 |
+
.p-2 {
|
| 1769 |
+
padding: 0.5rem !important;
|
| 1770 |
+
}
|
| 1771 |
+
|
| 1772 |
+
.p-3 {
|
| 1773 |
+
padding: 1rem !important;
|
| 1774 |
+
}
|
| 1775 |
+
|
| 1776 |
+
.p-4 {
|
| 1777 |
+
padding: 1.5rem !important;
|
| 1778 |
+
}
|
| 1779 |
+
|
| 1780 |
+
.p-5 {
|
| 1781 |
+
padding: 3rem !important;
|
| 1782 |
+
}
|
| 1783 |
+
|
| 1784 |
+
.px-0 {
|
| 1785 |
+
padding-right: 0 !important;
|
| 1786 |
+
padding-left: 0 !important;
|
| 1787 |
+
}
|
| 1788 |
+
|
| 1789 |
+
.px-1 {
|
| 1790 |
+
padding-right: 0.25rem !important;
|
| 1791 |
+
padding-left: 0.25rem !important;
|
| 1792 |
+
}
|
| 1793 |
+
|
| 1794 |
+
.px-2 {
|
| 1795 |
+
padding-right: 0.5rem !important;
|
| 1796 |
+
padding-left: 0.5rem !important;
|
| 1797 |
+
}
|
| 1798 |
+
|
| 1799 |
+
.px-3 {
|
| 1800 |
+
padding-right: 1rem !important;
|
| 1801 |
+
padding-left: 1rem !important;
|
| 1802 |
+
}
|
| 1803 |
+
|
| 1804 |
+
.px-4 {
|
| 1805 |
+
padding-right: 1.5rem !important;
|
| 1806 |
+
padding-left: 1.5rem !important;
|
| 1807 |
+
}
|
| 1808 |
+
|
| 1809 |
+
.px-5 {
|
| 1810 |
+
padding-right: 3rem !important;
|
| 1811 |
+
padding-left: 3rem !important;
|
| 1812 |
+
}
|
| 1813 |
+
|
| 1814 |
+
.py-0 {
|
| 1815 |
+
padding-top: 0 !important;
|
| 1816 |
+
padding-bottom: 0 !important;
|
| 1817 |
+
}
|
| 1818 |
+
|
| 1819 |
+
.py-1 {
|
| 1820 |
+
padding-top: 0.25rem !important;
|
| 1821 |
+
padding-bottom: 0.25rem !important;
|
| 1822 |
+
}
|
| 1823 |
+
|
| 1824 |
+
.py-2 {
|
| 1825 |
+
padding-top: 0.5rem !important;
|
| 1826 |
+
padding-bottom: 0.5rem !important;
|
| 1827 |
+
}
|
| 1828 |
+
|
| 1829 |
+
.py-3 {
|
| 1830 |
+
padding-top: 1rem !important;
|
| 1831 |
+
padding-bottom: 1rem !important;
|
| 1832 |
+
}
|
| 1833 |
+
|
| 1834 |
+
.py-4 {
|
| 1835 |
+
padding-top: 1.5rem !important;
|
| 1836 |
+
padding-bottom: 1.5rem !important;
|
| 1837 |
+
}
|
| 1838 |
+
|
| 1839 |
+
.py-5 {
|
| 1840 |
+
padding-top: 3rem !important;
|
| 1841 |
+
padding-bottom: 3rem !important;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
.pt-0 {
|
| 1845 |
+
padding-top: 0 !important;
|
| 1846 |
+
}
|
| 1847 |
+
|
| 1848 |
+
.pt-1 {
|
| 1849 |
+
padding-top: 0.25rem !important;
|
| 1850 |
+
}
|
| 1851 |
+
|
| 1852 |
+
.pt-2 {
|
| 1853 |
+
padding-top: 0.5rem !important;
|
| 1854 |
+
}
|
| 1855 |
+
|
| 1856 |
+
.pt-3 {
|
| 1857 |
+
padding-top: 1rem !important;
|
| 1858 |
+
}
|
| 1859 |
+
|
| 1860 |
+
.pt-4 {
|
| 1861 |
+
padding-top: 1.5rem !important;
|
| 1862 |
+
}
|
| 1863 |
+
|
| 1864 |
+
.pt-5 {
|
| 1865 |
+
padding-top: 3rem !important;
|
| 1866 |
+
}
|
| 1867 |
+
|
| 1868 |
+
.pe-0 {
|
| 1869 |
+
padding-right: 0 !important;
|
| 1870 |
+
}
|
| 1871 |
+
|
| 1872 |
+
.pe-1 {
|
| 1873 |
+
padding-right: 0.25rem !important;
|
| 1874 |
+
}
|
| 1875 |
+
|
| 1876 |
+
.pe-2 {
|
| 1877 |
+
padding-right: 0.5rem !important;
|
| 1878 |
+
}
|
| 1879 |
+
|
| 1880 |
+
.pe-3 {
|
| 1881 |
+
padding-right: 1rem !important;
|
| 1882 |
+
}
|
| 1883 |
+
|
| 1884 |
+
.pe-4 {
|
| 1885 |
+
padding-right: 1.5rem !important;
|
| 1886 |
+
}
|
| 1887 |
+
|
| 1888 |
+
.pe-5 {
|
| 1889 |
+
padding-right: 3rem !important;
|
| 1890 |
+
}
|
| 1891 |
+
|
| 1892 |
+
.pb-0 {
|
| 1893 |
+
padding-bottom: 0 !important;
|
| 1894 |
+
}
|
| 1895 |
+
|
| 1896 |
+
.pb-1 {
|
| 1897 |
+
padding-bottom: 0.25rem !important;
|
| 1898 |
+
}
|
| 1899 |
+
|
| 1900 |
+
.pb-2 {
|
| 1901 |
+
padding-bottom: 0.5rem !important;
|
| 1902 |
+
}
|
| 1903 |
+
|
| 1904 |
+
.pb-3 {
|
| 1905 |
+
padding-bottom: 1rem !important;
|
| 1906 |
+
}
|
| 1907 |
+
|
| 1908 |
+
.pb-4 {
|
| 1909 |
+
padding-bottom: 1.5rem !important;
|
| 1910 |
+
}
|
| 1911 |
+
|
| 1912 |
+
.pb-5 {
|
| 1913 |
+
padding-bottom: 3rem !important;
|
| 1914 |
+
}
|
| 1915 |
+
|
| 1916 |
+
.ps-0 {
|
| 1917 |
+
padding-left: 0 !important;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
.ps-1 {
|
| 1921 |
+
padding-left: 0.25rem !important;
|
| 1922 |
+
}
|
| 1923 |
+
|
| 1924 |
+
.ps-2 {
|
| 1925 |
+
padding-left: 0.5rem !important;
|
| 1926 |
+
}
|
| 1927 |
+
|
| 1928 |
+
.ps-3 {
|
| 1929 |
+
padding-left: 1rem !important;
|
| 1930 |
+
}
|
| 1931 |
+
|
| 1932 |
+
.ps-4 {
|
| 1933 |
+
padding-left: 1.5rem !important;
|
| 1934 |
+
}
|
| 1935 |
+
|
| 1936 |
+
.ps-5 {
|
| 1937 |
+
padding-left: 3rem !important;
|
| 1938 |
+
}
|
| 1939 |
+
|
| 1940 |
+
@media (min-width: 576px) {
|
| 1941 |
+
.d-sm-inline {
|
| 1942 |
+
display: inline !important;
|
| 1943 |
+
}
|
| 1944 |
+
|
| 1945 |
+
.d-sm-inline-block {
|
| 1946 |
+
display: inline-block !important;
|
| 1947 |
+
}
|
| 1948 |
+
|
| 1949 |
+
.d-sm-block {
|
| 1950 |
+
display: block !important;
|
| 1951 |
+
}
|
| 1952 |
+
|
| 1953 |
+
.d-sm-grid {
|
| 1954 |
+
display: grid !important;
|
| 1955 |
+
}
|
| 1956 |
+
|
| 1957 |
+
.d-sm-table {
|
| 1958 |
+
display: table !important;
|
| 1959 |
+
}
|
| 1960 |
+
|
| 1961 |
+
.d-sm-table-row {
|
| 1962 |
+
display: table-row !important;
|
| 1963 |
+
}
|
| 1964 |
+
|
| 1965 |
+
.d-sm-table-cell {
|
| 1966 |
+
display: table-cell !important;
|
| 1967 |
+
}
|
| 1968 |
+
|
| 1969 |
+
.d-sm-flex {
|
| 1970 |
+
display: flex !important;
|
| 1971 |
+
}
|
| 1972 |
+
|
| 1973 |
+
.d-sm-inline-flex {
|
| 1974 |
+
display: inline-flex !important;
|
| 1975 |
+
}
|
| 1976 |
+
|
| 1977 |
+
.d-sm-none {
|
| 1978 |
+
display: none !important;
|
| 1979 |
+
}
|
| 1980 |
+
|
| 1981 |
+
.flex-sm-fill {
|
| 1982 |
+
flex: 1 1 auto !important;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.flex-sm-row {
|
| 1986 |
+
flex-direction: row !important;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
.flex-sm-column {
|
| 1990 |
+
flex-direction: column !important;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
.flex-sm-row-reverse {
|
| 1994 |
+
flex-direction: row-reverse !important;
|
| 1995 |
+
}
|
| 1996 |
+
|
| 1997 |
+
.flex-sm-column-reverse {
|
| 1998 |
+
flex-direction: column-reverse !important;
|
| 1999 |
+
}
|
| 2000 |
+
|
| 2001 |
+
.flex-sm-grow-0 {
|
| 2002 |
+
flex-grow: 0 !important;
|
| 2003 |
+
}
|
| 2004 |
+
|
| 2005 |
+
.flex-sm-grow-1 {
|
| 2006 |
+
flex-grow: 1 !important;
|
| 2007 |
+
}
|
| 2008 |
+
|
| 2009 |
+
.flex-sm-shrink-0 {
|
| 2010 |
+
flex-shrink: 0 !important;
|
| 2011 |
+
}
|
| 2012 |
+
|
| 2013 |
+
.flex-sm-shrink-1 {
|
| 2014 |
+
flex-shrink: 1 !important;
|
| 2015 |
+
}
|
| 2016 |
+
|
| 2017 |
+
.flex-sm-wrap {
|
| 2018 |
+
flex-wrap: wrap !important;
|
| 2019 |
+
}
|
| 2020 |
+
|
| 2021 |
+
.flex-sm-nowrap {
|
| 2022 |
+
flex-wrap: nowrap !important;
|
| 2023 |
+
}
|
| 2024 |
+
|
| 2025 |
+
.flex-sm-wrap-reverse {
|
| 2026 |
+
flex-wrap: wrap-reverse !important;
|
| 2027 |
+
}
|
| 2028 |
+
|
| 2029 |
+
.justify-content-sm-start {
|
| 2030 |
+
justify-content: flex-start !important;
|
| 2031 |
+
}
|
| 2032 |
+
|
| 2033 |
+
.justify-content-sm-end {
|
| 2034 |
+
justify-content: flex-end !important;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
.justify-content-sm-center {
|
| 2038 |
+
justify-content: center !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
.justify-content-sm-between {
|
| 2042 |
+
justify-content: space-between !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
.justify-content-sm-around {
|
| 2046 |
+
justify-content: space-around !important;
|
| 2047 |
+
}
|
| 2048 |
+
|
| 2049 |
+
.justify-content-sm-evenly {
|
| 2050 |
+
justify-content: space-evenly !important;
|
| 2051 |
+
}
|
| 2052 |
+
|
| 2053 |
+
.align-items-sm-start {
|
| 2054 |
+
align-items: flex-start !important;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.align-items-sm-end {
|
| 2058 |
+
align-items: flex-end !important;
|
| 2059 |
+
}
|
| 2060 |
+
|
| 2061 |
+
.align-items-sm-center {
|
| 2062 |
+
align-items: center !important;
|
| 2063 |
+
}
|
| 2064 |
+
|
| 2065 |
+
.align-items-sm-baseline {
|
| 2066 |
+
align-items: baseline !important;
|
| 2067 |
+
}
|
| 2068 |
+
|
| 2069 |
+
.align-items-sm-stretch {
|
| 2070 |
+
align-items: stretch !important;
|
| 2071 |
+
}
|
| 2072 |
+
|
| 2073 |
+
.align-content-sm-start {
|
| 2074 |
+
align-content: flex-start !important;
|
| 2075 |
+
}
|
| 2076 |
+
|
| 2077 |
+
.align-content-sm-end {
|
| 2078 |
+
align-content: flex-end !important;
|
| 2079 |
+
}
|
| 2080 |
+
|
| 2081 |
+
.align-content-sm-center {
|
| 2082 |
+
align-content: center !important;
|
| 2083 |
+
}
|
| 2084 |
+
|
| 2085 |
+
.align-content-sm-between {
|
| 2086 |
+
align-content: space-between !important;
|
| 2087 |
+
}
|
| 2088 |
+
|
| 2089 |
+
.align-content-sm-around {
|
| 2090 |
+
align-content: space-around !important;
|
| 2091 |
+
}
|
| 2092 |
+
|
| 2093 |
+
.align-content-sm-stretch {
|
| 2094 |
+
align-content: stretch !important;
|
| 2095 |
+
}
|
| 2096 |
+
|
| 2097 |
+
.align-self-sm-auto {
|
| 2098 |
+
align-self: auto !important;
|
| 2099 |
+
}
|
| 2100 |
+
|
| 2101 |
+
.align-self-sm-start {
|
| 2102 |
+
align-self: flex-start !important;
|
| 2103 |
+
}
|
| 2104 |
+
|
| 2105 |
+
.align-self-sm-end {
|
| 2106 |
+
align-self: flex-end !important;
|
| 2107 |
+
}
|
| 2108 |
+
|
| 2109 |
+
.align-self-sm-center {
|
| 2110 |
+
align-self: center !important;
|
| 2111 |
+
}
|
| 2112 |
+
|
| 2113 |
+
.align-self-sm-baseline {
|
| 2114 |
+
align-self: baseline !important;
|
| 2115 |
+
}
|
| 2116 |
+
|
| 2117 |
+
.align-self-sm-stretch {
|
| 2118 |
+
align-self: stretch !important;
|
| 2119 |
+
}
|
| 2120 |
+
|
| 2121 |
+
.order-sm-first {
|
| 2122 |
+
order: -1 !important;
|
| 2123 |
+
}
|
| 2124 |
+
|
| 2125 |
+
.order-sm-0 {
|
| 2126 |
+
order: 0 !important;
|
| 2127 |
+
}
|
| 2128 |
+
|
| 2129 |
+
.order-sm-1 {
|
| 2130 |
+
order: 1 !important;
|
| 2131 |
+
}
|
| 2132 |
+
|
| 2133 |
+
.order-sm-2 {
|
| 2134 |
+
order: 2 !important;
|
| 2135 |
+
}
|
| 2136 |
+
|
| 2137 |
+
.order-sm-3 {
|
| 2138 |
+
order: 3 !important;
|
| 2139 |
+
}
|
| 2140 |
+
|
| 2141 |
+
.order-sm-4 {
|
| 2142 |
+
order: 4 !important;
|
| 2143 |
+
}
|
| 2144 |
+
|
| 2145 |
+
.order-sm-5 {
|
| 2146 |
+
order: 5 !important;
|
| 2147 |
+
}
|
| 2148 |
+
|
| 2149 |
+
.order-sm-last {
|
| 2150 |
+
order: 6 !important;
|
| 2151 |
+
}
|
| 2152 |
+
|
| 2153 |
+
.m-sm-0 {
|
| 2154 |
+
margin: 0 !important;
|
| 2155 |
+
}
|
| 2156 |
+
|
| 2157 |
+
.m-sm-1 {
|
| 2158 |
+
margin: 0.25rem !important;
|
| 2159 |
+
}
|
| 2160 |
+
|
| 2161 |
+
.m-sm-2 {
|
| 2162 |
+
margin: 0.5rem !important;
|
| 2163 |
+
}
|
| 2164 |
+
|
| 2165 |
+
.m-sm-3 {
|
| 2166 |
+
margin: 1rem !important;
|
| 2167 |
+
}
|
| 2168 |
+
|
| 2169 |
+
.m-sm-4 {
|
| 2170 |
+
margin: 1.5rem !important;
|
| 2171 |
+
}
|
| 2172 |
+
|
| 2173 |
+
.m-sm-5 {
|
| 2174 |
+
margin: 3rem !important;
|
| 2175 |
+
}
|
| 2176 |
+
|
| 2177 |
+
.m-sm-auto {
|
| 2178 |
+
margin: auto !important;
|
| 2179 |
+
}
|
| 2180 |
+
|
| 2181 |
+
.mx-sm-0 {
|
| 2182 |
+
margin-right: 0 !important;
|
| 2183 |
+
margin-left: 0 !important;
|
| 2184 |
+
}
|
| 2185 |
+
|
| 2186 |
+
.mx-sm-1 {
|
| 2187 |
+
margin-right: 0.25rem !important;
|
| 2188 |
+
margin-left: 0.25rem !important;
|
| 2189 |
+
}
|
| 2190 |
+
|
| 2191 |
+
.mx-sm-2 {
|
| 2192 |
+
margin-right: 0.5rem !important;
|
| 2193 |
+
margin-left: 0.5rem !important;
|
| 2194 |
+
}
|
| 2195 |
+
|
| 2196 |
+
.mx-sm-3 {
|
| 2197 |
+
margin-right: 1rem !important;
|
| 2198 |
+
margin-left: 1rem !important;
|
| 2199 |
+
}
|
| 2200 |
+
|
| 2201 |
+
.mx-sm-4 {
|
| 2202 |
+
margin-right: 1.5rem !important;
|
| 2203 |
+
margin-left: 1.5rem !important;
|
| 2204 |
+
}
|
| 2205 |
+
|
| 2206 |
+
.mx-sm-5 {
|
| 2207 |
+
margin-right: 3rem !important;
|
| 2208 |
+
margin-left: 3rem !important;
|
| 2209 |
+
}
|
| 2210 |
+
|
| 2211 |
+
.mx-sm-auto {
|
| 2212 |
+
margin-right: auto !important;
|
| 2213 |
+
margin-left: auto !important;
|
| 2214 |
+
}
|
| 2215 |
+
|
| 2216 |
+
.my-sm-0 {
|
| 2217 |
+
margin-top: 0 !important;
|
| 2218 |
+
margin-bottom: 0 !important;
|
| 2219 |
+
}
|
| 2220 |
+
|
| 2221 |
+
.my-sm-1 {
|
| 2222 |
+
margin-top: 0.25rem !important;
|
| 2223 |
+
margin-bottom: 0.25rem !important;
|
| 2224 |
+
}
|
| 2225 |
+
|
| 2226 |
+
.my-sm-2 {
|
| 2227 |
+
margin-top: 0.5rem !important;
|
| 2228 |
+
margin-bottom: 0.5rem !important;
|
| 2229 |
+
}
|
| 2230 |
+
|
| 2231 |
+
.my-sm-3 {
|
| 2232 |
+
margin-top: 1rem !important;
|
| 2233 |
+
margin-bottom: 1rem !important;
|
| 2234 |
+
}
|
| 2235 |
+
|
| 2236 |
+
.my-sm-4 {
|
| 2237 |
+
margin-top: 1.5rem !important;
|
| 2238 |
+
margin-bottom: 1.5rem !important;
|
| 2239 |
+
}
|
| 2240 |
+
|
| 2241 |
+
.my-sm-5 {
|
| 2242 |
+
margin-top: 3rem !important;
|
| 2243 |
+
margin-bottom: 3rem !important;
|
| 2244 |
+
}
|
| 2245 |
+
|
| 2246 |
+
.my-sm-auto {
|
| 2247 |
+
margin-top: auto !important;
|
| 2248 |
+
margin-bottom: auto !important;
|
| 2249 |
+
}
|
| 2250 |
+
|
| 2251 |
+
.mt-sm-0 {
|
| 2252 |
+
margin-top: 0 !important;
|
| 2253 |
+
}
|
| 2254 |
+
|
| 2255 |
+
.mt-sm-1 {
|
| 2256 |
+
margin-top: 0.25rem !important;
|
| 2257 |
+
}
|
| 2258 |
+
|
| 2259 |
+
.mt-sm-2 {
|
| 2260 |
+
margin-top: 0.5rem !important;
|
| 2261 |
+
}
|
| 2262 |
+
|
| 2263 |
+
.mt-sm-3 {
|
| 2264 |
+
margin-top: 1rem !important;
|
| 2265 |
+
}
|
| 2266 |
+
|
| 2267 |
+
.mt-sm-4 {
|
| 2268 |
+
margin-top: 1.5rem !important;
|
| 2269 |
+
}
|
| 2270 |
+
|
| 2271 |
+
.mt-sm-5 {
|
| 2272 |
+
margin-top: 3rem !important;
|
| 2273 |
+
}
|
| 2274 |
+
|
| 2275 |
+
.mt-sm-auto {
|
| 2276 |
+
margin-top: auto !important;
|
| 2277 |
+
}
|
| 2278 |
+
|
| 2279 |
+
.me-sm-0 {
|
| 2280 |
+
margin-right: 0 !important;
|
| 2281 |
+
}
|
| 2282 |
+
|
| 2283 |
+
.me-sm-1 {
|
| 2284 |
+
margin-right: 0.25rem !important;
|
| 2285 |
+
}
|
| 2286 |
+
|
| 2287 |
+
.me-sm-2 {
|
| 2288 |
+
margin-right: 0.5rem !important;
|
| 2289 |
+
}
|
| 2290 |
+
|
| 2291 |
+
.me-sm-3 {
|
| 2292 |
+
margin-right: 1rem !important;
|
| 2293 |
+
}
|
| 2294 |
+
|
| 2295 |
+
.me-sm-4 {
|
| 2296 |
+
margin-right: 1.5rem !important;
|
| 2297 |
+
}
|
| 2298 |
+
|
| 2299 |
+
.me-sm-5 {
|
| 2300 |
+
margin-right: 3rem !important;
|
| 2301 |
+
}
|
| 2302 |
+
|
| 2303 |
+
.me-sm-auto {
|
| 2304 |
+
margin-right: auto !important;
|
| 2305 |
+
}
|
| 2306 |
+
|
| 2307 |
+
.mb-sm-0 {
|
| 2308 |
+
margin-bottom: 0 !important;
|
| 2309 |
+
}
|
| 2310 |
+
|
| 2311 |
+
.mb-sm-1 {
|
| 2312 |
+
margin-bottom: 0.25rem !important;
|
| 2313 |
+
}
|
| 2314 |
+
|
| 2315 |
+
.mb-sm-2 {
|
| 2316 |
+
margin-bottom: 0.5rem !important;
|
| 2317 |
+
}
|
| 2318 |
+
|
| 2319 |
+
.mb-sm-3 {
|
| 2320 |
+
margin-bottom: 1rem !important;
|
| 2321 |
+
}
|
| 2322 |
+
|
| 2323 |
+
.mb-sm-4 {
|
| 2324 |
+
margin-bottom: 1.5rem !important;
|
| 2325 |
+
}
|
| 2326 |
+
|
| 2327 |
+
.mb-sm-5 {
|
| 2328 |
+
margin-bottom: 3rem !important;
|
| 2329 |
+
}
|
| 2330 |
+
|
| 2331 |
+
.mb-sm-auto {
|
| 2332 |
+
margin-bottom: auto !important;
|
| 2333 |
+
}
|
| 2334 |
+
|
| 2335 |
+
.ms-sm-0 {
|
| 2336 |
+
margin-left: 0 !important;
|
| 2337 |
+
}
|
| 2338 |
+
|
| 2339 |
+
.ms-sm-1 {
|
| 2340 |
+
margin-left: 0.25rem !important;
|
| 2341 |
+
}
|
| 2342 |
+
|
| 2343 |
+
.ms-sm-2 {
|
| 2344 |
+
margin-left: 0.5rem !important;
|
| 2345 |
+
}
|
| 2346 |
+
|
| 2347 |
+
.ms-sm-3 {
|
| 2348 |
+
margin-left: 1rem !important;
|
| 2349 |
+
}
|
| 2350 |
+
|
| 2351 |
+
.ms-sm-4 {
|
| 2352 |
+
margin-left: 1.5rem !important;
|
| 2353 |
+
}
|
| 2354 |
+
|
| 2355 |
+
.ms-sm-5 {
|
| 2356 |
+
margin-left: 3rem !important;
|
| 2357 |
+
}
|
| 2358 |
+
|
| 2359 |
+
.ms-sm-auto {
|
| 2360 |
+
margin-left: auto !important;
|
| 2361 |
+
}
|
| 2362 |
+
|
| 2363 |
+
.p-sm-0 {
|
| 2364 |
+
padding: 0 !important;
|
| 2365 |
+
}
|
| 2366 |
+
|
| 2367 |
+
.p-sm-1 {
|
| 2368 |
+
padding: 0.25rem !important;
|
| 2369 |
+
}
|
| 2370 |
+
|
| 2371 |
+
.p-sm-2 {
|
| 2372 |
+
padding: 0.5rem !important;
|
| 2373 |
+
}
|
| 2374 |
+
|
| 2375 |
+
.p-sm-3 {
|
| 2376 |
+
padding: 1rem !important;
|
| 2377 |
+
}
|
| 2378 |
+
|
| 2379 |
+
.p-sm-4 {
|
| 2380 |
+
padding: 1.5rem !important;
|
| 2381 |
+
}
|
| 2382 |
+
|
| 2383 |
+
.p-sm-5 {
|
| 2384 |
+
padding: 3rem !important;
|
| 2385 |
+
}
|
| 2386 |
+
|
| 2387 |
+
.px-sm-0 {
|
| 2388 |
+
padding-right: 0 !important;
|
| 2389 |
+
padding-left: 0 !important;
|
| 2390 |
+
}
|
| 2391 |
+
|
| 2392 |
+
.px-sm-1 {
|
| 2393 |
+
padding-right: 0.25rem !important;
|
| 2394 |
+
padding-left: 0.25rem !important;
|
| 2395 |
+
}
|
| 2396 |
+
|
| 2397 |
+
.px-sm-2 {
|
| 2398 |
+
padding-right: 0.5rem !important;
|
| 2399 |
+
padding-left: 0.5rem !important;
|
| 2400 |
+
}
|
| 2401 |
+
|
| 2402 |
+
.px-sm-3 {
|
| 2403 |
+
padding-right: 1rem !important;
|
| 2404 |
+
padding-left: 1rem !important;
|
| 2405 |
+
}
|
| 2406 |
+
|
| 2407 |
+
.px-sm-4 {
|
| 2408 |
+
padding-right: 1.5rem !important;
|
| 2409 |
+
padding-left: 1.5rem !important;
|
| 2410 |
+
}
|
| 2411 |
+
|
| 2412 |
+
.px-sm-5 {
|
| 2413 |
+
padding-right: 3rem !important;
|
| 2414 |
+
padding-left: 3rem !important;
|
| 2415 |
+
}
|
| 2416 |
+
|
| 2417 |
+
.py-sm-0 {
|
| 2418 |
+
padding-top: 0 !important;
|
| 2419 |
+
padding-bottom: 0 !important;
|
| 2420 |
+
}
|
| 2421 |
+
|
| 2422 |
+
.py-sm-1 {
|
| 2423 |
+
padding-top: 0.25rem !important;
|
| 2424 |
+
padding-bottom: 0.25rem !important;
|
| 2425 |
+
}
|
| 2426 |
+
|
| 2427 |
+
.py-sm-2 {
|
| 2428 |
+
padding-top: 0.5rem !important;
|
| 2429 |
+
padding-bottom: 0.5rem !important;
|
| 2430 |
+
}
|
| 2431 |
+
|
| 2432 |
+
.py-sm-3 {
|
| 2433 |
+
padding-top: 1rem !important;
|
| 2434 |
+
padding-bottom: 1rem !important;
|
| 2435 |
+
}
|
| 2436 |
+
|
| 2437 |
+
.py-sm-4 {
|
| 2438 |
+
padding-top: 1.5rem !important;
|
| 2439 |
+
padding-bottom: 1.5rem !important;
|
| 2440 |
+
}
|
| 2441 |
+
|
| 2442 |
+
.py-sm-5 {
|
| 2443 |
+
padding-top: 3rem !important;
|
| 2444 |
+
padding-bottom: 3rem !important;
|
| 2445 |
+
}
|
| 2446 |
+
|
| 2447 |
+
.pt-sm-0 {
|
| 2448 |
+
padding-top: 0 !important;
|
| 2449 |
+
}
|
| 2450 |
+
|
| 2451 |
+
.pt-sm-1 {
|
| 2452 |
+
padding-top: 0.25rem !important;
|
| 2453 |
+
}
|
| 2454 |
+
|
| 2455 |
+
.pt-sm-2 {
|
| 2456 |
+
padding-top: 0.5rem !important;
|
| 2457 |
+
}
|
| 2458 |
+
|
| 2459 |
+
.pt-sm-3 {
|
| 2460 |
+
padding-top: 1rem !important;
|
| 2461 |
+
}
|
| 2462 |
+
|
| 2463 |
+
.pt-sm-4 {
|
| 2464 |
+
padding-top: 1.5rem !important;
|
| 2465 |
+
}
|
| 2466 |
+
|
| 2467 |
+
.pt-sm-5 {
|
| 2468 |
+
padding-top: 3rem !important;
|
| 2469 |
+
}
|
| 2470 |
+
|
| 2471 |
+
.pe-sm-0 {
|
| 2472 |
+
padding-right: 0 !important;
|
| 2473 |
+
}
|
| 2474 |
+
|
| 2475 |
+
.pe-sm-1 {
|
| 2476 |
+
padding-right: 0.25rem !important;
|
| 2477 |
+
}
|
| 2478 |
+
|
| 2479 |
+
.pe-sm-2 {
|
| 2480 |
+
padding-right: 0.5rem !important;
|
| 2481 |
+
}
|
| 2482 |
+
|
| 2483 |
+
.pe-sm-3 {
|
| 2484 |
+
padding-right: 1rem !important;
|
| 2485 |
+
}
|
| 2486 |
+
|
| 2487 |
+
.pe-sm-4 {
|
| 2488 |
+
padding-right: 1.5rem !important;
|
| 2489 |
+
}
|
| 2490 |
+
|
| 2491 |
+
.pe-sm-5 {
|
| 2492 |
+
padding-right: 3rem !important;
|
| 2493 |
+
}
|
| 2494 |
+
|
| 2495 |
+
.pb-sm-0 {
|
| 2496 |
+
padding-bottom: 0 !important;
|
| 2497 |
+
}
|
| 2498 |
+
|
| 2499 |
+
.pb-sm-1 {
|
| 2500 |
+
padding-bottom: 0.25rem !important;
|
| 2501 |
+
}
|
| 2502 |
+
|
| 2503 |
+
.pb-sm-2 {
|
| 2504 |
+
padding-bottom: 0.5rem !important;
|
| 2505 |
+
}
|
| 2506 |
+
|
| 2507 |
+
.pb-sm-3 {
|
| 2508 |
+
padding-bottom: 1rem !important;
|
| 2509 |
+
}
|
| 2510 |
+
|
| 2511 |
+
.pb-sm-4 {
|
| 2512 |
+
padding-bottom: 1.5rem !important;
|
| 2513 |
+
}
|
| 2514 |
+
|
| 2515 |
+
.pb-sm-5 {
|
| 2516 |
+
padding-bottom: 3rem !important;
|
| 2517 |
+
}
|
| 2518 |
+
|
| 2519 |
+
.ps-sm-0 {
|
| 2520 |
+
padding-left: 0 !important;
|
| 2521 |
+
}
|
| 2522 |
+
|
| 2523 |
+
.ps-sm-1 {
|
| 2524 |
+
padding-left: 0.25rem !important;
|
| 2525 |
+
}
|
| 2526 |
+
|
| 2527 |
+
.ps-sm-2 {
|
| 2528 |
+
padding-left: 0.5rem !important;
|
| 2529 |
+
}
|
| 2530 |
+
|
| 2531 |
+
.ps-sm-3 {
|
| 2532 |
+
padding-left: 1rem !important;
|
| 2533 |
+
}
|
| 2534 |
+
|
| 2535 |
+
.ps-sm-4 {
|
| 2536 |
+
padding-left: 1.5rem !important;
|
| 2537 |
+
}
|
| 2538 |
+
|
| 2539 |
+
.ps-sm-5 {
|
| 2540 |
+
padding-left: 3rem !important;
|
| 2541 |
+
}
|
| 2542 |
+
}
|
| 2543 |
+
@media (min-width: 768px) {
|
| 2544 |
+
.d-md-inline {
|
| 2545 |
+
display: inline !important;
|
| 2546 |
+
}
|
| 2547 |
+
|
| 2548 |
+
.d-md-inline-block {
|
| 2549 |
+
display: inline-block !important;
|
| 2550 |
+
}
|
| 2551 |
+
|
| 2552 |
+
.d-md-block {
|
| 2553 |
+
display: block !important;
|
| 2554 |
+
}
|
| 2555 |
+
|
| 2556 |
+
.d-md-grid {
|
| 2557 |
+
display: grid !important;
|
| 2558 |
+
}
|
| 2559 |
+
|
| 2560 |
+
.d-md-table {
|
| 2561 |
+
display: table !important;
|
| 2562 |
+
}
|
| 2563 |
+
|
| 2564 |
+
.d-md-table-row {
|
| 2565 |
+
display: table-row !important;
|
| 2566 |
+
}
|
| 2567 |
+
|
| 2568 |
+
.d-md-table-cell {
|
| 2569 |
+
display: table-cell !important;
|
| 2570 |
+
}
|
| 2571 |
+
|
| 2572 |
+
.d-md-flex {
|
| 2573 |
+
display: flex !important;
|
| 2574 |
+
}
|
| 2575 |
+
|
| 2576 |
+
.d-md-inline-flex {
|
| 2577 |
+
display: inline-flex !important;
|
| 2578 |
+
}
|
| 2579 |
+
|
| 2580 |
+
.d-md-none {
|
| 2581 |
+
display: none !important;
|
| 2582 |
+
}
|
| 2583 |
+
|
| 2584 |
+
.flex-md-fill {
|
| 2585 |
+
flex: 1 1 auto !important;
|
| 2586 |
+
}
|
| 2587 |
+
|
| 2588 |
+
.flex-md-row {
|
| 2589 |
+
flex-direction: row !important;
|
| 2590 |
+
}
|
| 2591 |
+
|
| 2592 |
+
.flex-md-column {
|
| 2593 |
+
flex-direction: column !important;
|
| 2594 |
+
}
|
| 2595 |
+
|
| 2596 |
+
.flex-md-row-reverse {
|
| 2597 |
+
flex-direction: row-reverse !important;
|
| 2598 |
+
}
|
| 2599 |
+
|
| 2600 |
+
.flex-md-column-reverse {
|
| 2601 |
+
flex-direction: column-reverse !important;
|
| 2602 |
+
}
|
| 2603 |
+
|
| 2604 |
+
.flex-md-grow-0 {
|
| 2605 |
+
flex-grow: 0 !important;
|
| 2606 |
+
}
|
| 2607 |
+
|
| 2608 |
+
.flex-md-grow-1 {
|
| 2609 |
+
flex-grow: 1 !important;
|
| 2610 |
+
}
|
| 2611 |
+
|
| 2612 |
+
.flex-md-shrink-0 {
|
| 2613 |
+
flex-shrink: 0 !important;
|
| 2614 |
+
}
|
| 2615 |
+
|
| 2616 |
+
.flex-md-shrink-1 {
|
| 2617 |
+
flex-shrink: 1 !important;
|
| 2618 |
+
}
|
| 2619 |
+
|
| 2620 |
+
.flex-md-wrap {
|
| 2621 |
+
flex-wrap: wrap !important;
|
| 2622 |
+
}
|
| 2623 |
+
|
| 2624 |
+
.flex-md-nowrap {
|
| 2625 |
+
flex-wrap: nowrap !important;
|
| 2626 |
+
}
|
| 2627 |
+
|
| 2628 |
+
.flex-md-wrap-reverse {
|
| 2629 |
+
flex-wrap: wrap-reverse !important;
|
| 2630 |
+
}
|
| 2631 |
+
|
| 2632 |
+
.justify-content-md-start {
|
| 2633 |
+
justify-content: flex-start !important;
|
| 2634 |
+
}
|
| 2635 |
+
|
| 2636 |
+
.justify-content-md-end {
|
| 2637 |
+
justify-content: flex-end !important;
|
| 2638 |
+
}
|
| 2639 |
+
|
| 2640 |
+
.justify-content-md-center {
|
| 2641 |
+
justify-content: center !important;
|
| 2642 |
+
}
|
| 2643 |
+
|
| 2644 |
+
.justify-content-md-between {
|
| 2645 |
+
justify-content: space-between !important;
|
| 2646 |
+
}
|
| 2647 |
+
|
| 2648 |
+
.justify-content-md-around {
|
| 2649 |
+
justify-content: space-around !important;
|
| 2650 |
+
}
|
| 2651 |
+
|
| 2652 |
+
.justify-content-md-evenly {
|
| 2653 |
+
justify-content: space-evenly !important;
|
| 2654 |
+
}
|
| 2655 |
+
|
| 2656 |
+
.align-items-md-start {
|
| 2657 |
+
align-items: flex-start !important;
|
| 2658 |
+
}
|
| 2659 |
+
|
| 2660 |
+
.align-items-md-end {
|
| 2661 |
+
align-items: flex-end !important;
|
| 2662 |
+
}
|
| 2663 |
+
|
| 2664 |
+
.align-items-md-center {
|
| 2665 |
+
align-items: center !important;
|
| 2666 |
+
}
|
| 2667 |
+
|
| 2668 |
+
.align-items-md-baseline {
|
| 2669 |
+
align-items: baseline !important;
|
| 2670 |
+
}
|
| 2671 |
+
|
| 2672 |
+
.align-items-md-stretch {
|
| 2673 |
+
align-items: stretch !important;
|
| 2674 |
+
}
|
| 2675 |
+
|
| 2676 |
+
.align-content-md-start {
|
| 2677 |
+
align-content: flex-start !important;
|
| 2678 |
+
}
|
| 2679 |
+
|
| 2680 |
+
.align-content-md-end {
|
| 2681 |
+
align-content: flex-end !important;
|
| 2682 |
+
}
|
| 2683 |
+
|
| 2684 |
+
.align-content-md-center {
|
| 2685 |
+
align-content: center !important;
|
| 2686 |
+
}
|
| 2687 |
+
|
| 2688 |
+
.align-content-md-between {
|
| 2689 |
+
align-content: space-between !important;
|
| 2690 |
+
}
|
| 2691 |
+
|
| 2692 |
+
.align-content-md-around {
|
| 2693 |
+
align-content: space-around !important;
|
| 2694 |
+
}
|
| 2695 |
+
|
| 2696 |
+
.align-content-md-stretch {
|
| 2697 |
+
align-content: stretch !important;
|
| 2698 |
+
}
|
| 2699 |
+
|
| 2700 |
+
.align-self-md-auto {
|
| 2701 |
+
align-self: auto !important;
|
| 2702 |
+
}
|
| 2703 |
+
|
| 2704 |
+
.align-self-md-start {
|
| 2705 |
+
align-self: flex-start !important;
|
| 2706 |
+
}
|
| 2707 |
+
|
| 2708 |
+
.align-self-md-end {
|
| 2709 |
+
align-self: flex-end !important;
|
| 2710 |
+
}
|
| 2711 |
+
|
| 2712 |
+
.align-self-md-center {
|
| 2713 |
+
align-self: center !important;
|
| 2714 |
+
}
|
| 2715 |
+
|
| 2716 |
+
.align-self-md-baseline {
|
| 2717 |
+
align-self: baseline !important;
|
| 2718 |
+
}
|
| 2719 |
+
|
| 2720 |
+
.align-self-md-stretch {
|
| 2721 |
+
align-self: stretch !important;
|
| 2722 |
+
}
|
| 2723 |
+
|
| 2724 |
+
.order-md-first {
|
| 2725 |
+
order: -1 !important;
|
| 2726 |
+
}
|
| 2727 |
+
|
| 2728 |
+
.order-md-0 {
|
| 2729 |
+
order: 0 !important;
|
| 2730 |
+
}
|
| 2731 |
+
|
| 2732 |
+
.order-md-1 {
|
| 2733 |
+
order: 1 !important;
|
| 2734 |
+
}
|
| 2735 |
+
|
| 2736 |
+
.order-md-2 {
|
| 2737 |
+
order: 2 !important;
|
| 2738 |
+
}
|
| 2739 |
+
|
| 2740 |
+
.order-md-3 {
|
| 2741 |
+
order: 3 !important;
|
| 2742 |
+
}
|
| 2743 |
+
|
| 2744 |
+
.order-md-4 {
|
| 2745 |
+
order: 4 !important;
|
| 2746 |
+
}
|
| 2747 |
+
|
| 2748 |
+
.order-md-5 {
|
| 2749 |
+
order: 5 !important;
|
| 2750 |
+
}
|
| 2751 |
+
|
| 2752 |
+
.order-md-last {
|
| 2753 |
+
order: 6 !important;
|
| 2754 |
+
}
|
| 2755 |
+
|
| 2756 |
+
.m-md-0 {
|
| 2757 |
+
margin: 0 !important;
|
| 2758 |
+
}
|
| 2759 |
+
|
| 2760 |
+
.m-md-1 {
|
| 2761 |
+
margin: 0.25rem !important;
|
| 2762 |
+
}
|
| 2763 |
+
|
| 2764 |
+
.m-md-2 {
|
| 2765 |
+
margin: 0.5rem !important;
|
| 2766 |
+
}
|
| 2767 |
+
|
| 2768 |
+
.m-md-3 {
|
| 2769 |
+
margin: 1rem !important;
|
| 2770 |
+
}
|
| 2771 |
+
|
| 2772 |
+
.m-md-4 {
|
| 2773 |
+
margin: 1.5rem !important;
|
| 2774 |
+
}
|
| 2775 |
+
|
| 2776 |
+
.m-md-5 {
|
| 2777 |
+
margin: 3rem !important;
|
| 2778 |
+
}
|
| 2779 |
+
|
| 2780 |
+
.m-md-auto {
|
| 2781 |
+
margin: auto !important;
|
| 2782 |
+
}
|
| 2783 |
+
|
| 2784 |
+
.mx-md-0 {
|
| 2785 |
+
margin-right: 0 !important;
|
| 2786 |
+
margin-left: 0 !important;
|
| 2787 |
+
}
|
| 2788 |
+
|
| 2789 |
+
.mx-md-1 {
|
| 2790 |
+
margin-right: 0.25rem !important;
|
| 2791 |
+
margin-left: 0.25rem !important;
|
| 2792 |
+
}
|
| 2793 |
+
|
| 2794 |
+
.mx-md-2 {
|
| 2795 |
+
margin-right: 0.5rem !important;
|
| 2796 |
+
margin-left: 0.5rem !important;
|
| 2797 |
+
}
|
| 2798 |
+
|
| 2799 |
+
.mx-md-3 {
|
| 2800 |
+
margin-right: 1rem !important;
|
| 2801 |
+
margin-left: 1rem !important;
|
| 2802 |
+
}
|
| 2803 |
+
|
| 2804 |
+
.mx-md-4 {
|
| 2805 |
+
margin-right: 1.5rem !important;
|
| 2806 |
+
margin-left: 1.5rem !important;
|
| 2807 |
+
}
|
| 2808 |
+
|
| 2809 |
+
.mx-md-5 {
|
| 2810 |
+
margin-right: 3rem !important;
|
| 2811 |
+
margin-left: 3rem !important;
|
| 2812 |
+
}
|
| 2813 |
+
|
| 2814 |
+
.mx-md-auto {
|
| 2815 |
+
margin-right: auto !important;
|
| 2816 |
+
margin-left: auto !important;
|
| 2817 |
+
}
|
| 2818 |
+
|
| 2819 |
+
.my-md-0 {
|
| 2820 |
+
margin-top: 0 !important;
|
| 2821 |
+
margin-bottom: 0 !important;
|
| 2822 |
+
}
|
| 2823 |
+
|
| 2824 |
+
.my-md-1 {
|
| 2825 |
+
margin-top: 0.25rem !important;
|
| 2826 |
+
margin-bottom: 0.25rem !important;
|
| 2827 |
+
}
|
| 2828 |
+
|
| 2829 |
+
.my-md-2 {
|
| 2830 |
+
margin-top: 0.5rem !important;
|
| 2831 |
+
margin-bottom: 0.5rem !important;
|
| 2832 |
+
}
|
| 2833 |
+
|
| 2834 |
+
.my-md-3 {
|
| 2835 |
+
margin-top: 1rem !important;
|
| 2836 |
+
margin-bottom: 1rem !important;
|
| 2837 |
+
}
|
| 2838 |
+
|
| 2839 |
+
.my-md-4 {
|
| 2840 |
+
margin-top: 1.5rem !important;
|
| 2841 |
+
margin-bottom: 1.5rem !important;
|
| 2842 |
+
}
|
| 2843 |
+
|
| 2844 |
+
.my-md-5 {
|
| 2845 |
+
margin-top: 3rem !important;
|
| 2846 |
+
margin-bottom: 3rem !important;
|
| 2847 |
+
}
|
| 2848 |
+
|
| 2849 |
+
.my-md-auto {
|
| 2850 |
+
margin-top: auto !important;
|
| 2851 |
+
margin-bottom: auto !important;
|
| 2852 |
+
}
|
| 2853 |
+
|
| 2854 |
+
.mt-md-0 {
|
| 2855 |
+
margin-top: 0 !important;
|
| 2856 |
+
}
|
| 2857 |
+
|
| 2858 |
+
.mt-md-1 {
|
| 2859 |
+
margin-top: 0.25rem !important;
|
| 2860 |
+
}
|
| 2861 |
+
|
| 2862 |
+
.mt-md-2 {
|
| 2863 |
+
margin-top: 0.5rem !important;
|
| 2864 |
+
}
|
| 2865 |
+
|
| 2866 |
+
.mt-md-3 {
|
| 2867 |
+
margin-top: 1rem !important;
|
| 2868 |
+
}
|
| 2869 |
+
|
| 2870 |
+
.mt-md-4 {
|
| 2871 |
+
margin-top: 1.5rem !important;
|
| 2872 |
+
}
|
| 2873 |
+
|
| 2874 |
+
.mt-md-5 {
|
| 2875 |
+
margin-top: 3rem !important;
|
| 2876 |
+
}
|
| 2877 |
+
|
| 2878 |
+
.mt-md-auto {
|
| 2879 |
+
margin-top: auto !important;
|
| 2880 |
+
}
|
| 2881 |
+
|
| 2882 |
+
.me-md-0 {
|
| 2883 |
+
margin-right: 0 !important;
|
| 2884 |
+
}
|
| 2885 |
+
|
| 2886 |
+
.me-md-1 {
|
| 2887 |
+
margin-right: 0.25rem !important;
|
| 2888 |
+
}
|
| 2889 |
+
|
| 2890 |
+
.me-md-2 {
|
| 2891 |
+
margin-right: 0.5rem !important;
|
| 2892 |
+
}
|
| 2893 |
+
|
| 2894 |
+
.me-md-3 {
|
| 2895 |
+
margin-right: 1rem !important;
|
| 2896 |
+
}
|
| 2897 |
+
|
| 2898 |
+
.me-md-4 {
|
| 2899 |
+
margin-right: 1.5rem !important;
|
| 2900 |
+
}
|
| 2901 |
+
|
| 2902 |
+
.me-md-5 {
|
| 2903 |
+
margin-right: 3rem !important;
|
| 2904 |
+
}
|
| 2905 |
+
|
| 2906 |
+
.me-md-auto {
|
| 2907 |
+
margin-right: auto !important;
|
| 2908 |
+
}
|
| 2909 |
+
|
| 2910 |
+
.mb-md-0 {
|
| 2911 |
+
margin-bottom: 0 !important;
|
| 2912 |
+
}
|
| 2913 |
+
|
| 2914 |
+
.mb-md-1 {
|
| 2915 |
+
margin-bottom: 0.25rem !important;
|
| 2916 |
+
}
|
| 2917 |
+
|
| 2918 |
+
.mb-md-2 {
|
| 2919 |
+
margin-bottom: 0.5rem !important;
|
| 2920 |
+
}
|
| 2921 |
+
|
| 2922 |
+
.mb-md-3 {
|
| 2923 |
+
margin-bottom: 1rem !important;
|
| 2924 |
+
}
|
| 2925 |
+
|
| 2926 |
+
.mb-md-4 {
|
| 2927 |
+
margin-bottom: 1.5rem !important;
|
| 2928 |
+
}
|
| 2929 |
+
|
| 2930 |
+
.mb-md-5 {
|
| 2931 |
+
margin-bottom: 3rem !important;
|
| 2932 |
+
}
|
| 2933 |
+
|
| 2934 |
+
.mb-md-auto {
|
| 2935 |
+
margin-bottom: auto !important;
|
| 2936 |
+
}
|
| 2937 |
+
|
| 2938 |
+
.ms-md-0 {
|
| 2939 |
+
margin-left: 0 !important;
|
| 2940 |
+
}
|
| 2941 |
+
|
| 2942 |
+
.ms-md-1 {
|
| 2943 |
+
margin-left: 0.25rem !important;
|
| 2944 |
+
}
|
| 2945 |
+
|
| 2946 |
+
.ms-md-2 {
|
| 2947 |
+
margin-left: 0.5rem !important;
|
| 2948 |
+
}
|
| 2949 |
+
|
| 2950 |
+
.ms-md-3 {
|
| 2951 |
+
margin-left: 1rem !important;
|
| 2952 |
+
}
|
| 2953 |
+
|
| 2954 |
+
.ms-md-4 {
|
| 2955 |
+
margin-left: 1.5rem !important;
|
| 2956 |
+
}
|
| 2957 |
+
|
| 2958 |
+
.ms-md-5 {
|
| 2959 |
+
margin-left: 3rem !important;
|
| 2960 |
+
}
|
| 2961 |
+
|
| 2962 |
+
.ms-md-auto {
|
| 2963 |
+
margin-left: auto !important;
|
| 2964 |
+
}
|
| 2965 |
+
|
| 2966 |
+
.p-md-0 {
|
| 2967 |
+
padding: 0 !important;
|
| 2968 |
+
}
|
| 2969 |
+
|
| 2970 |
+
.p-md-1 {
|
| 2971 |
+
padding: 0.25rem !important;
|
| 2972 |
+
}
|
| 2973 |
+
|
| 2974 |
+
.p-md-2 {
|
| 2975 |
+
padding: 0.5rem !important;
|
| 2976 |
+
}
|
| 2977 |
+
|
| 2978 |
+
.p-md-3 {
|
| 2979 |
+
padding: 1rem !important;
|
| 2980 |
+
}
|
| 2981 |
+
|
| 2982 |
+
.p-md-4 {
|
| 2983 |
+
padding: 1.5rem !important;
|
| 2984 |
+
}
|
| 2985 |
+
|
| 2986 |
+
.p-md-5 {
|
| 2987 |
+
padding: 3rem !important;
|
| 2988 |
+
}
|
| 2989 |
+
|
| 2990 |
+
.px-md-0 {
|
| 2991 |
+
padding-right: 0 !important;
|
| 2992 |
+
padding-left: 0 !important;
|
| 2993 |
+
}
|
| 2994 |
+
|
| 2995 |
+
.px-md-1 {
|
| 2996 |
+
padding-right: 0.25rem !important;
|
| 2997 |
+
padding-left: 0.25rem !important;
|
| 2998 |
+
}
|
| 2999 |
+
|
| 3000 |
+
.px-md-2 {
|
| 3001 |
+
padding-right: 0.5rem !important;
|
| 3002 |
+
padding-left: 0.5rem !important;
|
| 3003 |
+
}
|
| 3004 |
+
|
| 3005 |
+
.px-md-3 {
|
| 3006 |
+
padding-right: 1rem !important;
|
| 3007 |
+
padding-left: 1rem !important;
|
| 3008 |
+
}
|
| 3009 |
+
|
| 3010 |
+
.px-md-4 {
|
| 3011 |
+
padding-right: 1.5rem !important;
|
| 3012 |
+
padding-left: 1.5rem !important;
|
| 3013 |
+
}
|
| 3014 |
+
|
| 3015 |
+
.px-md-5 {
|
| 3016 |
+
padding-right: 3rem !important;
|
| 3017 |
+
padding-left: 3rem !important;
|
| 3018 |
+
}
|
| 3019 |
+
|
| 3020 |
+
.py-md-0 {
|
| 3021 |
+
padding-top: 0 !important;
|
| 3022 |
+
padding-bottom: 0 !important;
|
| 3023 |
+
}
|
| 3024 |
+
|
| 3025 |
+
.py-md-1 {
|
| 3026 |
+
padding-top: 0.25rem !important;
|
| 3027 |
+
padding-bottom: 0.25rem !important;
|
| 3028 |
+
}
|
| 3029 |
+
|
| 3030 |
+
.py-md-2 {
|
| 3031 |
+
padding-top: 0.5rem !important;
|
| 3032 |
+
padding-bottom: 0.5rem !important;
|
| 3033 |
+
}
|
| 3034 |
+
|
| 3035 |
+
.py-md-3 {
|
| 3036 |
+
padding-top: 1rem !important;
|
| 3037 |
+
padding-bottom: 1rem !important;
|
| 3038 |
+
}
|
| 3039 |
+
|
| 3040 |
+
.py-md-4 {
|
| 3041 |
+
padding-top: 1.5rem !important;
|
| 3042 |
+
padding-bottom: 1.5rem !important;
|
| 3043 |
+
}
|
| 3044 |
+
|
| 3045 |
+
.py-md-5 {
|
| 3046 |
+
padding-top: 3rem !important;
|
| 3047 |
+
padding-bottom: 3rem !important;
|
| 3048 |
+
}
|
| 3049 |
+
|
| 3050 |
+
.pt-md-0 {
|
| 3051 |
+
padding-top: 0 !important;
|
| 3052 |
+
}
|
| 3053 |
+
|
| 3054 |
+
.pt-md-1 {
|
| 3055 |
+
padding-top: 0.25rem !important;
|
| 3056 |
+
}
|
| 3057 |
+
|
| 3058 |
+
.pt-md-2 {
|
| 3059 |
+
padding-top: 0.5rem !important;
|
| 3060 |
+
}
|
| 3061 |
+
|
| 3062 |
+
.pt-md-3 {
|
| 3063 |
+
padding-top: 1rem !important;
|
| 3064 |
+
}
|
| 3065 |
+
|
| 3066 |
+
.pt-md-4 {
|
| 3067 |
+
padding-top: 1.5rem !important;
|
| 3068 |
+
}
|
| 3069 |
+
|
| 3070 |
+
.pt-md-5 {
|
| 3071 |
+
padding-top: 3rem !important;
|
| 3072 |
+
}
|
| 3073 |
+
|
| 3074 |
+
.pe-md-0 {
|
| 3075 |
+
padding-right: 0 !important;
|
| 3076 |
+
}
|
| 3077 |
+
|
| 3078 |
+
.pe-md-1 {
|
| 3079 |
+
padding-right: 0.25rem !important;
|
| 3080 |
+
}
|
| 3081 |
+
|
| 3082 |
+
.pe-md-2 {
|
| 3083 |
+
padding-right: 0.5rem !important;
|
| 3084 |
+
}
|
| 3085 |
+
|
| 3086 |
+
.pe-md-3 {
|
| 3087 |
+
padding-right: 1rem !important;
|
| 3088 |
+
}
|
| 3089 |
+
|
| 3090 |
+
.pe-md-4 {
|
| 3091 |
+
padding-right: 1.5rem !important;
|
| 3092 |
+
}
|
| 3093 |
+
|
| 3094 |
+
.pe-md-5 {
|
| 3095 |
+
padding-right: 3rem !important;
|
| 3096 |
+
}
|
| 3097 |
+
|
| 3098 |
+
.pb-md-0 {
|
| 3099 |
+
padding-bottom: 0 !important;
|
| 3100 |
+
}
|
| 3101 |
+
|
| 3102 |
+
.pb-md-1 {
|
| 3103 |
+
padding-bottom: 0.25rem !important;
|
| 3104 |
+
}
|
| 3105 |
+
|
| 3106 |
+
.pb-md-2 {
|
| 3107 |
+
padding-bottom: 0.5rem !important;
|
| 3108 |
+
}
|
| 3109 |
+
|
| 3110 |
+
.pb-md-3 {
|
| 3111 |
+
padding-bottom: 1rem !important;
|
| 3112 |
+
}
|
| 3113 |
+
|
| 3114 |
+
.pb-md-4 {
|
| 3115 |
+
padding-bottom: 1.5rem !important;
|
| 3116 |
+
}
|
| 3117 |
+
|
| 3118 |
+
.pb-md-5 {
|
| 3119 |
+
padding-bottom: 3rem !important;
|
| 3120 |
+
}
|
| 3121 |
+
|
| 3122 |
+
.ps-md-0 {
|
| 3123 |
+
padding-left: 0 !important;
|
| 3124 |
+
}
|
| 3125 |
+
|
| 3126 |
+
.ps-md-1 {
|
| 3127 |
+
padding-left: 0.25rem !important;
|
| 3128 |
+
}
|
| 3129 |
+
|
| 3130 |
+
.ps-md-2 {
|
| 3131 |
+
padding-left: 0.5rem !important;
|
| 3132 |
+
}
|
| 3133 |
+
|
| 3134 |
+
.ps-md-3 {
|
| 3135 |
+
padding-left: 1rem !important;
|
| 3136 |
+
}
|
| 3137 |
+
|
| 3138 |
+
.ps-md-4 {
|
| 3139 |
+
padding-left: 1.5rem !important;
|
| 3140 |
+
}
|
| 3141 |
+
|
| 3142 |
+
.ps-md-5 {
|
| 3143 |
+
padding-left: 3rem !important;
|
| 3144 |
+
}
|
| 3145 |
+
}
|
| 3146 |
+
@media (min-width: 992px) {
|
| 3147 |
+
.d-lg-inline {
|
| 3148 |
+
display: inline !important;
|
| 3149 |
+
}
|
| 3150 |
+
|
| 3151 |
+
.d-lg-inline-block {
|
| 3152 |
+
display: inline-block !important;
|
| 3153 |
+
}
|
| 3154 |
+
|
| 3155 |
+
.d-lg-block {
|
| 3156 |
+
display: block !important;
|
| 3157 |
+
}
|
| 3158 |
+
|
| 3159 |
+
.d-lg-grid {
|
| 3160 |
+
display: grid !important;
|
| 3161 |
+
}
|
| 3162 |
+
|
| 3163 |
+
.d-lg-table {
|
| 3164 |
+
display: table !important;
|
| 3165 |
+
}
|
| 3166 |
+
|
| 3167 |
+
.d-lg-table-row {
|
| 3168 |
+
display: table-row !important;
|
| 3169 |
+
}
|
| 3170 |
+
|
| 3171 |
+
.d-lg-table-cell {
|
| 3172 |
+
display: table-cell !important;
|
| 3173 |
+
}
|
| 3174 |
+
|
| 3175 |
+
.d-lg-flex {
|
| 3176 |
+
display: flex !important;
|
| 3177 |
+
}
|
| 3178 |
+
|
| 3179 |
+
.d-lg-inline-flex {
|
| 3180 |
+
display: inline-flex !important;
|
| 3181 |
+
}
|
| 3182 |
+
|
| 3183 |
+
.d-lg-none {
|
| 3184 |
+
display: none !important;
|
| 3185 |
+
}
|
| 3186 |
+
|
| 3187 |
+
.flex-lg-fill {
|
| 3188 |
+
flex: 1 1 auto !important;
|
| 3189 |
+
}
|
| 3190 |
+
|
| 3191 |
+
.flex-lg-row {
|
| 3192 |
+
flex-direction: row !important;
|
| 3193 |
+
}
|
| 3194 |
+
|
| 3195 |
+
.flex-lg-column {
|
| 3196 |
+
flex-direction: column !important;
|
| 3197 |
+
}
|
| 3198 |
+
|
| 3199 |
+
.flex-lg-row-reverse {
|
| 3200 |
+
flex-direction: row-reverse !important;
|
| 3201 |
+
}
|
| 3202 |
+
|
| 3203 |
+
.flex-lg-column-reverse {
|
| 3204 |
+
flex-direction: column-reverse !important;
|
| 3205 |
+
}
|
| 3206 |
+
|
| 3207 |
+
.flex-lg-grow-0 {
|
| 3208 |
+
flex-grow: 0 !important;
|
| 3209 |
+
}
|
| 3210 |
+
|
| 3211 |
+
.flex-lg-grow-1 {
|
| 3212 |
+
flex-grow: 1 !important;
|
| 3213 |
+
}
|
| 3214 |
+
|
| 3215 |
+
.flex-lg-shrink-0 {
|
| 3216 |
+
flex-shrink: 0 !important;
|
| 3217 |
+
}
|
| 3218 |
+
|
| 3219 |
+
.flex-lg-shrink-1 {
|
| 3220 |
+
flex-shrink: 1 !important;
|
| 3221 |
+
}
|
| 3222 |
+
|
| 3223 |
+
.flex-lg-wrap {
|
| 3224 |
+
flex-wrap: wrap !important;
|
| 3225 |
+
}
|
| 3226 |
+
|
| 3227 |
+
.flex-lg-nowrap {
|
| 3228 |
+
flex-wrap: nowrap !important;
|
| 3229 |
+
}
|
| 3230 |
+
|
| 3231 |
+
.flex-lg-wrap-reverse {
|
| 3232 |
+
flex-wrap: wrap-reverse !important;
|
| 3233 |
+
}
|
| 3234 |
+
|
| 3235 |
+
.justify-content-lg-start {
|
| 3236 |
+
justify-content: flex-start !important;
|
| 3237 |
+
}
|
| 3238 |
+
|
| 3239 |
+
.justify-content-lg-end {
|
| 3240 |
+
justify-content: flex-end !important;
|
| 3241 |
+
}
|
| 3242 |
+
|
| 3243 |
+
.justify-content-lg-center {
|
| 3244 |
+
justify-content: center !important;
|
| 3245 |
+
}
|
| 3246 |
+
|
| 3247 |
+
.justify-content-lg-between {
|
| 3248 |
+
justify-content: space-between !important;
|
| 3249 |
+
}
|
| 3250 |
+
|
| 3251 |
+
.justify-content-lg-around {
|
| 3252 |
+
justify-content: space-around !important;
|
| 3253 |
+
}
|
| 3254 |
+
|
| 3255 |
+
.justify-content-lg-evenly {
|
| 3256 |
+
justify-content: space-evenly !important;
|
| 3257 |
+
}
|
| 3258 |
+
|
| 3259 |
+
.align-items-lg-start {
|
| 3260 |
+
align-items: flex-start !important;
|
| 3261 |
+
}
|
| 3262 |
+
|
| 3263 |
+
.align-items-lg-end {
|
| 3264 |
+
align-items: flex-end !important;
|
| 3265 |
+
}
|
| 3266 |
+
|
| 3267 |
+
.align-items-lg-center {
|
| 3268 |
+
align-items: center !important;
|
| 3269 |
+
}
|
| 3270 |
+
|
| 3271 |
+
.align-items-lg-baseline {
|
| 3272 |
+
align-items: baseline !important;
|
| 3273 |
+
}
|
| 3274 |
+
|
| 3275 |
+
.align-items-lg-stretch {
|
| 3276 |
+
align-items: stretch !important;
|
| 3277 |
+
}
|
| 3278 |
+
|
| 3279 |
+
.align-content-lg-start {
|
| 3280 |
+
align-content: flex-start !important;
|
| 3281 |
+
}
|
| 3282 |
+
|
| 3283 |
+
.align-content-lg-end {
|
| 3284 |
+
align-content: flex-end !important;
|
| 3285 |
+
}
|
| 3286 |
+
|
| 3287 |
+
.align-content-lg-center {
|
| 3288 |
+
align-content: center !important;
|
| 3289 |
+
}
|
| 3290 |
+
|
| 3291 |
+
.align-content-lg-between {
|
| 3292 |
+
align-content: space-between !important;
|
| 3293 |
+
}
|
| 3294 |
+
|
| 3295 |
+
.align-content-lg-around {
|
| 3296 |
+
align-content: space-around !important;
|
| 3297 |
+
}
|
| 3298 |
+
|
| 3299 |
+
.align-content-lg-stretch {
|
| 3300 |
+
align-content: stretch !important;
|
| 3301 |
+
}
|
| 3302 |
+
|
| 3303 |
+
.align-self-lg-auto {
|
| 3304 |
+
align-self: auto !important;
|
| 3305 |
+
}
|
| 3306 |
+
|
| 3307 |
+
.align-self-lg-start {
|
| 3308 |
+
align-self: flex-start !important;
|
| 3309 |
+
}
|
| 3310 |
+
|
| 3311 |
+
.align-self-lg-end {
|
| 3312 |
+
align-self: flex-end !important;
|
| 3313 |
+
}
|
| 3314 |
+
|
| 3315 |
+
.align-self-lg-center {
|
| 3316 |
+
align-self: center !important;
|
| 3317 |
+
}
|
| 3318 |
+
|
| 3319 |
+
.align-self-lg-baseline {
|
| 3320 |
+
align-self: baseline !important;
|
| 3321 |
+
}
|
| 3322 |
+
|
| 3323 |
+
.align-self-lg-stretch {
|
| 3324 |
+
align-self: stretch !important;
|
| 3325 |
+
}
|
| 3326 |
+
|
| 3327 |
+
.order-lg-first {
|
| 3328 |
+
order: -1 !important;
|
| 3329 |
+
}
|
| 3330 |
+
|
| 3331 |
+
.order-lg-0 {
|
| 3332 |
+
order: 0 !important;
|
| 3333 |
+
}
|
| 3334 |
+
|
| 3335 |
+
.order-lg-1 {
|
| 3336 |
+
order: 1 !important;
|
| 3337 |
+
}
|
| 3338 |
+
|
| 3339 |
+
.order-lg-2 {
|
| 3340 |
+
order: 2 !important;
|
| 3341 |
+
}
|
| 3342 |
+
|
| 3343 |
+
.order-lg-3 {
|
| 3344 |
+
order: 3 !important;
|
| 3345 |
+
}
|
| 3346 |
+
|
| 3347 |
+
.order-lg-4 {
|
| 3348 |
+
order: 4 !important;
|
| 3349 |
+
}
|
| 3350 |
+
|
| 3351 |
+
.order-lg-5 {
|
| 3352 |
+
order: 5 !important;
|
| 3353 |
+
}
|
| 3354 |
+
|
| 3355 |
+
.order-lg-last {
|
| 3356 |
+
order: 6 !important;
|
| 3357 |
+
}
|
| 3358 |
+
|
| 3359 |
+
.m-lg-0 {
|
| 3360 |
+
margin: 0 !important;
|
| 3361 |
+
}
|
| 3362 |
+
|
| 3363 |
+
.m-lg-1 {
|
| 3364 |
+
margin: 0.25rem !important;
|
| 3365 |
+
}
|
| 3366 |
+
|
| 3367 |
+
.m-lg-2 {
|
| 3368 |
+
margin: 0.5rem !important;
|
| 3369 |
+
}
|
| 3370 |
+
|
| 3371 |
+
.m-lg-3 {
|
| 3372 |
+
margin: 1rem !important;
|
| 3373 |
+
}
|
| 3374 |
+
|
| 3375 |
+
.m-lg-4 {
|
| 3376 |
+
margin: 1.5rem !important;
|
| 3377 |
+
}
|
| 3378 |
+
|
| 3379 |
+
.m-lg-5 {
|
| 3380 |
+
margin: 3rem !important;
|
| 3381 |
+
}
|
| 3382 |
+
|
| 3383 |
+
.m-lg-auto {
|
| 3384 |
+
margin: auto !important;
|
| 3385 |
+
}
|
| 3386 |
+
|
| 3387 |
+
.mx-lg-0 {
|
| 3388 |
+
margin-right: 0 !important;
|
| 3389 |
+
margin-left: 0 !important;
|
| 3390 |
+
}
|
| 3391 |
+
|
| 3392 |
+
.mx-lg-1 {
|
| 3393 |
+
margin-right: 0.25rem !important;
|
| 3394 |
+
margin-left: 0.25rem !important;
|
| 3395 |
+
}
|
| 3396 |
+
|
| 3397 |
+
.mx-lg-2 {
|
| 3398 |
+
margin-right: 0.5rem !important;
|
| 3399 |
+
margin-left: 0.5rem !important;
|
| 3400 |
+
}
|
| 3401 |
+
|
| 3402 |
+
.mx-lg-3 {
|
| 3403 |
+
margin-right: 1rem !important;
|
| 3404 |
+
margin-left: 1rem !important;
|
| 3405 |
+
}
|
| 3406 |
+
|
| 3407 |
+
.mx-lg-4 {
|
| 3408 |
+
margin-right: 1.5rem !important;
|
| 3409 |
+
margin-left: 1.5rem !important;
|
| 3410 |
+
}
|
| 3411 |
+
|
| 3412 |
+
.mx-lg-5 {
|
| 3413 |
+
margin-right: 3rem !important;
|
| 3414 |
+
margin-left: 3rem !important;
|
| 3415 |
+
}
|
| 3416 |
+
|
| 3417 |
+
.mx-lg-auto {
|
| 3418 |
+
margin-right: auto !important;
|
| 3419 |
+
margin-left: auto !important;
|
| 3420 |
+
}
|
| 3421 |
+
|
| 3422 |
+
.my-lg-0 {
|
| 3423 |
+
margin-top: 0 !important;
|
| 3424 |
+
margin-bottom: 0 !important;
|
| 3425 |
+
}
|
| 3426 |
+
|
| 3427 |
+
.my-lg-1 {
|
| 3428 |
+
margin-top: 0.25rem !important;
|
| 3429 |
+
margin-bottom: 0.25rem !important;
|
| 3430 |
+
}
|
| 3431 |
+
|
| 3432 |
+
.my-lg-2 {
|
| 3433 |
+
margin-top: 0.5rem !important;
|
| 3434 |
+
margin-bottom: 0.5rem !important;
|
| 3435 |
+
}
|
| 3436 |
+
|
| 3437 |
+
.my-lg-3 {
|
| 3438 |
+
margin-top: 1rem !important;
|
| 3439 |
+
margin-bottom: 1rem !important;
|
| 3440 |
+
}
|
| 3441 |
+
|
| 3442 |
+
.my-lg-4 {
|
| 3443 |
+
margin-top: 1.5rem !important;
|
| 3444 |
+
margin-bottom: 1.5rem !important;
|
| 3445 |
+
}
|
| 3446 |
+
|
| 3447 |
+
.my-lg-5 {
|
| 3448 |
+
margin-top: 3rem !important;
|
| 3449 |
+
margin-bottom: 3rem !important;
|
| 3450 |
+
}
|
| 3451 |
+
|
| 3452 |
+
.my-lg-auto {
|
| 3453 |
+
margin-top: auto !important;
|
| 3454 |
+
margin-bottom: auto !important;
|
| 3455 |
+
}
|
| 3456 |
+
|
| 3457 |
+
.mt-lg-0 {
|
| 3458 |
+
margin-top: 0 !important;
|
| 3459 |
+
}
|
| 3460 |
+
|
| 3461 |
+
.mt-lg-1 {
|
| 3462 |
+
margin-top: 0.25rem !important;
|
| 3463 |
+
}
|
| 3464 |
+
|
| 3465 |
+
.mt-lg-2 {
|
| 3466 |
+
margin-top: 0.5rem !important;
|
| 3467 |
+
}
|
| 3468 |
+
|
| 3469 |
+
.mt-lg-3 {
|
| 3470 |
+
margin-top: 1rem !important;
|
| 3471 |
+
}
|
| 3472 |
+
|
| 3473 |
+
.mt-lg-4 {
|
| 3474 |
+
margin-top: 1.5rem !important;
|
| 3475 |
+
}
|
| 3476 |
+
|
| 3477 |
+
.mt-lg-5 {
|
| 3478 |
+
margin-top: 3rem !important;
|
| 3479 |
+
}
|
| 3480 |
+
|
| 3481 |
+
.mt-lg-auto {
|
| 3482 |
+
margin-top: auto !important;
|
| 3483 |
+
}
|
| 3484 |
+
|
| 3485 |
+
.me-lg-0 {
|
| 3486 |
+
margin-right: 0 !important;
|
| 3487 |
+
}
|
| 3488 |
+
|
| 3489 |
+
.me-lg-1 {
|
| 3490 |
+
margin-right: 0.25rem !important;
|
| 3491 |
+
}
|
| 3492 |
+
|
| 3493 |
+
.me-lg-2 {
|
| 3494 |
+
margin-right: 0.5rem !important;
|
| 3495 |
+
}
|
| 3496 |
+
|
| 3497 |
+
.me-lg-3 {
|
| 3498 |
+
margin-right: 1rem !important;
|
| 3499 |
+
}
|
| 3500 |
+
|
| 3501 |
+
.me-lg-4 {
|
| 3502 |
+
margin-right: 1.5rem !important;
|
| 3503 |
+
}
|
| 3504 |
+
|
| 3505 |
+
.me-lg-5 {
|
| 3506 |
+
margin-right: 3rem !important;
|
| 3507 |
+
}
|
| 3508 |
+
|
| 3509 |
+
.me-lg-auto {
|
| 3510 |
+
margin-right: auto !important;
|
| 3511 |
+
}
|
| 3512 |
+
|
| 3513 |
+
.mb-lg-0 {
|
| 3514 |
+
margin-bottom: 0 !important;
|
| 3515 |
+
}
|
| 3516 |
+
|
| 3517 |
+
.mb-lg-1 {
|
| 3518 |
+
margin-bottom: 0.25rem !important;
|
| 3519 |
+
}
|
| 3520 |
+
|
| 3521 |
+
.mb-lg-2 {
|
| 3522 |
+
margin-bottom: 0.5rem !important;
|
| 3523 |
+
}
|
| 3524 |
+
|
| 3525 |
+
.mb-lg-3 {
|
| 3526 |
+
margin-bottom: 1rem !important;
|
| 3527 |
+
}
|
| 3528 |
+
|
| 3529 |
+
.mb-lg-4 {
|
| 3530 |
+
margin-bottom: 1.5rem !important;
|
| 3531 |
+
}
|
| 3532 |
+
|
| 3533 |
+
.mb-lg-5 {
|
| 3534 |
+
margin-bottom: 3rem !important;
|
| 3535 |
+
}
|
| 3536 |
+
|
| 3537 |
+
.mb-lg-auto {
|
| 3538 |
+
margin-bottom: auto !important;
|
| 3539 |
+
}
|
| 3540 |
+
|
| 3541 |
+
.ms-lg-0 {
|
| 3542 |
+
margin-left: 0 !important;
|
| 3543 |
+
}
|
| 3544 |
+
|
| 3545 |
+
.ms-lg-1 {
|
| 3546 |
+
margin-left: 0.25rem !important;
|
| 3547 |
+
}
|
| 3548 |
+
|
| 3549 |
+
.ms-lg-2 {
|
| 3550 |
+
margin-left: 0.5rem !important;
|
| 3551 |
+
}
|
| 3552 |
+
|
| 3553 |
+
.ms-lg-3 {
|
| 3554 |
+
margin-left: 1rem !important;
|
| 3555 |
+
}
|
| 3556 |
+
|
| 3557 |
+
.ms-lg-4 {
|
| 3558 |
+
margin-left: 1.5rem !important;
|
| 3559 |
+
}
|
| 3560 |
+
|
| 3561 |
+
.ms-lg-5 {
|
| 3562 |
+
margin-left: 3rem !important;
|
| 3563 |
+
}
|
| 3564 |
+
|
| 3565 |
+
.ms-lg-auto {
|
| 3566 |
+
margin-left: auto !important;
|
| 3567 |
+
}
|
| 3568 |
+
|
| 3569 |
+
.p-lg-0 {
|
| 3570 |
+
padding: 0 !important;
|
| 3571 |
+
}
|
| 3572 |
+
|
| 3573 |
+
.p-lg-1 {
|
| 3574 |
+
padding: 0.25rem !important;
|
| 3575 |
+
}
|
| 3576 |
+
|
| 3577 |
+
.p-lg-2 {
|
| 3578 |
+
padding: 0.5rem !important;
|
| 3579 |
+
}
|
| 3580 |
+
|
| 3581 |
+
.p-lg-3 {
|
| 3582 |
+
padding: 1rem !important;
|
| 3583 |
+
}
|
| 3584 |
+
|
| 3585 |
+
.p-lg-4 {
|
| 3586 |
+
padding: 1.5rem !important;
|
| 3587 |
+
}
|
| 3588 |
+
|
| 3589 |
+
.p-lg-5 {
|
| 3590 |
+
padding: 3rem !important;
|
| 3591 |
+
}
|
| 3592 |
+
|
| 3593 |
+
.px-lg-0 {
|
| 3594 |
+
padding-right: 0 !important;
|
| 3595 |
+
padding-left: 0 !important;
|
| 3596 |
+
}
|
| 3597 |
+
|
| 3598 |
+
.px-lg-1 {
|
| 3599 |
+
padding-right: 0.25rem !important;
|
| 3600 |
+
padding-left: 0.25rem !important;
|
| 3601 |
+
}
|
| 3602 |
+
|
| 3603 |
+
.px-lg-2 {
|
| 3604 |
+
padding-right: 0.5rem !important;
|
| 3605 |
+
padding-left: 0.5rem !important;
|
| 3606 |
+
}
|
| 3607 |
+
|
| 3608 |
+
.px-lg-3 {
|
| 3609 |
+
padding-right: 1rem !important;
|
| 3610 |
+
padding-left: 1rem !important;
|
| 3611 |
+
}
|
| 3612 |
+
|
| 3613 |
+
.px-lg-4 {
|
| 3614 |
+
padding-right: 1.5rem !important;
|
| 3615 |
+
padding-left: 1.5rem !important;
|
| 3616 |
+
}
|
| 3617 |
+
|
| 3618 |
+
.px-lg-5 {
|
| 3619 |
+
padding-right: 3rem !important;
|
| 3620 |
+
padding-left: 3rem !important;
|
| 3621 |
+
}
|
| 3622 |
+
|
| 3623 |
+
.py-lg-0 {
|
| 3624 |
+
padding-top: 0 !important;
|
| 3625 |
+
padding-bottom: 0 !important;
|
| 3626 |
+
}
|
| 3627 |
+
|
| 3628 |
+
.py-lg-1 {
|
| 3629 |
+
padding-top: 0.25rem !important;
|
| 3630 |
+
padding-bottom: 0.25rem !important;
|
| 3631 |
+
}
|
| 3632 |
+
|
| 3633 |
+
.py-lg-2 {
|
| 3634 |
+
padding-top: 0.5rem !important;
|
| 3635 |
+
padding-bottom: 0.5rem !important;
|
| 3636 |
+
}
|
| 3637 |
+
|
| 3638 |
+
.py-lg-3 {
|
| 3639 |
+
padding-top: 1rem !important;
|
| 3640 |
+
padding-bottom: 1rem !important;
|
| 3641 |
+
}
|
| 3642 |
+
|
| 3643 |
+
.py-lg-4 {
|
| 3644 |
+
padding-top: 1.5rem !important;
|
| 3645 |
+
padding-bottom: 1.5rem !important;
|
| 3646 |
+
}
|
| 3647 |
+
|
| 3648 |
+
.py-lg-5 {
|
| 3649 |
+
padding-top: 3rem !important;
|
| 3650 |
+
padding-bottom: 3rem !important;
|
| 3651 |
+
}
|
| 3652 |
+
|
| 3653 |
+
.pt-lg-0 {
|
| 3654 |
+
padding-top: 0 !important;
|
| 3655 |
+
}
|
| 3656 |
+
|
| 3657 |
+
.pt-lg-1 {
|
| 3658 |
+
padding-top: 0.25rem !important;
|
| 3659 |
+
}
|
| 3660 |
+
|
| 3661 |
+
.pt-lg-2 {
|
| 3662 |
+
padding-top: 0.5rem !important;
|
| 3663 |
+
}
|
| 3664 |
+
|
| 3665 |
+
.pt-lg-3 {
|
| 3666 |
+
padding-top: 1rem !important;
|
| 3667 |
+
}
|
| 3668 |
+
|
| 3669 |
+
.pt-lg-4 {
|
| 3670 |
+
padding-top: 1.5rem !important;
|
| 3671 |
+
}
|
| 3672 |
+
|
| 3673 |
+
.pt-lg-5 {
|
| 3674 |
+
padding-top: 3rem !important;
|
| 3675 |
+
}
|
| 3676 |
+
|
| 3677 |
+
.pe-lg-0 {
|
| 3678 |
+
padding-right: 0 !important;
|
| 3679 |
+
}
|
| 3680 |
+
|
| 3681 |
+
.pe-lg-1 {
|
| 3682 |
+
padding-right: 0.25rem !important;
|
| 3683 |
+
}
|
| 3684 |
+
|
| 3685 |
+
.pe-lg-2 {
|
| 3686 |
+
padding-right: 0.5rem !important;
|
| 3687 |
+
}
|
| 3688 |
+
|
| 3689 |
+
.pe-lg-3 {
|
| 3690 |
+
padding-right: 1rem !important;
|
| 3691 |
+
}
|
| 3692 |
+
|
| 3693 |
+
.pe-lg-4 {
|
| 3694 |
+
padding-right: 1.5rem !important;
|
| 3695 |
+
}
|
| 3696 |
+
|
| 3697 |
+
.pe-lg-5 {
|
| 3698 |
+
padding-right: 3rem !important;
|
| 3699 |
+
}
|
| 3700 |
+
|
| 3701 |
+
.pb-lg-0 {
|
| 3702 |
+
padding-bottom: 0 !important;
|
| 3703 |
+
}
|
| 3704 |
+
|
| 3705 |
+
.pb-lg-1 {
|
| 3706 |
+
padding-bottom: 0.25rem !important;
|
| 3707 |
+
}
|
| 3708 |
+
|
| 3709 |
+
.pb-lg-2 {
|
| 3710 |
+
padding-bottom: 0.5rem !important;
|
| 3711 |
+
}
|
| 3712 |
+
|
| 3713 |
+
.pb-lg-3 {
|
| 3714 |
+
padding-bottom: 1rem !important;
|
| 3715 |
+
}
|
| 3716 |
+
|
| 3717 |
+
.pb-lg-4 {
|
| 3718 |
+
padding-bottom: 1.5rem !important;
|
| 3719 |
+
}
|
| 3720 |
+
|
| 3721 |
+
.pb-lg-5 {
|
| 3722 |
+
padding-bottom: 3rem !important;
|
| 3723 |
+
}
|
| 3724 |
+
|
| 3725 |
+
.ps-lg-0 {
|
| 3726 |
+
padding-left: 0 !important;
|
| 3727 |
+
}
|
| 3728 |
+
|
| 3729 |
+
.ps-lg-1 {
|
| 3730 |
+
padding-left: 0.25rem !important;
|
| 3731 |
+
}
|
| 3732 |
+
|
| 3733 |
+
.ps-lg-2 {
|
| 3734 |
+
padding-left: 0.5rem !important;
|
| 3735 |
+
}
|
| 3736 |
+
|
| 3737 |
+
.ps-lg-3 {
|
| 3738 |
+
padding-left: 1rem !important;
|
| 3739 |
+
}
|
| 3740 |
+
|
| 3741 |
+
.ps-lg-4 {
|
| 3742 |
+
padding-left: 1.5rem !important;
|
| 3743 |
+
}
|
| 3744 |
+
|
| 3745 |
+
.ps-lg-5 {
|
| 3746 |
+
padding-left: 3rem !important;
|
| 3747 |
+
}
|
| 3748 |
+
}
|
| 3749 |
+
@media (min-width: 1200px) {
|
| 3750 |
+
.d-xl-inline {
|
| 3751 |
+
display: inline !important;
|
| 3752 |
+
}
|
| 3753 |
+
|
| 3754 |
+
.d-xl-inline-block {
|
| 3755 |
+
display: inline-block !important;
|
| 3756 |
+
}
|
| 3757 |
+
|
| 3758 |
+
.d-xl-block {
|
| 3759 |
+
display: block !important;
|
| 3760 |
+
}
|
| 3761 |
+
|
| 3762 |
+
.d-xl-grid {
|
| 3763 |
+
display: grid !important;
|
| 3764 |
+
}
|
| 3765 |
+
|
| 3766 |
+
.d-xl-table {
|
| 3767 |
+
display: table !important;
|
| 3768 |
+
}
|
| 3769 |
+
|
| 3770 |
+
.d-xl-table-row {
|
| 3771 |
+
display: table-row !important;
|
| 3772 |
+
}
|
| 3773 |
+
|
| 3774 |
+
.d-xl-table-cell {
|
| 3775 |
+
display: table-cell !important;
|
| 3776 |
+
}
|
| 3777 |
+
|
| 3778 |
+
.d-xl-flex {
|
| 3779 |
+
display: flex !important;
|
| 3780 |
+
}
|
| 3781 |
+
|
| 3782 |
+
.d-xl-inline-flex {
|
| 3783 |
+
display: inline-flex !important;
|
| 3784 |
+
}
|
| 3785 |
+
|
| 3786 |
+
.d-xl-none {
|
| 3787 |
+
display: none !important;
|
| 3788 |
+
}
|
| 3789 |
+
|
| 3790 |
+
.flex-xl-fill {
|
| 3791 |
+
flex: 1 1 auto !important;
|
| 3792 |
+
}
|
| 3793 |
+
|
| 3794 |
+
.flex-xl-row {
|
| 3795 |
+
flex-direction: row !important;
|
| 3796 |
+
}
|
| 3797 |
+
|
| 3798 |
+
.flex-xl-column {
|
| 3799 |
+
flex-direction: column !important;
|
| 3800 |
+
}
|
| 3801 |
+
|
| 3802 |
+
.flex-xl-row-reverse {
|
| 3803 |
+
flex-direction: row-reverse !important;
|
| 3804 |
+
}
|
| 3805 |
+
|
| 3806 |
+
.flex-xl-column-reverse {
|
| 3807 |
+
flex-direction: column-reverse !important;
|
| 3808 |
+
}
|
| 3809 |
+
|
| 3810 |
+
.flex-xl-grow-0 {
|
| 3811 |
+
flex-grow: 0 !important;
|
| 3812 |
+
}
|
| 3813 |
+
|
| 3814 |
+
.flex-xl-grow-1 {
|
| 3815 |
+
flex-grow: 1 !important;
|
| 3816 |
+
}
|
| 3817 |
+
|
| 3818 |
+
.flex-xl-shrink-0 {
|
| 3819 |
+
flex-shrink: 0 !important;
|
| 3820 |
+
}
|
| 3821 |
+
|
| 3822 |
+
.flex-xl-shrink-1 {
|
| 3823 |
+
flex-shrink: 1 !important;
|
| 3824 |
+
}
|
| 3825 |
+
|
| 3826 |
+
.flex-xl-wrap {
|
| 3827 |
+
flex-wrap: wrap !important;
|
| 3828 |
+
}
|
| 3829 |
+
|
| 3830 |
+
.flex-xl-nowrap {
|
| 3831 |
+
flex-wrap: nowrap !important;
|
| 3832 |
+
}
|
| 3833 |
+
|
| 3834 |
+
.flex-xl-wrap-reverse {
|
| 3835 |
+
flex-wrap: wrap-reverse !important;
|
| 3836 |
+
}
|
| 3837 |
+
|
| 3838 |
+
.justify-content-xl-start {
|
| 3839 |
+
justify-content: flex-start !important;
|
| 3840 |
+
}
|
| 3841 |
+
|
| 3842 |
+
.justify-content-xl-end {
|
| 3843 |
+
justify-content: flex-end !important;
|
| 3844 |
+
}
|
| 3845 |
+
|
| 3846 |
+
.justify-content-xl-center {
|
| 3847 |
+
justify-content: center !important;
|
| 3848 |
+
}
|
| 3849 |
+
|
| 3850 |
+
.justify-content-xl-between {
|
| 3851 |
+
justify-content: space-between !important;
|
| 3852 |
+
}
|
| 3853 |
+
|
| 3854 |
+
.justify-content-xl-around {
|
| 3855 |
+
justify-content: space-around !important;
|
| 3856 |
+
}
|
| 3857 |
+
|
| 3858 |
+
.justify-content-xl-evenly {
|
| 3859 |
+
justify-content: space-evenly !important;
|
| 3860 |
+
}
|
| 3861 |
+
|
| 3862 |
+
.align-items-xl-start {
|
| 3863 |
+
align-items: flex-start !important;
|
| 3864 |
+
}
|
| 3865 |
+
|
| 3866 |
+
.align-items-xl-end {
|
| 3867 |
+
align-items: flex-end !important;
|
| 3868 |
+
}
|
| 3869 |
+
|
| 3870 |
+
.align-items-xl-center {
|
| 3871 |
+
align-items: center !important;
|
| 3872 |
+
}
|
| 3873 |
+
|
| 3874 |
+
.align-items-xl-baseline {
|
| 3875 |
+
align-items: baseline !important;
|
| 3876 |
+
}
|
| 3877 |
+
|
| 3878 |
+
.align-items-xl-stretch {
|
| 3879 |
+
align-items: stretch !important;
|
| 3880 |
+
}
|
| 3881 |
+
|
| 3882 |
+
.align-content-xl-start {
|
| 3883 |
+
align-content: flex-start !important;
|
| 3884 |
+
}
|
| 3885 |
+
|
| 3886 |
+
.align-content-xl-end {
|
| 3887 |
+
align-content: flex-end !important;
|
| 3888 |
+
}
|
| 3889 |
+
|
| 3890 |
+
.align-content-xl-center {
|
| 3891 |
+
align-content: center !important;
|
| 3892 |
+
}
|
| 3893 |
+
|
| 3894 |
+
.align-content-xl-between {
|
| 3895 |
+
align-content: space-between !important;
|
| 3896 |
+
}
|
| 3897 |
+
|
| 3898 |
+
.align-content-xl-around {
|
| 3899 |
+
align-content: space-around !important;
|
| 3900 |
+
}
|
| 3901 |
+
|
| 3902 |
+
.align-content-xl-stretch {
|
| 3903 |
+
align-content: stretch !important;
|
| 3904 |
+
}
|
| 3905 |
+
|
| 3906 |
+
.align-self-xl-auto {
|
| 3907 |
+
align-self: auto !important;
|
| 3908 |
+
}
|
| 3909 |
+
|
| 3910 |
+
.align-self-xl-start {
|
| 3911 |
+
align-self: flex-start !important;
|
| 3912 |
+
}
|
| 3913 |
+
|
| 3914 |
+
.align-self-xl-end {
|
| 3915 |
+
align-self: flex-end !important;
|
| 3916 |
+
}
|
| 3917 |
+
|
| 3918 |
+
.align-self-xl-center {
|
| 3919 |
+
align-self: center !important;
|
| 3920 |
+
}
|
| 3921 |
+
|
| 3922 |
+
.align-self-xl-baseline {
|
| 3923 |
+
align-self: baseline !important;
|
| 3924 |
+
}
|
| 3925 |
+
|
| 3926 |
+
.align-self-xl-stretch {
|
| 3927 |
+
align-self: stretch !important;
|
| 3928 |
+
}
|
| 3929 |
+
|
| 3930 |
+
.order-xl-first {
|
| 3931 |
+
order: -1 !important;
|
| 3932 |
+
}
|
| 3933 |
+
|
| 3934 |
+
.order-xl-0 {
|
| 3935 |
+
order: 0 !important;
|
| 3936 |
+
}
|
| 3937 |
+
|
| 3938 |
+
.order-xl-1 {
|
| 3939 |
+
order: 1 !important;
|
| 3940 |
+
}
|
| 3941 |
+
|
| 3942 |
+
.order-xl-2 {
|
| 3943 |
+
order: 2 !important;
|
| 3944 |
+
}
|
| 3945 |
+
|
| 3946 |
+
.order-xl-3 {
|
| 3947 |
+
order: 3 !important;
|
| 3948 |
+
}
|
| 3949 |
+
|
| 3950 |
+
.order-xl-4 {
|
| 3951 |
+
order: 4 !important;
|
| 3952 |
+
}
|
| 3953 |
+
|
| 3954 |
+
.order-xl-5 {
|
| 3955 |
+
order: 5 !important;
|
| 3956 |
+
}
|
| 3957 |
+
|
| 3958 |
+
.order-xl-last {
|
| 3959 |
+
order: 6 !important;
|
| 3960 |
+
}
|
| 3961 |
+
|
| 3962 |
+
.m-xl-0 {
|
| 3963 |
+
margin: 0 !important;
|
| 3964 |
+
}
|
| 3965 |
+
|
| 3966 |
+
.m-xl-1 {
|
| 3967 |
+
margin: 0.25rem !important;
|
| 3968 |
+
}
|
| 3969 |
+
|
| 3970 |
+
.m-xl-2 {
|
| 3971 |
+
margin: 0.5rem !important;
|
| 3972 |
+
}
|
| 3973 |
+
|
| 3974 |
+
.m-xl-3 {
|
| 3975 |
+
margin: 1rem !important;
|
| 3976 |
+
}
|
| 3977 |
+
|
| 3978 |
+
.m-xl-4 {
|
| 3979 |
+
margin: 1.5rem !important;
|
| 3980 |
+
}
|
| 3981 |
+
|
| 3982 |
+
.m-xl-5 {
|
| 3983 |
+
margin: 3rem !important;
|
| 3984 |
+
}
|
| 3985 |
+
|
| 3986 |
+
.m-xl-auto {
|
| 3987 |
+
margin: auto !important;
|
| 3988 |
+
}
|
| 3989 |
+
|
| 3990 |
+
.mx-xl-0 {
|
| 3991 |
+
margin-right: 0 !important;
|
| 3992 |
+
margin-left: 0 !important;
|
| 3993 |
+
}
|
| 3994 |
+
|
| 3995 |
+
.mx-xl-1 {
|
| 3996 |
+
margin-right: 0.25rem !important;
|
| 3997 |
+
margin-left: 0.25rem !important;
|
| 3998 |
+
}
|
| 3999 |
+
|
| 4000 |
+
.mx-xl-2 {
|
| 4001 |
+
margin-right: 0.5rem !important;
|
| 4002 |
+
margin-left: 0.5rem !important;
|
| 4003 |
+
}
|
| 4004 |
+
|
| 4005 |
+
.mx-xl-3 {
|
| 4006 |
+
margin-right: 1rem !important;
|
| 4007 |
+
margin-left: 1rem !important;
|
| 4008 |
+
}
|
| 4009 |
+
|
| 4010 |
+
.mx-xl-4 {
|
| 4011 |
+
margin-right: 1.5rem !important;
|
| 4012 |
+
margin-left: 1.5rem !important;
|
| 4013 |
+
}
|
| 4014 |
+
|
| 4015 |
+
.mx-xl-5 {
|
| 4016 |
+
margin-right: 3rem !important;
|
| 4017 |
+
margin-left: 3rem !important;
|
| 4018 |
+
}
|
| 4019 |
+
|
| 4020 |
+
.mx-xl-auto {
|
| 4021 |
+
margin-right: auto !important;
|
| 4022 |
+
margin-left: auto !important;
|
| 4023 |
+
}
|
| 4024 |
+
|
| 4025 |
+
.my-xl-0 {
|
| 4026 |
+
margin-top: 0 !important;
|
| 4027 |
+
margin-bottom: 0 !important;
|
| 4028 |
+
}
|
| 4029 |
+
|
| 4030 |
+
.my-xl-1 {
|
| 4031 |
+
margin-top: 0.25rem !important;
|
| 4032 |
+
margin-bottom: 0.25rem !important;
|
| 4033 |
+
}
|
| 4034 |
+
|
| 4035 |
+
.my-xl-2 {
|
| 4036 |
+
margin-top: 0.5rem !important;
|
| 4037 |
+
margin-bottom: 0.5rem !important;
|
| 4038 |
+
}
|
| 4039 |
+
|
| 4040 |
+
.my-xl-3 {
|
| 4041 |
+
margin-top: 1rem !important;
|
| 4042 |
+
margin-bottom: 1rem !important;
|
| 4043 |
+
}
|
| 4044 |
+
|
| 4045 |
+
.my-xl-4 {
|
| 4046 |
+
margin-top: 1.5rem !important;
|
| 4047 |
+
margin-bottom: 1.5rem !important;
|
| 4048 |
+
}
|
| 4049 |
+
|
| 4050 |
+
.my-xl-5 {
|
| 4051 |
+
margin-top: 3rem !important;
|
| 4052 |
+
margin-bottom: 3rem !important;
|
| 4053 |
+
}
|
| 4054 |
+
|
| 4055 |
+
.my-xl-auto {
|
| 4056 |
+
margin-top: auto !important;
|
| 4057 |
+
margin-bottom: auto !important;
|
| 4058 |
+
}
|
| 4059 |
+
|
| 4060 |
+
.mt-xl-0 {
|
| 4061 |
+
margin-top: 0 !important;
|
| 4062 |
+
}
|
| 4063 |
+
|
| 4064 |
+
.mt-xl-1 {
|
| 4065 |
+
margin-top: 0.25rem !important;
|
| 4066 |
+
}
|
| 4067 |
+
|
| 4068 |
+
.mt-xl-2 {
|
| 4069 |
+
margin-top: 0.5rem !important;
|
| 4070 |
+
}
|
| 4071 |
+
|
| 4072 |
+
.mt-xl-3 {
|
| 4073 |
+
margin-top: 1rem !important;
|
| 4074 |
+
}
|
| 4075 |
+
|
| 4076 |
+
.mt-xl-4 {
|
| 4077 |
+
margin-top: 1.5rem !important;
|
| 4078 |
+
}
|
| 4079 |
+
|
| 4080 |
+
.mt-xl-5 {
|
| 4081 |
+
margin-top: 3rem !important;
|
| 4082 |
+
}
|
| 4083 |
+
|
| 4084 |
+
.mt-xl-auto {
|
| 4085 |
+
margin-top: auto !important;
|
| 4086 |
+
}
|
| 4087 |
+
|
| 4088 |
+
.me-xl-0 {
|
| 4089 |
+
margin-right: 0 !important;
|
| 4090 |
+
}
|
| 4091 |
+
|
| 4092 |
+
.me-xl-1 {
|
| 4093 |
+
margin-right: 0.25rem !important;
|
| 4094 |
+
}
|
| 4095 |
+
|
| 4096 |
+
.me-xl-2 {
|
| 4097 |
+
margin-right: 0.5rem !important;
|
| 4098 |
+
}
|
| 4099 |
+
|
| 4100 |
+
.me-xl-3 {
|
| 4101 |
+
margin-right: 1rem !important;
|
| 4102 |
+
}
|
| 4103 |
+
|
| 4104 |
+
.me-xl-4 {
|
| 4105 |
+
margin-right: 1.5rem !important;
|
| 4106 |
+
}
|
| 4107 |
+
|
| 4108 |
+
.me-xl-5 {
|
| 4109 |
+
margin-right: 3rem !important;
|
| 4110 |
+
}
|
| 4111 |
+
|
| 4112 |
+
.me-xl-auto {
|
| 4113 |
+
margin-right: auto !important;
|
| 4114 |
+
}
|
| 4115 |
+
|
| 4116 |
+
.mb-xl-0 {
|
| 4117 |
+
margin-bottom: 0 !important;
|
| 4118 |
+
}
|
| 4119 |
+
|
| 4120 |
+
.mb-xl-1 {
|
| 4121 |
+
margin-bottom: 0.25rem !important;
|
| 4122 |
+
}
|
| 4123 |
+
|
| 4124 |
+
.mb-xl-2 {
|
| 4125 |
+
margin-bottom: 0.5rem !important;
|
| 4126 |
+
}
|
| 4127 |
+
|
| 4128 |
+
.mb-xl-3 {
|
| 4129 |
+
margin-bottom: 1rem !important;
|
| 4130 |
+
}
|
| 4131 |
+
|
| 4132 |
+
.mb-xl-4 {
|
| 4133 |
+
margin-bottom: 1.5rem !important;
|
| 4134 |
+
}
|
| 4135 |
+
|
| 4136 |
+
.mb-xl-5 {
|
| 4137 |
+
margin-bottom: 3rem !important;
|
| 4138 |
+
}
|
| 4139 |
+
|
| 4140 |
+
.mb-xl-auto {
|
| 4141 |
+
margin-bottom: auto !important;
|
| 4142 |
+
}
|
| 4143 |
+
|
| 4144 |
+
.ms-xl-0 {
|
| 4145 |
+
margin-left: 0 !important;
|
| 4146 |
+
}
|
| 4147 |
+
|
| 4148 |
+
.ms-xl-1 {
|
| 4149 |
+
margin-left: 0.25rem !important;
|
| 4150 |
+
}
|
| 4151 |
+
|
| 4152 |
+
.ms-xl-2 {
|
| 4153 |
+
margin-left: 0.5rem !important;
|
| 4154 |
+
}
|
| 4155 |
+
|
| 4156 |
+
.ms-xl-3 {
|
| 4157 |
+
margin-left: 1rem !important;
|
| 4158 |
+
}
|
| 4159 |
+
|
| 4160 |
+
.ms-xl-4 {
|
| 4161 |
+
margin-left: 1.5rem !important;
|
| 4162 |
+
}
|
| 4163 |
+
|
| 4164 |
+
.ms-xl-5 {
|
| 4165 |
+
margin-left: 3rem !important;
|
| 4166 |
+
}
|
| 4167 |
+
|
| 4168 |
+
.ms-xl-auto {
|
| 4169 |
+
margin-left: auto !important;
|
| 4170 |
+
}
|
| 4171 |
+
|
| 4172 |
+
.p-xl-0 {
|
| 4173 |
+
padding: 0 !important;
|
| 4174 |
+
}
|
| 4175 |
+
|
| 4176 |
+
.p-xl-1 {
|
| 4177 |
+
padding: 0.25rem !important;
|
| 4178 |
+
}
|
| 4179 |
+
|
| 4180 |
+
.p-xl-2 {
|
| 4181 |
+
padding: 0.5rem !important;
|
| 4182 |
+
}
|
| 4183 |
+
|
| 4184 |
+
.p-xl-3 {
|
| 4185 |
+
padding: 1rem !important;
|
| 4186 |
+
}
|
| 4187 |
+
|
| 4188 |
+
.p-xl-4 {
|
| 4189 |
+
padding: 1.5rem !important;
|
| 4190 |
+
}
|
| 4191 |
+
|
| 4192 |
+
.p-xl-5 {
|
| 4193 |
+
padding: 3rem !important;
|
| 4194 |
+
}
|
| 4195 |
+
|
| 4196 |
+
.px-xl-0 {
|
| 4197 |
+
padding-right: 0 !important;
|
| 4198 |
+
padding-left: 0 !important;
|
| 4199 |
+
}
|
| 4200 |
+
|
| 4201 |
+
.px-xl-1 {
|
| 4202 |
+
padding-right: 0.25rem !important;
|
| 4203 |
+
padding-left: 0.25rem !important;
|
| 4204 |
+
}
|
| 4205 |
+
|
| 4206 |
+
.px-xl-2 {
|
| 4207 |
+
padding-right: 0.5rem !important;
|
| 4208 |
+
padding-left: 0.5rem !important;
|
| 4209 |
+
}
|
| 4210 |
+
|
| 4211 |
+
.px-xl-3 {
|
| 4212 |
+
padding-right: 1rem !important;
|
| 4213 |
+
padding-left: 1rem !important;
|
| 4214 |
+
}
|
| 4215 |
+
|
| 4216 |
+
.px-xl-4 {
|
| 4217 |
+
padding-right: 1.5rem !important;
|
| 4218 |
+
padding-left: 1.5rem !important;
|
| 4219 |
+
}
|
| 4220 |
+
|
| 4221 |
+
.px-xl-5 {
|
| 4222 |
+
padding-right: 3rem !important;
|
| 4223 |
+
padding-left: 3rem !important;
|
| 4224 |
+
}
|
| 4225 |
+
|
| 4226 |
+
.py-xl-0 {
|
| 4227 |
+
padding-top: 0 !important;
|
| 4228 |
+
padding-bottom: 0 !important;
|
| 4229 |
+
}
|
| 4230 |
+
|
| 4231 |
+
.py-xl-1 {
|
| 4232 |
+
padding-top: 0.25rem !important;
|
| 4233 |
+
padding-bottom: 0.25rem !important;
|
| 4234 |
+
}
|
| 4235 |
+
|
| 4236 |
+
.py-xl-2 {
|
| 4237 |
+
padding-top: 0.5rem !important;
|
| 4238 |
+
padding-bottom: 0.5rem !important;
|
| 4239 |
+
}
|
| 4240 |
+
|
| 4241 |
+
.py-xl-3 {
|
| 4242 |
+
padding-top: 1rem !important;
|
| 4243 |
+
padding-bottom: 1rem !important;
|
| 4244 |
+
}
|
| 4245 |
+
|
| 4246 |
+
.py-xl-4 {
|
| 4247 |
+
padding-top: 1.5rem !important;
|
| 4248 |
+
padding-bottom: 1.5rem !important;
|
| 4249 |
+
}
|
| 4250 |
+
|
| 4251 |
+
.py-xl-5 {
|
| 4252 |
+
padding-top: 3rem !important;
|
| 4253 |
+
padding-bottom: 3rem !important;
|
| 4254 |
+
}
|
| 4255 |
+
|
| 4256 |
+
.pt-xl-0 {
|
| 4257 |
+
padding-top: 0 !important;
|
| 4258 |
+
}
|
| 4259 |
+
|
| 4260 |
+
.pt-xl-1 {
|
| 4261 |
+
padding-top: 0.25rem !important;
|
| 4262 |
+
}
|
| 4263 |
+
|
| 4264 |
+
.pt-xl-2 {
|
| 4265 |
+
padding-top: 0.5rem !important;
|
| 4266 |
+
}
|
| 4267 |
+
|
| 4268 |
+
.pt-xl-3 {
|
| 4269 |
+
padding-top: 1rem !important;
|
| 4270 |
+
}
|
| 4271 |
+
|
| 4272 |
+
.pt-xl-4 {
|
| 4273 |
+
padding-top: 1.5rem !important;
|
| 4274 |
+
}
|
| 4275 |
+
|
| 4276 |
+
.pt-xl-5 {
|
| 4277 |
+
padding-top: 3rem !important;
|
| 4278 |
+
}
|
| 4279 |
+
|
| 4280 |
+
.pe-xl-0 {
|
| 4281 |
+
padding-right: 0 !important;
|
| 4282 |
+
}
|
| 4283 |
+
|
| 4284 |
+
.pe-xl-1 {
|
| 4285 |
+
padding-right: 0.25rem !important;
|
| 4286 |
+
}
|
| 4287 |
+
|
| 4288 |
+
.pe-xl-2 {
|
| 4289 |
+
padding-right: 0.5rem !important;
|
| 4290 |
+
}
|
| 4291 |
+
|
| 4292 |
+
.pe-xl-3 {
|
| 4293 |
+
padding-right: 1rem !important;
|
| 4294 |
+
}
|
| 4295 |
+
|
| 4296 |
+
.pe-xl-4 {
|
| 4297 |
+
padding-right: 1.5rem !important;
|
| 4298 |
+
}
|
| 4299 |
+
|
| 4300 |
+
.pe-xl-5 {
|
| 4301 |
+
padding-right: 3rem !important;
|
| 4302 |
+
}
|
| 4303 |
+
|
| 4304 |
+
.pb-xl-0 {
|
| 4305 |
+
padding-bottom: 0 !important;
|
| 4306 |
+
}
|
| 4307 |
+
|
| 4308 |
+
.pb-xl-1 {
|
| 4309 |
+
padding-bottom: 0.25rem !important;
|
| 4310 |
+
}
|
| 4311 |
+
|
| 4312 |
+
.pb-xl-2 {
|
| 4313 |
+
padding-bottom: 0.5rem !important;
|
| 4314 |
+
}
|
| 4315 |
+
|
| 4316 |
+
.pb-xl-3 {
|
| 4317 |
+
padding-bottom: 1rem !important;
|
| 4318 |
+
}
|
| 4319 |
+
|
| 4320 |
+
.pb-xl-4 {
|
| 4321 |
+
padding-bottom: 1.5rem !important;
|
| 4322 |
+
}
|
| 4323 |
+
|
| 4324 |
+
.pb-xl-5 {
|
| 4325 |
+
padding-bottom: 3rem !important;
|
| 4326 |
+
}
|
| 4327 |
+
|
| 4328 |
+
.ps-xl-0 {
|
| 4329 |
+
padding-left: 0 !important;
|
| 4330 |
+
}
|
| 4331 |
+
|
| 4332 |
+
.ps-xl-1 {
|
| 4333 |
+
padding-left: 0.25rem !important;
|
| 4334 |
+
}
|
| 4335 |
+
|
| 4336 |
+
.ps-xl-2 {
|
| 4337 |
+
padding-left: 0.5rem !important;
|
| 4338 |
+
}
|
| 4339 |
+
|
| 4340 |
+
.ps-xl-3 {
|
| 4341 |
+
padding-left: 1rem !important;
|
| 4342 |
+
}
|
| 4343 |
+
|
| 4344 |
+
.ps-xl-4 {
|
| 4345 |
+
padding-left: 1.5rem !important;
|
| 4346 |
+
}
|
| 4347 |
+
|
| 4348 |
+
.ps-xl-5 {
|
| 4349 |
+
padding-left: 3rem !important;
|
| 4350 |
+
}
|
| 4351 |
+
}
|
| 4352 |
+
@media (min-width: 1400px) {
|
| 4353 |
+
.d-xxl-inline {
|
| 4354 |
+
display: inline !important;
|
| 4355 |
+
}
|
| 4356 |
+
|
| 4357 |
+
.d-xxl-inline-block {
|
| 4358 |
+
display: inline-block !important;
|
| 4359 |
+
}
|
| 4360 |
+
|
| 4361 |
+
.d-xxl-block {
|
| 4362 |
+
display: block !important;
|
| 4363 |
+
}
|
| 4364 |
+
|
| 4365 |
+
.d-xxl-grid {
|
| 4366 |
+
display: grid !important;
|
| 4367 |
+
}
|
| 4368 |
+
|
| 4369 |
+
.d-xxl-table {
|
| 4370 |
+
display: table !important;
|
| 4371 |
+
}
|
| 4372 |
+
|
| 4373 |
+
.d-xxl-table-row {
|
| 4374 |
+
display: table-row !important;
|
| 4375 |
+
}
|
| 4376 |
+
|
| 4377 |
+
.d-xxl-table-cell {
|
| 4378 |
+
display: table-cell !important;
|
| 4379 |
+
}
|
| 4380 |
+
|
| 4381 |
+
.d-xxl-flex {
|
| 4382 |
+
display: flex !important;
|
| 4383 |
+
}
|
| 4384 |
+
|
| 4385 |
+
.d-xxl-inline-flex {
|
| 4386 |
+
display: inline-flex !important;
|
| 4387 |
+
}
|
| 4388 |
+
|
| 4389 |
+
.d-xxl-none {
|
| 4390 |
+
display: none !important;
|
| 4391 |
+
}
|
| 4392 |
+
|
| 4393 |
+
.flex-xxl-fill {
|
| 4394 |
+
flex: 1 1 auto !important;
|
| 4395 |
+
}
|
| 4396 |
+
|
| 4397 |
+
.flex-xxl-row {
|
| 4398 |
+
flex-direction: row !important;
|
| 4399 |
+
}
|
| 4400 |
+
|
| 4401 |
+
.flex-xxl-column {
|
| 4402 |
+
flex-direction: column !important;
|
| 4403 |
+
}
|
| 4404 |
+
|
| 4405 |
+
.flex-xxl-row-reverse {
|
| 4406 |
+
flex-direction: row-reverse !important;
|
| 4407 |
+
}
|
| 4408 |
+
|
| 4409 |
+
.flex-xxl-column-reverse {
|
| 4410 |
+
flex-direction: column-reverse !important;
|
| 4411 |
+
}
|
| 4412 |
+
|
| 4413 |
+
.flex-xxl-grow-0 {
|
| 4414 |
+
flex-grow: 0 !important;
|
| 4415 |
+
}
|
| 4416 |
+
|
| 4417 |
+
.flex-xxl-grow-1 {
|
| 4418 |
+
flex-grow: 1 !important;
|
| 4419 |
+
}
|
| 4420 |
+
|
| 4421 |
+
.flex-xxl-shrink-0 {
|
| 4422 |
+
flex-shrink: 0 !important;
|
| 4423 |
+
}
|
| 4424 |
+
|
| 4425 |
+
.flex-xxl-shrink-1 {
|
| 4426 |
+
flex-shrink: 1 !important;
|
| 4427 |
+
}
|
| 4428 |
+
|
| 4429 |
+
.flex-xxl-wrap {
|
| 4430 |
+
flex-wrap: wrap !important;
|
| 4431 |
+
}
|
| 4432 |
+
|
| 4433 |
+
.flex-xxl-nowrap {
|
| 4434 |
+
flex-wrap: nowrap !important;
|
| 4435 |
+
}
|
| 4436 |
+
|
| 4437 |
+
.flex-xxl-wrap-reverse {
|
| 4438 |
+
flex-wrap: wrap-reverse !important;
|
| 4439 |
+
}
|
| 4440 |
+
|
| 4441 |
+
.justify-content-xxl-start {
|
| 4442 |
+
justify-content: flex-start !important;
|
| 4443 |
+
}
|
| 4444 |
+
|
| 4445 |
+
.justify-content-xxl-end {
|
| 4446 |
+
justify-content: flex-end !important;
|
| 4447 |
+
}
|
| 4448 |
+
|
| 4449 |
+
.justify-content-xxl-center {
|
| 4450 |
+
justify-content: center !important;
|
| 4451 |
+
}
|
| 4452 |
+
|
| 4453 |
+
.justify-content-xxl-between {
|
| 4454 |
+
justify-content: space-between !important;
|
| 4455 |
+
}
|
| 4456 |
+
|
| 4457 |
+
.justify-content-xxl-around {
|
| 4458 |
+
justify-content: space-around !important;
|
| 4459 |
+
}
|
| 4460 |
+
|
| 4461 |
+
.justify-content-xxl-evenly {
|
| 4462 |
+
justify-content: space-evenly !important;
|
| 4463 |
+
}
|
| 4464 |
+
|
| 4465 |
+
.align-items-xxl-start {
|
| 4466 |
+
align-items: flex-start !important;
|
| 4467 |
+
}
|
| 4468 |
+
|
| 4469 |
+
.align-items-xxl-end {
|
| 4470 |
+
align-items: flex-end !important;
|
| 4471 |
+
}
|
| 4472 |
+
|
| 4473 |
+
.align-items-xxl-center {
|
| 4474 |
+
align-items: center !important;
|
| 4475 |
+
}
|
| 4476 |
+
|
| 4477 |
+
.align-items-xxl-baseline {
|
| 4478 |
+
align-items: baseline !important;
|
| 4479 |
+
}
|
| 4480 |
+
|
| 4481 |
+
.align-items-xxl-stretch {
|
| 4482 |
+
align-items: stretch !important;
|
| 4483 |
+
}
|
| 4484 |
+
|
| 4485 |
+
.align-content-xxl-start {
|
| 4486 |
+
align-content: flex-start !important;
|
| 4487 |
+
}
|
| 4488 |
+
|
| 4489 |
+
.align-content-xxl-end {
|
| 4490 |
+
align-content: flex-end !important;
|
| 4491 |
+
}
|
| 4492 |
+
|
| 4493 |
+
.align-content-xxl-center {
|
| 4494 |
+
align-content: center !important;
|
| 4495 |
+
}
|
| 4496 |
+
|
| 4497 |
+
.align-content-xxl-between {
|
| 4498 |
+
align-content: space-between !important;
|
| 4499 |
+
}
|
| 4500 |
+
|
| 4501 |
+
.align-content-xxl-around {
|
| 4502 |
+
align-content: space-around !important;
|
| 4503 |
+
}
|
| 4504 |
+
|
| 4505 |
+
.align-content-xxl-stretch {
|
| 4506 |
+
align-content: stretch !important;
|
| 4507 |
+
}
|
| 4508 |
+
|
| 4509 |
+
.align-self-xxl-auto {
|
| 4510 |
+
align-self: auto !important;
|
| 4511 |
+
}
|
| 4512 |
+
|
| 4513 |
+
.align-self-xxl-start {
|
| 4514 |
+
align-self: flex-start !important;
|
| 4515 |
+
}
|
| 4516 |
+
|
| 4517 |
+
.align-self-xxl-end {
|
| 4518 |
+
align-self: flex-end !important;
|
| 4519 |
+
}
|
| 4520 |
+
|
| 4521 |
+
.align-self-xxl-center {
|
| 4522 |
+
align-self: center !important;
|
| 4523 |
+
}
|
| 4524 |
+
|
| 4525 |
+
.align-self-xxl-baseline {
|
| 4526 |
+
align-self: baseline !important;
|
| 4527 |
+
}
|
| 4528 |
+
|
| 4529 |
+
.align-self-xxl-stretch {
|
| 4530 |
+
align-self: stretch !important;
|
| 4531 |
+
}
|
| 4532 |
+
|
| 4533 |
+
.order-xxl-first {
|
| 4534 |
+
order: -1 !important;
|
| 4535 |
+
}
|
| 4536 |
+
|
| 4537 |
+
.order-xxl-0 {
|
| 4538 |
+
order: 0 !important;
|
| 4539 |
+
}
|
| 4540 |
+
|
| 4541 |
+
.order-xxl-1 {
|
| 4542 |
+
order: 1 !important;
|
| 4543 |
+
}
|
| 4544 |
+
|
| 4545 |
+
.order-xxl-2 {
|
| 4546 |
+
order: 2 !important;
|
| 4547 |
+
}
|
| 4548 |
+
|
| 4549 |
+
.order-xxl-3 {
|
| 4550 |
+
order: 3 !important;
|
| 4551 |
+
}
|
| 4552 |
+
|
| 4553 |
+
.order-xxl-4 {
|
| 4554 |
+
order: 4 !important;
|
| 4555 |
+
}
|
| 4556 |
+
|
| 4557 |
+
.order-xxl-5 {
|
| 4558 |
+
order: 5 !important;
|
| 4559 |
+
}
|
| 4560 |
+
|
| 4561 |
+
.order-xxl-last {
|
| 4562 |
+
order: 6 !important;
|
| 4563 |
+
}
|
| 4564 |
+
|
| 4565 |
+
.m-xxl-0 {
|
| 4566 |
+
margin: 0 !important;
|
| 4567 |
+
}
|
| 4568 |
+
|
| 4569 |
+
.m-xxl-1 {
|
| 4570 |
+
margin: 0.25rem !important;
|
| 4571 |
+
}
|
| 4572 |
+
|
| 4573 |
+
.m-xxl-2 {
|
| 4574 |
+
margin: 0.5rem !important;
|
| 4575 |
+
}
|
| 4576 |
+
|
| 4577 |
+
.m-xxl-3 {
|
| 4578 |
+
margin: 1rem !important;
|
| 4579 |
+
}
|
| 4580 |
+
|
| 4581 |
+
.m-xxl-4 {
|
| 4582 |
+
margin: 1.5rem !important;
|
| 4583 |
+
}
|
| 4584 |
+
|
| 4585 |
+
.m-xxl-5 {
|
| 4586 |
+
margin: 3rem !important;
|
| 4587 |
+
}
|
| 4588 |
+
|
| 4589 |
+
.m-xxl-auto {
|
| 4590 |
+
margin: auto !important;
|
| 4591 |
+
}
|
| 4592 |
+
|
| 4593 |
+
.mx-xxl-0 {
|
| 4594 |
+
margin-right: 0 !important;
|
| 4595 |
+
margin-left: 0 !important;
|
| 4596 |
+
}
|
| 4597 |
+
|
| 4598 |
+
.mx-xxl-1 {
|
| 4599 |
+
margin-right: 0.25rem !important;
|
| 4600 |
+
margin-left: 0.25rem !important;
|
| 4601 |
+
}
|
| 4602 |
+
|
| 4603 |
+
.mx-xxl-2 {
|
| 4604 |
+
margin-right: 0.5rem !important;
|
| 4605 |
+
margin-left: 0.5rem !important;
|
| 4606 |
+
}
|
| 4607 |
+
|
| 4608 |
+
.mx-xxl-3 {
|
| 4609 |
+
margin-right: 1rem !important;
|
| 4610 |
+
margin-left: 1rem !important;
|
| 4611 |
+
}
|
| 4612 |
+
|
| 4613 |
+
.mx-xxl-4 {
|
| 4614 |
+
margin-right: 1.5rem !important;
|
| 4615 |
+
margin-left: 1.5rem !important;
|
| 4616 |
+
}
|
| 4617 |
+
|
| 4618 |
+
.mx-xxl-5 {
|
| 4619 |
+
margin-right: 3rem !important;
|
| 4620 |
+
margin-left: 3rem !important;
|
| 4621 |
+
}
|
| 4622 |
+
|
| 4623 |
+
.mx-xxl-auto {
|
| 4624 |
+
margin-right: auto !important;
|
| 4625 |
+
margin-left: auto !important;
|
| 4626 |
+
}
|
| 4627 |
+
|
| 4628 |
+
.my-xxl-0 {
|
| 4629 |
+
margin-top: 0 !important;
|
| 4630 |
+
margin-bottom: 0 !important;
|
| 4631 |
+
}
|
| 4632 |
+
|
| 4633 |
+
.my-xxl-1 {
|
| 4634 |
+
margin-top: 0.25rem !important;
|
| 4635 |
+
margin-bottom: 0.25rem !important;
|
| 4636 |
+
}
|
| 4637 |
+
|
| 4638 |
+
.my-xxl-2 {
|
| 4639 |
+
margin-top: 0.5rem !important;
|
| 4640 |
+
margin-bottom: 0.5rem !important;
|
| 4641 |
+
}
|
| 4642 |
+
|
| 4643 |
+
.my-xxl-3 {
|
| 4644 |
+
margin-top: 1rem !important;
|
| 4645 |
+
margin-bottom: 1rem !important;
|
| 4646 |
+
}
|
| 4647 |
+
|
| 4648 |
+
.my-xxl-4 {
|
| 4649 |
+
margin-top: 1.5rem !important;
|
| 4650 |
+
margin-bottom: 1.5rem !important;
|
| 4651 |
+
}
|
| 4652 |
+
|
| 4653 |
+
.my-xxl-5 {
|
| 4654 |
+
margin-top: 3rem !important;
|
| 4655 |
+
margin-bottom: 3rem !important;
|
| 4656 |
+
}
|
| 4657 |
+
|
| 4658 |
+
.my-xxl-auto {
|
| 4659 |
+
margin-top: auto !important;
|
| 4660 |
+
margin-bottom: auto !important;
|
| 4661 |
+
}
|
| 4662 |
+
|
| 4663 |
+
.mt-xxl-0 {
|
| 4664 |
+
margin-top: 0 !important;
|
| 4665 |
+
}
|
| 4666 |
+
|
| 4667 |
+
.mt-xxl-1 {
|
| 4668 |
+
margin-top: 0.25rem !important;
|
| 4669 |
+
}
|
| 4670 |
+
|
| 4671 |
+
.mt-xxl-2 {
|
| 4672 |
+
margin-top: 0.5rem !important;
|
| 4673 |
+
}
|
| 4674 |
+
|
| 4675 |
+
.mt-xxl-3 {
|
| 4676 |
+
margin-top: 1rem !important;
|
| 4677 |
+
}
|
| 4678 |
+
|
| 4679 |
+
.mt-xxl-4 {
|
| 4680 |
+
margin-top: 1.5rem !important;
|
| 4681 |
+
}
|
| 4682 |
+
|
| 4683 |
+
.mt-xxl-5 {
|
| 4684 |
+
margin-top: 3rem !important;
|
| 4685 |
+
}
|
| 4686 |
+
|
| 4687 |
+
.mt-xxl-auto {
|
| 4688 |
+
margin-top: auto !important;
|
| 4689 |
+
}
|
| 4690 |
+
|
| 4691 |
+
.me-xxl-0 {
|
| 4692 |
+
margin-right: 0 !important;
|
| 4693 |
+
}
|
| 4694 |
+
|
| 4695 |
+
.me-xxl-1 {
|
| 4696 |
+
margin-right: 0.25rem !important;
|
| 4697 |
+
}
|
| 4698 |
+
|
| 4699 |
+
.me-xxl-2 {
|
| 4700 |
+
margin-right: 0.5rem !important;
|
| 4701 |
+
}
|
| 4702 |
+
|
| 4703 |
+
.me-xxl-3 {
|
| 4704 |
+
margin-right: 1rem !important;
|
| 4705 |
+
}
|
| 4706 |
+
|
| 4707 |
+
.me-xxl-4 {
|
| 4708 |
+
margin-right: 1.5rem !important;
|
| 4709 |
+
}
|
| 4710 |
+
|
| 4711 |
+
.me-xxl-5 {
|
| 4712 |
+
margin-right: 3rem !important;
|
| 4713 |
+
}
|
| 4714 |
+
|
| 4715 |
+
.me-xxl-auto {
|
| 4716 |
+
margin-right: auto !important;
|
| 4717 |
+
}
|
| 4718 |
+
|
| 4719 |
+
.mb-xxl-0 {
|
| 4720 |
+
margin-bottom: 0 !important;
|
| 4721 |
+
}
|
| 4722 |
+
|
| 4723 |
+
.mb-xxl-1 {
|
| 4724 |
+
margin-bottom: 0.25rem !important;
|
| 4725 |
+
}
|
| 4726 |
+
|
| 4727 |
+
.mb-xxl-2 {
|
| 4728 |
+
margin-bottom: 0.5rem !important;
|
| 4729 |
+
}
|
| 4730 |
+
|
| 4731 |
+
.mb-xxl-3 {
|
| 4732 |
+
margin-bottom: 1rem !important;
|
| 4733 |
+
}
|
| 4734 |
+
|
| 4735 |
+
.mb-xxl-4 {
|
| 4736 |
+
margin-bottom: 1.5rem !important;
|
| 4737 |
+
}
|
| 4738 |
+
|
| 4739 |
+
.mb-xxl-5 {
|
| 4740 |
+
margin-bottom: 3rem !important;
|
| 4741 |
+
}
|
| 4742 |
+
|
| 4743 |
+
.mb-xxl-auto {
|
| 4744 |
+
margin-bottom: auto !important;
|
| 4745 |
+
}
|
| 4746 |
+
|
| 4747 |
+
.ms-xxl-0 {
|
| 4748 |
+
margin-left: 0 !important;
|
| 4749 |
+
}
|
| 4750 |
+
|
| 4751 |
+
.ms-xxl-1 {
|
| 4752 |
+
margin-left: 0.25rem !important;
|
| 4753 |
+
}
|
| 4754 |
+
|
| 4755 |
+
.ms-xxl-2 {
|
| 4756 |
+
margin-left: 0.5rem !important;
|
| 4757 |
+
}
|
| 4758 |
+
|
| 4759 |
+
.ms-xxl-3 {
|
| 4760 |
+
margin-left: 1rem !important;
|
| 4761 |
+
}
|
| 4762 |
+
|
| 4763 |
+
.ms-xxl-4 {
|
| 4764 |
+
margin-left: 1.5rem !important;
|
| 4765 |
+
}
|
| 4766 |
+
|
| 4767 |
+
.ms-xxl-5 {
|
| 4768 |
+
margin-left: 3rem !important;
|
| 4769 |
+
}
|
| 4770 |
+
|
| 4771 |
+
.ms-xxl-auto {
|
| 4772 |
+
margin-left: auto !important;
|
| 4773 |
+
}
|
| 4774 |
+
|
| 4775 |
+
.p-xxl-0 {
|
| 4776 |
+
padding: 0 !important;
|
| 4777 |
+
}
|
| 4778 |
+
|
| 4779 |
+
.p-xxl-1 {
|
| 4780 |
+
padding: 0.25rem !important;
|
| 4781 |
+
}
|
| 4782 |
+
|
| 4783 |
+
.p-xxl-2 {
|
| 4784 |
+
padding: 0.5rem !important;
|
| 4785 |
+
}
|
| 4786 |
+
|
| 4787 |
+
.p-xxl-3 {
|
| 4788 |
+
padding: 1rem !important;
|
| 4789 |
+
}
|
| 4790 |
+
|
| 4791 |
+
.p-xxl-4 {
|
| 4792 |
+
padding: 1.5rem !important;
|
| 4793 |
+
}
|
| 4794 |
+
|
| 4795 |
+
.p-xxl-5 {
|
| 4796 |
+
padding: 3rem !important;
|
| 4797 |
+
}
|
| 4798 |
+
|
| 4799 |
+
.px-xxl-0 {
|
| 4800 |
+
padding-right: 0 !important;
|
| 4801 |
+
padding-left: 0 !important;
|
| 4802 |
+
}
|
| 4803 |
+
|
| 4804 |
+
.px-xxl-1 {
|
| 4805 |
+
padding-right: 0.25rem !important;
|
| 4806 |
+
padding-left: 0.25rem !important;
|
| 4807 |
+
}
|
| 4808 |
+
|
| 4809 |
+
.px-xxl-2 {
|
| 4810 |
+
padding-right: 0.5rem !important;
|
| 4811 |
+
padding-left: 0.5rem !important;
|
| 4812 |
+
}
|
| 4813 |
+
|
| 4814 |
+
.px-xxl-3 {
|
| 4815 |
+
padding-right: 1rem !important;
|
| 4816 |
+
padding-left: 1rem !important;
|
| 4817 |
+
}
|
| 4818 |
+
|
| 4819 |
+
.px-xxl-4 {
|
| 4820 |
+
padding-right: 1.5rem !important;
|
| 4821 |
+
padding-left: 1.5rem !important;
|
| 4822 |
+
}
|
| 4823 |
+
|
| 4824 |
+
.px-xxl-5 {
|
| 4825 |
+
padding-right: 3rem !important;
|
| 4826 |
+
padding-left: 3rem !important;
|
| 4827 |
+
}
|
| 4828 |
+
|
| 4829 |
+
.py-xxl-0 {
|
| 4830 |
+
padding-top: 0 !important;
|
| 4831 |
+
padding-bottom: 0 !important;
|
| 4832 |
+
}
|
| 4833 |
+
|
| 4834 |
+
.py-xxl-1 {
|
| 4835 |
+
padding-top: 0.25rem !important;
|
| 4836 |
+
padding-bottom: 0.25rem !important;
|
| 4837 |
+
}
|
| 4838 |
+
|
| 4839 |
+
.py-xxl-2 {
|
| 4840 |
+
padding-top: 0.5rem !important;
|
| 4841 |
+
padding-bottom: 0.5rem !important;
|
| 4842 |
+
}
|
| 4843 |
+
|
| 4844 |
+
.py-xxl-3 {
|
| 4845 |
+
padding-top: 1rem !important;
|
| 4846 |
+
padding-bottom: 1rem !important;
|
| 4847 |
+
}
|
| 4848 |
+
|
| 4849 |
+
.py-xxl-4 {
|
| 4850 |
+
padding-top: 1.5rem !important;
|
| 4851 |
+
padding-bottom: 1.5rem !important;
|
| 4852 |
+
}
|
| 4853 |
+
|
| 4854 |
+
.py-xxl-5 {
|
| 4855 |
+
padding-top: 3rem !important;
|
| 4856 |
+
padding-bottom: 3rem !important;
|
| 4857 |
+
}
|
| 4858 |
+
|
| 4859 |
+
.pt-xxl-0 {
|
| 4860 |
+
padding-top: 0 !important;
|
| 4861 |
+
}
|
| 4862 |
+
|
| 4863 |
+
.pt-xxl-1 {
|
| 4864 |
+
padding-top: 0.25rem !important;
|
| 4865 |
+
}
|
| 4866 |
+
|
| 4867 |
+
.pt-xxl-2 {
|
| 4868 |
+
padding-top: 0.5rem !important;
|
| 4869 |
+
}
|
| 4870 |
+
|
| 4871 |
+
.pt-xxl-3 {
|
| 4872 |
+
padding-top: 1rem !important;
|
| 4873 |
+
}
|
| 4874 |
+
|
| 4875 |
+
.pt-xxl-4 {
|
| 4876 |
+
padding-top: 1.5rem !important;
|
| 4877 |
+
}
|
| 4878 |
+
|
| 4879 |
+
.pt-xxl-5 {
|
| 4880 |
+
padding-top: 3rem !important;
|
| 4881 |
+
}
|
| 4882 |
+
|
| 4883 |
+
.pe-xxl-0 {
|
| 4884 |
+
padding-right: 0 !important;
|
| 4885 |
+
}
|
| 4886 |
+
|
| 4887 |
+
.pe-xxl-1 {
|
| 4888 |
+
padding-right: 0.25rem !important;
|
| 4889 |
+
}
|
| 4890 |
+
|
| 4891 |
+
.pe-xxl-2 {
|
| 4892 |
+
padding-right: 0.5rem !important;
|
| 4893 |
+
}
|
| 4894 |
+
|
| 4895 |
+
.pe-xxl-3 {
|
| 4896 |
+
padding-right: 1rem !important;
|
| 4897 |
+
}
|
| 4898 |
+
|
| 4899 |
+
.pe-xxl-4 {
|
| 4900 |
+
padding-right: 1.5rem !important;
|
| 4901 |
+
}
|
| 4902 |
+
|
| 4903 |
+
.pe-xxl-5 {
|
| 4904 |
+
padding-right: 3rem !important;
|
| 4905 |
+
}
|
| 4906 |
+
|
| 4907 |
+
.pb-xxl-0 {
|
| 4908 |
+
padding-bottom: 0 !important;
|
| 4909 |
+
}
|
| 4910 |
+
|
| 4911 |
+
.pb-xxl-1 {
|
| 4912 |
+
padding-bottom: 0.25rem !important;
|
| 4913 |
+
}
|
| 4914 |
+
|
| 4915 |
+
.pb-xxl-2 {
|
| 4916 |
+
padding-bottom: 0.5rem !important;
|
| 4917 |
+
}
|
| 4918 |
+
|
| 4919 |
+
.pb-xxl-3 {
|
| 4920 |
+
padding-bottom: 1rem !important;
|
| 4921 |
+
}
|
| 4922 |
+
|
| 4923 |
+
.pb-xxl-4 {
|
| 4924 |
+
padding-bottom: 1.5rem !important;
|
| 4925 |
+
}
|
| 4926 |
+
|
| 4927 |
+
.pb-xxl-5 {
|
| 4928 |
+
padding-bottom: 3rem !important;
|
| 4929 |
+
}
|
| 4930 |
+
|
| 4931 |
+
.ps-xxl-0 {
|
| 4932 |
+
padding-left: 0 !important;
|
| 4933 |
+
}
|
| 4934 |
+
|
| 4935 |
+
.ps-xxl-1 {
|
| 4936 |
+
padding-left: 0.25rem !important;
|
| 4937 |
+
}
|
| 4938 |
+
|
| 4939 |
+
.ps-xxl-2 {
|
| 4940 |
+
padding-left: 0.5rem !important;
|
| 4941 |
+
}
|
| 4942 |
+
|
| 4943 |
+
.ps-xxl-3 {
|
| 4944 |
+
padding-left: 1rem !important;
|
| 4945 |
+
}
|
| 4946 |
+
|
| 4947 |
+
.ps-xxl-4 {
|
| 4948 |
+
padding-left: 1.5rem !important;
|
| 4949 |
+
}
|
| 4950 |
+
|
| 4951 |
+
.ps-xxl-5 {
|
| 4952 |
+
padding-left: 3rem !important;
|
| 4953 |
+
}
|
| 4954 |
+
}
|
| 4955 |
+
@media print {
|
| 4956 |
+
.d-print-inline {
|
| 4957 |
+
display: inline !important;
|
| 4958 |
+
}
|
| 4959 |
+
|
| 4960 |
+
.d-print-inline-block {
|
| 4961 |
+
display: inline-block !important;
|
| 4962 |
+
}
|
| 4963 |
+
|
| 4964 |
+
.d-print-block {
|
| 4965 |
+
display: block !important;
|
| 4966 |
+
}
|
| 4967 |
+
|
| 4968 |
+
.d-print-grid {
|
| 4969 |
+
display: grid !important;
|
| 4970 |
+
}
|
| 4971 |
+
|
| 4972 |
+
.d-print-table {
|
| 4973 |
+
display: table !important;
|
| 4974 |
+
}
|
| 4975 |
+
|
| 4976 |
+
.d-print-table-row {
|
| 4977 |
+
display: table-row !important;
|
| 4978 |
+
}
|
| 4979 |
+
|
| 4980 |
+
.d-print-table-cell {
|
| 4981 |
+
display: table-cell !important;
|
| 4982 |
+
}
|
| 4983 |
+
|
| 4984 |
+
.d-print-flex {
|
| 4985 |
+
display: flex !important;
|
| 4986 |
+
}
|
| 4987 |
+
|
| 4988 |
+
.d-print-inline-flex {
|
| 4989 |
+
display: inline-flex !important;
|
| 4990 |
+
}
|
| 4991 |
+
|
| 4992 |
+
.d-print-none {
|
| 4993 |
+
display: none !important;
|
| 4994 |
+
}
|
| 4995 |
+
}
|
| 4996 |
+
|
| 4997 |
+
/*# sourceMappingURL=bootstrap-grid.css.map */
|
static/vendor/bootstrap/css/bootstrap-grid.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/vendor/bootstrap/css/bootstrap-grid.min.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Grid v5.0.1 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2021 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2021 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
*/.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);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}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
|
| 7 |
+
/*# sourceMappingURL=bootstrap-grid.min.css.map */
|
static/vendor/bootstrap/css/bootstrap-grid.min.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/vendor/bootstrap/css/bootstrap-grid.rtl.css
ADDED
|
@@ -0,0 +1,4996 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Grid v5.0.1 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2021 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2021 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
*/
|
| 7 |
+
.container,
|
| 8 |
+
.container-fluid,
|
| 9 |
+
.container-xxl,
|
| 10 |
+
.container-xl,
|
| 11 |
+
.container-lg,
|
| 12 |
+
.container-md,
|
| 13 |
+
.container-sm {
|
| 14 |
+
width: 100%;
|
| 15 |
+
padding-left: var(--bs-gutter-x, 0.75rem);
|
| 16 |
+
padding-right: var(--bs-gutter-x, 0.75rem);
|
| 17 |
+
margin-left: auto;
|
| 18 |
+
margin-right: auto;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
@media (min-width: 576px) {
|
| 22 |
+
.container-sm, .container {
|
| 23 |
+
max-width: 540px;
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
@media (min-width: 768px) {
|
| 27 |
+
.container-md, .container-sm, .container {
|
| 28 |
+
max-width: 720px;
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
@media (min-width: 992px) {
|
| 32 |
+
.container-lg, .container-md, .container-sm, .container {
|
| 33 |
+
max-width: 960px;
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
@media (min-width: 1200px) {
|
| 37 |
+
.container-xl, .container-lg, .container-md, .container-sm, .container {
|
| 38 |
+
max-width: 1140px;
|
| 39 |
+
}
|
| 40 |
+
}
|
| 41 |
+
@media (min-width: 1400px) {
|
| 42 |
+
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
|
| 43 |
+
max-width: 1320px;
|
| 44 |
+
}
|
| 45 |
+
}
|
| 46 |
+
.row {
|
| 47 |
+
--bs-gutter-x: 1.5rem;
|
| 48 |
+
--bs-gutter-y: 0;
|
| 49 |
+
display: flex;
|
| 50 |
+
flex-wrap: wrap;
|
| 51 |
+
margin-top: calc(var(--bs-gutter-y) * -1);
|
| 52 |
+
margin-left: calc(var(--bs-gutter-x) / -2);
|
| 53 |
+
margin-right: calc(var(--bs-gutter-x) / -2);
|
| 54 |
+
}
|
| 55 |
+
.row > * {
|
| 56 |
+
box-sizing: border-box;
|
| 57 |
+
flex-shrink: 0;
|
| 58 |
+
width: 100%;
|
| 59 |
+
max-width: 100%;
|
| 60 |
+
padding-left: calc(var(--bs-gutter-x) / 2);
|
| 61 |
+
padding-right: calc(var(--bs-gutter-x) / 2);
|
| 62 |
+
margin-top: var(--bs-gutter-y);
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.col {
|
| 66 |
+
flex: 1 0 0%;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.row-cols-auto > * {
|
| 70 |
+
flex: 0 0 auto;
|
| 71 |
+
width: auto;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
.row-cols-1 > * {
|
| 75 |
+
flex: 0 0 auto;
|
| 76 |
+
width: 100%;
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
.row-cols-2 > * {
|
| 80 |
+
flex: 0 0 auto;
|
| 81 |
+
width: 50%;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
.row-cols-3 > * {
|
| 85 |
+
flex: 0 0 auto;
|
| 86 |
+
width: 33.3333333333%;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
.row-cols-4 > * {
|
| 90 |
+
flex: 0 0 auto;
|
| 91 |
+
width: 25%;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
.row-cols-5 > * {
|
| 95 |
+
flex: 0 0 auto;
|
| 96 |
+
width: 20%;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.row-cols-6 > * {
|
| 100 |
+
flex: 0 0 auto;
|
| 101 |
+
width: 16.6666666667%;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
.col-auto {
|
| 105 |
+
flex: 0 0 auto;
|
| 106 |
+
width: auto;
|
| 107 |
+
}
|
| 108 |
+
|
| 109 |
+
.col-1 {
|
| 110 |
+
flex: 0 0 auto;
|
| 111 |
+
width: 8.3333333333%;
|
| 112 |
+
}
|
| 113 |
+
|
| 114 |
+
.col-2 {
|
| 115 |
+
flex: 0 0 auto;
|
| 116 |
+
width: 16.6666666667%;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
.col-3 {
|
| 120 |
+
flex: 0 0 auto;
|
| 121 |
+
width: 25%;
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
.col-4 {
|
| 125 |
+
flex: 0 0 auto;
|
| 126 |
+
width: 33.3333333333%;
|
| 127 |
+
}
|
| 128 |
+
|
| 129 |
+
.col-5 {
|
| 130 |
+
flex: 0 0 auto;
|
| 131 |
+
width: 41.6666666667%;
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
.col-6 {
|
| 135 |
+
flex: 0 0 auto;
|
| 136 |
+
width: 50%;
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
.col-7 {
|
| 140 |
+
flex: 0 0 auto;
|
| 141 |
+
width: 58.3333333333%;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
.col-8 {
|
| 145 |
+
flex: 0 0 auto;
|
| 146 |
+
width: 66.6666666667%;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
.col-9 {
|
| 150 |
+
flex: 0 0 auto;
|
| 151 |
+
width: 75%;
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
.col-10 {
|
| 155 |
+
flex: 0 0 auto;
|
| 156 |
+
width: 83.3333333333%;
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
+
.col-11 {
|
| 160 |
+
flex: 0 0 auto;
|
| 161 |
+
width: 91.6666666667%;
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
+
.col-12 {
|
| 165 |
+
flex: 0 0 auto;
|
| 166 |
+
width: 100%;
|
| 167 |
+
}
|
| 168 |
+
|
| 169 |
+
.offset-1 {
|
| 170 |
+
margin-right: 8.3333333333%;
|
| 171 |
+
}
|
| 172 |
+
|
| 173 |
+
.offset-2 {
|
| 174 |
+
margin-right: 16.6666666667%;
|
| 175 |
+
}
|
| 176 |
+
|
| 177 |
+
.offset-3 {
|
| 178 |
+
margin-right: 25%;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.offset-4 {
|
| 182 |
+
margin-right: 33.3333333333%;
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
.offset-5 {
|
| 186 |
+
margin-right: 41.6666666667%;
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
+
.offset-6 {
|
| 190 |
+
margin-right: 50%;
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
.offset-7 {
|
| 194 |
+
margin-right: 58.3333333333%;
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
.offset-8 {
|
| 198 |
+
margin-right: 66.6666666667%;
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
.offset-9 {
|
| 202 |
+
margin-right: 75%;
|
| 203 |
+
}
|
| 204 |
+
|
| 205 |
+
.offset-10 {
|
| 206 |
+
margin-right: 83.3333333333%;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
.offset-11 {
|
| 210 |
+
margin-right: 91.6666666667%;
|
| 211 |
+
}
|
| 212 |
+
|
| 213 |
+
.g-0,
|
| 214 |
+
.gx-0 {
|
| 215 |
+
--bs-gutter-x: 0;
|
| 216 |
+
}
|
| 217 |
+
|
| 218 |
+
.g-0,
|
| 219 |
+
.gy-0 {
|
| 220 |
+
--bs-gutter-y: 0;
|
| 221 |
+
}
|
| 222 |
+
|
| 223 |
+
.g-1,
|
| 224 |
+
.gx-1 {
|
| 225 |
+
--bs-gutter-x: 0.25rem;
|
| 226 |
+
}
|
| 227 |
+
|
| 228 |
+
.g-1,
|
| 229 |
+
.gy-1 {
|
| 230 |
+
--bs-gutter-y: 0.25rem;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
.g-2,
|
| 234 |
+
.gx-2 {
|
| 235 |
+
--bs-gutter-x: 0.5rem;
|
| 236 |
+
}
|
| 237 |
+
|
| 238 |
+
.g-2,
|
| 239 |
+
.gy-2 {
|
| 240 |
+
--bs-gutter-y: 0.5rem;
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
.g-3,
|
| 244 |
+
.gx-3 {
|
| 245 |
+
--bs-gutter-x: 1rem;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
.g-3,
|
| 249 |
+
.gy-3 {
|
| 250 |
+
--bs-gutter-y: 1rem;
|
| 251 |
+
}
|
| 252 |
+
|
| 253 |
+
.g-4,
|
| 254 |
+
.gx-4 {
|
| 255 |
+
--bs-gutter-x: 1.5rem;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.g-4,
|
| 259 |
+
.gy-4 {
|
| 260 |
+
--bs-gutter-y: 1.5rem;
|
| 261 |
+
}
|
| 262 |
+
|
| 263 |
+
.g-5,
|
| 264 |
+
.gx-5 {
|
| 265 |
+
--bs-gutter-x: 3rem;
|
| 266 |
+
}
|
| 267 |
+
|
| 268 |
+
.g-5,
|
| 269 |
+
.gy-5 {
|
| 270 |
+
--bs-gutter-y: 3rem;
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
@media (min-width: 576px) {
|
| 274 |
+
.col-sm {
|
| 275 |
+
flex: 1 0 0%;
|
| 276 |
+
}
|
| 277 |
+
|
| 278 |
+
.row-cols-sm-auto > * {
|
| 279 |
+
flex: 0 0 auto;
|
| 280 |
+
width: auto;
|
| 281 |
+
}
|
| 282 |
+
|
| 283 |
+
.row-cols-sm-1 > * {
|
| 284 |
+
flex: 0 0 auto;
|
| 285 |
+
width: 100%;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
.row-cols-sm-2 > * {
|
| 289 |
+
flex: 0 0 auto;
|
| 290 |
+
width: 50%;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
.row-cols-sm-3 > * {
|
| 294 |
+
flex: 0 0 auto;
|
| 295 |
+
width: 33.3333333333%;
|
| 296 |
+
}
|
| 297 |
+
|
| 298 |
+
.row-cols-sm-4 > * {
|
| 299 |
+
flex: 0 0 auto;
|
| 300 |
+
width: 25%;
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
+
.row-cols-sm-5 > * {
|
| 304 |
+
flex: 0 0 auto;
|
| 305 |
+
width: 20%;
|
| 306 |
+
}
|
| 307 |
+
|
| 308 |
+
.row-cols-sm-6 > * {
|
| 309 |
+
flex: 0 0 auto;
|
| 310 |
+
width: 16.6666666667%;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
.col-sm-auto {
|
| 314 |
+
flex: 0 0 auto;
|
| 315 |
+
width: auto;
|
| 316 |
+
}
|
| 317 |
+
|
| 318 |
+
.col-sm-1 {
|
| 319 |
+
flex: 0 0 auto;
|
| 320 |
+
width: 8.3333333333%;
|
| 321 |
+
}
|
| 322 |
+
|
| 323 |
+
.col-sm-2 {
|
| 324 |
+
flex: 0 0 auto;
|
| 325 |
+
width: 16.6666666667%;
|
| 326 |
+
}
|
| 327 |
+
|
| 328 |
+
.col-sm-3 {
|
| 329 |
+
flex: 0 0 auto;
|
| 330 |
+
width: 25%;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
.col-sm-4 {
|
| 334 |
+
flex: 0 0 auto;
|
| 335 |
+
width: 33.3333333333%;
|
| 336 |
+
}
|
| 337 |
+
|
| 338 |
+
.col-sm-5 {
|
| 339 |
+
flex: 0 0 auto;
|
| 340 |
+
width: 41.6666666667%;
|
| 341 |
+
}
|
| 342 |
+
|
| 343 |
+
.col-sm-6 {
|
| 344 |
+
flex: 0 0 auto;
|
| 345 |
+
width: 50%;
|
| 346 |
+
}
|
| 347 |
+
|
| 348 |
+
.col-sm-7 {
|
| 349 |
+
flex: 0 0 auto;
|
| 350 |
+
width: 58.3333333333%;
|
| 351 |
+
}
|
| 352 |
+
|
| 353 |
+
.col-sm-8 {
|
| 354 |
+
flex: 0 0 auto;
|
| 355 |
+
width: 66.6666666667%;
|
| 356 |
+
}
|
| 357 |
+
|
| 358 |
+
.col-sm-9 {
|
| 359 |
+
flex: 0 0 auto;
|
| 360 |
+
width: 75%;
|
| 361 |
+
}
|
| 362 |
+
|
| 363 |
+
.col-sm-10 {
|
| 364 |
+
flex: 0 0 auto;
|
| 365 |
+
width: 83.3333333333%;
|
| 366 |
+
}
|
| 367 |
+
|
| 368 |
+
.col-sm-11 {
|
| 369 |
+
flex: 0 0 auto;
|
| 370 |
+
width: 91.6666666667%;
|
| 371 |
+
}
|
| 372 |
+
|
| 373 |
+
.col-sm-12 {
|
| 374 |
+
flex: 0 0 auto;
|
| 375 |
+
width: 100%;
|
| 376 |
+
}
|
| 377 |
+
|
| 378 |
+
.offset-sm-0 {
|
| 379 |
+
margin-right: 0;
|
| 380 |
+
}
|
| 381 |
+
|
| 382 |
+
.offset-sm-1 {
|
| 383 |
+
margin-right: 8.3333333333%;
|
| 384 |
+
}
|
| 385 |
+
|
| 386 |
+
.offset-sm-2 {
|
| 387 |
+
margin-right: 16.6666666667%;
|
| 388 |
+
}
|
| 389 |
+
|
| 390 |
+
.offset-sm-3 {
|
| 391 |
+
margin-right: 25%;
|
| 392 |
+
}
|
| 393 |
+
|
| 394 |
+
.offset-sm-4 {
|
| 395 |
+
margin-right: 33.3333333333%;
|
| 396 |
+
}
|
| 397 |
+
|
| 398 |
+
.offset-sm-5 {
|
| 399 |
+
margin-right: 41.6666666667%;
|
| 400 |
+
}
|
| 401 |
+
|
| 402 |
+
.offset-sm-6 {
|
| 403 |
+
margin-right: 50%;
|
| 404 |
+
}
|
| 405 |
+
|
| 406 |
+
.offset-sm-7 {
|
| 407 |
+
margin-right: 58.3333333333%;
|
| 408 |
+
}
|
| 409 |
+
|
| 410 |
+
.offset-sm-8 {
|
| 411 |
+
margin-right: 66.6666666667%;
|
| 412 |
+
}
|
| 413 |
+
|
| 414 |
+
.offset-sm-9 {
|
| 415 |
+
margin-right: 75%;
|
| 416 |
+
}
|
| 417 |
+
|
| 418 |
+
.offset-sm-10 {
|
| 419 |
+
margin-right: 83.3333333333%;
|
| 420 |
+
}
|
| 421 |
+
|
| 422 |
+
.offset-sm-11 {
|
| 423 |
+
margin-right: 91.6666666667%;
|
| 424 |
+
}
|
| 425 |
+
|
| 426 |
+
.g-sm-0,
|
| 427 |
+
.gx-sm-0 {
|
| 428 |
+
--bs-gutter-x: 0;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
.g-sm-0,
|
| 432 |
+
.gy-sm-0 {
|
| 433 |
+
--bs-gutter-y: 0;
|
| 434 |
+
}
|
| 435 |
+
|
| 436 |
+
.g-sm-1,
|
| 437 |
+
.gx-sm-1 {
|
| 438 |
+
--bs-gutter-x: 0.25rem;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.g-sm-1,
|
| 442 |
+
.gy-sm-1 {
|
| 443 |
+
--bs-gutter-y: 0.25rem;
|
| 444 |
+
}
|
| 445 |
+
|
| 446 |
+
.g-sm-2,
|
| 447 |
+
.gx-sm-2 {
|
| 448 |
+
--bs-gutter-x: 0.5rem;
|
| 449 |
+
}
|
| 450 |
+
|
| 451 |
+
.g-sm-2,
|
| 452 |
+
.gy-sm-2 {
|
| 453 |
+
--bs-gutter-y: 0.5rem;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
.g-sm-3,
|
| 457 |
+
.gx-sm-3 {
|
| 458 |
+
--bs-gutter-x: 1rem;
|
| 459 |
+
}
|
| 460 |
+
|
| 461 |
+
.g-sm-3,
|
| 462 |
+
.gy-sm-3 {
|
| 463 |
+
--bs-gutter-y: 1rem;
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.g-sm-4,
|
| 467 |
+
.gx-sm-4 {
|
| 468 |
+
--bs-gutter-x: 1.5rem;
|
| 469 |
+
}
|
| 470 |
+
|
| 471 |
+
.g-sm-4,
|
| 472 |
+
.gy-sm-4 {
|
| 473 |
+
--bs-gutter-y: 1.5rem;
|
| 474 |
+
}
|
| 475 |
+
|
| 476 |
+
.g-sm-5,
|
| 477 |
+
.gx-sm-5 {
|
| 478 |
+
--bs-gutter-x: 3rem;
|
| 479 |
+
}
|
| 480 |
+
|
| 481 |
+
.g-sm-5,
|
| 482 |
+
.gy-sm-5 {
|
| 483 |
+
--bs-gutter-y: 3rem;
|
| 484 |
+
}
|
| 485 |
+
}
|
| 486 |
+
@media (min-width: 768px) {
|
| 487 |
+
.col-md {
|
| 488 |
+
flex: 1 0 0%;
|
| 489 |
+
}
|
| 490 |
+
|
| 491 |
+
.row-cols-md-auto > * {
|
| 492 |
+
flex: 0 0 auto;
|
| 493 |
+
width: auto;
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
.row-cols-md-1 > * {
|
| 497 |
+
flex: 0 0 auto;
|
| 498 |
+
width: 100%;
|
| 499 |
+
}
|
| 500 |
+
|
| 501 |
+
.row-cols-md-2 > * {
|
| 502 |
+
flex: 0 0 auto;
|
| 503 |
+
width: 50%;
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
.row-cols-md-3 > * {
|
| 507 |
+
flex: 0 0 auto;
|
| 508 |
+
width: 33.3333333333%;
|
| 509 |
+
}
|
| 510 |
+
|
| 511 |
+
.row-cols-md-4 > * {
|
| 512 |
+
flex: 0 0 auto;
|
| 513 |
+
width: 25%;
|
| 514 |
+
}
|
| 515 |
+
|
| 516 |
+
.row-cols-md-5 > * {
|
| 517 |
+
flex: 0 0 auto;
|
| 518 |
+
width: 20%;
|
| 519 |
+
}
|
| 520 |
+
|
| 521 |
+
.row-cols-md-6 > * {
|
| 522 |
+
flex: 0 0 auto;
|
| 523 |
+
width: 16.6666666667%;
|
| 524 |
+
}
|
| 525 |
+
|
| 526 |
+
.col-md-auto {
|
| 527 |
+
flex: 0 0 auto;
|
| 528 |
+
width: auto;
|
| 529 |
+
}
|
| 530 |
+
|
| 531 |
+
.col-md-1 {
|
| 532 |
+
flex: 0 0 auto;
|
| 533 |
+
width: 8.3333333333%;
|
| 534 |
+
}
|
| 535 |
+
|
| 536 |
+
.col-md-2 {
|
| 537 |
+
flex: 0 0 auto;
|
| 538 |
+
width: 16.6666666667%;
|
| 539 |
+
}
|
| 540 |
+
|
| 541 |
+
.col-md-3 {
|
| 542 |
+
flex: 0 0 auto;
|
| 543 |
+
width: 25%;
|
| 544 |
+
}
|
| 545 |
+
|
| 546 |
+
.col-md-4 {
|
| 547 |
+
flex: 0 0 auto;
|
| 548 |
+
width: 33.3333333333%;
|
| 549 |
+
}
|
| 550 |
+
|
| 551 |
+
.col-md-5 {
|
| 552 |
+
flex: 0 0 auto;
|
| 553 |
+
width: 41.6666666667%;
|
| 554 |
+
}
|
| 555 |
+
|
| 556 |
+
.col-md-6 {
|
| 557 |
+
flex: 0 0 auto;
|
| 558 |
+
width: 50%;
|
| 559 |
+
}
|
| 560 |
+
|
| 561 |
+
.col-md-7 {
|
| 562 |
+
flex: 0 0 auto;
|
| 563 |
+
width: 58.3333333333%;
|
| 564 |
+
}
|
| 565 |
+
|
| 566 |
+
.col-md-8 {
|
| 567 |
+
flex: 0 0 auto;
|
| 568 |
+
width: 66.6666666667%;
|
| 569 |
+
}
|
| 570 |
+
|
| 571 |
+
.col-md-9 {
|
| 572 |
+
flex: 0 0 auto;
|
| 573 |
+
width: 75%;
|
| 574 |
+
}
|
| 575 |
+
|
| 576 |
+
.col-md-10 {
|
| 577 |
+
flex: 0 0 auto;
|
| 578 |
+
width: 83.3333333333%;
|
| 579 |
+
}
|
| 580 |
+
|
| 581 |
+
.col-md-11 {
|
| 582 |
+
flex: 0 0 auto;
|
| 583 |
+
width: 91.6666666667%;
|
| 584 |
+
}
|
| 585 |
+
|
| 586 |
+
.col-md-12 {
|
| 587 |
+
flex: 0 0 auto;
|
| 588 |
+
width: 100%;
|
| 589 |
+
}
|
| 590 |
+
|
| 591 |
+
.offset-md-0 {
|
| 592 |
+
margin-right: 0;
|
| 593 |
+
}
|
| 594 |
+
|
| 595 |
+
.offset-md-1 {
|
| 596 |
+
margin-right: 8.3333333333%;
|
| 597 |
+
}
|
| 598 |
+
|
| 599 |
+
.offset-md-2 {
|
| 600 |
+
margin-right: 16.6666666667%;
|
| 601 |
+
}
|
| 602 |
+
|
| 603 |
+
.offset-md-3 {
|
| 604 |
+
margin-right: 25%;
|
| 605 |
+
}
|
| 606 |
+
|
| 607 |
+
.offset-md-4 {
|
| 608 |
+
margin-right: 33.3333333333%;
|
| 609 |
+
}
|
| 610 |
+
|
| 611 |
+
.offset-md-5 {
|
| 612 |
+
margin-right: 41.6666666667%;
|
| 613 |
+
}
|
| 614 |
+
|
| 615 |
+
.offset-md-6 {
|
| 616 |
+
margin-right: 50%;
|
| 617 |
+
}
|
| 618 |
+
|
| 619 |
+
.offset-md-7 {
|
| 620 |
+
margin-right: 58.3333333333%;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
.offset-md-8 {
|
| 624 |
+
margin-right: 66.6666666667%;
|
| 625 |
+
}
|
| 626 |
+
|
| 627 |
+
.offset-md-9 {
|
| 628 |
+
margin-right: 75%;
|
| 629 |
+
}
|
| 630 |
+
|
| 631 |
+
.offset-md-10 {
|
| 632 |
+
margin-right: 83.3333333333%;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
.offset-md-11 {
|
| 636 |
+
margin-right: 91.6666666667%;
|
| 637 |
+
}
|
| 638 |
+
|
| 639 |
+
.g-md-0,
|
| 640 |
+
.gx-md-0 {
|
| 641 |
+
--bs-gutter-x: 0;
|
| 642 |
+
}
|
| 643 |
+
|
| 644 |
+
.g-md-0,
|
| 645 |
+
.gy-md-0 {
|
| 646 |
+
--bs-gutter-y: 0;
|
| 647 |
+
}
|
| 648 |
+
|
| 649 |
+
.g-md-1,
|
| 650 |
+
.gx-md-1 {
|
| 651 |
+
--bs-gutter-x: 0.25rem;
|
| 652 |
+
}
|
| 653 |
+
|
| 654 |
+
.g-md-1,
|
| 655 |
+
.gy-md-1 {
|
| 656 |
+
--bs-gutter-y: 0.25rem;
|
| 657 |
+
}
|
| 658 |
+
|
| 659 |
+
.g-md-2,
|
| 660 |
+
.gx-md-2 {
|
| 661 |
+
--bs-gutter-x: 0.5rem;
|
| 662 |
+
}
|
| 663 |
+
|
| 664 |
+
.g-md-2,
|
| 665 |
+
.gy-md-2 {
|
| 666 |
+
--bs-gutter-y: 0.5rem;
|
| 667 |
+
}
|
| 668 |
+
|
| 669 |
+
.g-md-3,
|
| 670 |
+
.gx-md-3 {
|
| 671 |
+
--bs-gutter-x: 1rem;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
.g-md-3,
|
| 675 |
+
.gy-md-3 {
|
| 676 |
+
--bs-gutter-y: 1rem;
|
| 677 |
+
}
|
| 678 |
+
|
| 679 |
+
.g-md-4,
|
| 680 |
+
.gx-md-4 {
|
| 681 |
+
--bs-gutter-x: 1.5rem;
|
| 682 |
+
}
|
| 683 |
+
|
| 684 |
+
.g-md-4,
|
| 685 |
+
.gy-md-4 {
|
| 686 |
+
--bs-gutter-y: 1.5rem;
|
| 687 |
+
}
|
| 688 |
+
|
| 689 |
+
.g-md-5,
|
| 690 |
+
.gx-md-5 {
|
| 691 |
+
--bs-gutter-x: 3rem;
|
| 692 |
+
}
|
| 693 |
+
|
| 694 |
+
.g-md-5,
|
| 695 |
+
.gy-md-5 {
|
| 696 |
+
--bs-gutter-y: 3rem;
|
| 697 |
+
}
|
| 698 |
+
}
|
| 699 |
+
@media (min-width: 992px) {
|
| 700 |
+
.col-lg {
|
| 701 |
+
flex: 1 0 0%;
|
| 702 |
+
}
|
| 703 |
+
|
| 704 |
+
.row-cols-lg-auto > * {
|
| 705 |
+
flex: 0 0 auto;
|
| 706 |
+
width: auto;
|
| 707 |
+
}
|
| 708 |
+
|
| 709 |
+
.row-cols-lg-1 > * {
|
| 710 |
+
flex: 0 0 auto;
|
| 711 |
+
width: 100%;
|
| 712 |
+
}
|
| 713 |
+
|
| 714 |
+
.row-cols-lg-2 > * {
|
| 715 |
+
flex: 0 0 auto;
|
| 716 |
+
width: 50%;
|
| 717 |
+
}
|
| 718 |
+
|
| 719 |
+
.row-cols-lg-3 > * {
|
| 720 |
+
flex: 0 0 auto;
|
| 721 |
+
width: 33.3333333333%;
|
| 722 |
+
}
|
| 723 |
+
|
| 724 |
+
.row-cols-lg-4 > * {
|
| 725 |
+
flex: 0 0 auto;
|
| 726 |
+
width: 25%;
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
.row-cols-lg-5 > * {
|
| 730 |
+
flex: 0 0 auto;
|
| 731 |
+
width: 20%;
|
| 732 |
+
}
|
| 733 |
+
|
| 734 |
+
.row-cols-lg-6 > * {
|
| 735 |
+
flex: 0 0 auto;
|
| 736 |
+
width: 16.6666666667%;
|
| 737 |
+
}
|
| 738 |
+
|
| 739 |
+
.col-lg-auto {
|
| 740 |
+
flex: 0 0 auto;
|
| 741 |
+
width: auto;
|
| 742 |
+
}
|
| 743 |
+
|
| 744 |
+
.col-lg-1 {
|
| 745 |
+
flex: 0 0 auto;
|
| 746 |
+
width: 8.3333333333%;
|
| 747 |
+
}
|
| 748 |
+
|
| 749 |
+
.col-lg-2 {
|
| 750 |
+
flex: 0 0 auto;
|
| 751 |
+
width: 16.6666666667%;
|
| 752 |
+
}
|
| 753 |
+
|
| 754 |
+
.col-lg-3 {
|
| 755 |
+
flex: 0 0 auto;
|
| 756 |
+
width: 25%;
|
| 757 |
+
}
|
| 758 |
+
|
| 759 |
+
.col-lg-4 {
|
| 760 |
+
flex: 0 0 auto;
|
| 761 |
+
width: 33.3333333333%;
|
| 762 |
+
}
|
| 763 |
+
|
| 764 |
+
.col-lg-5 {
|
| 765 |
+
flex: 0 0 auto;
|
| 766 |
+
width: 41.6666666667%;
|
| 767 |
+
}
|
| 768 |
+
|
| 769 |
+
.col-lg-6 {
|
| 770 |
+
flex: 0 0 auto;
|
| 771 |
+
width: 50%;
|
| 772 |
+
}
|
| 773 |
+
|
| 774 |
+
.col-lg-7 {
|
| 775 |
+
flex: 0 0 auto;
|
| 776 |
+
width: 58.3333333333%;
|
| 777 |
+
}
|
| 778 |
+
|
| 779 |
+
.col-lg-8 {
|
| 780 |
+
flex: 0 0 auto;
|
| 781 |
+
width: 66.6666666667%;
|
| 782 |
+
}
|
| 783 |
+
|
| 784 |
+
.col-lg-9 {
|
| 785 |
+
flex: 0 0 auto;
|
| 786 |
+
width: 75%;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
.col-lg-10 {
|
| 790 |
+
flex: 0 0 auto;
|
| 791 |
+
width: 83.3333333333%;
|
| 792 |
+
}
|
| 793 |
+
|
| 794 |
+
.col-lg-11 {
|
| 795 |
+
flex: 0 0 auto;
|
| 796 |
+
width: 91.6666666667%;
|
| 797 |
+
}
|
| 798 |
+
|
| 799 |
+
.col-lg-12 {
|
| 800 |
+
flex: 0 0 auto;
|
| 801 |
+
width: 100%;
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
.offset-lg-0 {
|
| 805 |
+
margin-right: 0;
|
| 806 |
+
}
|
| 807 |
+
|
| 808 |
+
.offset-lg-1 {
|
| 809 |
+
margin-right: 8.3333333333%;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
.offset-lg-2 {
|
| 813 |
+
margin-right: 16.6666666667%;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
.offset-lg-3 {
|
| 817 |
+
margin-right: 25%;
|
| 818 |
+
}
|
| 819 |
+
|
| 820 |
+
.offset-lg-4 {
|
| 821 |
+
margin-right: 33.3333333333%;
|
| 822 |
+
}
|
| 823 |
+
|
| 824 |
+
.offset-lg-5 {
|
| 825 |
+
margin-right: 41.6666666667%;
|
| 826 |
+
}
|
| 827 |
+
|
| 828 |
+
.offset-lg-6 {
|
| 829 |
+
margin-right: 50%;
|
| 830 |
+
}
|
| 831 |
+
|
| 832 |
+
.offset-lg-7 {
|
| 833 |
+
margin-right: 58.3333333333%;
|
| 834 |
+
}
|
| 835 |
+
|
| 836 |
+
.offset-lg-8 {
|
| 837 |
+
margin-right: 66.6666666667%;
|
| 838 |
+
}
|
| 839 |
+
|
| 840 |
+
.offset-lg-9 {
|
| 841 |
+
margin-right: 75%;
|
| 842 |
+
}
|
| 843 |
+
|
| 844 |
+
.offset-lg-10 {
|
| 845 |
+
margin-right: 83.3333333333%;
|
| 846 |
+
}
|
| 847 |
+
|
| 848 |
+
.offset-lg-11 {
|
| 849 |
+
margin-right: 91.6666666667%;
|
| 850 |
+
}
|
| 851 |
+
|
| 852 |
+
.g-lg-0,
|
| 853 |
+
.gx-lg-0 {
|
| 854 |
+
--bs-gutter-x: 0;
|
| 855 |
+
}
|
| 856 |
+
|
| 857 |
+
.g-lg-0,
|
| 858 |
+
.gy-lg-0 {
|
| 859 |
+
--bs-gutter-y: 0;
|
| 860 |
+
}
|
| 861 |
+
|
| 862 |
+
.g-lg-1,
|
| 863 |
+
.gx-lg-1 {
|
| 864 |
+
--bs-gutter-x: 0.25rem;
|
| 865 |
+
}
|
| 866 |
+
|
| 867 |
+
.g-lg-1,
|
| 868 |
+
.gy-lg-1 {
|
| 869 |
+
--bs-gutter-y: 0.25rem;
|
| 870 |
+
}
|
| 871 |
+
|
| 872 |
+
.g-lg-2,
|
| 873 |
+
.gx-lg-2 {
|
| 874 |
+
--bs-gutter-x: 0.5rem;
|
| 875 |
+
}
|
| 876 |
+
|
| 877 |
+
.g-lg-2,
|
| 878 |
+
.gy-lg-2 {
|
| 879 |
+
--bs-gutter-y: 0.5rem;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
.g-lg-3,
|
| 883 |
+
.gx-lg-3 {
|
| 884 |
+
--bs-gutter-x: 1rem;
|
| 885 |
+
}
|
| 886 |
+
|
| 887 |
+
.g-lg-3,
|
| 888 |
+
.gy-lg-3 {
|
| 889 |
+
--bs-gutter-y: 1rem;
|
| 890 |
+
}
|
| 891 |
+
|
| 892 |
+
.g-lg-4,
|
| 893 |
+
.gx-lg-4 {
|
| 894 |
+
--bs-gutter-x: 1.5rem;
|
| 895 |
+
}
|
| 896 |
+
|
| 897 |
+
.g-lg-4,
|
| 898 |
+
.gy-lg-4 {
|
| 899 |
+
--bs-gutter-y: 1.5rem;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
.g-lg-5,
|
| 903 |
+
.gx-lg-5 {
|
| 904 |
+
--bs-gutter-x: 3rem;
|
| 905 |
+
}
|
| 906 |
+
|
| 907 |
+
.g-lg-5,
|
| 908 |
+
.gy-lg-5 {
|
| 909 |
+
--bs-gutter-y: 3rem;
|
| 910 |
+
}
|
| 911 |
+
}
|
| 912 |
+
@media (min-width: 1200px) {
|
| 913 |
+
.col-xl {
|
| 914 |
+
flex: 1 0 0%;
|
| 915 |
+
}
|
| 916 |
+
|
| 917 |
+
.row-cols-xl-auto > * {
|
| 918 |
+
flex: 0 0 auto;
|
| 919 |
+
width: auto;
|
| 920 |
+
}
|
| 921 |
+
|
| 922 |
+
.row-cols-xl-1 > * {
|
| 923 |
+
flex: 0 0 auto;
|
| 924 |
+
width: 100%;
|
| 925 |
+
}
|
| 926 |
+
|
| 927 |
+
.row-cols-xl-2 > * {
|
| 928 |
+
flex: 0 0 auto;
|
| 929 |
+
width: 50%;
|
| 930 |
+
}
|
| 931 |
+
|
| 932 |
+
.row-cols-xl-3 > * {
|
| 933 |
+
flex: 0 0 auto;
|
| 934 |
+
width: 33.3333333333%;
|
| 935 |
+
}
|
| 936 |
+
|
| 937 |
+
.row-cols-xl-4 > * {
|
| 938 |
+
flex: 0 0 auto;
|
| 939 |
+
width: 25%;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
.row-cols-xl-5 > * {
|
| 943 |
+
flex: 0 0 auto;
|
| 944 |
+
width: 20%;
|
| 945 |
+
}
|
| 946 |
+
|
| 947 |
+
.row-cols-xl-6 > * {
|
| 948 |
+
flex: 0 0 auto;
|
| 949 |
+
width: 16.6666666667%;
|
| 950 |
+
}
|
| 951 |
+
|
| 952 |
+
.col-xl-auto {
|
| 953 |
+
flex: 0 0 auto;
|
| 954 |
+
width: auto;
|
| 955 |
+
}
|
| 956 |
+
|
| 957 |
+
.col-xl-1 {
|
| 958 |
+
flex: 0 0 auto;
|
| 959 |
+
width: 8.3333333333%;
|
| 960 |
+
}
|
| 961 |
+
|
| 962 |
+
.col-xl-2 {
|
| 963 |
+
flex: 0 0 auto;
|
| 964 |
+
width: 16.6666666667%;
|
| 965 |
+
}
|
| 966 |
+
|
| 967 |
+
.col-xl-3 {
|
| 968 |
+
flex: 0 0 auto;
|
| 969 |
+
width: 25%;
|
| 970 |
+
}
|
| 971 |
+
|
| 972 |
+
.col-xl-4 {
|
| 973 |
+
flex: 0 0 auto;
|
| 974 |
+
width: 33.3333333333%;
|
| 975 |
+
}
|
| 976 |
+
|
| 977 |
+
.col-xl-5 {
|
| 978 |
+
flex: 0 0 auto;
|
| 979 |
+
width: 41.6666666667%;
|
| 980 |
+
}
|
| 981 |
+
|
| 982 |
+
.col-xl-6 {
|
| 983 |
+
flex: 0 0 auto;
|
| 984 |
+
width: 50%;
|
| 985 |
+
}
|
| 986 |
+
|
| 987 |
+
.col-xl-7 {
|
| 988 |
+
flex: 0 0 auto;
|
| 989 |
+
width: 58.3333333333%;
|
| 990 |
+
}
|
| 991 |
+
|
| 992 |
+
.col-xl-8 {
|
| 993 |
+
flex: 0 0 auto;
|
| 994 |
+
width: 66.6666666667%;
|
| 995 |
+
}
|
| 996 |
+
|
| 997 |
+
.col-xl-9 {
|
| 998 |
+
flex: 0 0 auto;
|
| 999 |
+
width: 75%;
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.col-xl-10 {
|
| 1003 |
+
flex: 0 0 auto;
|
| 1004 |
+
width: 83.3333333333%;
|
| 1005 |
+
}
|
| 1006 |
+
|
| 1007 |
+
.col-xl-11 {
|
| 1008 |
+
flex: 0 0 auto;
|
| 1009 |
+
width: 91.6666666667%;
|
| 1010 |
+
}
|
| 1011 |
+
|
| 1012 |
+
.col-xl-12 {
|
| 1013 |
+
flex: 0 0 auto;
|
| 1014 |
+
width: 100%;
|
| 1015 |
+
}
|
| 1016 |
+
|
| 1017 |
+
.offset-xl-0 {
|
| 1018 |
+
margin-right: 0;
|
| 1019 |
+
}
|
| 1020 |
+
|
| 1021 |
+
.offset-xl-1 {
|
| 1022 |
+
margin-right: 8.3333333333%;
|
| 1023 |
+
}
|
| 1024 |
+
|
| 1025 |
+
.offset-xl-2 {
|
| 1026 |
+
margin-right: 16.6666666667%;
|
| 1027 |
+
}
|
| 1028 |
+
|
| 1029 |
+
.offset-xl-3 {
|
| 1030 |
+
margin-right: 25%;
|
| 1031 |
+
}
|
| 1032 |
+
|
| 1033 |
+
.offset-xl-4 {
|
| 1034 |
+
margin-right: 33.3333333333%;
|
| 1035 |
+
}
|
| 1036 |
+
|
| 1037 |
+
.offset-xl-5 {
|
| 1038 |
+
margin-right: 41.6666666667%;
|
| 1039 |
+
}
|
| 1040 |
+
|
| 1041 |
+
.offset-xl-6 {
|
| 1042 |
+
margin-right: 50%;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
.offset-xl-7 {
|
| 1046 |
+
margin-right: 58.3333333333%;
|
| 1047 |
+
}
|
| 1048 |
+
|
| 1049 |
+
.offset-xl-8 {
|
| 1050 |
+
margin-right: 66.6666666667%;
|
| 1051 |
+
}
|
| 1052 |
+
|
| 1053 |
+
.offset-xl-9 {
|
| 1054 |
+
margin-right: 75%;
|
| 1055 |
+
}
|
| 1056 |
+
|
| 1057 |
+
.offset-xl-10 {
|
| 1058 |
+
margin-right: 83.3333333333%;
|
| 1059 |
+
}
|
| 1060 |
+
|
| 1061 |
+
.offset-xl-11 {
|
| 1062 |
+
margin-right: 91.6666666667%;
|
| 1063 |
+
}
|
| 1064 |
+
|
| 1065 |
+
.g-xl-0,
|
| 1066 |
+
.gx-xl-0 {
|
| 1067 |
+
--bs-gutter-x: 0;
|
| 1068 |
+
}
|
| 1069 |
+
|
| 1070 |
+
.g-xl-0,
|
| 1071 |
+
.gy-xl-0 {
|
| 1072 |
+
--bs-gutter-y: 0;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.g-xl-1,
|
| 1076 |
+
.gx-xl-1 {
|
| 1077 |
+
--bs-gutter-x: 0.25rem;
|
| 1078 |
+
}
|
| 1079 |
+
|
| 1080 |
+
.g-xl-1,
|
| 1081 |
+
.gy-xl-1 {
|
| 1082 |
+
--bs-gutter-y: 0.25rem;
|
| 1083 |
+
}
|
| 1084 |
+
|
| 1085 |
+
.g-xl-2,
|
| 1086 |
+
.gx-xl-2 {
|
| 1087 |
+
--bs-gutter-x: 0.5rem;
|
| 1088 |
+
}
|
| 1089 |
+
|
| 1090 |
+
.g-xl-2,
|
| 1091 |
+
.gy-xl-2 {
|
| 1092 |
+
--bs-gutter-y: 0.5rem;
|
| 1093 |
+
}
|
| 1094 |
+
|
| 1095 |
+
.g-xl-3,
|
| 1096 |
+
.gx-xl-3 {
|
| 1097 |
+
--bs-gutter-x: 1rem;
|
| 1098 |
+
}
|
| 1099 |
+
|
| 1100 |
+
.g-xl-3,
|
| 1101 |
+
.gy-xl-3 {
|
| 1102 |
+
--bs-gutter-y: 1rem;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.g-xl-4,
|
| 1106 |
+
.gx-xl-4 {
|
| 1107 |
+
--bs-gutter-x: 1.5rem;
|
| 1108 |
+
}
|
| 1109 |
+
|
| 1110 |
+
.g-xl-4,
|
| 1111 |
+
.gy-xl-4 {
|
| 1112 |
+
--bs-gutter-y: 1.5rem;
|
| 1113 |
+
}
|
| 1114 |
+
|
| 1115 |
+
.g-xl-5,
|
| 1116 |
+
.gx-xl-5 {
|
| 1117 |
+
--bs-gutter-x: 3rem;
|
| 1118 |
+
}
|
| 1119 |
+
|
| 1120 |
+
.g-xl-5,
|
| 1121 |
+
.gy-xl-5 {
|
| 1122 |
+
--bs-gutter-y: 3rem;
|
| 1123 |
+
}
|
| 1124 |
+
}
|
| 1125 |
+
@media (min-width: 1400px) {
|
| 1126 |
+
.col-xxl {
|
| 1127 |
+
flex: 1 0 0%;
|
| 1128 |
+
}
|
| 1129 |
+
|
| 1130 |
+
.row-cols-xxl-auto > * {
|
| 1131 |
+
flex: 0 0 auto;
|
| 1132 |
+
width: auto;
|
| 1133 |
+
}
|
| 1134 |
+
|
| 1135 |
+
.row-cols-xxl-1 > * {
|
| 1136 |
+
flex: 0 0 auto;
|
| 1137 |
+
width: 100%;
|
| 1138 |
+
}
|
| 1139 |
+
|
| 1140 |
+
.row-cols-xxl-2 > * {
|
| 1141 |
+
flex: 0 0 auto;
|
| 1142 |
+
width: 50%;
|
| 1143 |
+
}
|
| 1144 |
+
|
| 1145 |
+
.row-cols-xxl-3 > * {
|
| 1146 |
+
flex: 0 0 auto;
|
| 1147 |
+
width: 33.3333333333%;
|
| 1148 |
+
}
|
| 1149 |
+
|
| 1150 |
+
.row-cols-xxl-4 > * {
|
| 1151 |
+
flex: 0 0 auto;
|
| 1152 |
+
width: 25%;
|
| 1153 |
+
}
|
| 1154 |
+
|
| 1155 |
+
.row-cols-xxl-5 > * {
|
| 1156 |
+
flex: 0 0 auto;
|
| 1157 |
+
width: 20%;
|
| 1158 |
+
}
|
| 1159 |
+
|
| 1160 |
+
.row-cols-xxl-6 > * {
|
| 1161 |
+
flex: 0 0 auto;
|
| 1162 |
+
width: 16.6666666667%;
|
| 1163 |
+
}
|
| 1164 |
+
|
| 1165 |
+
.col-xxl-auto {
|
| 1166 |
+
flex: 0 0 auto;
|
| 1167 |
+
width: auto;
|
| 1168 |
+
}
|
| 1169 |
+
|
| 1170 |
+
.col-xxl-1 {
|
| 1171 |
+
flex: 0 0 auto;
|
| 1172 |
+
width: 8.3333333333%;
|
| 1173 |
+
}
|
| 1174 |
+
|
| 1175 |
+
.col-xxl-2 {
|
| 1176 |
+
flex: 0 0 auto;
|
| 1177 |
+
width: 16.6666666667%;
|
| 1178 |
+
}
|
| 1179 |
+
|
| 1180 |
+
.col-xxl-3 {
|
| 1181 |
+
flex: 0 0 auto;
|
| 1182 |
+
width: 25%;
|
| 1183 |
+
}
|
| 1184 |
+
|
| 1185 |
+
.col-xxl-4 {
|
| 1186 |
+
flex: 0 0 auto;
|
| 1187 |
+
width: 33.3333333333%;
|
| 1188 |
+
}
|
| 1189 |
+
|
| 1190 |
+
.col-xxl-5 {
|
| 1191 |
+
flex: 0 0 auto;
|
| 1192 |
+
width: 41.6666666667%;
|
| 1193 |
+
}
|
| 1194 |
+
|
| 1195 |
+
.col-xxl-6 {
|
| 1196 |
+
flex: 0 0 auto;
|
| 1197 |
+
width: 50%;
|
| 1198 |
+
}
|
| 1199 |
+
|
| 1200 |
+
.col-xxl-7 {
|
| 1201 |
+
flex: 0 0 auto;
|
| 1202 |
+
width: 58.3333333333%;
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
.col-xxl-8 {
|
| 1206 |
+
flex: 0 0 auto;
|
| 1207 |
+
width: 66.6666666667%;
|
| 1208 |
+
}
|
| 1209 |
+
|
| 1210 |
+
.col-xxl-9 {
|
| 1211 |
+
flex: 0 0 auto;
|
| 1212 |
+
width: 75%;
|
| 1213 |
+
}
|
| 1214 |
+
|
| 1215 |
+
.col-xxl-10 {
|
| 1216 |
+
flex: 0 0 auto;
|
| 1217 |
+
width: 83.3333333333%;
|
| 1218 |
+
}
|
| 1219 |
+
|
| 1220 |
+
.col-xxl-11 {
|
| 1221 |
+
flex: 0 0 auto;
|
| 1222 |
+
width: 91.6666666667%;
|
| 1223 |
+
}
|
| 1224 |
+
|
| 1225 |
+
.col-xxl-12 {
|
| 1226 |
+
flex: 0 0 auto;
|
| 1227 |
+
width: 100%;
|
| 1228 |
+
}
|
| 1229 |
+
|
| 1230 |
+
.offset-xxl-0 {
|
| 1231 |
+
margin-right: 0;
|
| 1232 |
+
}
|
| 1233 |
+
|
| 1234 |
+
.offset-xxl-1 {
|
| 1235 |
+
margin-right: 8.3333333333%;
|
| 1236 |
+
}
|
| 1237 |
+
|
| 1238 |
+
.offset-xxl-2 {
|
| 1239 |
+
margin-right: 16.6666666667%;
|
| 1240 |
+
}
|
| 1241 |
+
|
| 1242 |
+
.offset-xxl-3 {
|
| 1243 |
+
margin-right: 25%;
|
| 1244 |
+
}
|
| 1245 |
+
|
| 1246 |
+
.offset-xxl-4 {
|
| 1247 |
+
margin-right: 33.3333333333%;
|
| 1248 |
+
}
|
| 1249 |
+
|
| 1250 |
+
.offset-xxl-5 {
|
| 1251 |
+
margin-right: 41.6666666667%;
|
| 1252 |
+
}
|
| 1253 |
+
|
| 1254 |
+
.offset-xxl-6 {
|
| 1255 |
+
margin-right: 50%;
|
| 1256 |
+
}
|
| 1257 |
+
|
| 1258 |
+
.offset-xxl-7 {
|
| 1259 |
+
margin-right: 58.3333333333%;
|
| 1260 |
+
}
|
| 1261 |
+
|
| 1262 |
+
.offset-xxl-8 {
|
| 1263 |
+
margin-right: 66.6666666667%;
|
| 1264 |
+
}
|
| 1265 |
+
|
| 1266 |
+
.offset-xxl-9 {
|
| 1267 |
+
margin-right: 75%;
|
| 1268 |
+
}
|
| 1269 |
+
|
| 1270 |
+
.offset-xxl-10 {
|
| 1271 |
+
margin-right: 83.3333333333%;
|
| 1272 |
+
}
|
| 1273 |
+
|
| 1274 |
+
.offset-xxl-11 {
|
| 1275 |
+
margin-right: 91.6666666667%;
|
| 1276 |
+
}
|
| 1277 |
+
|
| 1278 |
+
.g-xxl-0,
|
| 1279 |
+
.gx-xxl-0 {
|
| 1280 |
+
--bs-gutter-x: 0;
|
| 1281 |
+
}
|
| 1282 |
+
|
| 1283 |
+
.g-xxl-0,
|
| 1284 |
+
.gy-xxl-0 {
|
| 1285 |
+
--bs-gutter-y: 0;
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
.g-xxl-1,
|
| 1289 |
+
.gx-xxl-1 {
|
| 1290 |
+
--bs-gutter-x: 0.25rem;
|
| 1291 |
+
}
|
| 1292 |
+
|
| 1293 |
+
.g-xxl-1,
|
| 1294 |
+
.gy-xxl-1 {
|
| 1295 |
+
--bs-gutter-y: 0.25rem;
|
| 1296 |
+
}
|
| 1297 |
+
|
| 1298 |
+
.g-xxl-2,
|
| 1299 |
+
.gx-xxl-2 {
|
| 1300 |
+
--bs-gutter-x: 0.5rem;
|
| 1301 |
+
}
|
| 1302 |
+
|
| 1303 |
+
.g-xxl-2,
|
| 1304 |
+
.gy-xxl-2 {
|
| 1305 |
+
--bs-gutter-y: 0.5rem;
|
| 1306 |
+
}
|
| 1307 |
+
|
| 1308 |
+
.g-xxl-3,
|
| 1309 |
+
.gx-xxl-3 {
|
| 1310 |
+
--bs-gutter-x: 1rem;
|
| 1311 |
+
}
|
| 1312 |
+
|
| 1313 |
+
.g-xxl-3,
|
| 1314 |
+
.gy-xxl-3 {
|
| 1315 |
+
--bs-gutter-y: 1rem;
|
| 1316 |
+
}
|
| 1317 |
+
|
| 1318 |
+
.g-xxl-4,
|
| 1319 |
+
.gx-xxl-4 {
|
| 1320 |
+
--bs-gutter-x: 1.5rem;
|
| 1321 |
+
}
|
| 1322 |
+
|
| 1323 |
+
.g-xxl-4,
|
| 1324 |
+
.gy-xxl-4 {
|
| 1325 |
+
--bs-gutter-y: 1.5rem;
|
| 1326 |
+
}
|
| 1327 |
+
|
| 1328 |
+
.g-xxl-5,
|
| 1329 |
+
.gx-xxl-5 {
|
| 1330 |
+
--bs-gutter-x: 3rem;
|
| 1331 |
+
}
|
| 1332 |
+
|
| 1333 |
+
.g-xxl-5,
|
| 1334 |
+
.gy-xxl-5 {
|
| 1335 |
+
--bs-gutter-y: 3rem;
|
| 1336 |
+
}
|
| 1337 |
+
}
|
| 1338 |
+
.d-inline {
|
| 1339 |
+
display: inline !important;
|
| 1340 |
+
}
|
| 1341 |
+
|
| 1342 |
+
.d-inline-block {
|
| 1343 |
+
display: inline-block !important;
|
| 1344 |
+
}
|
| 1345 |
+
|
| 1346 |
+
.d-block {
|
| 1347 |
+
display: block !important;
|
| 1348 |
+
}
|
| 1349 |
+
|
| 1350 |
+
.d-grid {
|
| 1351 |
+
display: grid !important;
|
| 1352 |
+
}
|
| 1353 |
+
|
| 1354 |
+
.d-table {
|
| 1355 |
+
display: table !important;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
.d-table-row {
|
| 1359 |
+
display: table-row !important;
|
| 1360 |
+
}
|
| 1361 |
+
|
| 1362 |
+
.d-table-cell {
|
| 1363 |
+
display: table-cell !important;
|
| 1364 |
+
}
|
| 1365 |
+
|
| 1366 |
+
.d-flex {
|
| 1367 |
+
display: flex !important;
|
| 1368 |
+
}
|
| 1369 |
+
|
| 1370 |
+
.d-inline-flex {
|
| 1371 |
+
display: inline-flex !important;
|
| 1372 |
+
}
|
| 1373 |
+
|
| 1374 |
+
.d-none {
|
| 1375 |
+
display: none !important;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
.flex-fill {
|
| 1379 |
+
flex: 1 1 auto !important;
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
.flex-row {
|
| 1383 |
+
flex-direction: row !important;
|
| 1384 |
+
}
|
| 1385 |
+
|
| 1386 |
+
.flex-column {
|
| 1387 |
+
flex-direction: column !important;
|
| 1388 |
+
}
|
| 1389 |
+
|
| 1390 |
+
.flex-row-reverse {
|
| 1391 |
+
flex-direction: row-reverse !important;
|
| 1392 |
+
}
|
| 1393 |
+
|
| 1394 |
+
.flex-column-reverse {
|
| 1395 |
+
flex-direction: column-reverse !important;
|
| 1396 |
+
}
|
| 1397 |
+
|
| 1398 |
+
.flex-grow-0 {
|
| 1399 |
+
flex-grow: 0 !important;
|
| 1400 |
+
}
|
| 1401 |
+
|
| 1402 |
+
.flex-grow-1 {
|
| 1403 |
+
flex-grow: 1 !important;
|
| 1404 |
+
}
|
| 1405 |
+
|
| 1406 |
+
.flex-shrink-0 {
|
| 1407 |
+
flex-shrink: 0 !important;
|
| 1408 |
+
}
|
| 1409 |
+
|
| 1410 |
+
.flex-shrink-1 {
|
| 1411 |
+
flex-shrink: 1 !important;
|
| 1412 |
+
}
|
| 1413 |
+
|
| 1414 |
+
.flex-wrap {
|
| 1415 |
+
flex-wrap: wrap !important;
|
| 1416 |
+
}
|
| 1417 |
+
|
| 1418 |
+
.flex-nowrap {
|
| 1419 |
+
flex-wrap: nowrap !important;
|
| 1420 |
+
}
|
| 1421 |
+
|
| 1422 |
+
.flex-wrap-reverse {
|
| 1423 |
+
flex-wrap: wrap-reverse !important;
|
| 1424 |
+
}
|
| 1425 |
+
|
| 1426 |
+
.justify-content-start {
|
| 1427 |
+
justify-content: flex-start !important;
|
| 1428 |
+
}
|
| 1429 |
+
|
| 1430 |
+
.justify-content-end {
|
| 1431 |
+
justify-content: flex-end !important;
|
| 1432 |
+
}
|
| 1433 |
+
|
| 1434 |
+
.justify-content-center {
|
| 1435 |
+
justify-content: center !important;
|
| 1436 |
+
}
|
| 1437 |
+
|
| 1438 |
+
.justify-content-between {
|
| 1439 |
+
justify-content: space-between !important;
|
| 1440 |
+
}
|
| 1441 |
+
|
| 1442 |
+
.justify-content-around {
|
| 1443 |
+
justify-content: space-around !important;
|
| 1444 |
+
}
|
| 1445 |
+
|
| 1446 |
+
.justify-content-evenly {
|
| 1447 |
+
justify-content: space-evenly !important;
|
| 1448 |
+
}
|
| 1449 |
+
|
| 1450 |
+
.align-items-start {
|
| 1451 |
+
align-items: flex-start !important;
|
| 1452 |
+
}
|
| 1453 |
+
|
| 1454 |
+
.align-items-end {
|
| 1455 |
+
align-items: flex-end !important;
|
| 1456 |
+
}
|
| 1457 |
+
|
| 1458 |
+
.align-items-center {
|
| 1459 |
+
align-items: center !important;
|
| 1460 |
+
}
|
| 1461 |
+
|
| 1462 |
+
.align-items-baseline {
|
| 1463 |
+
align-items: baseline !important;
|
| 1464 |
+
}
|
| 1465 |
+
|
| 1466 |
+
.align-items-stretch {
|
| 1467 |
+
align-items: stretch !important;
|
| 1468 |
+
}
|
| 1469 |
+
|
| 1470 |
+
.align-content-start {
|
| 1471 |
+
align-content: flex-start !important;
|
| 1472 |
+
}
|
| 1473 |
+
|
| 1474 |
+
.align-content-end {
|
| 1475 |
+
align-content: flex-end !important;
|
| 1476 |
+
}
|
| 1477 |
+
|
| 1478 |
+
.align-content-center {
|
| 1479 |
+
align-content: center !important;
|
| 1480 |
+
}
|
| 1481 |
+
|
| 1482 |
+
.align-content-between {
|
| 1483 |
+
align-content: space-between !important;
|
| 1484 |
+
}
|
| 1485 |
+
|
| 1486 |
+
.align-content-around {
|
| 1487 |
+
align-content: space-around !important;
|
| 1488 |
+
}
|
| 1489 |
+
|
| 1490 |
+
.align-content-stretch {
|
| 1491 |
+
align-content: stretch !important;
|
| 1492 |
+
}
|
| 1493 |
+
|
| 1494 |
+
.align-self-auto {
|
| 1495 |
+
align-self: auto !important;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
.align-self-start {
|
| 1499 |
+
align-self: flex-start !important;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
.align-self-end {
|
| 1503 |
+
align-self: flex-end !important;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
.align-self-center {
|
| 1507 |
+
align-self: center !important;
|
| 1508 |
+
}
|
| 1509 |
+
|
| 1510 |
+
.align-self-baseline {
|
| 1511 |
+
align-self: baseline !important;
|
| 1512 |
+
}
|
| 1513 |
+
|
| 1514 |
+
.align-self-stretch {
|
| 1515 |
+
align-self: stretch !important;
|
| 1516 |
+
}
|
| 1517 |
+
|
| 1518 |
+
.order-first {
|
| 1519 |
+
order: -1 !important;
|
| 1520 |
+
}
|
| 1521 |
+
|
| 1522 |
+
.order-0 {
|
| 1523 |
+
order: 0 !important;
|
| 1524 |
+
}
|
| 1525 |
+
|
| 1526 |
+
.order-1 {
|
| 1527 |
+
order: 1 !important;
|
| 1528 |
+
}
|
| 1529 |
+
|
| 1530 |
+
.order-2 {
|
| 1531 |
+
order: 2 !important;
|
| 1532 |
+
}
|
| 1533 |
+
|
| 1534 |
+
.order-3 {
|
| 1535 |
+
order: 3 !important;
|
| 1536 |
+
}
|
| 1537 |
+
|
| 1538 |
+
.order-4 {
|
| 1539 |
+
order: 4 !important;
|
| 1540 |
+
}
|
| 1541 |
+
|
| 1542 |
+
.order-5 {
|
| 1543 |
+
order: 5 !important;
|
| 1544 |
+
}
|
| 1545 |
+
|
| 1546 |
+
.order-last {
|
| 1547 |
+
order: 6 !important;
|
| 1548 |
+
}
|
| 1549 |
+
|
| 1550 |
+
.m-0 {
|
| 1551 |
+
margin: 0 !important;
|
| 1552 |
+
}
|
| 1553 |
+
|
| 1554 |
+
.m-1 {
|
| 1555 |
+
margin: 0.25rem !important;
|
| 1556 |
+
}
|
| 1557 |
+
|
| 1558 |
+
.m-2 {
|
| 1559 |
+
margin: 0.5rem !important;
|
| 1560 |
+
}
|
| 1561 |
+
|
| 1562 |
+
.m-3 {
|
| 1563 |
+
margin: 1rem !important;
|
| 1564 |
+
}
|
| 1565 |
+
|
| 1566 |
+
.m-4 {
|
| 1567 |
+
margin: 1.5rem !important;
|
| 1568 |
+
}
|
| 1569 |
+
|
| 1570 |
+
.m-5 {
|
| 1571 |
+
margin: 3rem !important;
|
| 1572 |
+
}
|
| 1573 |
+
|
| 1574 |
+
.m-auto {
|
| 1575 |
+
margin: auto !important;
|
| 1576 |
+
}
|
| 1577 |
+
|
| 1578 |
+
.mx-0 {
|
| 1579 |
+
margin-left: 0 !important;
|
| 1580 |
+
margin-right: 0 !important;
|
| 1581 |
+
}
|
| 1582 |
+
|
| 1583 |
+
.mx-1 {
|
| 1584 |
+
margin-left: 0.25rem !important;
|
| 1585 |
+
margin-right: 0.25rem !important;
|
| 1586 |
+
}
|
| 1587 |
+
|
| 1588 |
+
.mx-2 {
|
| 1589 |
+
margin-left: 0.5rem !important;
|
| 1590 |
+
margin-right: 0.5rem !important;
|
| 1591 |
+
}
|
| 1592 |
+
|
| 1593 |
+
.mx-3 {
|
| 1594 |
+
margin-left: 1rem !important;
|
| 1595 |
+
margin-right: 1rem !important;
|
| 1596 |
+
}
|
| 1597 |
+
|
| 1598 |
+
.mx-4 {
|
| 1599 |
+
margin-left: 1.5rem !important;
|
| 1600 |
+
margin-right: 1.5rem !important;
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
.mx-5 {
|
| 1604 |
+
margin-left: 3rem !important;
|
| 1605 |
+
margin-right: 3rem !important;
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
.mx-auto {
|
| 1609 |
+
margin-left: auto !important;
|
| 1610 |
+
margin-right: auto !important;
|
| 1611 |
+
}
|
| 1612 |
+
|
| 1613 |
+
.my-0 {
|
| 1614 |
+
margin-top: 0 !important;
|
| 1615 |
+
margin-bottom: 0 !important;
|
| 1616 |
+
}
|
| 1617 |
+
|
| 1618 |
+
.my-1 {
|
| 1619 |
+
margin-top: 0.25rem !important;
|
| 1620 |
+
margin-bottom: 0.25rem !important;
|
| 1621 |
+
}
|
| 1622 |
+
|
| 1623 |
+
.my-2 {
|
| 1624 |
+
margin-top: 0.5rem !important;
|
| 1625 |
+
margin-bottom: 0.5rem !important;
|
| 1626 |
+
}
|
| 1627 |
+
|
| 1628 |
+
.my-3 {
|
| 1629 |
+
margin-top: 1rem !important;
|
| 1630 |
+
margin-bottom: 1rem !important;
|
| 1631 |
+
}
|
| 1632 |
+
|
| 1633 |
+
.my-4 {
|
| 1634 |
+
margin-top: 1.5rem !important;
|
| 1635 |
+
margin-bottom: 1.5rem !important;
|
| 1636 |
+
}
|
| 1637 |
+
|
| 1638 |
+
.my-5 {
|
| 1639 |
+
margin-top: 3rem !important;
|
| 1640 |
+
margin-bottom: 3rem !important;
|
| 1641 |
+
}
|
| 1642 |
+
|
| 1643 |
+
.my-auto {
|
| 1644 |
+
margin-top: auto !important;
|
| 1645 |
+
margin-bottom: auto !important;
|
| 1646 |
+
}
|
| 1647 |
+
|
| 1648 |
+
.mt-0 {
|
| 1649 |
+
margin-top: 0 !important;
|
| 1650 |
+
}
|
| 1651 |
+
|
| 1652 |
+
.mt-1 {
|
| 1653 |
+
margin-top: 0.25rem !important;
|
| 1654 |
+
}
|
| 1655 |
+
|
| 1656 |
+
.mt-2 {
|
| 1657 |
+
margin-top: 0.5rem !important;
|
| 1658 |
+
}
|
| 1659 |
+
|
| 1660 |
+
.mt-3 {
|
| 1661 |
+
margin-top: 1rem !important;
|
| 1662 |
+
}
|
| 1663 |
+
|
| 1664 |
+
.mt-4 {
|
| 1665 |
+
margin-top: 1.5rem !important;
|
| 1666 |
+
}
|
| 1667 |
+
|
| 1668 |
+
.mt-5 {
|
| 1669 |
+
margin-top: 3rem !important;
|
| 1670 |
+
}
|
| 1671 |
+
|
| 1672 |
+
.mt-auto {
|
| 1673 |
+
margin-top: auto !important;
|
| 1674 |
+
}
|
| 1675 |
+
|
| 1676 |
+
.me-0 {
|
| 1677 |
+
margin-left: 0 !important;
|
| 1678 |
+
}
|
| 1679 |
+
|
| 1680 |
+
.me-1 {
|
| 1681 |
+
margin-left: 0.25rem !important;
|
| 1682 |
+
}
|
| 1683 |
+
|
| 1684 |
+
.me-2 {
|
| 1685 |
+
margin-left: 0.5rem !important;
|
| 1686 |
+
}
|
| 1687 |
+
|
| 1688 |
+
.me-3 {
|
| 1689 |
+
margin-left: 1rem !important;
|
| 1690 |
+
}
|
| 1691 |
+
|
| 1692 |
+
.me-4 {
|
| 1693 |
+
margin-left: 1.5rem !important;
|
| 1694 |
+
}
|
| 1695 |
+
|
| 1696 |
+
.me-5 {
|
| 1697 |
+
margin-left: 3rem !important;
|
| 1698 |
+
}
|
| 1699 |
+
|
| 1700 |
+
.me-auto {
|
| 1701 |
+
margin-left: auto !important;
|
| 1702 |
+
}
|
| 1703 |
+
|
| 1704 |
+
.mb-0 {
|
| 1705 |
+
margin-bottom: 0 !important;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
.mb-1 {
|
| 1709 |
+
margin-bottom: 0.25rem !important;
|
| 1710 |
+
}
|
| 1711 |
+
|
| 1712 |
+
.mb-2 {
|
| 1713 |
+
margin-bottom: 0.5rem !important;
|
| 1714 |
+
}
|
| 1715 |
+
|
| 1716 |
+
.mb-3 {
|
| 1717 |
+
margin-bottom: 1rem !important;
|
| 1718 |
+
}
|
| 1719 |
+
|
| 1720 |
+
.mb-4 {
|
| 1721 |
+
margin-bottom: 1.5rem !important;
|
| 1722 |
+
}
|
| 1723 |
+
|
| 1724 |
+
.mb-5 {
|
| 1725 |
+
margin-bottom: 3rem !important;
|
| 1726 |
+
}
|
| 1727 |
+
|
| 1728 |
+
.mb-auto {
|
| 1729 |
+
margin-bottom: auto !important;
|
| 1730 |
+
}
|
| 1731 |
+
|
| 1732 |
+
.ms-0 {
|
| 1733 |
+
margin-right: 0 !important;
|
| 1734 |
+
}
|
| 1735 |
+
|
| 1736 |
+
.ms-1 {
|
| 1737 |
+
margin-right: 0.25rem !important;
|
| 1738 |
+
}
|
| 1739 |
+
|
| 1740 |
+
.ms-2 {
|
| 1741 |
+
margin-right: 0.5rem !important;
|
| 1742 |
+
}
|
| 1743 |
+
|
| 1744 |
+
.ms-3 {
|
| 1745 |
+
margin-right: 1rem !important;
|
| 1746 |
+
}
|
| 1747 |
+
|
| 1748 |
+
.ms-4 {
|
| 1749 |
+
margin-right: 1.5rem !important;
|
| 1750 |
+
}
|
| 1751 |
+
|
| 1752 |
+
.ms-5 {
|
| 1753 |
+
margin-right: 3rem !important;
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
.ms-auto {
|
| 1757 |
+
margin-right: auto !important;
|
| 1758 |
+
}
|
| 1759 |
+
|
| 1760 |
+
.p-0 {
|
| 1761 |
+
padding: 0 !important;
|
| 1762 |
+
}
|
| 1763 |
+
|
| 1764 |
+
.p-1 {
|
| 1765 |
+
padding: 0.25rem !important;
|
| 1766 |
+
}
|
| 1767 |
+
|
| 1768 |
+
.p-2 {
|
| 1769 |
+
padding: 0.5rem !important;
|
| 1770 |
+
}
|
| 1771 |
+
|
| 1772 |
+
.p-3 {
|
| 1773 |
+
padding: 1rem !important;
|
| 1774 |
+
}
|
| 1775 |
+
|
| 1776 |
+
.p-4 {
|
| 1777 |
+
padding: 1.5rem !important;
|
| 1778 |
+
}
|
| 1779 |
+
|
| 1780 |
+
.p-5 {
|
| 1781 |
+
padding: 3rem !important;
|
| 1782 |
+
}
|
| 1783 |
+
|
| 1784 |
+
.px-0 {
|
| 1785 |
+
padding-left: 0 !important;
|
| 1786 |
+
padding-right: 0 !important;
|
| 1787 |
+
}
|
| 1788 |
+
|
| 1789 |
+
.px-1 {
|
| 1790 |
+
padding-left: 0.25rem !important;
|
| 1791 |
+
padding-right: 0.25rem !important;
|
| 1792 |
+
}
|
| 1793 |
+
|
| 1794 |
+
.px-2 {
|
| 1795 |
+
padding-left: 0.5rem !important;
|
| 1796 |
+
padding-right: 0.5rem !important;
|
| 1797 |
+
}
|
| 1798 |
+
|
| 1799 |
+
.px-3 {
|
| 1800 |
+
padding-left: 1rem !important;
|
| 1801 |
+
padding-right: 1rem !important;
|
| 1802 |
+
}
|
| 1803 |
+
|
| 1804 |
+
.px-4 {
|
| 1805 |
+
padding-left: 1.5rem !important;
|
| 1806 |
+
padding-right: 1.5rem !important;
|
| 1807 |
+
}
|
| 1808 |
+
|
| 1809 |
+
.px-5 {
|
| 1810 |
+
padding-left: 3rem !important;
|
| 1811 |
+
padding-right: 3rem !important;
|
| 1812 |
+
}
|
| 1813 |
+
|
| 1814 |
+
.py-0 {
|
| 1815 |
+
padding-top: 0 !important;
|
| 1816 |
+
padding-bottom: 0 !important;
|
| 1817 |
+
}
|
| 1818 |
+
|
| 1819 |
+
.py-1 {
|
| 1820 |
+
padding-top: 0.25rem !important;
|
| 1821 |
+
padding-bottom: 0.25rem !important;
|
| 1822 |
+
}
|
| 1823 |
+
|
| 1824 |
+
.py-2 {
|
| 1825 |
+
padding-top: 0.5rem !important;
|
| 1826 |
+
padding-bottom: 0.5rem !important;
|
| 1827 |
+
}
|
| 1828 |
+
|
| 1829 |
+
.py-3 {
|
| 1830 |
+
padding-top: 1rem !important;
|
| 1831 |
+
padding-bottom: 1rem !important;
|
| 1832 |
+
}
|
| 1833 |
+
|
| 1834 |
+
.py-4 {
|
| 1835 |
+
padding-top: 1.5rem !important;
|
| 1836 |
+
padding-bottom: 1.5rem !important;
|
| 1837 |
+
}
|
| 1838 |
+
|
| 1839 |
+
.py-5 {
|
| 1840 |
+
padding-top: 3rem !important;
|
| 1841 |
+
padding-bottom: 3rem !important;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
.pt-0 {
|
| 1845 |
+
padding-top: 0 !important;
|
| 1846 |
+
}
|
| 1847 |
+
|
| 1848 |
+
.pt-1 {
|
| 1849 |
+
padding-top: 0.25rem !important;
|
| 1850 |
+
}
|
| 1851 |
+
|
| 1852 |
+
.pt-2 {
|
| 1853 |
+
padding-top: 0.5rem !important;
|
| 1854 |
+
}
|
| 1855 |
+
|
| 1856 |
+
.pt-3 {
|
| 1857 |
+
padding-top: 1rem !important;
|
| 1858 |
+
}
|
| 1859 |
+
|
| 1860 |
+
.pt-4 {
|
| 1861 |
+
padding-top: 1.5rem !important;
|
| 1862 |
+
}
|
| 1863 |
+
|
| 1864 |
+
.pt-5 {
|
| 1865 |
+
padding-top: 3rem !important;
|
| 1866 |
+
}
|
| 1867 |
+
|
| 1868 |
+
.pe-0 {
|
| 1869 |
+
padding-left: 0 !important;
|
| 1870 |
+
}
|
| 1871 |
+
|
| 1872 |
+
.pe-1 {
|
| 1873 |
+
padding-left: 0.25rem !important;
|
| 1874 |
+
}
|
| 1875 |
+
|
| 1876 |
+
.pe-2 {
|
| 1877 |
+
padding-left: 0.5rem !important;
|
| 1878 |
+
}
|
| 1879 |
+
|
| 1880 |
+
.pe-3 {
|
| 1881 |
+
padding-left: 1rem !important;
|
| 1882 |
+
}
|
| 1883 |
+
|
| 1884 |
+
.pe-4 {
|
| 1885 |
+
padding-left: 1.5rem !important;
|
| 1886 |
+
}
|
| 1887 |
+
|
| 1888 |
+
.pe-5 {
|
| 1889 |
+
padding-left: 3rem !important;
|
| 1890 |
+
}
|
| 1891 |
+
|
| 1892 |
+
.pb-0 {
|
| 1893 |
+
padding-bottom: 0 !important;
|
| 1894 |
+
}
|
| 1895 |
+
|
| 1896 |
+
.pb-1 {
|
| 1897 |
+
padding-bottom: 0.25rem !important;
|
| 1898 |
+
}
|
| 1899 |
+
|
| 1900 |
+
.pb-2 {
|
| 1901 |
+
padding-bottom: 0.5rem !important;
|
| 1902 |
+
}
|
| 1903 |
+
|
| 1904 |
+
.pb-3 {
|
| 1905 |
+
padding-bottom: 1rem !important;
|
| 1906 |
+
}
|
| 1907 |
+
|
| 1908 |
+
.pb-4 {
|
| 1909 |
+
padding-bottom: 1.5rem !important;
|
| 1910 |
+
}
|
| 1911 |
+
|
| 1912 |
+
.pb-5 {
|
| 1913 |
+
padding-bottom: 3rem !important;
|
| 1914 |
+
}
|
| 1915 |
+
|
| 1916 |
+
.ps-0 {
|
| 1917 |
+
padding-right: 0 !important;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
.ps-1 {
|
| 1921 |
+
padding-right: 0.25rem !important;
|
| 1922 |
+
}
|
| 1923 |
+
|
| 1924 |
+
.ps-2 {
|
| 1925 |
+
padding-right: 0.5rem !important;
|
| 1926 |
+
}
|
| 1927 |
+
|
| 1928 |
+
.ps-3 {
|
| 1929 |
+
padding-right: 1rem !important;
|
| 1930 |
+
}
|
| 1931 |
+
|
| 1932 |
+
.ps-4 {
|
| 1933 |
+
padding-right: 1.5rem !important;
|
| 1934 |
+
}
|
| 1935 |
+
|
| 1936 |
+
.ps-5 {
|
| 1937 |
+
padding-right: 3rem !important;
|
| 1938 |
+
}
|
| 1939 |
+
|
| 1940 |
+
@media (min-width: 576px) {
|
| 1941 |
+
.d-sm-inline {
|
| 1942 |
+
display: inline !important;
|
| 1943 |
+
}
|
| 1944 |
+
|
| 1945 |
+
.d-sm-inline-block {
|
| 1946 |
+
display: inline-block !important;
|
| 1947 |
+
}
|
| 1948 |
+
|
| 1949 |
+
.d-sm-block {
|
| 1950 |
+
display: block !important;
|
| 1951 |
+
}
|
| 1952 |
+
|
| 1953 |
+
.d-sm-grid {
|
| 1954 |
+
display: grid !important;
|
| 1955 |
+
}
|
| 1956 |
+
|
| 1957 |
+
.d-sm-table {
|
| 1958 |
+
display: table !important;
|
| 1959 |
+
}
|
| 1960 |
+
|
| 1961 |
+
.d-sm-table-row {
|
| 1962 |
+
display: table-row !important;
|
| 1963 |
+
}
|
| 1964 |
+
|
| 1965 |
+
.d-sm-table-cell {
|
| 1966 |
+
display: table-cell !important;
|
| 1967 |
+
}
|
| 1968 |
+
|
| 1969 |
+
.d-sm-flex {
|
| 1970 |
+
display: flex !important;
|
| 1971 |
+
}
|
| 1972 |
+
|
| 1973 |
+
.d-sm-inline-flex {
|
| 1974 |
+
display: inline-flex !important;
|
| 1975 |
+
}
|
| 1976 |
+
|
| 1977 |
+
.d-sm-none {
|
| 1978 |
+
display: none !important;
|
| 1979 |
+
}
|
| 1980 |
+
|
| 1981 |
+
.flex-sm-fill {
|
| 1982 |
+
flex: 1 1 auto !important;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.flex-sm-row {
|
| 1986 |
+
flex-direction: row !important;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
.flex-sm-column {
|
| 1990 |
+
flex-direction: column !important;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
.flex-sm-row-reverse {
|
| 1994 |
+
flex-direction: row-reverse !important;
|
| 1995 |
+
}
|
| 1996 |
+
|
| 1997 |
+
.flex-sm-column-reverse {
|
| 1998 |
+
flex-direction: column-reverse !important;
|
| 1999 |
+
}
|
| 2000 |
+
|
| 2001 |
+
.flex-sm-grow-0 {
|
| 2002 |
+
flex-grow: 0 !important;
|
| 2003 |
+
}
|
| 2004 |
+
|
| 2005 |
+
.flex-sm-grow-1 {
|
| 2006 |
+
flex-grow: 1 !important;
|
| 2007 |
+
}
|
| 2008 |
+
|
| 2009 |
+
.flex-sm-shrink-0 {
|
| 2010 |
+
flex-shrink: 0 !important;
|
| 2011 |
+
}
|
| 2012 |
+
|
| 2013 |
+
.flex-sm-shrink-1 {
|
| 2014 |
+
flex-shrink: 1 !important;
|
| 2015 |
+
}
|
| 2016 |
+
|
| 2017 |
+
.flex-sm-wrap {
|
| 2018 |
+
flex-wrap: wrap !important;
|
| 2019 |
+
}
|
| 2020 |
+
|
| 2021 |
+
.flex-sm-nowrap {
|
| 2022 |
+
flex-wrap: nowrap !important;
|
| 2023 |
+
}
|
| 2024 |
+
|
| 2025 |
+
.flex-sm-wrap-reverse {
|
| 2026 |
+
flex-wrap: wrap-reverse !important;
|
| 2027 |
+
}
|
| 2028 |
+
|
| 2029 |
+
.justify-content-sm-start {
|
| 2030 |
+
justify-content: flex-start !important;
|
| 2031 |
+
}
|
| 2032 |
+
|
| 2033 |
+
.justify-content-sm-end {
|
| 2034 |
+
justify-content: flex-end !important;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
.justify-content-sm-center {
|
| 2038 |
+
justify-content: center !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
.justify-content-sm-between {
|
| 2042 |
+
justify-content: space-between !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
.justify-content-sm-around {
|
| 2046 |
+
justify-content: space-around !important;
|
| 2047 |
+
}
|
| 2048 |
+
|
| 2049 |
+
.justify-content-sm-evenly {
|
| 2050 |
+
justify-content: space-evenly !important;
|
| 2051 |
+
}
|
| 2052 |
+
|
| 2053 |
+
.align-items-sm-start {
|
| 2054 |
+
align-items: flex-start !important;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.align-items-sm-end {
|
| 2058 |
+
align-items: flex-end !important;
|
| 2059 |
+
}
|
| 2060 |
+
|
| 2061 |
+
.align-items-sm-center {
|
| 2062 |
+
align-items: center !important;
|
| 2063 |
+
}
|
| 2064 |
+
|
| 2065 |
+
.align-items-sm-baseline {
|
| 2066 |
+
align-items: baseline !important;
|
| 2067 |
+
}
|
| 2068 |
+
|
| 2069 |
+
.align-items-sm-stretch {
|
| 2070 |
+
align-items: stretch !important;
|
| 2071 |
+
}
|
| 2072 |
+
|
| 2073 |
+
.align-content-sm-start {
|
| 2074 |
+
align-content: flex-start !important;
|
| 2075 |
+
}
|
| 2076 |
+
|
| 2077 |
+
.align-content-sm-end {
|
| 2078 |
+
align-content: flex-end !important;
|
| 2079 |
+
}
|
| 2080 |
+
|
| 2081 |
+
.align-content-sm-center {
|
| 2082 |
+
align-content: center !important;
|
| 2083 |
+
}
|
| 2084 |
+
|
| 2085 |
+
.align-content-sm-between {
|
| 2086 |
+
align-content: space-between !important;
|
| 2087 |
+
}
|
| 2088 |
+
|
| 2089 |
+
.align-content-sm-around {
|
| 2090 |
+
align-content: space-around !important;
|
| 2091 |
+
}
|
| 2092 |
+
|
| 2093 |
+
.align-content-sm-stretch {
|
| 2094 |
+
align-content: stretch !important;
|
| 2095 |
+
}
|
| 2096 |
+
|
| 2097 |
+
.align-self-sm-auto {
|
| 2098 |
+
align-self: auto !important;
|
| 2099 |
+
}
|
| 2100 |
+
|
| 2101 |
+
.align-self-sm-start {
|
| 2102 |
+
align-self: flex-start !important;
|
| 2103 |
+
}
|
| 2104 |
+
|
| 2105 |
+
.align-self-sm-end {
|
| 2106 |
+
align-self: flex-end !important;
|
| 2107 |
+
}
|
| 2108 |
+
|
| 2109 |
+
.align-self-sm-center {
|
| 2110 |
+
align-self: center !important;
|
| 2111 |
+
}
|
| 2112 |
+
|
| 2113 |
+
.align-self-sm-baseline {
|
| 2114 |
+
align-self: baseline !important;
|
| 2115 |
+
}
|
| 2116 |
+
|
| 2117 |
+
.align-self-sm-stretch {
|
| 2118 |
+
align-self: stretch !important;
|
| 2119 |
+
}
|
| 2120 |
+
|
| 2121 |
+
.order-sm-first {
|
| 2122 |
+
order: -1 !important;
|
| 2123 |
+
}
|
| 2124 |
+
|
| 2125 |
+
.order-sm-0 {
|
| 2126 |
+
order: 0 !important;
|
| 2127 |
+
}
|
| 2128 |
+
|
| 2129 |
+
.order-sm-1 {
|
| 2130 |
+
order: 1 !important;
|
| 2131 |
+
}
|
| 2132 |
+
|
| 2133 |
+
.order-sm-2 {
|
| 2134 |
+
order: 2 !important;
|
| 2135 |
+
}
|
| 2136 |
+
|
| 2137 |
+
.order-sm-3 {
|
| 2138 |
+
order: 3 !important;
|
| 2139 |
+
}
|
| 2140 |
+
|
| 2141 |
+
.order-sm-4 {
|
| 2142 |
+
order: 4 !important;
|
| 2143 |
+
}
|
| 2144 |
+
|
| 2145 |
+
.order-sm-5 {
|
| 2146 |
+
order: 5 !important;
|
| 2147 |
+
}
|
| 2148 |
+
|
| 2149 |
+
.order-sm-last {
|
| 2150 |
+
order: 6 !important;
|
| 2151 |
+
}
|
| 2152 |
+
|
| 2153 |
+
.m-sm-0 {
|
| 2154 |
+
margin: 0 !important;
|
| 2155 |
+
}
|
| 2156 |
+
|
| 2157 |
+
.m-sm-1 {
|
| 2158 |
+
margin: 0.25rem !important;
|
| 2159 |
+
}
|
| 2160 |
+
|
| 2161 |
+
.m-sm-2 {
|
| 2162 |
+
margin: 0.5rem !important;
|
| 2163 |
+
}
|
| 2164 |
+
|
| 2165 |
+
.m-sm-3 {
|
| 2166 |
+
margin: 1rem !important;
|
| 2167 |
+
}
|
| 2168 |
+
|
| 2169 |
+
.m-sm-4 {
|
| 2170 |
+
margin: 1.5rem !important;
|
| 2171 |
+
}
|
| 2172 |
+
|
| 2173 |
+
.m-sm-5 {
|
| 2174 |
+
margin: 3rem !important;
|
| 2175 |
+
}
|
| 2176 |
+
|
| 2177 |
+
.m-sm-auto {
|
| 2178 |
+
margin: auto !important;
|
| 2179 |
+
}
|
| 2180 |
+
|
| 2181 |
+
.mx-sm-0 {
|
| 2182 |
+
margin-left: 0 !important;
|
| 2183 |
+
margin-right: 0 !important;
|
| 2184 |
+
}
|
| 2185 |
+
|
| 2186 |
+
.mx-sm-1 {
|
| 2187 |
+
margin-left: 0.25rem !important;
|
| 2188 |
+
margin-right: 0.25rem !important;
|
| 2189 |
+
}
|
| 2190 |
+
|
| 2191 |
+
.mx-sm-2 {
|
| 2192 |
+
margin-left: 0.5rem !important;
|
| 2193 |
+
margin-right: 0.5rem !important;
|
| 2194 |
+
}
|
| 2195 |
+
|
| 2196 |
+
.mx-sm-3 {
|
| 2197 |
+
margin-left: 1rem !important;
|
| 2198 |
+
margin-right: 1rem !important;
|
| 2199 |
+
}
|
| 2200 |
+
|
| 2201 |
+
.mx-sm-4 {
|
| 2202 |
+
margin-left: 1.5rem !important;
|
| 2203 |
+
margin-right: 1.5rem !important;
|
| 2204 |
+
}
|
| 2205 |
+
|
| 2206 |
+
.mx-sm-5 {
|
| 2207 |
+
margin-left: 3rem !important;
|
| 2208 |
+
margin-right: 3rem !important;
|
| 2209 |
+
}
|
| 2210 |
+
|
| 2211 |
+
.mx-sm-auto {
|
| 2212 |
+
margin-left: auto !important;
|
| 2213 |
+
margin-right: auto !important;
|
| 2214 |
+
}
|
| 2215 |
+
|
| 2216 |
+
.my-sm-0 {
|
| 2217 |
+
margin-top: 0 !important;
|
| 2218 |
+
margin-bottom: 0 !important;
|
| 2219 |
+
}
|
| 2220 |
+
|
| 2221 |
+
.my-sm-1 {
|
| 2222 |
+
margin-top: 0.25rem !important;
|
| 2223 |
+
margin-bottom: 0.25rem !important;
|
| 2224 |
+
}
|
| 2225 |
+
|
| 2226 |
+
.my-sm-2 {
|
| 2227 |
+
margin-top: 0.5rem !important;
|
| 2228 |
+
margin-bottom: 0.5rem !important;
|
| 2229 |
+
}
|
| 2230 |
+
|
| 2231 |
+
.my-sm-3 {
|
| 2232 |
+
margin-top: 1rem !important;
|
| 2233 |
+
margin-bottom: 1rem !important;
|
| 2234 |
+
}
|
| 2235 |
+
|
| 2236 |
+
.my-sm-4 {
|
| 2237 |
+
margin-top: 1.5rem !important;
|
| 2238 |
+
margin-bottom: 1.5rem !important;
|
| 2239 |
+
}
|
| 2240 |
+
|
| 2241 |
+
.my-sm-5 {
|
| 2242 |
+
margin-top: 3rem !important;
|
| 2243 |
+
margin-bottom: 3rem !important;
|
| 2244 |
+
}
|
| 2245 |
+
|
| 2246 |
+
.my-sm-auto {
|
| 2247 |
+
margin-top: auto !important;
|
| 2248 |
+
margin-bottom: auto !important;
|
| 2249 |
+
}
|
| 2250 |
+
|
| 2251 |
+
.mt-sm-0 {
|
| 2252 |
+
margin-top: 0 !important;
|
| 2253 |
+
}
|
| 2254 |
+
|
| 2255 |
+
.mt-sm-1 {
|
| 2256 |
+
margin-top: 0.25rem !important;
|
| 2257 |
+
}
|
| 2258 |
+
|
| 2259 |
+
.mt-sm-2 {
|
| 2260 |
+
margin-top: 0.5rem !important;
|
| 2261 |
+
}
|
| 2262 |
+
|
| 2263 |
+
.mt-sm-3 {
|
| 2264 |
+
margin-top: 1rem !important;
|
| 2265 |
+
}
|
| 2266 |
+
|
| 2267 |
+
.mt-sm-4 {
|
| 2268 |
+
margin-top: 1.5rem !important;
|
| 2269 |
+
}
|
| 2270 |
+
|
| 2271 |
+
.mt-sm-5 {
|
| 2272 |
+
margin-top: 3rem !important;
|
| 2273 |
+
}
|
| 2274 |
+
|
| 2275 |
+
.mt-sm-auto {
|
| 2276 |
+
margin-top: auto !important;
|
| 2277 |
+
}
|
| 2278 |
+
|
| 2279 |
+
.me-sm-0 {
|
| 2280 |
+
margin-left: 0 !important;
|
| 2281 |
+
}
|
| 2282 |
+
|
| 2283 |
+
.me-sm-1 {
|
| 2284 |
+
margin-left: 0.25rem !important;
|
| 2285 |
+
}
|
| 2286 |
+
|
| 2287 |
+
.me-sm-2 {
|
| 2288 |
+
margin-left: 0.5rem !important;
|
| 2289 |
+
}
|
| 2290 |
+
|
| 2291 |
+
.me-sm-3 {
|
| 2292 |
+
margin-left: 1rem !important;
|
| 2293 |
+
}
|
| 2294 |
+
|
| 2295 |
+
.me-sm-4 {
|
| 2296 |
+
margin-left: 1.5rem !important;
|
| 2297 |
+
}
|
| 2298 |
+
|
| 2299 |
+
.me-sm-5 {
|
| 2300 |
+
margin-left: 3rem !important;
|
| 2301 |
+
}
|
| 2302 |
+
|
| 2303 |
+
.me-sm-auto {
|
| 2304 |
+
margin-left: auto !important;
|
| 2305 |
+
}
|
| 2306 |
+
|
| 2307 |
+
.mb-sm-0 {
|
| 2308 |
+
margin-bottom: 0 !important;
|
| 2309 |
+
}
|
| 2310 |
+
|
| 2311 |
+
.mb-sm-1 {
|
| 2312 |
+
margin-bottom: 0.25rem !important;
|
| 2313 |
+
}
|
| 2314 |
+
|
| 2315 |
+
.mb-sm-2 {
|
| 2316 |
+
margin-bottom: 0.5rem !important;
|
| 2317 |
+
}
|
| 2318 |
+
|
| 2319 |
+
.mb-sm-3 {
|
| 2320 |
+
margin-bottom: 1rem !important;
|
| 2321 |
+
}
|
| 2322 |
+
|
| 2323 |
+
.mb-sm-4 {
|
| 2324 |
+
margin-bottom: 1.5rem !important;
|
| 2325 |
+
}
|
| 2326 |
+
|
| 2327 |
+
.mb-sm-5 {
|
| 2328 |
+
margin-bottom: 3rem !important;
|
| 2329 |
+
}
|
| 2330 |
+
|
| 2331 |
+
.mb-sm-auto {
|
| 2332 |
+
margin-bottom: auto !important;
|
| 2333 |
+
}
|
| 2334 |
+
|
| 2335 |
+
.ms-sm-0 {
|
| 2336 |
+
margin-right: 0 !important;
|
| 2337 |
+
}
|
| 2338 |
+
|
| 2339 |
+
.ms-sm-1 {
|
| 2340 |
+
margin-right: 0.25rem !important;
|
| 2341 |
+
}
|
| 2342 |
+
|
| 2343 |
+
.ms-sm-2 {
|
| 2344 |
+
margin-right: 0.5rem !important;
|
| 2345 |
+
}
|
| 2346 |
+
|
| 2347 |
+
.ms-sm-3 {
|
| 2348 |
+
margin-right: 1rem !important;
|
| 2349 |
+
}
|
| 2350 |
+
|
| 2351 |
+
.ms-sm-4 {
|
| 2352 |
+
margin-right: 1.5rem !important;
|
| 2353 |
+
}
|
| 2354 |
+
|
| 2355 |
+
.ms-sm-5 {
|
| 2356 |
+
margin-right: 3rem !important;
|
| 2357 |
+
}
|
| 2358 |
+
|
| 2359 |
+
.ms-sm-auto {
|
| 2360 |
+
margin-right: auto !important;
|
| 2361 |
+
}
|
| 2362 |
+
|
| 2363 |
+
.p-sm-0 {
|
| 2364 |
+
padding: 0 !important;
|
| 2365 |
+
}
|
| 2366 |
+
|
| 2367 |
+
.p-sm-1 {
|
| 2368 |
+
padding: 0.25rem !important;
|
| 2369 |
+
}
|
| 2370 |
+
|
| 2371 |
+
.p-sm-2 {
|
| 2372 |
+
padding: 0.5rem !important;
|
| 2373 |
+
}
|
| 2374 |
+
|
| 2375 |
+
.p-sm-3 {
|
| 2376 |
+
padding: 1rem !important;
|
| 2377 |
+
}
|
| 2378 |
+
|
| 2379 |
+
.p-sm-4 {
|
| 2380 |
+
padding: 1.5rem !important;
|
| 2381 |
+
}
|
| 2382 |
+
|
| 2383 |
+
.p-sm-5 {
|
| 2384 |
+
padding: 3rem !important;
|
| 2385 |
+
}
|
| 2386 |
+
|
| 2387 |
+
.px-sm-0 {
|
| 2388 |
+
padding-left: 0 !important;
|
| 2389 |
+
padding-right: 0 !important;
|
| 2390 |
+
}
|
| 2391 |
+
|
| 2392 |
+
.px-sm-1 {
|
| 2393 |
+
padding-left: 0.25rem !important;
|
| 2394 |
+
padding-right: 0.25rem !important;
|
| 2395 |
+
}
|
| 2396 |
+
|
| 2397 |
+
.px-sm-2 {
|
| 2398 |
+
padding-left: 0.5rem !important;
|
| 2399 |
+
padding-right: 0.5rem !important;
|
| 2400 |
+
}
|
| 2401 |
+
|
| 2402 |
+
.px-sm-3 {
|
| 2403 |
+
padding-left: 1rem !important;
|
| 2404 |
+
padding-right: 1rem !important;
|
| 2405 |
+
}
|
| 2406 |
+
|
| 2407 |
+
.px-sm-4 {
|
| 2408 |
+
padding-left: 1.5rem !important;
|
| 2409 |
+
padding-right: 1.5rem !important;
|
| 2410 |
+
}
|
| 2411 |
+
|
| 2412 |
+
.px-sm-5 {
|
| 2413 |
+
padding-left: 3rem !important;
|
| 2414 |
+
padding-right: 3rem !important;
|
| 2415 |
+
}
|
| 2416 |
+
|
| 2417 |
+
.py-sm-0 {
|
| 2418 |
+
padding-top: 0 !important;
|
| 2419 |
+
padding-bottom: 0 !important;
|
| 2420 |
+
}
|
| 2421 |
+
|
| 2422 |
+
.py-sm-1 {
|
| 2423 |
+
padding-top: 0.25rem !important;
|
| 2424 |
+
padding-bottom: 0.25rem !important;
|
| 2425 |
+
}
|
| 2426 |
+
|
| 2427 |
+
.py-sm-2 {
|
| 2428 |
+
padding-top: 0.5rem !important;
|
| 2429 |
+
padding-bottom: 0.5rem !important;
|
| 2430 |
+
}
|
| 2431 |
+
|
| 2432 |
+
.py-sm-3 {
|
| 2433 |
+
padding-top: 1rem !important;
|
| 2434 |
+
padding-bottom: 1rem !important;
|
| 2435 |
+
}
|
| 2436 |
+
|
| 2437 |
+
.py-sm-4 {
|
| 2438 |
+
padding-top: 1.5rem !important;
|
| 2439 |
+
padding-bottom: 1.5rem !important;
|
| 2440 |
+
}
|
| 2441 |
+
|
| 2442 |
+
.py-sm-5 {
|
| 2443 |
+
padding-top: 3rem !important;
|
| 2444 |
+
padding-bottom: 3rem !important;
|
| 2445 |
+
}
|
| 2446 |
+
|
| 2447 |
+
.pt-sm-0 {
|
| 2448 |
+
padding-top: 0 !important;
|
| 2449 |
+
}
|
| 2450 |
+
|
| 2451 |
+
.pt-sm-1 {
|
| 2452 |
+
padding-top: 0.25rem !important;
|
| 2453 |
+
}
|
| 2454 |
+
|
| 2455 |
+
.pt-sm-2 {
|
| 2456 |
+
padding-top: 0.5rem !important;
|
| 2457 |
+
}
|
| 2458 |
+
|
| 2459 |
+
.pt-sm-3 {
|
| 2460 |
+
padding-top: 1rem !important;
|
| 2461 |
+
}
|
| 2462 |
+
|
| 2463 |
+
.pt-sm-4 {
|
| 2464 |
+
padding-top: 1.5rem !important;
|
| 2465 |
+
}
|
| 2466 |
+
|
| 2467 |
+
.pt-sm-5 {
|
| 2468 |
+
padding-top: 3rem !important;
|
| 2469 |
+
}
|
| 2470 |
+
|
| 2471 |
+
.pe-sm-0 {
|
| 2472 |
+
padding-left: 0 !important;
|
| 2473 |
+
}
|
| 2474 |
+
|
| 2475 |
+
.pe-sm-1 {
|
| 2476 |
+
padding-left: 0.25rem !important;
|
| 2477 |
+
}
|
| 2478 |
+
|
| 2479 |
+
.pe-sm-2 {
|
| 2480 |
+
padding-left: 0.5rem !important;
|
| 2481 |
+
}
|
| 2482 |
+
|
| 2483 |
+
.pe-sm-3 {
|
| 2484 |
+
padding-left: 1rem !important;
|
| 2485 |
+
}
|
| 2486 |
+
|
| 2487 |
+
.pe-sm-4 {
|
| 2488 |
+
padding-left: 1.5rem !important;
|
| 2489 |
+
}
|
| 2490 |
+
|
| 2491 |
+
.pe-sm-5 {
|
| 2492 |
+
padding-left: 3rem !important;
|
| 2493 |
+
}
|
| 2494 |
+
|
| 2495 |
+
.pb-sm-0 {
|
| 2496 |
+
padding-bottom: 0 !important;
|
| 2497 |
+
}
|
| 2498 |
+
|
| 2499 |
+
.pb-sm-1 {
|
| 2500 |
+
padding-bottom: 0.25rem !important;
|
| 2501 |
+
}
|
| 2502 |
+
|
| 2503 |
+
.pb-sm-2 {
|
| 2504 |
+
padding-bottom: 0.5rem !important;
|
| 2505 |
+
}
|
| 2506 |
+
|
| 2507 |
+
.pb-sm-3 {
|
| 2508 |
+
padding-bottom: 1rem !important;
|
| 2509 |
+
}
|
| 2510 |
+
|
| 2511 |
+
.pb-sm-4 {
|
| 2512 |
+
padding-bottom: 1.5rem !important;
|
| 2513 |
+
}
|
| 2514 |
+
|
| 2515 |
+
.pb-sm-5 {
|
| 2516 |
+
padding-bottom: 3rem !important;
|
| 2517 |
+
}
|
| 2518 |
+
|
| 2519 |
+
.ps-sm-0 {
|
| 2520 |
+
padding-right: 0 !important;
|
| 2521 |
+
}
|
| 2522 |
+
|
| 2523 |
+
.ps-sm-1 {
|
| 2524 |
+
padding-right: 0.25rem !important;
|
| 2525 |
+
}
|
| 2526 |
+
|
| 2527 |
+
.ps-sm-2 {
|
| 2528 |
+
padding-right: 0.5rem !important;
|
| 2529 |
+
}
|
| 2530 |
+
|
| 2531 |
+
.ps-sm-3 {
|
| 2532 |
+
padding-right: 1rem !important;
|
| 2533 |
+
}
|
| 2534 |
+
|
| 2535 |
+
.ps-sm-4 {
|
| 2536 |
+
padding-right: 1.5rem !important;
|
| 2537 |
+
}
|
| 2538 |
+
|
| 2539 |
+
.ps-sm-5 {
|
| 2540 |
+
padding-right: 3rem !important;
|
| 2541 |
+
}
|
| 2542 |
+
}
|
| 2543 |
+
@media (min-width: 768px) {
|
| 2544 |
+
.d-md-inline {
|
| 2545 |
+
display: inline !important;
|
| 2546 |
+
}
|
| 2547 |
+
|
| 2548 |
+
.d-md-inline-block {
|
| 2549 |
+
display: inline-block !important;
|
| 2550 |
+
}
|
| 2551 |
+
|
| 2552 |
+
.d-md-block {
|
| 2553 |
+
display: block !important;
|
| 2554 |
+
}
|
| 2555 |
+
|
| 2556 |
+
.d-md-grid {
|
| 2557 |
+
display: grid !important;
|
| 2558 |
+
}
|
| 2559 |
+
|
| 2560 |
+
.d-md-table {
|
| 2561 |
+
display: table !important;
|
| 2562 |
+
}
|
| 2563 |
+
|
| 2564 |
+
.d-md-table-row {
|
| 2565 |
+
display: table-row !important;
|
| 2566 |
+
}
|
| 2567 |
+
|
| 2568 |
+
.d-md-table-cell {
|
| 2569 |
+
display: table-cell !important;
|
| 2570 |
+
}
|
| 2571 |
+
|
| 2572 |
+
.d-md-flex {
|
| 2573 |
+
display: flex !important;
|
| 2574 |
+
}
|
| 2575 |
+
|
| 2576 |
+
.d-md-inline-flex {
|
| 2577 |
+
display: inline-flex !important;
|
| 2578 |
+
}
|
| 2579 |
+
|
| 2580 |
+
.d-md-none {
|
| 2581 |
+
display: none !important;
|
| 2582 |
+
}
|
| 2583 |
+
|
| 2584 |
+
.flex-md-fill {
|
| 2585 |
+
flex: 1 1 auto !important;
|
| 2586 |
+
}
|
| 2587 |
+
|
| 2588 |
+
.flex-md-row {
|
| 2589 |
+
flex-direction: row !important;
|
| 2590 |
+
}
|
| 2591 |
+
|
| 2592 |
+
.flex-md-column {
|
| 2593 |
+
flex-direction: column !important;
|
| 2594 |
+
}
|
| 2595 |
+
|
| 2596 |
+
.flex-md-row-reverse {
|
| 2597 |
+
flex-direction: row-reverse !important;
|
| 2598 |
+
}
|
| 2599 |
+
|
| 2600 |
+
.flex-md-column-reverse {
|
| 2601 |
+
flex-direction: column-reverse !important;
|
| 2602 |
+
}
|
| 2603 |
+
|
| 2604 |
+
.flex-md-grow-0 {
|
| 2605 |
+
flex-grow: 0 !important;
|
| 2606 |
+
}
|
| 2607 |
+
|
| 2608 |
+
.flex-md-grow-1 {
|
| 2609 |
+
flex-grow: 1 !important;
|
| 2610 |
+
}
|
| 2611 |
+
|
| 2612 |
+
.flex-md-shrink-0 {
|
| 2613 |
+
flex-shrink: 0 !important;
|
| 2614 |
+
}
|
| 2615 |
+
|
| 2616 |
+
.flex-md-shrink-1 {
|
| 2617 |
+
flex-shrink: 1 !important;
|
| 2618 |
+
}
|
| 2619 |
+
|
| 2620 |
+
.flex-md-wrap {
|
| 2621 |
+
flex-wrap: wrap !important;
|
| 2622 |
+
}
|
| 2623 |
+
|
| 2624 |
+
.flex-md-nowrap {
|
| 2625 |
+
flex-wrap: nowrap !important;
|
| 2626 |
+
}
|
| 2627 |
+
|
| 2628 |
+
.flex-md-wrap-reverse {
|
| 2629 |
+
flex-wrap: wrap-reverse !important;
|
| 2630 |
+
}
|
| 2631 |
+
|
| 2632 |
+
.justify-content-md-start {
|
| 2633 |
+
justify-content: flex-start !important;
|
| 2634 |
+
}
|
| 2635 |
+
|
| 2636 |
+
.justify-content-md-end {
|
| 2637 |
+
justify-content: flex-end !important;
|
| 2638 |
+
}
|
| 2639 |
+
|
| 2640 |
+
.justify-content-md-center {
|
| 2641 |
+
justify-content: center !important;
|
| 2642 |
+
}
|
| 2643 |
+
|
| 2644 |
+
.justify-content-md-between {
|
| 2645 |
+
justify-content: space-between !important;
|
| 2646 |
+
}
|
| 2647 |
+
|
| 2648 |
+
.justify-content-md-around {
|
| 2649 |
+
justify-content: space-around !important;
|
| 2650 |
+
}
|
| 2651 |
+
|
| 2652 |
+
.justify-content-md-evenly {
|
| 2653 |
+
justify-content: space-evenly !important;
|
| 2654 |
+
}
|
| 2655 |
+
|
| 2656 |
+
.align-items-md-start {
|
| 2657 |
+
align-items: flex-start !important;
|
| 2658 |
+
}
|
| 2659 |
+
|
| 2660 |
+
.align-items-md-end {
|
| 2661 |
+
align-items: flex-end !important;
|
| 2662 |
+
}
|
| 2663 |
+
|
| 2664 |
+
.align-items-md-center {
|
| 2665 |
+
align-items: center !important;
|
| 2666 |
+
}
|
| 2667 |
+
|
| 2668 |
+
.align-items-md-baseline {
|
| 2669 |
+
align-items: baseline !important;
|
| 2670 |
+
}
|
| 2671 |
+
|
| 2672 |
+
.align-items-md-stretch {
|
| 2673 |
+
align-items: stretch !important;
|
| 2674 |
+
}
|
| 2675 |
+
|
| 2676 |
+
.align-content-md-start {
|
| 2677 |
+
align-content: flex-start !important;
|
| 2678 |
+
}
|
| 2679 |
+
|
| 2680 |
+
.align-content-md-end {
|
| 2681 |
+
align-content: flex-end !important;
|
| 2682 |
+
}
|
| 2683 |
+
|
| 2684 |
+
.align-content-md-center {
|
| 2685 |
+
align-content: center !important;
|
| 2686 |
+
}
|
| 2687 |
+
|
| 2688 |
+
.align-content-md-between {
|
| 2689 |
+
align-content: space-between !important;
|
| 2690 |
+
}
|
| 2691 |
+
|
| 2692 |
+
.align-content-md-around {
|
| 2693 |
+
align-content: space-around !important;
|
| 2694 |
+
}
|
| 2695 |
+
|
| 2696 |
+
.align-content-md-stretch {
|
| 2697 |
+
align-content: stretch !important;
|
| 2698 |
+
}
|
| 2699 |
+
|
| 2700 |
+
.align-self-md-auto {
|
| 2701 |
+
align-self: auto !important;
|
| 2702 |
+
}
|
| 2703 |
+
|
| 2704 |
+
.align-self-md-start {
|
| 2705 |
+
align-self: flex-start !important;
|
| 2706 |
+
}
|
| 2707 |
+
|
| 2708 |
+
.align-self-md-end {
|
| 2709 |
+
align-self: flex-end !important;
|
| 2710 |
+
}
|
| 2711 |
+
|
| 2712 |
+
.align-self-md-center {
|
| 2713 |
+
align-self: center !important;
|
| 2714 |
+
}
|
| 2715 |
+
|
| 2716 |
+
.align-self-md-baseline {
|
| 2717 |
+
align-self: baseline !important;
|
| 2718 |
+
}
|
| 2719 |
+
|
| 2720 |
+
.align-self-md-stretch {
|
| 2721 |
+
align-self: stretch !important;
|
| 2722 |
+
}
|
| 2723 |
+
|
| 2724 |
+
.order-md-first {
|
| 2725 |
+
order: -1 !important;
|
| 2726 |
+
}
|
| 2727 |
+
|
| 2728 |
+
.order-md-0 {
|
| 2729 |
+
order: 0 !important;
|
| 2730 |
+
}
|
| 2731 |
+
|
| 2732 |
+
.order-md-1 {
|
| 2733 |
+
order: 1 !important;
|
| 2734 |
+
}
|
| 2735 |
+
|
| 2736 |
+
.order-md-2 {
|
| 2737 |
+
order: 2 !important;
|
| 2738 |
+
}
|
| 2739 |
+
|
| 2740 |
+
.order-md-3 {
|
| 2741 |
+
order: 3 !important;
|
| 2742 |
+
}
|
| 2743 |
+
|
| 2744 |
+
.order-md-4 {
|
| 2745 |
+
order: 4 !important;
|
| 2746 |
+
}
|
| 2747 |
+
|
| 2748 |
+
.order-md-5 {
|
| 2749 |
+
order: 5 !important;
|
| 2750 |
+
}
|
| 2751 |
+
|
| 2752 |
+
.order-md-last {
|
| 2753 |
+
order: 6 !important;
|
| 2754 |
+
}
|
| 2755 |
+
|
| 2756 |
+
.m-md-0 {
|
| 2757 |
+
margin: 0 !important;
|
| 2758 |
+
}
|
| 2759 |
+
|
| 2760 |
+
.m-md-1 {
|
| 2761 |
+
margin: 0.25rem !important;
|
| 2762 |
+
}
|
| 2763 |
+
|
| 2764 |
+
.m-md-2 {
|
| 2765 |
+
margin: 0.5rem !important;
|
| 2766 |
+
}
|
| 2767 |
+
|
| 2768 |
+
.m-md-3 {
|
| 2769 |
+
margin: 1rem !important;
|
| 2770 |
+
}
|
| 2771 |
+
|
| 2772 |
+
.m-md-4 {
|
| 2773 |
+
margin: 1.5rem !important;
|
| 2774 |
+
}
|
| 2775 |
+
|
| 2776 |
+
.m-md-5 {
|
| 2777 |
+
margin: 3rem !important;
|
| 2778 |
+
}
|
| 2779 |
+
|
| 2780 |
+
.m-md-auto {
|
| 2781 |
+
margin: auto !important;
|
| 2782 |
+
}
|
| 2783 |
+
|
| 2784 |
+
.mx-md-0 {
|
| 2785 |
+
margin-left: 0 !important;
|
| 2786 |
+
margin-right: 0 !important;
|
| 2787 |
+
}
|
| 2788 |
+
|
| 2789 |
+
.mx-md-1 {
|
| 2790 |
+
margin-left: 0.25rem !important;
|
| 2791 |
+
margin-right: 0.25rem !important;
|
| 2792 |
+
}
|
| 2793 |
+
|
| 2794 |
+
.mx-md-2 {
|
| 2795 |
+
margin-left: 0.5rem !important;
|
| 2796 |
+
margin-right: 0.5rem !important;
|
| 2797 |
+
}
|
| 2798 |
+
|
| 2799 |
+
.mx-md-3 {
|
| 2800 |
+
margin-left: 1rem !important;
|
| 2801 |
+
margin-right: 1rem !important;
|
| 2802 |
+
}
|
| 2803 |
+
|
| 2804 |
+
.mx-md-4 {
|
| 2805 |
+
margin-left: 1.5rem !important;
|
| 2806 |
+
margin-right: 1.5rem !important;
|
| 2807 |
+
}
|
| 2808 |
+
|
| 2809 |
+
.mx-md-5 {
|
| 2810 |
+
margin-left: 3rem !important;
|
| 2811 |
+
margin-right: 3rem !important;
|
| 2812 |
+
}
|
| 2813 |
+
|
| 2814 |
+
.mx-md-auto {
|
| 2815 |
+
margin-left: auto !important;
|
| 2816 |
+
margin-right: auto !important;
|
| 2817 |
+
}
|
| 2818 |
+
|
| 2819 |
+
.my-md-0 {
|
| 2820 |
+
margin-top: 0 !important;
|
| 2821 |
+
margin-bottom: 0 !important;
|
| 2822 |
+
}
|
| 2823 |
+
|
| 2824 |
+
.my-md-1 {
|
| 2825 |
+
margin-top: 0.25rem !important;
|
| 2826 |
+
margin-bottom: 0.25rem !important;
|
| 2827 |
+
}
|
| 2828 |
+
|
| 2829 |
+
.my-md-2 {
|
| 2830 |
+
margin-top: 0.5rem !important;
|
| 2831 |
+
margin-bottom: 0.5rem !important;
|
| 2832 |
+
}
|
| 2833 |
+
|
| 2834 |
+
.my-md-3 {
|
| 2835 |
+
margin-top: 1rem !important;
|
| 2836 |
+
margin-bottom: 1rem !important;
|
| 2837 |
+
}
|
| 2838 |
+
|
| 2839 |
+
.my-md-4 {
|
| 2840 |
+
margin-top: 1.5rem !important;
|
| 2841 |
+
margin-bottom: 1.5rem !important;
|
| 2842 |
+
}
|
| 2843 |
+
|
| 2844 |
+
.my-md-5 {
|
| 2845 |
+
margin-top: 3rem !important;
|
| 2846 |
+
margin-bottom: 3rem !important;
|
| 2847 |
+
}
|
| 2848 |
+
|
| 2849 |
+
.my-md-auto {
|
| 2850 |
+
margin-top: auto !important;
|
| 2851 |
+
margin-bottom: auto !important;
|
| 2852 |
+
}
|
| 2853 |
+
|
| 2854 |
+
.mt-md-0 {
|
| 2855 |
+
margin-top: 0 !important;
|
| 2856 |
+
}
|
| 2857 |
+
|
| 2858 |
+
.mt-md-1 {
|
| 2859 |
+
margin-top: 0.25rem !important;
|
| 2860 |
+
}
|
| 2861 |
+
|
| 2862 |
+
.mt-md-2 {
|
| 2863 |
+
margin-top: 0.5rem !important;
|
| 2864 |
+
}
|
| 2865 |
+
|
| 2866 |
+
.mt-md-3 {
|
| 2867 |
+
margin-top: 1rem !important;
|
| 2868 |
+
}
|
| 2869 |
+
|
| 2870 |
+
.mt-md-4 {
|
| 2871 |
+
margin-top: 1.5rem !important;
|
| 2872 |
+
}
|
| 2873 |
+
|
| 2874 |
+
.mt-md-5 {
|
| 2875 |
+
margin-top: 3rem !important;
|
| 2876 |
+
}
|
| 2877 |
+
|
| 2878 |
+
.mt-md-auto {
|
| 2879 |
+
margin-top: auto !important;
|
| 2880 |
+
}
|
| 2881 |
+
|
| 2882 |
+
.me-md-0 {
|
| 2883 |
+
margin-left: 0 !important;
|
| 2884 |
+
}
|
| 2885 |
+
|
| 2886 |
+
.me-md-1 {
|
| 2887 |
+
margin-left: 0.25rem !important;
|
| 2888 |
+
}
|
| 2889 |
+
|
| 2890 |
+
.me-md-2 {
|
| 2891 |
+
margin-left: 0.5rem !important;
|
| 2892 |
+
}
|
| 2893 |
+
|
| 2894 |
+
.me-md-3 {
|
| 2895 |
+
margin-left: 1rem !important;
|
| 2896 |
+
}
|
| 2897 |
+
|
| 2898 |
+
.me-md-4 {
|
| 2899 |
+
margin-left: 1.5rem !important;
|
| 2900 |
+
}
|
| 2901 |
+
|
| 2902 |
+
.me-md-5 {
|
| 2903 |
+
margin-left: 3rem !important;
|
| 2904 |
+
}
|
| 2905 |
+
|
| 2906 |
+
.me-md-auto {
|
| 2907 |
+
margin-left: auto !important;
|
| 2908 |
+
}
|
| 2909 |
+
|
| 2910 |
+
.mb-md-0 {
|
| 2911 |
+
margin-bottom: 0 !important;
|
| 2912 |
+
}
|
| 2913 |
+
|
| 2914 |
+
.mb-md-1 {
|
| 2915 |
+
margin-bottom: 0.25rem !important;
|
| 2916 |
+
}
|
| 2917 |
+
|
| 2918 |
+
.mb-md-2 {
|
| 2919 |
+
margin-bottom: 0.5rem !important;
|
| 2920 |
+
}
|
| 2921 |
+
|
| 2922 |
+
.mb-md-3 {
|
| 2923 |
+
margin-bottom: 1rem !important;
|
| 2924 |
+
}
|
| 2925 |
+
|
| 2926 |
+
.mb-md-4 {
|
| 2927 |
+
margin-bottom: 1.5rem !important;
|
| 2928 |
+
}
|
| 2929 |
+
|
| 2930 |
+
.mb-md-5 {
|
| 2931 |
+
margin-bottom: 3rem !important;
|
| 2932 |
+
}
|
| 2933 |
+
|
| 2934 |
+
.mb-md-auto {
|
| 2935 |
+
margin-bottom: auto !important;
|
| 2936 |
+
}
|
| 2937 |
+
|
| 2938 |
+
.ms-md-0 {
|
| 2939 |
+
margin-right: 0 !important;
|
| 2940 |
+
}
|
| 2941 |
+
|
| 2942 |
+
.ms-md-1 {
|
| 2943 |
+
margin-right: 0.25rem !important;
|
| 2944 |
+
}
|
| 2945 |
+
|
| 2946 |
+
.ms-md-2 {
|
| 2947 |
+
margin-right: 0.5rem !important;
|
| 2948 |
+
}
|
| 2949 |
+
|
| 2950 |
+
.ms-md-3 {
|
| 2951 |
+
margin-right: 1rem !important;
|
| 2952 |
+
}
|
| 2953 |
+
|
| 2954 |
+
.ms-md-4 {
|
| 2955 |
+
margin-right: 1.5rem !important;
|
| 2956 |
+
}
|
| 2957 |
+
|
| 2958 |
+
.ms-md-5 {
|
| 2959 |
+
margin-right: 3rem !important;
|
| 2960 |
+
}
|
| 2961 |
+
|
| 2962 |
+
.ms-md-auto {
|
| 2963 |
+
margin-right: auto !important;
|
| 2964 |
+
}
|
| 2965 |
+
|
| 2966 |
+
.p-md-0 {
|
| 2967 |
+
padding: 0 !important;
|
| 2968 |
+
}
|
| 2969 |
+
|
| 2970 |
+
.p-md-1 {
|
| 2971 |
+
padding: 0.25rem !important;
|
| 2972 |
+
}
|
| 2973 |
+
|
| 2974 |
+
.p-md-2 {
|
| 2975 |
+
padding: 0.5rem !important;
|
| 2976 |
+
}
|
| 2977 |
+
|
| 2978 |
+
.p-md-3 {
|
| 2979 |
+
padding: 1rem !important;
|
| 2980 |
+
}
|
| 2981 |
+
|
| 2982 |
+
.p-md-4 {
|
| 2983 |
+
padding: 1.5rem !important;
|
| 2984 |
+
}
|
| 2985 |
+
|
| 2986 |
+
.p-md-5 {
|
| 2987 |
+
padding: 3rem !important;
|
| 2988 |
+
}
|
| 2989 |
+
|
| 2990 |
+
.px-md-0 {
|
| 2991 |
+
padding-left: 0 !important;
|
| 2992 |
+
padding-right: 0 !important;
|
| 2993 |
+
}
|
| 2994 |
+
|
| 2995 |
+
.px-md-1 {
|
| 2996 |
+
padding-left: 0.25rem !important;
|
| 2997 |
+
padding-right: 0.25rem !important;
|
| 2998 |
+
}
|
| 2999 |
+
|
| 3000 |
+
.px-md-2 {
|
| 3001 |
+
padding-left: 0.5rem !important;
|
| 3002 |
+
padding-right: 0.5rem !important;
|
| 3003 |
+
}
|
| 3004 |
+
|
| 3005 |
+
.px-md-3 {
|
| 3006 |
+
padding-left: 1rem !important;
|
| 3007 |
+
padding-right: 1rem !important;
|
| 3008 |
+
}
|
| 3009 |
+
|
| 3010 |
+
.px-md-4 {
|
| 3011 |
+
padding-left: 1.5rem !important;
|
| 3012 |
+
padding-right: 1.5rem !important;
|
| 3013 |
+
}
|
| 3014 |
+
|
| 3015 |
+
.px-md-5 {
|
| 3016 |
+
padding-left: 3rem !important;
|
| 3017 |
+
padding-right: 3rem !important;
|
| 3018 |
+
}
|
| 3019 |
+
|
| 3020 |
+
.py-md-0 {
|
| 3021 |
+
padding-top: 0 !important;
|
| 3022 |
+
padding-bottom: 0 !important;
|
| 3023 |
+
}
|
| 3024 |
+
|
| 3025 |
+
.py-md-1 {
|
| 3026 |
+
padding-top: 0.25rem !important;
|
| 3027 |
+
padding-bottom: 0.25rem !important;
|
| 3028 |
+
}
|
| 3029 |
+
|
| 3030 |
+
.py-md-2 {
|
| 3031 |
+
padding-top: 0.5rem !important;
|
| 3032 |
+
padding-bottom: 0.5rem !important;
|
| 3033 |
+
}
|
| 3034 |
+
|
| 3035 |
+
.py-md-3 {
|
| 3036 |
+
padding-top: 1rem !important;
|
| 3037 |
+
padding-bottom: 1rem !important;
|
| 3038 |
+
}
|
| 3039 |
+
|
| 3040 |
+
.py-md-4 {
|
| 3041 |
+
padding-top: 1.5rem !important;
|
| 3042 |
+
padding-bottom: 1.5rem !important;
|
| 3043 |
+
}
|
| 3044 |
+
|
| 3045 |
+
.py-md-5 {
|
| 3046 |
+
padding-top: 3rem !important;
|
| 3047 |
+
padding-bottom: 3rem !important;
|
| 3048 |
+
}
|
| 3049 |
+
|
| 3050 |
+
.pt-md-0 {
|
| 3051 |
+
padding-top: 0 !important;
|
| 3052 |
+
}
|
| 3053 |
+
|
| 3054 |
+
.pt-md-1 {
|
| 3055 |
+
padding-top: 0.25rem !important;
|
| 3056 |
+
}
|
| 3057 |
+
|
| 3058 |
+
.pt-md-2 {
|
| 3059 |
+
padding-top: 0.5rem !important;
|
| 3060 |
+
}
|
| 3061 |
+
|
| 3062 |
+
.pt-md-3 {
|
| 3063 |
+
padding-top: 1rem !important;
|
| 3064 |
+
}
|
| 3065 |
+
|
| 3066 |
+
.pt-md-4 {
|
| 3067 |
+
padding-top: 1.5rem !important;
|
| 3068 |
+
}
|
| 3069 |
+
|
| 3070 |
+
.pt-md-5 {
|
| 3071 |
+
padding-top: 3rem !important;
|
| 3072 |
+
}
|
| 3073 |
+
|
| 3074 |
+
.pe-md-0 {
|
| 3075 |
+
padding-left: 0 !important;
|
| 3076 |
+
}
|
| 3077 |
+
|
| 3078 |
+
.pe-md-1 {
|
| 3079 |
+
padding-left: 0.25rem !important;
|
| 3080 |
+
}
|
| 3081 |
+
|
| 3082 |
+
.pe-md-2 {
|
| 3083 |
+
padding-left: 0.5rem !important;
|
| 3084 |
+
}
|
| 3085 |
+
|
| 3086 |
+
.pe-md-3 {
|
| 3087 |
+
padding-left: 1rem !important;
|
| 3088 |
+
}
|
| 3089 |
+
|
| 3090 |
+
.pe-md-4 {
|
| 3091 |
+
padding-left: 1.5rem !important;
|
| 3092 |
+
}
|
| 3093 |
+
|
| 3094 |
+
.pe-md-5 {
|
| 3095 |
+
padding-left: 3rem !important;
|
| 3096 |
+
}
|
| 3097 |
+
|
| 3098 |
+
.pb-md-0 {
|
| 3099 |
+
padding-bottom: 0 !important;
|
| 3100 |
+
}
|
| 3101 |
+
|
| 3102 |
+
.pb-md-1 {
|
| 3103 |
+
padding-bottom: 0.25rem !important;
|
| 3104 |
+
}
|
| 3105 |
+
|
| 3106 |
+
.pb-md-2 {
|
| 3107 |
+
padding-bottom: 0.5rem !important;
|
| 3108 |
+
}
|
| 3109 |
+
|
| 3110 |
+
.pb-md-3 {
|
| 3111 |
+
padding-bottom: 1rem !important;
|
| 3112 |
+
}
|
| 3113 |
+
|
| 3114 |
+
.pb-md-4 {
|
| 3115 |
+
padding-bottom: 1.5rem !important;
|
| 3116 |
+
}
|
| 3117 |
+
|
| 3118 |
+
.pb-md-5 {
|
| 3119 |
+
padding-bottom: 3rem !important;
|
| 3120 |
+
}
|
| 3121 |
+
|
| 3122 |
+
.ps-md-0 {
|
| 3123 |
+
padding-right: 0 !important;
|
| 3124 |
+
}
|
| 3125 |
+
|
| 3126 |
+
.ps-md-1 {
|
| 3127 |
+
padding-right: 0.25rem !important;
|
| 3128 |
+
}
|
| 3129 |
+
|
| 3130 |
+
.ps-md-2 {
|
| 3131 |
+
padding-right: 0.5rem !important;
|
| 3132 |
+
}
|
| 3133 |
+
|
| 3134 |
+
.ps-md-3 {
|
| 3135 |
+
padding-right: 1rem !important;
|
| 3136 |
+
}
|
| 3137 |
+
|
| 3138 |
+
.ps-md-4 {
|
| 3139 |
+
padding-right: 1.5rem !important;
|
| 3140 |
+
}
|
| 3141 |
+
|
| 3142 |
+
.ps-md-5 {
|
| 3143 |
+
padding-right: 3rem !important;
|
| 3144 |
+
}
|
| 3145 |
+
}
|
| 3146 |
+
@media (min-width: 992px) {
|
| 3147 |
+
.d-lg-inline {
|
| 3148 |
+
display: inline !important;
|
| 3149 |
+
}
|
| 3150 |
+
|
| 3151 |
+
.d-lg-inline-block {
|
| 3152 |
+
display: inline-block !important;
|
| 3153 |
+
}
|
| 3154 |
+
|
| 3155 |
+
.d-lg-block {
|
| 3156 |
+
display: block !important;
|
| 3157 |
+
}
|
| 3158 |
+
|
| 3159 |
+
.d-lg-grid {
|
| 3160 |
+
display: grid !important;
|
| 3161 |
+
}
|
| 3162 |
+
|
| 3163 |
+
.d-lg-table {
|
| 3164 |
+
display: table !important;
|
| 3165 |
+
}
|
| 3166 |
+
|
| 3167 |
+
.d-lg-table-row {
|
| 3168 |
+
display: table-row !important;
|
| 3169 |
+
}
|
| 3170 |
+
|
| 3171 |
+
.d-lg-table-cell {
|
| 3172 |
+
display: table-cell !important;
|
| 3173 |
+
}
|
| 3174 |
+
|
| 3175 |
+
.d-lg-flex {
|
| 3176 |
+
display: flex !important;
|
| 3177 |
+
}
|
| 3178 |
+
|
| 3179 |
+
.d-lg-inline-flex {
|
| 3180 |
+
display: inline-flex !important;
|
| 3181 |
+
}
|
| 3182 |
+
|
| 3183 |
+
.d-lg-none {
|
| 3184 |
+
display: none !important;
|
| 3185 |
+
}
|
| 3186 |
+
|
| 3187 |
+
.flex-lg-fill {
|
| 3188 |
+
flex: 1 1 auto !important;
|
| 3189 |
+
}
|
| 3190 |
+
|
| 3191 |
+
.flex-lg-row {
|
| 3192 |
+
flex-direction: row !important;
|
| 3193 |
+
}
|
| 3194 |
+
|
| 3195 |
+
.flex-lg-column {
|
| 3196 |
+
flex-direction: column !important;
|
| 3197 |
+
}
|
| 3198 |
+
|
| 3199 |
+
.flex-lg-row-reverse {
|
| 3200 |
+
flex-direction: row-reverse !important;
|
| 3201 |
+
}
|
| 3202 |
+
|
| 3203 |
+
.flex-lg-column-reverse {
|
| 3204 |
+
flex-direction: column-reverse !important;
|
| 3205 |
+
}
|
| 3206 |
+
|
| 3207 |
+
.flex-lg-grow-0 {
|
| 3208 |
+
flex-grow: 0 !important;
|
| 3209 |
+
}
|
| 3210 |
+
|
| 3211 |
+
.flex-lg-grow-1 {
|
| 3212 |
+
flex-grow: 1 !important;
|
| 3213 |
+
}
|
| 3214 |
+
|
| 3215 |
+
.flex-lg-shrink-0 {
|
| 3216 |
+
flex-shrink: 0 !important;
|
| 3217 |
+
}
|
| 3218 |
+
|
| 3219 |
+
.flex-lg-shrink-1 {
|
| 3220 |
+
flex-shrink: 1 !important;
|
| 3221 |
+
}
|
| 3222 |
+
|
| 3223 |
+
.flex-lg-wrap {
|
| 3224 |
+
flex-wrap: wrap !important;
|
| 3225 |
+
}
|
| 3226 |
+
|
| 3227 |
+
.flex-lg-nowrap {
|
| 3228 |
+
flex-wrap: nowrap !important;
|
| 3229 |
+
}
|
| 3230 |
+
|
| 3231 |
+
.flex-lg-wrap-reverse {
|
| 3232 |
+
flex-wrap: wrap-reverse !important;
|
| 3233 |
+
}
|
| 3234 |
+
|
| 3235 |
+
.justify-content-lg-start {
|
| 3236 |
+
justify-content: flex-start !important;
|
| 3237 |
+
}
|
| 3238 |
+
|
| 3239 |
+
.justify-content-lg-end {
|
| 3240 |
+
justify-content: flex-end !important;
|
| 3241 |
+
}
|
| 3242 |
+
|
| 3243 |
+
.justify-content-lg-center {
|
| 3244 |
+
justify-content: center !important;
|
| 3245 |
+
}
|
| 3246 |
+
|
| 3247 |
+
.justify-content-lg-between {
|
| 3248 |
+
justify-content: space-between !important;
|
| 3249 |
+
}
|
| 3250 |
+
|
| 3251 |
+
.justify-content-lg-around {
|
| 3252 |
+
justify-content: space-around !important;
|
| 3253 |
+
}
|
| 3254 |
+
|
| 3255 |
+
.justify-content-lg-evenly {
|
| 3256 |
+
justify-content: space-evenly !important;
|
| 3257 |
+
}
|
| 3258 |
+
|
| 3259 |
+
.align-items-lg-start {
|
| 3260 |
+
align-items: flex-start !important;
|
| 3261 |
+
}
|
| 3262 |
+
|
| 3263 |
+
.align-items-lg-end {
|
| 3264 |
+
align-items: flex-end !important;
|
| 3265 |
+
}
|
| 3266 |
+
|
| 3267 |
+
.align-items-lg-center {
|
| 3268 |
+
align-items: center !important;
|
| 3269 |
+
}
|
| 3270 |
+
|
| 3271 |
+
.align-items-lg-baseline {
|
| 3272 |
+
align-items: baseline !important;
|
| 3273 |
+
}
|
| 3274 |
+
|
| 3275 |
+
.align-items-lg-stretch {
|
| 3276 |
+
align-items: stretch !important;
|
| 3277 |
+
}
|
| 3278 |
+
|
| 3279 |
+
.align-content-lg-start {
|
| 3280 |
+
align-content: flex-start !important;
|
| 3281 |
+
}
|
| 3282 |
+
|
| 3283 |
+
.align-content-lg-end {
|
| 3284 |
+
align-content: flex-end !important;
|
| 3285 |
+
}
|
| 3286 |
+
|
| 3287 |
+
.align-content-lg-center {
|
| 3288 |
+
align-content: center !important;
|
| 3289 |
+
}
|
| 3290 |
+
|
| 3291 |
+
.align-content-lg-between {
|
| 3292 |
+
align-content: space-between !important;
|
| 3293 |
+
}
|
| 3294 |
+
|
| 3295 |
+
.align-content-lg-around {
|
| 3296 |
+
align-content: space-around !important;
|
| 3297 |
+
}
|
| 3298 |
+
|
| 3299 |
+
.align-content-lg-stretch {
|
| 3300 |
+
align-content: stretch !important;
|
| 3301 |
+
}
|
| 3302 |
+
|
| 3303 |
+
.align-self-lg-auto {
|
| 3304 |
+
align-self: auto !important;
|
| 3305 |
+
}
|
| 3306 |
+
|
| 3307 |
+
.align-self-lg-start {
|
| 3308 |
+
align-self: flex-start !important;
|
| 3309 |
+
}
|
| 3310 |
+
|
| 3311 |
+
.align-self-lg-end {
|
| 3312 |
+
align-self: flex-end !important;
|
| 3313 |
+
}
|
| 3314 |
+
|
| 3315 |
+
.align-self-lg-center {
|
| 3316 |
+
align-self: center !important;
|
| 3317 |
+
}
|
| 3318 |
+
|
| 3319 |
+
.align-self-lg-baseline {
|
| 3320 |
+
align-self: baseline !important;
|
| 3321 |
+
}
|
| 3322 |
+
|
| 3323 |
+
.align-self-lg-stretch {
|
| 3324 |
+
align-self: stretch !important;
|
| 3325 |
+
}
|
| 3326 |
+
|
| 3327 |
+
.order-lg-first {
|
| 3328 |
+
order: -1 !important;
|
| 3329 |
+
}
|
| 3330 |
+
|
| 3331 |
+
.order-lg-0 {
|
| 3332 |
+
order: 0 !important;
|
| 3333 |
+
}
|
| 3334 |
+
|
| 3335 |
+
.order-lg-1 {
|
| 3336 |
+
order: 1 !important;
|
| 3337 |
+
}
|
| 3338 |
+
|
| 3339 |
+
.order-lg-2 {
|
| 3340 |
+
order: 2 !important;
|
| 3341 |
+
}
|
| 3342 |
+
|
| 3343 |
+
.order-lg-3 {
|
| 3344 |
+
order: 3 !important;
|
| 3345 |
+
}
|
| 3346 |
+
|
| 3347 |
+
.order-lg-4 {
|
| 3348 |
+
order: 4 !important;
|
| 3349 |
+
}
|
| 3350 |
+
|
| 3351 |
+
.order-lg-5 {
|
| 3352 |
+
order: 5 !important;
|
| 3353 |
+
}
|
| 3354 |
+
|
| 3355 |
+
.order-lg-last {
|
| 3356 |
+
order: 6 !important;
|
| 3357 |
+
}
|
| 3358 |
+
|
| 3359 |
+
.m-lg-0 {
|
| 3360 |
+
margin: 0 !important;
|
| 3361 |
+
}
|
| 3362 |
+
|
| 3363 |
+
.m-lg-1 {
|
| 3364 |
+
margin: 0.25rem !important;
|
| 3365 |
+
}
|
| 3366 |
+
|
| 3367 |
+
.m-lg-2 {
|
| 3368 |
+
margin: 0.5rem !important;
|
| 3369 |
+
}
|
| 3370 |
+
|
| 3371 |
+
.m-lg-3 {
|
| 3372 |
+
margin: 1rem !important;
|
| 3373 |
+
}
|
| 3374 |
+
|
| 3375 |
+
.m-lg-4 {
|
| 3376 |
+
margin: 1.5rem !important;
|
| 3377 |
+
}
|
| 3378 |
+
|
| 3379 |
+
.m-lg-5 {
|
| 3380 |
+
margin: 3rem !important;
|
| 3381 |
+
}
|
| 3382 |
+
|
| 3383 |
+
.m-lg-auto {
|
| 3384 |
+
margin: auto !important;
|
| 3385 |
+
}
|
| 3386 |
+
|
| 3387 |
+
.mx-lg-0 {
|
| 3388 |
+
margin-left: 0 !important;
|
| 3389 |
+
margin-right: 0 !important;
|
| 3390 |
+
}
|
| 3391 |
+
|
| 3392 |
+
.mx-lg-1 {
|
| 3393 |
+
margin-left: 0.25rem !important;
|
| 3394 |
+
margin-right: 0.25rem !important;
|
| 3395 |
+
}
|
| 3396 |
+
|
| 3397 |
+
.mx-lg-2 {
|
| 3398 |
+
margin-left: 0.5rem !important;
|
| 3399 |
+
margin-right: 0.5rem !important;
|
| 3400 |
+
}
|
| 3401 |
+
|
| 3402 |
+
.mx-lg-3 {
|
| 3403 |
+
margin-left: 1rem !important;
|
| 3404 |
+
margin-right: 1rem !important;
|
| 3405 |
+
}
|
| 3406 |
+
|
| 3407 |
+
.mx-lg-4 {
|
| 3408 |
+
margin-left: 1.5rem !important;
|
| 3409 |
+
margin-right: 1.5rem !important;
|
| 3410 |
+
}
|
| 3411 |
+
|
| 3412 |
+
.mx-lg-5 {
|
| 3413 |
+
margin-left: 3rem !important;
|
| 3414 |
+
margin-right: 3rem !important;
|
| 3415 |
+
}
|
| 3416 |
+
|
| 3417 |
+
.mx-lg-auto {
|
| 3418 |
+
margin-left: auto !important;
|
| 3419 |
+
margin-right: auto !important;
|
| 3420 |
+
}
|
| 3421 |
+
|
| 3422 |
+
.my-lg-0 {
|
| 3423 |
+
margin-top: 0 !important;
|
| 3424 |
+
margin-bottom: 0 !important;
|
| 3425 |
+
}
|
| 3426 |
+
|
| 3427 |
+
.my-lg-1 {
|
| 3428 |
+
margin-top: 0.25rem !important;
|
| 3429 |
+
margin-bottom: 0.25rem !important;
|
| 3430 |
+
}
|
| 3431 |
+
|
| 3432 |
+
.my-lg-2 {
|
| 3433 |
+
margin-top: 0.5rem !important;
|
| 3434 |
+
margin-bottom: 0.5rem !important;
|
| 3435 |
+
}
|
| 3436 |
+
|
| 3437 |
+
.my-lg-3 {
|
| 3438 |
+
margin-top: 1rem !important;
|
| 3439 |
+
margin-bottom: 1rem !important;
|
| 3440 |
+
}
|
| 3441 |
+
|
| 3442 |
+
.my-lg-4 {
|
| 3443 |
+
margin-top: 1.5rem !important;
|
| 3444 |
+
margin-bottom: 1.5rem !important;
|
| 3445 |
+
}
|
| 3446 |
+
|
| 3447 |
+
.my-lg-5 {
|
| 3448 |
+
margin-top: 3rem !important;
|
| 3449 |
+
margin-bottom: 3rem !important;
|
| 3450 |
+
}
|
| 3451 |
+
|
| 3452 |
+
.my-lg-auto {
|
| 3453 |
+
margin-top: auto !important;
|
| 3454 |
+
margin-bottom: auto !important;
|
| 3455 |
+
}
|
| 3456 |
+
|
| 3457 |
+
.mt-lg-0 {
|
| 3458 |
+
margin-top: 0 !important;
|
| 3459 |
+
}
|
| 3460 |
+
|
| 3461 |
+
.mt-lg-1 {
|
| 3462 |
+
margin-top: 0.25rem !important;
|
| 3463 |
+
}
|
| 3464 |
+
|
| 3465 |
+
.mt-lg-2 {
|
| 3466 |
+
margin-top: 0.5rem !important;
|
| 3467 |
+
}
|
| 3468 |
+
|
| 3469 |
+
.mt-lg-3 {
|
| 3470 |
+
margin-top: 1rem !important;
|
| 3471 |
+
}
|
| 3472 |
+
|
| 3473 |
+
.mt-lg-4 {
|
| 3474 |
+
margin-top: 1.5rem !important;
|
| 3475 |
+
}
|
| 3476 |
+
|
| 3477 |
+
.mt-lg-5 {
|
| 3478 |
+
margin-top: 3rem !important;
|
| 3479 |
+
}
|
| 3480 |
+
|
| 3481 |
+
.mt-lg-auto {
|
| 3482 |
+
margin-top: auto !important;
|
| 3483 |
+
}
|
| 3484 |
+
|
| 3485 |
+
.me-lg-0 {
|
| 3486 |
+
margin-left: 0 !important;
|
| 3487 |
+
}
|
| 3488 |
+
|
| 3489 |
+
.me-lg-1 {
|
| 3490 |
+
margin-left: 0.25rem !important;
|
| 3491 |
+
}
|
| 3492 |
+
|
| 3493 |
+
.me-lg-2 {
|
| 3494 |
+
margin-left: 0.5rem !important;
|
| 3495 |
+
}
|
| 3496 |
+
|
| 3497 |
+
.me-lg-3 {
|
| 3498 |
+
margin-left: 1rem !important;
|
| 3499 |
+
}
|
| 3500 |
+
|
| 3501 |
+
.me-lg-4 {
|
| 3502 |
+
margin-left: 1.5rem !important;
|
| 3503 |
+
}
|
| 3504 |
+
|
| 3505 |
+
.me-lg-5 {
|
| 3506 |
+
margin-left: 3rem !important;
|
| 3507 |
+
}
|
| 3508 |
+
|
| 3509 |
+
.me-lg-auto {
|
| 3510 |
+
margin-left: auto !important;
|
| 3511 |
+
}
|
| 3512 |
+
|
| 3513 |
+
.mb-lg-0 {
|
| 3514 |
+
margin-bottom: 0 !important;
|
| 3515 |
+
}
|
| 3516 |
+
|
| 3517 |
+
.mb-lg-1 {
|
| 3518 |
+
margin-bottom: 0.25rem !important;
|
| 3519 |
+
}
|
| 3520 |
+
|
| 3521 |
+
.mb-lg-2 {
|
| 3522 |
+
margin-bottom: 0.5rem !important;
|
| 3523 |
+
}
|
| 3524 |
+
|
| 3525 |
+
.mb-lg-3 {
|
| 3526 |
+
margin-bottom: 1rem !important;
|
| 3527 |
+
}
|
| 3528 |
+
|
| 3529 |
+
.mb-lg-4 {
|
| 3530 |
+
margin-bottom: 1.5rem !important;
|
| 3531 |
+
}
|
| 3532 |
+
|
| 3533 |
+
.mb-lg-5 {
|
| 3534 |
+
margin-bottom: 3rem !important;
|
| 3535 |
+
}
|
| 3536 |
+
|
| 3537 |
+
.mb-lg-auto {
|
| 3538 |
+
margin-bottom: auto !important;
|
| 3539 |
+
}
|
| 3540 |
+
|
| 3541 |
+
.ms-lg-0 {
|
| 3542 |
+
margin-right: 0 !important;
|
| 3543 |
+
}
|
| 3544 |
+
|
| 3545 |
+
.ms-lg-1 {
|
| 3546 |
+
margin-right: 0.25rem !important;
|
| 3547 |
+
}
|
| 3548 |
+
|
| 3549 |
+
.ms-lg-2 {
|
| 3550 |
+
margin-right: 0.5rem !important;
|
| 3551 |
+
}
|
| 3552 |
+
|
| 3553 |
+
.ms-lg-3 {
|
| 3554 |
+
margin-right: 1rem !important;
|
| 3555 |
+
}
|
| 3556 |
+
|
| 3557 |
+
.ms-lg-4 {
|
| 3558 |
+
margin-right: 1.5rem !important;
|
| 3559 |
+
}
|
| 3560 |
+
|
| 3561 |
+
.ms-lg-5 {
|
| 3562 |
+
margin-right: 3rem !important;
|
| 3563 |
+
}
|
| 3564 |
+
|
| 3565 |
+
.ms-lg-auto {
|
| 3566 |
+
margin-right: auto !important;
|
| 3567 |
+
}
|
| 3568 |
+
|
| 3569 |
+
.p-lg-0 {
|
| 3570 |
+
padding: 0 !important;
|
| 3571 |
+
}
|
| 3572 |
+
|
| 3573 |
+
.p-lg-1 {
|
| 3574 |
+
padding: 0.25rem !important;
|
| 3575 |
+
}
|
| 3576 |
+
|
| 3577 |
+
.p-lg-2 {
|
| 3578 |
+
padding: 0.5rem !important;
|
| 3579 |
+
}
|
| 3580 |
+
|
| 3581 |
+
.p-lg-3 {
|
| 3582 |
+
padding: 1rem !important;
|
| 3583 |
+
}
|
| 3584 |
+
|
| 3585 |
+
.p-lg-4 {
|
| 3586 |
+
padding: 1.5rem !important;
|
| 3587 |
+
}
|
| 3588 |
+
|
| 3589 |
+
.p-lg-5 {
|
| 3590 |
+
padding: 3rem !important;
|
| 3591 |
+
}
|
| 3592 |
+
|
| 3593 |
+
.px-lg-0 {
|
| 3594 |
+
padding-left: 0 !important;
|
| 3595 |
+
padding-right: 0 !important;
|
| 3596 |
+
}
|
| 3597 |
+
|
| 3598 |
+
.px-lg-1 {
|
| 3599 |
+
padding-left: 0.25rem !important;
|
| 3600 |
+
padding-right: 0.25rem !important;
|
| 3601 |
+
}
|
| 3602 |
+
|
| 3603 |
+
.px-lg-2 {
|
| 3604 |
+
padding-left: 0.5rem !important;
|
| 3605 |
+
padding-right: 0.5rem !important;
|
| 3606 |
+
}
|
| 3607 |
+
|
| 3608 |
+
.px-lg-3 {
|
| 3609 |
+
padding-left: 1rem !important;
|
| 3610 |
+
padding-right: 1rem !important;
|
| 3611 |
+
}
|
| 3612 |
+
|
| 3613 |
+
.px-lg-4 {
|
| 3614 |
+
padding-left: 1.5rem !important;
|
| 3615 |
+
padding-right: 1.5rem !important;
|
| 3616 |
+
}
|
| 3617 |
+
|
| 3618 |
+
.px-lg-5 {
|
| 3619 |
+
padding-left: 3rem !important;
|
| 3620 |
+
padding-right: 3rem !important;
|
| 3621 |
+
}
|
| 3622 |
+
|
| 3623 |
+
.py-lg-0 {
|
| 3624 |
+
padding-top: 0 !important;
|
| 3625 |
+
padding-bottom: 0 !important;
|
| 3626 |
+
}
|
| 3627 |
+
|
| 3628 |
+
.py-lg-1 {
|
| 3629 |
+
padding-top: 0.25rem !important;
|
| 3630 |
+
padding-bottom: 0.25rem !important;
|
| 3631 |
+
}
|
| 3632 |
+
|
| 3633 |
+
.py-lg-2 {
|
| 3634 |
+
padding-top: 0.5rem !important;
|
| 3635 |
+
padding-bottom: 0.5rem !important;
|
| 3636 |
+
}
|
| 3637 |
+
|
| 3638 |
+
.py-lg-3 {
|
| 3639 |
+
padding-top: 1rem !important;
|
| 3640 |
+
padding-bottom: 1rem !important;
|
| 3641 |
+
}
|
| 3642 |
+
|
| 3643 |
+
.py-lg-4 {
|
| 3644 |
+
padding-top: 1.5rem !important;
|
| 3645 |
+
padding-bottom: 1.5rem !important;
|
| 3646 |
+
}
|
| 3647 |
+
|
| 3648 |
+
.py-lg-5 {
|
| 3649 |
+
padding-top: 3rem !important;
|
| 3650 |
+
padding-bottom: 3rem !important;
|
| 3651 |
+
}
|
| 3652 |
+
|
| 3653 |
+
.pt-lg-0 {
|
| 3654 |
+
padding-top: 0 !important;
|
| 3655 |
+
}
|
| 3656 |
+
|
| 3657 |
+
.pt-lg-1 {
|
| 3658 |
+
padding-top: 0.25rem !important;
|
| 3659 |
+
}
|
| 3660 |
+
|
| 3661 |
+
.pt-lg-2 {
|
| 3662 |
+
padding-top: 0.5rem !important;
|
| 3663 |
+
}
|
| 3664 |
+
|
| 3665 |
+
.pt-lg-3 {
|
| 3666 |
+
padding-top: 1rem !important;
|
| 3667 |
+
}
|
| 3668 |
+
|
| 3669 |
+
.pt-lg-4 {
|
| 3670 |
+
padding-top: 1.5rem !important;
|
| 3671 |
+
}
|
| 3672 |
+
|
| 3673 |
+
.pt-lg-5 {
|
| 3674 |
+
padding-top: 3rem !important;
|
| 3675 |
+
}
|
| 3676 |
+
|
| 3677 |
+
.pe-lg-0 {
|
| 3678 |
+
padding-left: 0 !important;
|
| 3679 |
+
}
|
| 3680 |
+
|
| 3681 |
+
.pe-lg-1 {
|
| 3682 |
+
padding-left: 0.25rem !important;
|
| 3683 |
+
}
|
| 3684 |
+
|
| 3685 |
+
.pe-lg-2 {
|
| 3686 |
+
padding-left: 0.5rem !important;
|
| 3687 |
+
}
|
| 3688 |
+
|
| 3689 |
+
.pe-lg-3 {
|
| 3690 |
+
padding-left: 1rem !important;
|
| 3691 |
+
}
|
| 3692 |
+
|
| 3693 |
+
.pe-lg-4 {
|
| 3694 |
+
padding-left: 1.5rem !important;
|
| 3695 |
+
}
|
| 3696 |
+
|
| 3697 |
+
.pe-lg-5 {
|
| 3698 |
+
padding-left: 3rem !important;
|
| 3699 |
+
}
|
| 3700 |
+
|
| 3701 |
+
.pb-lg-0 {
|
| 3702 |
+
padding-bottom: 0 !important;
|
| 3703 |
+
}
|
| 3704 |
+
|
| 3705 |
+
.pb-lg-1 {
|
| 3706 |
+
padding-bottom: 0.25rem !important;
|
| 3707 |
+
}
|
| 3708 |
+
|
| 3709 |
+
.pb-lg-2 {
|
| 3710 |
+
padding-bottom: 0.5rem !important;
|
| 3711 |
+
}
|
| 3712 |
+
|
| 3713 |
+
.pb-lg-3 {
|
| 3714 |
+
padding-bottom: 1rem !important;
|
| 3715 |
+
}
|
| 3716 |
+
|
| 3717 |
+
.pb-lg-4 {
|
| 3718 |
+
padding-bottom: 1.5rem !important;
|
| 3719 |
+
}
|
| 3720 |
+
|
| 3721 |
+
.pb-lg-5 {
|
| 3722 |
+
padding-bottom: 3rem !important;
|
| 3723 |
+
}
|
| 3724 |
+
|
| 3725 |
+
.ps-lg-0 {
|
| 3726 |
+
padding-right: 0 !important;
|
| 3727 |
+
}
|
| 3728 |
+
|
| 3729 |
+
.ps-lg-1 {
|
| 3730 |
+
padding-right: 0.25rem !important;
|
| 3731 |
+
}
|
| 3732 |
+
|
| 3733 |
+
.ps-lg-2 {
|
| 3734 |
+
padding-right: 0.5rem !important;
|
| 3735 |
+
}
|
| 3736 |
+
|
| 3737 |
+
.ps-lg-3 {
|
| 3738 |
+
padding-right: 1rem !important;
|
| 3739 |
+
}
|
| 3740 |
+
|
| 3741 |
+
.ps-lg-4 {
|
| 3742 |
+
padding-right: 1.5rem !important;
|
| 3743 |
+
}
|
| 3744 |
+
|
| 3745 |
+
.ps-lg-5 {
|
| 3746 |
+
padding-right: 3rem !important;
|
| 3747 |
+
}
|
| 3748 |
+
}
|
| 3749 |
+
@media (min-width: 1200px) {
|
| 3750 |
+
.d-xl-inline {
|
| 3751 |
+
display: inline !important;
|
| 3752 |
+
}
|
| 3753 |
+
|
| 3754 |
+
.d-xl-inline-block {
|
| 3755 |
+
display: inline-block !important;
|
| 3756 |
+
}
|
| 3757 |
+
|
| 3758 |
+
.d-xl-block {
|
| 3759 |
+
display: block !important;
|
| 3760 |
+
}
|
| 3761 |
+
|
| 3762 |
+
.d-xl-grid {
|
| 3763 |
+
display: grid !important;
|
| 3764 |
+
}
|
| 3765 |
+
|
| 3766 |
+
.d-xl-table {
|
| 3767 |
+
display: table !important;
|
| 3768 |
+
}
|
| 3769 |
+
|
| 3770 |
+
.d-xl-table-row {
|
| 3771 |
+
display: table-row !important;
|
| 3772 |
+
}
|
| 3773 |
+
|
| 3774 |
+
.d-xl-table-cell {
|
| 3775 |
+
display: table-cell !important;
|
| 3776 |
+
}
|
| 3777 |
+
|
| 3778 |
+
.d-xl-flex {
|
| 3779 |
+
display: flex !important;
|
| 3780 |
+
}
|
| 3781 |
+
|
| 3782 |
+
.d-xl-inline-flex {
|
| 3783 |
+
display: inline-flex !important;
|
| 3784 |
+
}
|
| 3785 |
+
|
| 3786 |
+
.d-xl-none {
|
| 3787 |
+
display: none !important;
|
| 3788 |
+
}
|
| 3789 |
+
|
| 3790 |
+
.flex-xl-fill {
|
| 3791 |
+
flex: 1 1 auto !important;
|
| 3792 |
+
}
|
| 3793 |
+
|
| 3794 |
+
.flex-xl-row {
|
| 3795 |
+
flex-direction: row !important;
|
| 3796 |
+
}
|
| 3797 |
+
|
| 3798 |
+
.flex-xl-column {
|
| 3799 |
+
flex-direction: column !important;
|
| 3800 |
+
}
|
| 3801 |
+
|
| 3802 |
+
.flex-xl-row-reverse {
|
| 3803 |
+
flex-direction: row-reverse !important;
|
| 3804 |
+
}
|
| 3805 |
+
|
| 3806 |
+
.flex-xl-column-reverse {
|
| 3807 |
+
flex-direction: column-reverse !important;
|
| 3808 |
+
}
|
| 3809 |
+
|
| 3810 |
+
.flex-xl-grow-0 {
|
| 3811 |
+
flex-grow: 0 !important;
|
| 3812 |
+
}
|
| 3813 |
+
|
| 3814 |
+
.flex-xl-grow-1 {
|
| 3815 |
+
flex-grow: 1 !important;
|
| 3816 |
+
}
|
| 3817 |
+
|
| 3818 |
+
.flex-xl-shrink-0 {
|
| 3819 |
+
flex-shrink: 0 !important;
|
| 3820 |
+
}
|
| 3821 |
+
|
| 3822 |
+
.flex-xl-shrink-1 {
|
| 3823 |
+
flex-shrink: 1 !important;
|
| 3824 |
+
}
|
| 3825 |
+
|
| 3826 |
+
.flex-xl-wrap {
|
| 3827 |
+
flex-wrap: wrap !important;
|
| 3828 |
+
}
|
| 3829 |
+
|
| 3830 |
+
.flex-xl-nowrap {
|
| 3831 |
+
flex-wrap: nowrap !important;
|
| 3832 |
+
}
|
| 3833 |
+
|
| 3834 |
+
.flex-xl-wrap-reverse {
|
| 3835 |
+
flex-wrap: wrap-reverse !important;
|
| 3836 |
+
}
|
| 3837 |
+
|
| 3838 |
+
.justify-content-xl-start {
|
| 3839 |
+
justify-content: flex-start !important;
|
| 3840 |
+
}
|
| 3841 |
+
|
| 3842 |
+
.justify-content-xl-end {
|
| 3843 |
+
justify-content: flex-end !important;
|
| 3844 |
+
}
|
| 3845 |
+
|
| 3846 |
+
.justify-content-xl-center {
|
| 3847 |
+
justify-content: center !important;
|
| 3848 |
+
}
|
| 3849 |
+
|
| 3850 |
+
.justify-content-xl-between {
|
| 3851 |
+
justify-content: space-between !important;
|
| 3852 |
+
}
|
| 3853 |
+
|
| 3854 |
+
.justify-content-xl-around {
|
| 3855 |
+
justify-content: space-around !important;
|
| 3856 |
+
}
|
| 3857 |
+
|
| 3858 |
+
.justify-content-xl-evenly {
|
| 3859 |
+
justify-content: space-evenly !important;
|
| 3860 |
+
}
|
| 3861 |
+
|
| 3862 |
+
.align-items-xl-start {
|
| 3863 |
+
align-items: flex-start !important;
|
| 3864 |
+
}
|
| 3865 |
+
|
| 3866 |
+
.align-items-xl-end {
|
| 3867 |
+
align-items: flex-end !important;
|
| 3868 |
+
}
|
| 3869 |
+
|
| 3870 |
+
.align-items-xl-center {
|
| 3871 |
+
align-items: center !important;
|
| 3872 |
+
}
|
| 3873 |
+
|
| 3874 |
+
.align-items-xl-baseline {
|
| 3875 |
+
align-items: baseline !important;
|
| 3876 |
+
}
|
| 3877 |
+
|
| 3878 |
+
.align-items-xl-stretch {
|
| 3879 |
+
align-items: stretch !important;
|
| 3880 |
+
}
|
| 3881 |
+
|
| 3882 |
+
.align-content-xl-start {
|
| 3883 |
+
align-content: flex-start !important;
|
| 3884 |
+
}
|
| 3885 |
+
|
| 3886 |
+
.align-content-xl-end {
|
| 3887 |
+
align-content: flex-end !important;
|
| 3888 |
+
}
|
| 3889 |
+
|
| 3890 |
+
.align-content-xl-center {
|
| 3891 |
+
align-content: center !important;
|
| 3892 |
+
}
|
| 3893 |
+
|
| 3894 |
+
.align-content-xl-between {
|
| 3895 |
+
align-content: space-between !important;
|
| 3896 |
+
}
|
| 3897 |
+
|
| 3898 |
+
.align-content-xl-around {
|
| 3899 |
+
align-content: space-around !important;
|
| 3900 |
+
}
|
| 3901 |
+
|
| 3902 |
+
.align-content-xl-stretch {
|
| 3903 |
+
align-content: stretch !important;
|
| 3904 |
+
}
|
| 3905 |
+
|
| 3906 |
+
.align-self-xl-auto {
|
| 3907 |
+
align-self: auto !important;
|
| 3908 |
+
}
|
| 3909 |
+
|
| 3910 |
+
.align-self-xl-start {
|
| 3911 |
+
align-self: flex-start !important;
|
| 3912 |
+
}
|
| 3913 |
+
|
| 3914 |
+
.align-self-xl-end {
|
| 3915 |
+
align-self: flex-end !important;
|
| 3916 |
+
}
|
| 3917 |
+
|
| 3918 |
+
.align-self-xl-center {
|
| 3919 |
+
align-self: center !important;
|
| 3920 |
+
}
|
| 3921 |
+
|
| 3922 |
+
.align-self-xl-baseline {
|
| 3923 |
+
align-self: baseline !important;
|
| 3924 |
+
}
|
| 3925 |
+
|
| 3926 |
+
.align-self-xl-stretch {
|
| 3927 |
+
align-self: stretch !important;
|
| 3928 |
+
}
|
| 3929 |
+
|
| 3930 |
+
.order-xl-first {
|
| 3931 |
+
order: -1 !important;
|
| 3932 |
+
}
|
| 3933 |
+
|
| 3934 |
+
.order-xl-0 {
|
| 3935 |
+
order: 0 !important;
|
| 3936 |
+
}
|
| 3937 |
+
|
| 3938 |
+
.order-xl-1 {
|
| 3939 |
+
order: 1 !important;
|
| 3940 |
+
}
|
| 3941 |
+
|
| 3942 |
+
.order-xl-2 {
|
| 3943 |
+
order: 2 !important;
|
| 3944 |
+
}
|
| 3945 |
+
|
| 3946 |
+
.order-xl-3 {
|
| 3947 |
+
order: 3 !important;
|
| 3948 |
+
}
|
| 3949 |
+
|
| 3950 |
+
.order-xl-4 {
|
| 3951 |
+
order: 4 !important;
|
| 3952 |
+
}
|
| 3953 |
+
|
| 3954 |
+
.order-xl-5 {
|
| 3955 |
+
order: 5 !important;
|
| 3956 |
+
}
|
| 3957 |
+
|
| 3958 |
+
.order-xl-last {
|
| 3959 |
+
order: 6 !important;
|
| 3960 |
+
}
|
| 3961 |
+
|
| 3962 |
+
.m-xl-0 {
|
| 3963 |
+
margin: 0 !important;
|
| 3964 |
+
}
|
| 3965 |
+
|
| 3966 |
+
.m-xl-1 {
|
| 3967 |
+
margin: 0.25rem !important;
|
| 3968 |
+
}
|
| 3969 |
+
|
| 3970 |
+
.m-xl-2 {
|
| 3971 |
+
margin: 0.5rem !important;
|
| 3972 |
+
}
|
| 3973 |
+
|
| 3974 |
+
.m-xl-3 {
|
| 3975 |
+
margin: 1rem !important;
|
| 3976 |
+
}
|
| 3977 |
+
|
| 3978 |
+
.m-xl-4 {
|
| 3979 |
+
margin: 1.5rem !important;
|
| 3980 |
+
}
|
| 3981 |
+
|
| 3982 |
+
.m-xl-5 {
|
| 3983 |
+
margin: 3rem !important;
|
| 3984 |
+
}
|
| 3985 |
+
|
| 3986 |
+
.m-xl-auto {
|
| 3987 |
+
margin: auto !important;
|
| 3988 |
+
}
|
| 3989 |
+
|
| 3990 |
+
.mx-xl-0 {
|
| 3991 |
+
margin-left: 0 !important;
|
| 3992 |
+
margin-right: 0 !important;
|
| 3993 |
+
}
|
| 3994 |
+
|
| 3995 |
+
.mx-xl-1 {
|
| 3996 |
+
margin-left: 0.25rem !important;
|
| 3997 |
+
margin-right: 0.25rem !important;
|
| 3998 |
+
}
|
| 3999 |
+
|
| 4000 |
+
.mx-xl-2 {
|
| 4001 |
+
margin-left: 0.5rem !important;
|
| 4002 |
+
margin-right: 0.5rem !important;
|
| 4003 |
+
}
|
| 4004 |
+
|
| 4005 |
+
.mx-xl-3 {
|
| 4006 |
+
margin-left: 1rem !important;
|
| 4007 |
+
margin-right: 1rem !important;
|
| 4008 |
+
}
|
| 4009 |
+
|
| 4010 |
+
.mx-xl-4 {
|
| 4011 |
+
margin-left: 1.5rem !important;
|
| 4012 |
+
margin-right: 1.5rem !important;
|
| 4013 |
+
}
|
| 4014 |
+
|
| 4015 |
+
.mx-xl-5 {
|
| 4016 |
+
margin-left: 3rem !important;
|
| 4017 |
+
margin-right: 3rem !important;
|
| 4018 |
+
}
|
| 4019 |
+
|
| 4020 |
+
.mx-xl-auto {
|
| 4021 |
+
margin-left: auto !important;
|
| 4022 |
+
margin-right: auto !important;
|
| 4023 |
+
}
|
| 4024 |
+
|
| 4025 |
+
.my-xl-0 {
|
| 4026 |
+
margin-top: 0 !important;
|
| 4027 |
+
margin-bottom: 0 !important;
|
| 4028 |
+
}
|
| 4029 |
+
|
| 4030 |
+
.my-xl-1 {
|
| 4031 |
+
margin-top: 0.25rem !important;
|
| 4032 |
+
margin-bottom: 0.25rem !important;
|
| 4033 |
+
}
|
| 4034 |
+
|
| 4035 |
+
.my-xl-2 {
|
| 4036 |
+
margin-top: 0.5rem !important;
|
| 4037 |
+
margin-bottom: 0.5rem !important;
|
| 4038 |
+
}
|
| 4039 |
+
|
| 4040 |
+
.my-xl-3 {
|
| 4041 |
+
margin-top: 1rem !important;
|
| 4042 |
+
margin-bottom: 1rem !important;
|
| 4043 |
+
}
|
| 4044 |
+
|
| 4045 |
+
.my-xl-4 {
|
| 4046 |
+
margin-top: 1.5rem !important;
|
| 4047 |
+
margin-bottom: 1.5rem !important;
|
| 4048 |
+
}
|
| 4049 |
+
|
| 4050 |
+
.my-xl-5 {
|
| 4051 |
+
margin-top: 3rem !important;
|
| 4052 |
+
margin-bottom: 3rem !important;
|
| 4053 |
+
}
|
| 4054 |
+
|
| 4055 |
+
.my-xl-auto {
|
| 4056 |
+
margin-top: auto !important;
|
| 4057 |
+
margin-bottom: auto !important;
|
| 4058 |
+
}
|
| 4059 |
+
|
| 4060 |
+
.mt-xl-0 {
|
| 4061 |
+
margin-top: 0 !important;
|
| 4062 |
+
}
|
| 4063 |
+
|
| 4064 |
+
.mt-xl-1 {
|
| 4065 |
+
margin-top: 0.25rem !important;
|
| 4066 |
+
}
|
| 4067 |
+
|
| 4068 |
+
.mt-xl-2 {
|
| 4069 |
+
margin-top: 0.5rem !important;
|
| 4070 |
+
}
|
| 4071 |
+
|
| 4072 |
+
.mt-xl-3 {
|
| 4073 |
+
margin-top: 1rem !important;
|
| 4074 |
+
}
|
| 4075 |
+
|
| 4076 |
+
.mt-xl-4 {
|
| 4077 |
+
margin-top: 1.5rem !important;
|
| 4078 |
+
}
|
| 4079 |
+
|
| 4080 |
+
.mt-xl-5 {
|
| 4081 |
+
margin-top: 3rem !important;
|
| 4082 |
+
}
|
| 4083 |
+
|
| 4084 |
+
.mt-xl-auto {
|
| 4085 |
+
margin-top: auto !important;
|
| 4086 |
+
}
|
| 4087 |
+
|
| 4088 |
+
.me-xl-0 {
|
| 4089 |
+
margin-left: 0 !important;
|
| 4090 |
+
}
|
| 4091 |
+
|
| 4092 |
+
.me-xl-1 {
|
| 4093 |
+
margin-left: 0.25rem !important;
|
| 4094 |
+
}
|
| 4095 |
+
|
| 4096 |
+
.me-xl-2 {
|
| 4097 |
+
margin-left: 0.5rem !important;
|
| 4098 |
+
}
|
| 4099 |
+
|
| 4100 |
+
.me-xl-3 {
|
| 4101 |
+
margin-left: 1rem !important;
|
| 4102 |
+
}
|
| 4103 |
+
|
| 4104 |
+
.me-xl-4 {
|
| 4105 |
+
margin-left: 1.5rem !important;
|
| 4106 |
+
}
|
| 4107 |
+
|
| 4108 |
+
.me-xl-5 {
|
| 4109 |
+
margin-left: 3rem !important;
|
| 4110 |
+
}
|
| 4111 |
+
|
| 4112 |
+
.me-xl-auto {
|
| 4113 |
+
margin-left: auto !important;
|
| 4114 |
+
}
|
| 4115 |
+
|
| 4116 |
+
.mb-xl-0 {
|
| 4117 |
+
margin-bottom: 0 !important;
|
| 4118 |
+
}
|
| 4119 |
+
|
| 4120 |
+
.mb-xl-1 {
|
| 4121 |
+
margin-bottom: 0.25rem !important;
|
| 4122 |
+
}
|
| 4123 |
+
|
| 4124 |
+
.mb-xl-2 {
|
| 4125 |
+
margin-bottom: 0.5rem !important;
|
| 4126 |
+
}
|
| 4127 |
+
|
| 4128 |
+
.mb-xl-3 {
|
| 4129 |
+
margin-bottom: 1rem !important;
|
| 4130 |
+
}
|
| 4131 |
+
|
| 4132 |
+
.mb-xl-4 {
|
| 4133 |
+
margin-bottom: 1.5rem !important;
|
| 4134 |
+
}
|
| 4135 |
+
|
| 4136 |
+
.mb-xl-5 {
|
| 4137 |
+
margin-bottom: 3rem !important;
|
| 4138 |
+
}
|
| 4139 |
+
|
| 4140 |
+
.mb-xl-auto {
|
| 4141 |
+
margin-bottom: auto !important;
|
| 4142 |
+
}
|
| 4143 |
+
|
| 4144 |
+
.ms-xl-0 {
|
| 4145 |
+
margin-right: 0 !important;
|
| 4146 |
+
}
|
| 4147 |
+
|
| 4148 |
+
.ms-xl-1 {
|
| 4149 |
+
margin-right: 0.25rem !important;
|
| 4150 |
+
}
|
| 4151 |
+
|
| 4152 |
+
.ms-xl-2 {
|
| 4153 |
+
margin-right: 0.5rem !important;
|
| 4154 |
+
}
|
| 4155 |
+
|
| 4156 |
+
.ms-xl-3 {
|
| 4157 |
+
margin-right: 1rem !important;
|
| 4158 |
+
}
|
| 4159 |
+
|
| 4160 |
+
.ms-xl-4 {
|
| 4161 |
+
margin-right: 1.5rem !important;
|
| 4162 |
+
}
|
| 4163 |
+
|
| 4164 |
+
.ms-xl-5 {
|
| 4165 |
+
margin-right: 3rem !important;
|
| 4166 |
+
}
|
| 4167 |
+
|
| 4168 |
+
.ms-xl-auto {
|
| 4169 |
+
margin-right: auto !important;
|
| 4170 |
+
}
|
| 4171 |
+
|
| 4172 |
+
.p-xl-0 {
|
| 4173 |
+
padding: 0 !important;
|
| 4174 |
+
}
|
| 4175 |
+
|
| 4176 |
+
.p-xl-1 {
|
| 4177 |
+
padding: 0.25rem !important;
|
| 4178 |
+
}
|
| 4179 |
+
|
| 4180 |
+
.p-xl-2 {
|
| 4181 |
+
padding: 0.5rem !important;
|
| 4182 |
+
}
|
| 4183 |
+
|
| 4184 |
+
.p-xl-3 {
|
| 4185 |
+
padding: 1rem !important;
|
| 4186 |
+
}
|
| 4187 |
+
|
| 4188 |
+
.p-xl-4 {
|
| 4189 |
+
padding: 1.5rem !important;
|
| 4190 |
+
}
|
| 4191 |
+
|
| 4192 |
+
.p-xl-5 {
|
| 4193 |
+
padding: 3rem !important;
|
| 4194 |
+
}
|
| 4195 |
+
|
| 4196 |
+
.px-xl-0 {
|
| 4197 |
+
padding-left: 0 !important;
|
| 4198 |
+
padding-right: 0 !important;
|
| 4199 |
+
}
|
| 4200 |
+
|
| 4201 |
+
.px-xl-1 {
|
| 4202 |
+
padding-left: 0.25rem !important;
|
| 4203 |
+
padding-right: 0.25rem !important;
|
| 4204 |
+
}
|
| 4205 |
+
|
| 4206 |
+
.px-xl-2 {
|
| 4207 |
+
padding-left: 0.5rem !important;
|
| 4208 |
+
padding-right: 0.5rem !important;
|
| 4209 |
+
}
|
| 4210 |
+
|
| 4211 |
+
.px-xl-3 {
|
| 4212 |
+
padding-left: 1rem !important;
|
| 4213 |
+
padding-right: 1rem !important;
|
| 4214 |
+
}
|
| 4215 |
+
|
| 4216 |
+
.px-xl-4 {
|
| 4217 |
+
padding-left: 1.5rem !important;
|
| 4218 |
+
padding-right: 1.5rem !important;
|
| 4219 |
+
}
|
| 4220 |
+
|
| 4221 |
+
.px-xl-5 {
|
| 4222 |
+
padding-left: 3rem !important;
|
| 4223 |
+
padding-right: 3rem !important;
|
| 4224 |
+
}
|
| 4225 |
+
|
| 4226 |
+
.py-xl-0 {
|
| 4227 |
+
padding-top: 0 !important;
|
| 4228 |
+
padding-bottom: 0 !important;
|
| 4229 |
+
}
|
| 4230 |
+
|
| 4231 |
+
.py-xl-1 {
|
| 4232 |
+
padding-top: 0.25rem !important;
|
| 4233 |
+
padding-bottom: 0.25rem !important;
|
| 4234 |
+
}
|
| 4235 |
+
|
| 4236 |
+
.py-xl-2 {
|
| 4237 |
+
padding-top: 0.5rem !important;
|
| 4238 |
+
padding-bottom: 0.5rem !important;
|
| 4239 |
+
}
|
| 4240 |
+
|
| 4241 |
+
.py-xl-3 {
|
| 4242 |
+
padding-top: 1rem !important;
|
| 4243 |
+
padding-bottom: 1rem !important;
|
| 4244 |
+
}
|
| 4245 |
+
|
| 4246 |
+
.py-xl-4 {
|
| 4247 |
+
padding-top: 1.5rem !important;
|
| 4248 |
+
padding-bottom: 1.5rem !important;
|
| 4249 |
+
}
|
| 4250 |
+
|
| 4251 |
+
.py-xl-5 {
|
| 4252 |
+
padding-top: 3rem !important;
|
| 4253 |
+
padding-bottom: 3rem !important;
|
| 4254 |
+
}
|
| 4255 |
+
|
| 4256 |
+
.pt-xl-0 {
|
| 4257 |
+
padding-top: 0 !important;
|
| 4258 |
+
}
|
| 4259 |
+
|
| 4260 |
+
.pt-xl-1 {
|
| 4261 |
+
padding-top: 0.25rem !important;
|
| 4262 |
+
}
|
| 4263 |
+
|
| 4264 |
+
.pt-xl-2 {
|
| 4265 |
+
padding-top: 0.5rem !important;
|
| 4266 |
+
}
|
| 4267 |
+
|
| 4268 |
+
.pt-xl-3 {
|
| 4269 |
+
padding-top: 1rem !important;
|
| 4270 |
+
}
|
| 4271 |
+
|
| 4272 |
+
.pt-xl-4 {
|
| 4273 |
+
padding-top: 1.5rem !important;
|
| 4274 |
+
}
|
| 4275 |
+
|
| 4276 |
+
.pt-xl-5 {
|
| 4277 |
+
padding-top: 3rem !important;
|
| 4278 |
+
}
|
| 4279 |
+
|
| 4280 |
+
.pe-xl-0 {
|
| 4281 |
+
padding-left: 0 !important;
|
| 4282 |
+
}
|
| 4283 |
+
|
| 4284 |
+
.pe-xl-1 {
|
| 4285 |
+
padding-left: 0.25rem !important;
|
| 4286 |
+
}
|
| 4287 |
+
|
| 4288 |
+
.pe-xl-2 {
|
| 4289 |
+
padding-left: 0.5rem !important;
|
| 4290 |
+
}
|
| 4291 |
+
|
| 4292 |
+
.pe-xl-3 {
|
| 4293 |
+
padding-left: 1rem !important;
|
| 4294 |
+
}
|
| 4295 |
+
|
| 4296 |
+
.pe-xl-4 {
|
| 4297 |
+
padding-left: 1.5rem !important;
|
| 4298 |
+
}
|
| 4299 |
+
|
| 4300 |
+
.pe-xl-5 {
|
| 4301 |
+
padding-left: 3rem !important;
|
| 4302 |
+
}
|
| 4303 |
+
|
| 4304 |
+
.pb-xl-0 {
|
| 4305 |
+
padding-bottom: 0 !important;
|
| 4306 |
+
}
|
| 4307 |
+
|
| 4308 |
+
.pb-xl-1 {
|
| 4309 |
+
padding-bottom: 0.25rem !important;
|
| 4310 |
+
}
|
| 4311 |
+
|
| 4312 |
+
.pb-xl-2 {
|
| 4313 |
+
padding-bottom: 0.5rem !important;
|
| 4314 |
+
}
|
| 4315 |
+
|
| 4316 |
+
.pb-xl-3 {
|
| 4317 |
+
padding-bottom: 1rem !important;
|
| 4318 |
+
}
|
| 4319 |
+
|
| 4320 |
+
.pb-xl-4 {
|
| 4321 |
+
padding-bottom: 1.5rem !important;
|
| 4322 |
+
}
|
| 4323 |
+
|
| 4324 |
+
.pb-xl-5 {
|
| 4325 |
+
padding-bottom: 3rem !important;
|
| 4326 |
+
}
|
| 4327 |
+
|
| 4328 |
+
.ps-xl-0 {
|
| 4329 |
+
padding-right: 0 !important;
|
| 4330 |
+
}
|
| 4331 |
+
|
| 4332 |
+
.ps-xl-1 {
|
| 4333 |
+
padding-right: 0.25rem !important;
|
| 4334 |
+
}
|
| 4335 |
+
|
| 4336 |
+
.ps-xl-2 {
|
| 4337 |
+
padding-right: 0.5rem !important;
|
| 4338 |
+
}
|
| 4339 |
+
|
| 4340 |
+
.ps-xl-3 {
|
| 4341 |
+
padding-right: 1rem !important;
|
| 4342 |
+
}
|
| 4343 |
+
|
| 4344 |
+
.ps-xl-4 {
|
| 4345 |
+
padding-right: 1.5rem !important;
|
| 4346 |
+
}
|
| 4347 |
+
|
| 4348 |
+
.ps-xl-5 {
|
| 4349 |
+
padding-right: 3rem !important;
|
| 4350 |
+
}
|
| 4351 |
+
}
|
| 4352 |
+
@media (min-width: 1400px) {
|
| 4353 |
+
.d-xxl-inline {
|
| 4354 |
+
display: inline !important;
|
| 4355 |
+
}
|
| 4356 |
+
|
| 4357 |
+
.d-xxl-inline-block {
|
| 4358 |
+
display: inline-block !important;
|
| 4359 |
+
}
|
| 4360 |
+
|
| 4361 |
+
.d-xxl-block {
|
| 4362 |
+
display: block !important;
|
| 4363 |
+
}
|
| 4364 |
+
|
| 4365 |
+
.d-xxl-grid {
|
| 4366 |
+
display: grid !important;
|
| 4367 |
+
}
|
| 4368 |
+
|
| 4369 |
+
.d-xxl-table {
|
| 4370 |
+
display: table !important;
|
| 4371 |
+
}
|
| 4372 |
+
|
| 4373 |
+
.d-xxl-table-row {
|
| 4374 |
+
display: table-row !important;
|
| 4375 |
+
}
|
| 4376 |
+
|
| 4377 |
+
.d-xxl-table-cell {
|
| 4378 |
+
display: table-cell !important;
|
| 4379 |
+
}
|
| 4380 |
+
|
| 4381 |
+
.d-xxl-flex {
|
| 4382 |
+
display: flex !important;
|
| 4383 |
+
}
|
| 4384 |
+
|
| 4385 |
+
.d-xxl-inline-flex {
|
| 4386 |
+
display: inline-flex !important;
|
| 4387 |
+
}
|
| 4388 |
+
|
| 4389 |
+
.d-xxl-none {
|
| 4390 |
+
display: none !important;
|
| 4391 |
+
}
|
| 4392 |
+
|
| 4393 |
+
.flex-xxl-fill {
|
| 4394 |
+
flex: 1 1 auto !important;
|
| 4395 |
+
}
|
| 4396 |
+
|
| 4397 |
+
.flex-xxl-row {
|
| 4398 |
+
flex-direction: row !important;
|
| 4399 |
+
}
|
| 4400 |
+
|
| 4401 |
+
.flex-xxl-column {
|
| 4402 |
+
flex-direction: column !important;
|
| 4403 |
+
}
|
| 4404 |
+
|
| 4405 |
+
.flex-xxl-row-reverse {
|
| 4406 |
+
flex-direction: row-reverse !important;
|
| 4407 |
+
}
|
| 4408 |
+
|
| 4409 |
+
.flex-xxl-column-reverse {
|
| 4410 |
+
flex-direction: column-reverse !important;
|
| 4411 |
+
}
|
| 4412 |
+
|
| 4413 |
+
.flex-xxl-grow-0 {
|
| 4414 |
+
flex-grow: 0 !important;
|
| 4415 |
+
}
|
| 4416 |
+
|
| 4417 |
+
.flex-xxl-grow-1 {
|
| 4418 |
+
flex-grow: 1 !important;
|
| 4419 |
+
}
|
| 4420 |
+
|
| 4421 |
+
.flex-xxl-shrink-0 {
|
| 4422 |
+
flex-shrink: 0 !important;
|
| 4423 |
+
}
|
| 4424 |
+
|
| 4425 |
+
.flex-xxl-shrink-1 {
|
| 4426 |
+
flex-shrink: 1 !important;
|
| 4427 |
+
}
|
| 4428 |
+
|
| 4429 |
+
.flex-xxl-wrap {
|
| 4430 |
+
flex-wrap: wrap !important;
|
| 4431 |
+
}
|
| 4432 |
+
|
| 4433 |
+
.flex-xxl-nowrap {
|
| 4434 |
+
flex-wrap: nowrap !important;
|
| 4435 |
+
}
|
| 4436 |
+
|
| 4437 |
+
.flex-xxl-wrap-reverse {
|
| 4438 |
+
flex-wrap: wrap-reverse !important;
|
| 4439 |
+
}
|
| 4440 |
+
|
| 4441 |
+
.justify-content-xxl-start {
|
| 4442 |
+
justify-content: flex-start !important;
|
| 4443 |
+
}
|
| 4444 |
+
|
| 4445 |
+
.justify-content-xxl-end {
|
| 4446 |
+
justify-content: flex-end !important;
|
| 4447 |
+
}
|
| 4448 |
+
|
| 4449 |
+
.justify-content-xxl-center {
|
| 4450 |
+
justify-content: center !important;
|
| 4451 |
+
}
|
| 4452 |
+
|
| 4453 |
+
.justify-content-xxl-between {
|
| 4454 |
+
justify-content: space-between !important;
|
| 4455 |
+
}
|
| 4456 |
+
|
| 4457 |
+
.justify-content-xxl-around {
|
| 4458 |
+
justify-content: space-around !important;
|
| 4459 |
+
}
|
| 4460 |
+
|
| 4461 |
+
.justify-content-xxl-evenly {
|
| 4462 |
+
justify-content: space-evenly !important;
|
| 4463 |
+
}
|
| 4464 |
+
|
| 4465 |
+
.align-items-xxl-start {
|
| 4466 |
+
align-items: flex-start !important;
|
| 4467 |
+
}
|
| 4468 |
+
|
| 4469 |
+
.align-items-xxl-end {
|
| 4470 |
+
align-items: flex-end !important;
|
| 4471 |
+
}
|
| 4472 |
+
|
| 4473 |
+
.align-items-xxl-center {
|
| 4474 |
+
align-items: center !important;
|
| 4475 |
+
}
|
| 4476 |
+
|
| 4477 |
+
.align-items-xxl-baseline {
|
| 4478 |
+
align-items: baseline !important;
|
| 4479 |
+
}
|
| 4480 |
+
|
| 4481 |
+
.align-items-xxl-stretch {
|
| 4482 |
+
align-items: stretch !important;
|
| 4483 |
+
}
|
| 4484 |
+
|
| 4485 |
+
.align-content-xxl-start {
|
| 4486 |
+
align-content: flex-start !important;
|
| 4487 |
+
}
|
| 4488 |
+
|
| 4489 |
+
.align-content-xxl-end {
|
| 4490 |
+
align-content: flex-end !important;
|
| 4491 |
+
}
|
| 4492 |
+
|
| 4493 |
+
.align-content-xxl-center {
|
| 4494 |
+
align-content: center !important;
|
| 4495 |
+
}
|
| 4496 |
+
|
| 4497 |
+
.align-content-xxl-between {
|
| 4498 |
+
align-content: space-between !important;
|
| 4499 |
+
}
|
| 4500 |
+
|
| 4501 |
+
.align-content-xxl-around {
|
| 4502 |
+
align-content: space-around !important;
|
| 4503 |
+
}
|
| 4504 |
+
|
| 4505 |
+
.align-content-xxl-stretch {
|
| 4506 |
+
align-content: stretch !important;
|
| 4507 |
+
}
|
| 4508 |
+
|
| 4509 |
+
.align-self-xxl-auto {
|
| 4510 |
+
align-self: auto !important;
|
| 4511 |
+
}
|
| 4512 |
+
|
| 4513 |
+
.align-self-xxl-start {
|
| 4514 |
+
align-self: flex-start !important;
|
| 4515 |
+
}
|
| 4516 |
+
|
| 4517 |
+
.align-self-xxl-end {
|
| 4518 |
+
align-self: flex-end !important;
|
| 4519 |
+
}
|
| 4520 |
+
|
| 4521 |
+
.align-self-xxl-center {
|
| 4522 |
+
align-self: center !important;
|
| 4523 |
+
}
|
| 4524 |
+
|
| 4525 |
+
.align-self-xxl-baseline {
|
| 4526 |
+
align-self: baseline !important;
|
| 4527 |
+
}
|
| 4528 |
+
|
| 4529 |
+
.align-self-xxl-stretch {
|
| 4530 |
+
align-self: stretch !important;
|
| 4531 |
+
}
|
| 4532 |
+
|
| 4533 |
+
.order-xxl-first {
|
| 4534 |
+
order: -1 !important;
|
| 4535 |
+
}
|
| 4536 |
+
|
| 4537 |
+
.order-xxl-0 {
|
| 4538 |
+
order: 0 !important;
|
| 4539 |
+
}
|
| 4540 |
+
|
| 4541 |
+
.order-xxl-1 {
|
| 4542 |
+
order: 1 !important;
|
| 4543 |
+
}
|
| 4544 |
+
|
| 4545 |
+
.order-xxl-2 {
|
| 4546 |
+
order: 2 !important;
|
| 4547 |
+
}
|
| 4548 |
+
|
| 4549 |
+
.order-xxl-3 {
|
| 4550 |
+
order: 3 !important;
|
| 4551 |
+
}
|
| 4552 |
+
|
| 4553 |
+
.order-xxl-4 {
|
| 4554 |
+
order: 4 !important;
|
| 4555 |
+
}
|
| 4556 |
+
|
| 4557 |
+
.order-xxl-5 {
|
| 4558 |
+
order: 5 !important;
|
| 4559 |
+
}
|
| 4560 |
+
|
| 4561 |
+
.order-xxl-last {
|
| 4562 |
+
order: 6 !important;
|
| 4563 |
+
}
|
| 4564 |
+
|
| 4565 |
+
.m-xxl-0 {
|
| 4566 |
+
margin: 0 !important;
|
| 4567 |
+
}
|
| 4568 |
+
|
| 4569 |
+
.m-xxl-1 {
|
| 4570 |
+
margin: 0.25rem !important;
|
| 4571 |
+
}
|
| 4572 |
+
|
| 4573 |
+
.m-xxl-2 {
|
| 4574 |
+
margin: 0.5rem !important;
|
| 4575 |
+
}
|
| 4576 |
+
|
| 4577 |
+
.m-xxl-3 {
|
| 4578 |
+
margin: 1rem !important;
|
| 4579 |
+
}
|
| 4580 |
+
|
| 4581 |
+
.m-xxl-4 {
|
| 4582 |
+
margin: 1.5rem !important;
|
| 4583 |
+
}
|
| 4584 |
+
|
| 4585 |
+
.m-xxl-5 {
|
| 4586 |
+
margin: 3rem !important;
|
| 4587 |
+
}
|
| 4588 |
+
|
| 4589 |
+
.m-xxl-auto {
|
| 4590 |
+
margin: auto !important;
|
| 4591 |
+
}
|
| 4592 |
+
|
| 4593 |
+
.mx-xxl-0 {
|
| 4594 |
+
margin-left: 0 !important;
|
| 4595 |
+
margin-right: 0 !important;
|
| 4596 |
+
}
|
| 4597 |
+
|
| 4598 |
+
.mx-xxl-1 {
|
| 4599 |
+
margin-left: 0.25rem !important;
|
| 4600 |
+
margin-right: 0.25rem !important;
|
| 4601 |
+
}
|
| 4602 |
+
|
| 4603 |
+
.mx-xxl-2 {
|
| 4604 |
+
margin-left: 0.5rem !important;
|
| 4605 |
+
margin-right: 0.5rem !important;
|
| 4606 |
+
}
|
| 4607 |
+
|
| 4608 |
+
.mx-xxl-3 {
|
| 4609 |
+
margin-left: 1rem !important;
|
| 4610 |
+
margin-right: 1rem !important;
|
| 4611 |
+
}
|
| 4612 |
+
|
| 4613 |
+
.mx-xxl-4 {
|
| 4614 |
+
margin-left: 1.5rem !important;
|
| 4615 |
+
margin-right: 1.5rem !important;
|
| 4616 |
+
}
|
| 4617 |
+
|
| 4618 |
+
.mx-xxl-5 {
|
| 4619 |
+
margin-left: 3rem !important;
|
| 4620 |
+
margin-right: 3rem !important;
|
| 4621 |
+
}
|
| 4622 |
+
|
| 4623 |
+
.mx-xxl-auto {
|
| 4624 |
+
margin-left: auto !important;
|
| 4625 |
+
margin-right: auto !important;
|
| 4626 |
+
}
|
| 4627 |
+
|
| 4628 |
+
.my-xxl-0 {
|
| 4629 |
+
margin-top: 0 !important;
|
| 4630 |
+
margin-bottom: 0 !important;
|
| 4631 |
+
}
|
| 4632 |
+
|
| 4633 |
+
.my-xxl-1 {
|
| 4634 |
+
margin-top: 0.25rem !important;
|
| 4635 |
+
margin-bottom: 0.25rem !important;
|
| 4636 |
+
}
|
| 4637 |
+
|
| 4638 |
+
.my-xxl-2 {
|
| 4639 |
+
margin-top: 0.5rem !important;
|
| 4640 |
+
margin-bottom: 0.5rem !important;
|
| 4641 |
+
}
|
| 4642 |
+
|
| 4643 |
+
.my-xxl-3 {
|
| 4644 |
+
margin-top: 1rem !important;
|
| 4645 |
+
margin-bottom: 1rem !important;
|
| 4646 |
+
}
|
| 4647 |
+
|
| 4648 |
+
.my-xxl-4 {
|
| 4649 |
+
margin-top: 1.5rem !important;
|
| 4650 |
+
margin-bottom: 1.5rem !important;
|
| 4651 |
+
}
|
| 4652 |
+
|
| 4653 |
+
.my-xxl-5 {
|
| 4654 |
+
margin-top: 3rem !important;
|
| 4655 |
+
margin-bottom: 3rem !important;
|
| 4656 |
+
}
|
| 4657 |
+
|
| 4658 |
+
.my-xxl-auto {
|
| 4659 |
+
margin-top: auto !important;
|
| 4660 |
+
margin-bottom: auto !important;
|
| 4661 |
+
}
|
| 4662 |
+
|
| 4663 |
+
.mt-xxl-0 {
|
| 4664 |
+
margin-top: 0 !important;
|
| 4665 |
+
}
|
| 4666 |
+
|
| 4667 |
+
.mt-xxl-1 {
|
| 4668 |
+
margin-top: 0.25rem !important;
|
| 4669 |
+
}
|
| 4670 |
+
|
| 4671 |
+
.mt-xxl-2 {
|
| 4672 |
+
margin-top: 0.5rem !important;
|
| 4673 |
+
}
|
| 4674 |
+
|
| 4675 |
+
.mt-xxl-3 {
|
| 4676 |
+
margin-top: 1rem !important;
|
| 4677 |
+
}
|
| 4678 |
+
|
| 4679 |
+
.mt-xxl-4 {
|
| 4680 |
+
margin-top: 1.5rem !important;
|
| 4681 |
+
}
|
| 4682 |
+
|
| 4683 |
+
.mt-xxl-5 {
|
| 4684 |
+
margin-top: 3rem !important;
|
| 4685 |
+
}
|
| 4686 |
+
|
| 4687 |
+
.mt-xxl-auto {
|
| 4688 |
+
margin-top: auto !important;
|
| 4689 |
+
}
|
| 4690 |
+
|
| 4691 |
+
.me-xxl-0 {
|
| 4692 |
+
margin-left: 0 !important;
|
| 4693 |
+
}
|
| 4694 |
+
|
| 4695 |
+
.me-xxl-1 {
|
| 4696 |
+
margin-left: 0.25rem !important;
|
| 4697 |
+
}
|
| 4698 |
+
|
| 4699 |
+
.me-xxl-2 {
|
| 4700 |
+
margin-left: 0.5rem !important;
|
| 4701 |
+
}
|
| 4702 |
+
|
| 4703 |
+
.me-xxl-3 {
|
| 4704 |
+
margin-left: 1rem !important;
|
| 4705 |
+
}
|
| 4706 |
+
|
| 4707 |
+
.me-xxl-4 {
|
| 4708 |
+
margin-left: 1.5rem !important;
|
| 4709 |
+
}
|
| 4710 |
+
|
| 4711 |
+
.me-xxl-5 {
|
| 4712 |
+
margin-left: 3rem !important;
|
| 4713 |
+
}
|
| 4714 |
+
|
| 4715 |
+
.me-xxl-auto {
|
| 4716 |
+
margin-left: auto !important;
|
| 4717 |
+
}
|
| 4718 |
+
|
| 4719 |
+
.mb-xxl-0 {
|
| 4720 |
+
margin-bottom: 0 !important;
|
| 4721 |
+
}
|
| 4722 |
+
|
| 4723 |
+
.mb-xxl-1 {
|
| 4724 |
+
margin-bottom: 0.25rem !important;
|
| 4725 |
+
}
|
| 4726 |
+
|
| 4727 |
+
.mb-xxl-2 {
|
| 4728 |
+
margin-bottom: 0.5rem !important;
|
| 4729 |
+
}
|
| 4730 |
+
|
| 4731 |
+
.mb-xxl-3 {
|
| 4732 |
+
margin-bottom: 1rem !important;
|
| 4733 |
+
}
|
| 4734 |
+
|
| 4735 |
+
.mb-xxl-4 {
|
| 4736 |
+
margin-bottom: 1.5rem !important;
|
| 4737 |
+
}
|
| 4738 |
+
|
| 4739 |
+
.mb-xxl-5 {
|
| 4740 |
+
margin-bottom: 3rem !important;
|
| 4741 |
+
}
|
| 4742 |
+
|
| 4743 |
+
.mb-xxl-auto {
|
| 4744 |
+
margin-bottom: auto !important;
|
| 4745 |
+
}
|
| 4746 |
+
|
| 4747 |
+
.ms-xxl-0 {
|
| 4748 |
+
margin-right: 0 !important;
|
| 4749 |
+
}
|
| 4750 |
+
|
| 4751 |
+
.ms-xxl-1 {
|
| 4752 |
+
margin-right: 0.25rem !important;
|
| 4753 |
+
}
|
| 4754 |
+
|
| 4755 |
+
.ms-xxl-2 {
|
| 4756 |
+
margin-right: 0.5rem !important;
|
| 4757 |
+
}
|
| 4758 |
+
|
| 4759 |
+
.ms-xxl-3 {
|
| 4760 |
+
margin-right: 1rem !important;
|
| 4761 |
+
}
|
| 4762 |
+
|
| 4763 |
+
.ms-xxl-4 {
|
| 4764 |
+
margin-right: 1.5rem !important;
|
| 4765 |
+
}
|
| 4766 |
+
|
| 4767 |
+
.ms-xxl-5 {
|
| 4768 |
+
margin-right: 3rem !important;
|
| 4769 |
+
}
|
| 4770 |
+
|
| 4771 |
+
.ms-xxl-auto {
|
| 4772 |
+
margin-right: auto !important;
|
| 4773 |
+
}
|
| 4774 |
+
|
| 4775 |
+
.p-xxl-0 {
|
| 4776 |
+
padding: 0 !important;
|
| 4777 |
+
}
|
| 4778 |
+
|
| 4779 |
+
.p-xxl-1 {
|
| 4780 |
+
padding: 0.25rem !important;
|
| 4781 |
+
}
|
| 4782 |
+
|
| 4783 |
+
.p-xxl-2 {
|
| 4784 |
+
padding: 0.5rem !important;
|
| 4785 |
+
}
|
| 4786 |
+
|
| 4787 |
+
.p-xxl-3 {
|
| 4788 |
+
padding: 1rem !important;
|
| 4789 |
+
}
|
| 4790 |
+
|
| 4791 |
+
.p-xxl-4 {
|
| 4792 |
+
padding: 1.5rem !important;
|
| 4793 |
+
}
|
| 4794 |
+
|
| 4795 |
+
.p-xxl-5 {
|
| 4796 |
+
padding: 3rem !important;
|
| 4797 |
+
}
|
| 4798 |
+
|
| 4799 |
+
.px-xxl-0 {
|
| 4800 |
+
padding-left: 0 !important;
|
| 4801 |
+
padding-right: 0 !important;
|
| 4802 |
+
}
|
| 4803 |
+
|
| 4804 |
+
.px-xxl-1 {
|
| 4805 |
+
padding-left: 0.25rem !important;
|
| 4806 |
+
padding-right: 0.25rem !important;
|
| 4807 |
+
}
|
| 4808 |
+
|
| 4809 |
+
.px-xxl-2 {
|
| 4810 |
+
padding-left: 0.5rem !important;
|
| 4811 |
+
padding-right: 0.5rem !important;
|
| 4812 |
+
}
|
| 4813 |
+
|
| 4814 |
+
.px-xxl-3 {
|
| 4815 |
+
padding-left: 1rem !important;
|
| 4816 |
+
padding-right: 1rem !important;
|
| 4817 |
+
}
|
| 4818 |
+
|
| 4819 |
+
.px-xxl-4 {
|
| 4820 |
+
padding-left: 1.5rem !important;
|
| 4821 |
+
padding-right: 1.5rem !important;
|
| 4822 |
+
}
|
| 4823 |
+
|
| 4824 |
+
.px-xxl-5 {
|
| 4825 |
+
padding-left: 3rem !important;
|
| 4826 |
+
padding-right: 3rem !important;
|
| 4827 |
+
}
|
| 4828 |
+
|
| 4829 |
+
.py-xxl-0 {
|
| 4830 |
+
padding-top: 0 !important;
|
| 4831 |
+
padding-bottom: 0 !important;
|
| 4832 |
+
}
|
| 4833 |
+
|
| 4834 |
+
.py-xxl-1 {
|
| 4835 |
+
padding-top: 0.25rem !important;
|
| 4836 |
+
padding-bottom: 0.25rem !important;
|
| 4837 |
+
}
|
| 4838 |
+
|
| 4839 |
+
.py-xxl-2 {
|
| 4840 |
+
padding-top: 0.5rem !important;
|
| 4841 |
+
padding-bottom: 0.5rem !important;
|
| 4842 |
+
}
|
| 4843 |
+
|
| 4844 |
+
.py-xxl-3 {
|
| 4845 |
+
padding-top: 1rem !important;
|
| 4846 |
+
padding-bottom: 1rem !important;
|
| 4847 |
+
}
|
| 4848 |
+
|
| 4849 |
+
.py-xxl-4 {
|
| 4850 |
+
padding-top: 1.5rem !important;
|
| 4851 |
+
padding-bottom: 1.5rem !important;
|
| 4852 |
+
}
|
| 4853 |
+
|
| 4854 |
+
.py-xxl-5 {
|
| 4855 |
+
padding-top: 3rem !important;
|
| 4856 |
+
padding-bottom: 3rem !important;
|
| 4857 |
+
}
|
| 4858 |
+
|
| 4859 |
+
.pt-xxl-0 {
|
| 4860 |
+
padding-top: 0 !important;
|
| 4861 |
+
}
|
| 4862 |
+
|
| 4863 |
+
.pt-xxl-1 {
|
| 4864 |
+
padding-top: 0.25rem !important;
|
| 4865 |
+
}
|
| 4866 |
+
|
| 4867 |
+
.pt-xxl-2 {
|
| 4868 |
+
padding-top: 0.5rem !important;
|
| 4869 |
+
}
|
| 4870 |
+
|
| 4871 |
+
.pt-xxl-3 {
|
| 4872 |
+
padding-top: 1rem !important;
|
| 4873 |
+
}
|
| 4874 |
+
|
| 4875 |
+
.pt-xxl-4 {
|
| 4876 |
+
padding-top: 1.5rem !important;
|
| 4877 |
+
}
|
| 4878 |
+
|
| 4879 |
+
.pt-xxl-5 {
|
| 4880 |
+
padding-top: 3rem !important;
|
| 4881 |
+
}
|
| 4882 |
+
|
| 4883 |
+
.pe-xxl-0 {
|
| 4884 |
+
padding-left: 0 !important;
|
| 4885 |
+
}
|
| 4886 |
+
|
| 4887 |
+
.pe-xxl-1 {
|
| 4888 |
+
padding-left: 0.25rem !important;
|
| 4889 |
+
}
|
| 4890 |
+
|
| 4891 |
+
.pe-xxl-2 {
|
| 4892 |
+
padding-left: 0.5rem !important;
|
| 4893 |
+
}
|
| 4894 |
+
|
| 4895 |
+
.pe-xxl-3 {
|
| 4896 |
+
padding-left: 1rem !important;
|
| 4897 |
+
}
|
| 4898 |
+
|
| 4899 |
+
.pe-xxl-4 {
|
| 4900 |
+
padding-left: 1.5rem !important;
|
| 4901 |
+
}
|
| 4902 |
+
|
| 4903 |
+
.pe-xxl-5 {
|
| 4904 |
+
padding-left: 3rem !important;
|
| 4905 |
+
}
|
| 4906 |
+
|
| 4907 |
+
.pb-xxl-0 {
|
| 4908 |
+
padding-bottom: 0 !important;
|
| 4909 |
+
}
|
| 4910 |
+
|
| 4911 |
+
.pb-xxl-1 {
|
| 4912 |
+
padding-bottom: 0.25rem !important;
|
| 4913 |
+
}
|
| 4914 |
+
|
| 4915 |
+
.pb-xxl-2 {
|
| 4916 |
+
padding-bottom: 0.5rem !important;
|
| 4917 |
+
}
|
| 4918 |
+
|
| 4919 |
+
.pb-xxl-3 {
|
| 4920 |
+
padding-bottom: 1rem !important;
|
| 4921 |
+
}
|
| 4922 |
+
|
| 4923 |
+
.pb-xxl-4 {
|
| 4924 |
+
padding-bottom: 1.5rem !important;
|
| 4925 |
+
}
|
| 4926 |
+
|
| 4927 |
+
.pb-xxl-5 {
|
| 4928 |
+
padding-bottom: 3rem !important;
|
| 4929 |
+
}
|
| 4930 |
+
|
| 4931 |
+
.ps-xxl-0 {
|
| 4932 |
+
padding-right: 0 !important;
|
| 4933 |
+
}
|
| 4934 |
+
|
| 4935 |
+
.ps-xxl-1 {
|
| 4936 |
+
padding-right: 0.25rem !important;
|
| 4937 |
+
}
|
| 4938 |
+
|
| 4939 |
+
.ps-xxl-2 {
|
| 4940 |
+
padding-right: 0.5rem !important;
|
| 4941 |
+
}
|
| 4942 |
+
|
| 4943 |
+
.ps-xxl-3 {
|
| 4944 |
+
padding-right: 1rem !important;
|
| 4945 |
+
}
|
| 4946 |
+
|
| 4947 |
+
.ps-xxl-4 {
|
| 4948 |
+
padding-right: 1.5rem !important;
|
| 4949 |
+
}
|
| 4950 |
+
|
| 4951 |
+
.ps-xxl-5 {
|
| 4952 |
+
padding-right: 3rem !important;
|
| 4953 |
+
}
|
| 4954 |
+
}
|
| 4955 |
+
@media print {
|
| 4956 |
+
.d-print-inline {
|
| 4957 |
+
display: inline !important;
|
| 4958 |
+
}
|
| 4959 |
+
|
| 4960 |
+
.d-print-inline-block {
|
| 4961 |
+
display: inline-block !important;
|
| 4962 |
+
}
|
| 4963 |
+
|
| 4964 |
+
.d-print-block {
|
| 4965 |
+
display: block !important;
|
| 4966 |
+
}
|
| 4967 |
+
|
| 4968 |
+
.d-print-grid {
|
| 4969 |
+
display: grid !important;
|
| 4970 |
+
}
|
| 4971 |
+
|
| 4972 |
+
.d-print-table {
|
| 4973 |
+
display: table !important;
|
| 4974 |
+
}
|
| 4975 |
+
|
| 4976 |
+
.d-print-table-row {
|
| 4977 |
+
display: table-row !important;
|
| 4978 |
+
}
|
| 4979 |
+
|
| 4980 |
+
.d-print-table-cell {
|
| 4981 |
+
display: table-cell !important;
|
| 4982 |
+
}
|
| 4983 |
+
|
| 4984 |
+
.d-print-flex {
|
| 4985 |
+
display: flex !important;
|
| 4986 |
+
}
|
| 4987 |
+
|
| 4988 |
+
.d-print-inline-flex {
|
| 4989 |
+
display: inline-flex !important;
|
| 4990 |
+
}
|
| 4991 |
+
|
| 4992 |
+
.d-print-none {
|
| 4993 |
+
display: none !important;
|
| 4994 |
+
}
|
| 4995 |
+
}
|
| 4996 |
+
/*# sourceMappingURL=bootstrap-grid.rtl.css.map */
|
static/vendor/bootstrap/css/bootstrap-grid.rtl.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
static/vendor/bootstrap/css/bootstrap-grid.rtl.min.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*!
|
| 2 |
+
* Bootstrap Grid v5.0.1 (https://getbootstrap.com/)
|
| 3 |
+
* Copyright 2011-2021 The Bootstrap Authors
|
| 4 |
+
* Copyright 2011-2021 Twitter, Inc.
|
| 5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
| 6 |
+
*/.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--bs-gutter-x,.75rem);padding-right:var(--bs-gutter-x,.75rem);margin-left:auto;margin-right: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}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-left:calc(var(--bs-gutter-x)/ -2);margin-right:calc(var(--bs-gutter-x)/ -2)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x)/ 2);padding-right:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.3333333333%}.offset-2{margin-right:16.6666666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.3333333333%}.offset-5{margin-right:41.6666666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.3333333333%}.offset-8{margin-right:66.6666666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.3333333333%}.offset-11{margin-right:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.3333333333%}.offset-sm-2{margin-right:16.6666666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.3333333333%}.offset-sm-5{margin-right:41.6666666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.3333333333%}.offset-sm-8{margin-right:66.6666666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.3333333333%}.offset-sm-11{margin-right:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.3333333333%}.offset-md-2{margin-right:16.6666666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.3333333333%}.offset-md-5{margin-right:41.6666666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.3333333333%}.offset-md-8{margin-right:66.6666666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.3333333333%}.offset-md-11{margin-right:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.3333333333%}.offset-lg-2{margin-right:16.6666666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.3333333333%}.offset-lg-5{margin-right:41.6666666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.3333333333%}.offset-lg-8{margin-right:66.6666666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.3333333333%}.offset-lg-11{margin-right:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.3333333333%}.offset-xl-2{margin-right:16.6666666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.3333333333%}.offset-xl-5{margin-right:41.6666666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.3333333333%}.offset-xl-8{margin-right:66.6666666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.3333333333%}.offset-xl-11{margin-right:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.3333333333%}.offset-xxl-2{margin-right:16.6666666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.3333333333%}.offset-xxl-5{margin-right:41.6666666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.3333333333%}.offset-xxl-8{margin-right:66.6666666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.3333333333%}.offset-xxl-11{margin-right:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
|
| 7 |
+
/*# sourceMappingURL=bootstrap-grid.rtl.min.css.map */
|
static/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|