diff --git a/docs/docs/2.0 - roadmap.md b/docs/docs/2.0 - roadmap.md index d41773ff8369..d1985e41ec84 100644 --- a/docs/docs/2.0 - roadmap.md +++ b/docs/docs/2.0 - roadmap.md @@ -30,19 +30,6 @@ Feature placement is not set in stone. This is much more of a guideline than any ### Backend - -## v0.1.0 - Initial Release - -## Frontend Tasks -- [ ] General - * [ ] Recipe Category Handling -- [x] Meal Plan - * [ ] Include Lunch / Dinner / Breaksfast Categories Option - -### Backend Tasks -- [ ] Backup Options - * [ ] Force Update - * [ ] Rebuild - [ ] Recipe Data * [ ] Better Scraper * [ ] Image Minification @@ -50,6 +37,11 @@ Feature placement is not set in stone. This is much more of a guideline than any - [ ] Category Management * [ ] Lunch / Dinner / Breakfast <- Meal Generation * [ ] Dessert / Side / Appetizer / Bread / Drinks / +- [ ] Backup Options + * [ ] Force Update + * [ ] Rebuild + + diff --git a/frontend/src/api.js b/frontend/src/api.js index c82942984429..7f7449ff50e3 100644 --- a/frontend/src/api.js +++ b/frontend/src/api.js @@ -3,6 +3,7 @@ import recipe from "./api/recipe"; import mealplan from "./api/mealplan"; import settings from "./api/settings"; import themes from "./api/themes"; +import migration from "./api/migration"; // import api from "../api"; @@ -12,4 +13,5 @@ export default { mealPlans: mealplan, settings: settings, themes: themes, + migrations: migration, }; diff --git a/frontend/src/api/api-utils.js b/frontend/src/api/api-utils.js index f9246f097e1f..0222b1d7df0d 100644 --- a/frontend/src/api/api-utils.js +++ b/frontend/src/api/api-utils.js @@ -2,13 +2,17 @@ const baseURL = "/api/"; import axios from "axios"; import store from "../store/store"; +// look for data.snackbar in response function processResponse(response) { - if (("data" in response) & ("snackbar" in response.data)) { + try { store.commit("setSnackBar", { text: response.data.snackbar.text, type: response.data.snackbar.type, }); - } else return; + } catch (err) { + return; + } + return; } const apiReq = { diff --git a/frontend/src/api/migration.js b/frontend/src/api/migration.js new file mode 100644 index 000000000000..9c4d4da91800 --- /dev/null +++ b/frontend/src/api/migration.js @@ -0,0 +1,19 @@ +import { baseURL } from "./api-utils"; +import { apiReq } from "./api-utils"; +import { store } from "../store/store"; + +const migrationBase = baseURL + "migration/"; + +const migrationURLs = { + chowdownURL: migrationBase + "chowdown/repo/", +}; + +export default { + async migrateChowdown(repoURL) { + let postBody = { url: repoURL }; + let response = await apiReq.post(migrationURLs.chowdownURL, postBody); + console.log(response); + store.dispatch("requestRecentRecipes"); + return response.data; + }, +}; diff --git a/frontend/src/api/recipe.js b/frontend/src/api/recipe.js index 5bb3d8469c09..049e2e5d8035 100644 --- a/frontend/src/api/recipe.js +++ b/frontend/src/api/recipe.js @@ -20,7 +20,10 @@ const recipeURLs = { export default { async createByURL(recipeURL) { - let response = await apiReq.post(recipeURLs.createByURL, { url: recipeURL }); + let response = await apiReq.post(recipeURLs.createByURL, { + url: recipeURL, + }); + console.log(response); let recipeSlug = response.data; store.dispatch("requestRecentRecipes"); router.push(`/recipe/${recipeSlug}`); diff --git a/frontend/src/components/Admin/Admin.vue b/frontend/src/components/Admin/Admin.vue index 42b6eba85cfe..14deb022d49a 100644 --- a/frontend/src/components/Admin/Admin.vue +++ b/frontend/src/components/Admin/Admin.vue @@ -3,6 +3,7 @@ + @@ -10,11 +11,13 @@ import Backup from "./Backup"; import Webhooks from "./Webhooks"; import Theme from "./Theme"; +import Migration from "./Migration"; export default { components: { Backup, Webhooks, Theme, + Migration, }, }; diff --git a/frontend/src/components/Admin/Migration.vue b/frontend/src/components/Admin/Migration.vue new file mode 100644 index 000000000000..f792abccec45 --- /dev/null +++ b/frontend/src/components/Admin/Migration.vue @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/mealie/app.py b/mealie/app.py index cd1740cd9cfa..d1f3971ef940 100644 --- a/mealie/app.py +++ b/mealie/app.py @@ -7,6 +7,7 @@ from fastapi.staticfiles import StaticFiles from routes import ( backup_routes, meal_routes, + migration_routes, recipe_routes, setting_routes, static_routes, @@ -31,6 +32,7 @@ app.include_router(meal_routes.router) app.include_router(setting_routes.router) app.include_router(backup_routes.router) app.include_router(user_routes.router) +app.include_router(migration_routes.router) # API 404 Catch all CALL AFTER ROUTERS @app.get("/api/{full_path:path}", status_code=404, include_in_schema=False) diff --git a/mealie/data/img/banana-bread.jpg b/mealie/data/img/banana-bread.jpg new file mode 100644 index 000000000000..6d6039eed4c2 Binary files /dev/null and b/mealie/data/img/banana-bread.jpg differ diff --git a/mealie/data/img/broccoli-beer-cheese-soup.jpg b/mealie/data/img/broccoli-beer-cheese-soup.jpg new file mode 100644 index 000000000000..8395e18227ea Binary files /dev/null and b/mealie/data/img/broccoli-beer-cheese-soup.jpg differ diff --git a/mealie/data/img/cauliflower-cacciatore.jpg b/mealie/data/img/cauliflower-cacciatore.jpg new file mode 100644 index 000000000000..05cfca62ed54 Binary files /dev/null and b/mealie/data/img/cauliflower-cacciatore.jpg differ diff --git a/mealie/data/img/chicken-and-rice-with-leeks-and-salsa-verde.jpg b/mealie/data/img/chicken-and-rice-with-leeks-and-salsa-verde.jpg deleted file mode 100644 index 6077e053e3d7..000000000000 Binary files a/mealie/data/img/chicken-and-rice-with-leeks-and-salsa-verde.jpg and /dev/null differ diff --git a/mealie/data/img/crispy-carrots.jpg b/mealie/data/img/crispy-carrots.jpg new file mode 100644 index 000000000000..35cfd083d545 Binary files /dev/null and b/mealie/data/img/crispy-carrots.jpg differ diff --git a/mealie/data/img/crockpot-buffalo-chicken.jpg b/mealie/data/img/crockpot-buffalo-chicken.jpg new file mode 100644 index 000000000000..258b3771d608 Binary files /dev/null and b/mealie/data/img/crockpot-buffalo-chicken.jpg differ diff --git a/mealie/data/img/downtown-marinade.jpg b/mealie/data/img/downtown-marinade.jpg new file mode 100644 index 000000000000..da579b2f68ca Binary files /dev/null and b/mealie/data/img/downtown-marinade.jpg differ diff --git a/mealie/data/img/falafel-hummus-plate.jpg b/mealie/data/img/falafel-hummus-plate.jpg new file mode 100644 index 000000000000..cefc202f142f Binary files /dev/null and b/mealie/data/img/falafel-hummus-plate.jpg differ diff --git a/mealie/data/img/french-toast.jpg b/mealie/data/img/french-toast.jpg new file mode 100644 index 000000000000..5611a161bad3 Binary files /dev/null and b/mealie/data/img/french-toast.jpg differ diff --git a/mealie/data/img/graham-cracker-crust.jpg b/mealie/data/img/graham-cracker-crust.jpg new file mode 100644 index 000000000000..c870d6580d11 Binary files /dev/null and b/mealie/data/img/graham-cracker-crust.jpg differ diff --git a/mealie/data/img/green-chile-stew.jpg b/mealie/data/img/green-chile-stew.jpg new file mode 100644 index 000000000000..74ba5362f204 Binary files /dev/null and b/mealie/data/img/green-chile-stew.jpg differ diff --git a/mealie/data/img/green-spaghetti.jpg b/mealie/data/img/green-spaghetti.jpg new file mode 100644 index 000000000000..7821394b620c Binary files /dev/null and b/mealie/data/img/green-spaghetti.jpg differ diff --git a/mealie/data/img/jalapeno-cornbread.jpg b/mealie/data/img/jalapeno-cornbread.jpg new file mode 100644 index 000000000000..b416a63e5392 Binary files /dev/null and b/mealie/data/img/jalapeno-cornbread.jpg differ diff --git a/mealie/data/img/mississippi-pot-roast.jpg b/mealie/data/img/mississippi-pot-roast.jpg new file mode 100644 index 000000000000..41496b092c96 Binary files /dev/null and b/mealie/data/img/mississippi-pot-roast.jpg differ diff --git a/mealie/data/img/mongolian-beef.jpg b/mealie/data/img/mongolian-beef.jpg new file mode 100644 index 000000000000..8e5795b763d5 Binary files /dev/null and b/mealie/data/img/mongolian-beef.jpg differ diff --git a/mealie/data/img/mushroom-risotto.jpg b/mealie/data/img/mushroom-risotto.jpg new file mode 100644 index 000000000000..5c79f02e2047 Binary files /dev/null and b/mealie/data/img/mushroom-risotto.jpg differ diff --git a/mealie/data/img/new-york-strip.jpg b/mealie/data/img/new-york-strip.jpg new file mode 100644 index 000000000000..21112431e430 Binary files /dev/null and b/mealie/data/img/new-york-strip.jpg differ diff --git a/mealie/data/img/nilla-wafer-french-toast.jpg b/mealie/data/img/nilla-wafer-french-toast.jpg new file mode 100644 index 000000000000..a3fb14cbb4fc Binary files /dev/null and b/mealie/data/img/nilla-wafer-french-toast.jpg differ diff --git a/mealie/data/img/one-minute-muffin.jpg b/mealie/data/img/one-minute-muffin.jpg new file mode 100644 index 000000000000..0107d91a56b9 Binary files /dev/null and b/mealie/data/img/one-minute-muffin.jpg differ diff --git a/mealie/data/img/pace-pork.jpg b/mealie/data/img/pace-pork.jpg new file mode 100644 index 000000000000..d05748c23963 Binary files /dev/null and b/mealie/data/img/pace-pork.jpg differ diff --git a/mealie/data/img/parker-house-rolls.jpg b/mealie/data/img/parker-house-rolls.jpg deleted file mode 100644 index eb0e89880213..000000000000 Binary files a/mealie/data/img/parker-house-rolls.jpg and /dev/null differ diff --git a/mealie/data/img/pork-steaks.jpg b/mealie/data/img/pork-steaks.jpg new file mode 100644 index 000000000000..3932f83fac6b Binary files /dev/null and b/mealie/data/img/pork-steaks.jpg differ diff --git a/mealie/data/img/red-berry-tart.jpg b/mealie/data/img/red-berry-tart.jpg new file mode 100644 index 000000000000..fb907e3f1951 Binary files /dev/null and b/mealie/data/img/red-berry-tart.jpg differ diff --git a/mealie/data/img/red-berry-topping.jpg b/mealie/data/img/red-berry-topping.jpg new file mode 100644 index 000000000000..932b26434c3d Binary files /dev/null and b/mealie/data/img/red-berry-topping.jpg differ diff --git a/mealie/data/img/red-lentil-salad.jpg b/mealie/data/img/red-lentil-salad.jpg new file mode 100644 index 000000000000..6b00db117385 Binary files /dev/null and b/mealie/data/img/red-lentil-salad.jpg differ diff --git a/mealie/data/img/roasted-brussels-sprouts.jpg b/mealie/data/img/roasted-brussels-sprouts.jpg new file mode 100644 index 000000000000..c3797ecedbb8 Binary files /dev/null and b/mealie/data/img/roasted-brussels-sprouts.jpg differ diff --git a/mealie/data/img/roasted-okra.jpg b/mealie/data/img/roasted-okra.jpg new file mode 100644 index 000000000000..8e01ebcb1210 Binary files /dev/null and b/mealie/data/img/roasted-okra.jpg differ diff --git a/mealie/data/img/salt-vinegar-potatoes.jpg b/mealie/data/img/salt-vinegar-potatoes.jpg new file mode 100644 index 000000000000..cad60070bc37 Binary files /dev/null and b/mealie/data/img/salt-vinegar-potatoes.jpg differ diff --git a/mealie/data/img/smashed-carrots.jpg b/mealie/data/img/smashed-carrots.jpg new file mode 100644 index 000000000000..02b59ba1398c Binary files /dev/null and b/mealie/data/img/smashed-carrots.jpg differ diff --git a/mealie/data/img/spinach-and-cheese-slab-biscuits.jpg b/mealie/data/img/spinach-and-cheese-slab-biscuits.jpg deleted file mode 100644 index 9564829dc865..000000000000 Binary files a/mealie/data/img/spinach-and-cheese-slab-biscuits.jpg and /dev/null differ diff --git a/mealie/data/img/spritz-cookies.jpg b/mealie/data/img/spritz-cookies.jpg deleted file mode 100644 index 3f8b75fb4ce9..000000000000 Binary files a/mealie/data/img/spritz-cookies.jpg and /dev/null differ diff --git a/mealie/data/img/stuffed-peppers.jpg b/mealie/data/img/stuffed-peppers.jpg new file mode 100644 index 000000000000..866be227a4fc Binary files /dev/null and b/mealie/data/img/stuffed-peppers.jpg differ diff --git a/mealie/data/img/sweet-potato-cakes-with-poached-eggs.jpg b/mealie/data/img/sweet-potato-cakes-with-poached-eggs.jpg new file mode 100644 index 000000000000..26427f11e931 Binary files /dev/null and b/mealie/data/img/sweet-potato-cakes-with-poached-eggs.jpg differ diff --git a/mealie/data/img/tequila-beer-and-citrus-cocktail.jpg b/mealie/data/img/tequila-beer-and-citrus-cocktail.jpg new file mode 100644 index 000000000000..fa9eb7076662 Binary files /dev/null and b/mealie/data/img/tequila-beer-and-citrus-cocktail.jpg differ diff --git a/mealie/data/img/vanilla-custard.jpg b/mealie/data/img/vanilla-custard.jpg new file mode 100644 index 000000000000..1101d3b1bb9a Binary files /dev/null and b/mealie/data/img/vanilla-custard.jpg differ diff --git a/mealie/routes/migration_routes.py b/mealie/routes/migration_routes.py new file mode 100644 index 000000000000..9d30af09d843 --- /dev/null +++ b/mealie/routes/migration_routes.py @@ -0,0 +1,24 @@ +from fastapi import APIRouter, HTTPException +from models.backup_models import BackupJob +from services.migrations.chowdown import chowdown_migrate as chowdow_migrate +from utils.snackbar import SnackResponse + +router = APIRouter() + + +@router.post("/api/migration/chowdown/repo/", tags=["Migration"]) +async def import_chowdown_recipes(repo: dict): + """ Import Chowsdown Recipes from Repo URL """ + try: + report = chowdow_migrate(repo.get("url")) + return SnackResponse.success( + "Recipes Imported from Git Repo, see report for failures.", + additional_data=report, + ) + except: + return HTTPException( + status_code=400, + detail=SnackResponse.error( + "Unable to Migrate Recipes. See Log for Details" + ), + ) diff --git a/mealie/routes/recipe_routes.py b/mealie/routes/recipe_routes.py index fe2a46624686..1d9cb2076103 100644 --- a/mealie/routes/recipe_routes.py +++ b/mealie/routes/recipe_routes.py @@ -24,6 +24,7 @@ async def get_all_recipes( async def get_recipe(recipe_slug: str): """ Takes in a recipe slug, returns all data for a recipe """ recipe = Recipe.get_by_slug(recipe_slug) + return recipe diff --git a/mealie/scratch.py b/mealie/scratch.py index 733321b1a5cc..ea52d6413510 100644 --- a/mealie/scratch.py +++ b/mealie/scratch.py @@ -1,26 +1,106 @@ -import collections +import shutil +from os.path import join +from pathlib import Path +from pprint import pprint -import pdfkit -import requests +import git +import yaml +from git.util import join_path -from db.mongo_setup import global_init +from services.image_services import IMG_DIR +from services.recipe_services import Recipe -Cron = collections.namedtuple("Cron", "hours minutes") +try: + from yaml import CDumper as Dumper + from yaml import CLoader as Loader +except ImportError: + from yaml import Dumper, Loader + +CWD = Path(__file__).parent + +file = f"/home/hayden/Projects/mealie-fastAPI/mealie/chowdown.md" + +repo = "https://github.com/clarklab/chowdown" -# def cron_parser(time_str: str) -> Cron: -# time = time_str.split(":") -# cron = Cron(hours=time[0], minutes=time[1]) +def pull_repo(repo): + dest_dir = CWD.joinpath("data/temp/migration/git_pull") + if dest_dir.exists(): + shutil.rmtree(dest_dir) + dest_dir.mkdir(parents=True, exist_ok=True) + git.Git(dest_dir).clone(repo) -# print(cron.hours, cron.minutes) + repo_name = repo.split("/")[-1] + recipe_dir = dest_dir.joinpath(repo_name, "_recipes") + image_dir = dest_dir.joinpath(repo_name, "images") + + return recipe_dir, image_dir -# cron_parser("12:45") +def read_chowdown_file(recipe_file: Path) -> Recipe: + with open(recipe_file, "r") as stream: + recipe_description: str = str + recipe_data: dict = {} + try: + for x, item in enumerate(yaml.load_all(stream, Loader=Loader)): + print(item) + if x == 0: + recipe_data = item -URL = "https://home.homelabhome.com/api/webhook/test_msg" -from services.meal_services import MealPlan + elif x == 1: + recipe_description = str(item) -global_init() -todays_meal = MealPlan.today() + except yaml.YAMLError as exc: + print(exc) + return -requests.post(URL, todays_meal) + reformat_data = { + "name": recipe_data.get("title"), + "description": recipe_description, + "image": recipe_data.get("image", ""), + "recipeIngredient": recipe_data.get("ingredients"), + "recipeInstructions": recipe_data.get("directions"), + "tags": recipe_data.get("tags").split(","), + } + + pprint(reformat_data) + new_recipe = Recipe(**reformat_data) + + reformated_list = [] + for instruction in new_recipe.recipeInstructions: + reformated_list.append({"text": instruction}) + + new_recipe.recipeInstructions = reformated_list + + return new_recipe + + +def main(): + from db.mongo_setup import global_init + + global_init() + recipe_dir, image_dir = pull_repo(repo) + + failed_images = [] + for image in image_dir.iterdir(): + try: + image.rename(IMG_DIR.joinpath(image.name)) + except: + failed_images.append(image.name) + + failed_recipes = [] + for recipe in recipe_dir.glob("*.md"): + print(recipe.name) + try: + new_recipe = read_chowdown_file(recipe) + new_recipe.save_to_db() + + except: + failed_recipes.append(recipe.name) + + report = {"failedImages": failed_images, "failedRecipes": failed_recipes} + + print(report) + + +main() diff --git a/mealie/services/migrations/chowdown.py b/mealie/services/migrations/chowdown.py new file mode 100644 index 000000000000..785bb6c21c8c --- /dev/null +++ b/mealie/services/migrations/chowdown.py @@ -0,0 +1,91 @@ +import shutil +from pathlib import Path + +import git +import yaml +from services.image_services import IMG_DIR +from services.recipe_services import Recipe + +try: + from yaml import CLoader as Loader +except ImportError: + from yaml import Loader + +TEMP_DIR = Path(__file__).parent.parent.parent.joinpath("temp") + + +def pull_repo(repo): + dest_dir = TEMP_DIR.joinpath("/migration/git_pull") + if dest_dir.exists(): + shutil.rmtree(dest_dir) + dest_dir.mkdir(parents=True, exist_ok=True) + git.Git(dest_dir).clone(repo) + + repo_name = repo.split("/")[-1] + recipe_dir = dest_dir.joinpath(repo_name, "_recipes") + image_dir = dest_dir.joinpath(repo_name, "images") + + return recipe_dir, image_dir + + +def read_chowdown_file(recipe_file: Path) -> Recipe: + with open(recipe_file, "r") as stream: + recipe_description: str = str + recipe_data: dict = {} + try: + for x, item in enumerate(yaml.load_all(stream, Loader=Loader)): + print(item) + if x == 0: + recipe_data = item + + elif x == 1: + recipe_description = str(item) + + except yaml.YAMLError as exc: + print(exc) + return + + reformat_data = { + "name": recipe_data.get("title"), + "description": recipe_description, + "image": recipe_data.get("image", ""), + "recipeIngredient": recipe_data.get("ingredients"), + "recipeInstructions": recipe_data.get("directions"), + "tags": recipe_data.get("tags").split(","), + } + + new_recipe = Recipe(**reformat_data) + + reformated_list = [] + for instruction in new_recipe.recipeInstructions: + reformated_list.append({"text": instruction}) + + new_recipe.recipeInstructions = reformated_list + + return new_recipe + + +def chowdown_migrate(repo): + recipe_dir, image_dir = pull_repo(repo) + + failed_images = [] + for image in image_dir.iterdir(): + try: + shutil.copy(image, IMG_DIR.joinpath(image.name)) + except: + failed_images.append(image.name) + + failed_recipes = [] + for recipe in recipe_dir.glob("*.md"): + print(recipe.name) + try: + new_recipe = read_chowdown_file(recipe) + new_recipe.save_to_db() + + except: + failed_recipes.append(recipe.name) + + + report = {"failedImages": failed_images, "failedRecipes": failed_recipes} + + return report diff --git a/mealie/utils/snackbar.py b/mealie/utils/snackbar.py index 73558f3cae57..6ceb8230ac8a 100644 --- a/mealie/utils/snackbar.py +++ b/mealie/utils/snackbar.py @@ -1,32 +1,39 @@ class SnackResponse: @staticmethod - def _create_response(message: str, type: str) -> dict: - return {"snackbar": {"text": message, "type": type}} + def _create_response(message: str, type: str, additional_data: dict = None) -> dict: + + snackbar = {"snackbar": {"text": message, "type": type}} + + if additional_data: + snackbar.update(additional_data) + print(snackbar) + + return snackbar @staticmethod - def primary(message: str) -> dict: - return SnackResponse._create_response(message, "primary") + def primary(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "primary", additional_data) @staticmethod - def accent(message: str) -> dict: - return SnackResponse._create_response(message, "accent") + def accent(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "accent", additional_data) @staticmethod - def secondary(message: str) -> dict: - return SnackResponse._create_response(message, "secondary") + def secondary(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "secondary", additional_data) @staticmethod - def success(message: str) -> dict: - return SnackResponse._create_response(message, "success") + def success(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "success", additional_data) @staticmethod - def info(message: str) -> dict: - return SnackResponse._create_response(message, "info") + def info(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "info", additional_data) @staticmethod - def warning(message: str) -> dict: - return SnackResponse._create_response(message, "warning") + def warning(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "warning", additional_data) @staticmethod - def error(message: str) -> dict: - return SnackResponse._create_response(message, "error") + def error(message: str, additional_data: dict = None) -> dict: + return SnackResponse._create_response(message, "error", additional_data) diff --git a/mealie/web/config.js b/mealie/web/config.js deleted file mode 100644 index 238a154b532c..000000000000 --- a/mealie/web/config.js +++ /dev/null @@ -1,5 +0,0 @@ -const config = (() => { - return { - "VUE_APP_API_BASE_URL": "REPLACE_ME", - }; - })(); \ No newline at end of file diff --git a/mealie/web/css/app.e50b23f1.css b/mealie/web/css/app.e50b23f1.css deleted file mode 100644 index 28cbc1179555..000000000000 --- a/mealie/web/css/app.e50b23f1.css +++ /dev/null @@ -1 +0,0 @@ -.card-btn{margin-top:-10px}.disabled-card{opacity:1%}.img-input{position:absolute;bottom:0} \ No newline at end of file diff --git a/mealie/web/css/chunk-vendors.e0416589.css b/mealie/web/css/chunk-vendors.e0416589.css deleted file mode 100644 index 90b2f5838596..000000000000 --- a/mealie/web/css/chunk-vendors.e0416589.css +++ /dev/null @@ -1,19778 +0,0 @@ -.v-btn:not(.v-btn--outlined).accent, -.v-btn:not(.v-btn--outlined).error, -.v-btn:not(.v-btn--outlined).info, -.v-btn:not(.v-btn--outlined).primary, -.v-btn:not(.v-btn--outlined).secondary, -.v-btn:not(.v-btn--outlined).success, -.v-btn:not(.v-btn--outlined).warning { - color: #fff; -} -.theme--light.v-btn { - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-btn.v-btn--disabled, -.theme--light.v-btn.v-btn--disabled .v-btn__loading, -.theme--light.v-btn.v-btn--disabled .v-icon { - color: rgba(0, 0, 0, 0.26) !important; -} -.theme--light.v-btn.v-btn--disabled:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined) { - background-color: rgba(0, 0, 0, 0.12) !important; -} -.theme--light.v-btn:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined) { - background-color: #f5f5f5; -} -.theme--light.v-btn.v-btn--outlined.v-btn--text { - border-color: rgba(0, 0, 0, 0.12); -} -.theme--light.v-btn.v-btn--icon { - color: rgba(0, 0, 0, 0.54); -} -.theme--light.v-btn:hover:before { - opacity: 0.04; -} -.theme--light.v-btn--active:before, -.theme--light.v-btn--active:hover:before, -.theme--light.v-btn:focus:before { - opacity: 0.12; -} -.theme--light.v-btn--active:focus:before { - opacity: 0.16; -} -.theme--dark.v-btn { - color: #fff; -} -.theme--dark.v-btn.v-btn--disabled, -.theme--dark.v-btn.v-btn--disabled .v-btn__loading, -.theme--dark.v-btn.v-btn--disabled .v-icon { - color: hsla(0, 0%, 100%, 0.3) !important; -} -.theme--dark.v-btn.v-btn--disabled:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined) { - background-color: hsla(0, 0%, 100%, 0.12) !important; -} -.theme--dark.v-btn:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined) { - background-color: #272727; -} -.theme--dark.v-btn.v-btn--outlined.v-btn--text { - border-color: hsla(0, 0%, 100%, 0.12); -} -.theme--dark.v-btn.v-btn--icon { - color: #fff; -} -.theme--dark.v-btn:hover:before { - opacity: 0.08; -} -.theme--dark.v-btn--active:before, -.theme--dark.v-btn--active:hover:before, -.theme--dark.v-btn:focus:before { - opacity: 0.24; -} -.theme--dark.v-btn--active:focus:before { - opacity: 0.32; -} -.v-btn { - align-items: center; - border-radius: 4px; - display: inline-flex; - flex: 0 0 auto; - font-weight: 500; - letter-spacing: 0.0892857143em; - justify-content: center; - outline: 0; - position: relative; - text-decoration: none; - text-indent: 0.0892857143em; - text-transform: uppercase; - transition-duration: 0.28s; - transition-property: box-shadow, transform, opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - white-space: nowrap; -} -.v-btn.v-size--x-small { - font-size: 0.625rem; -} -.v-btn.v-size--small { - font-size: 0.75rem; -} -.v-btn.v-size--default, -.v-btn.v-size--large { - font-size: 0.875rem; -} -.v-btn.v-size--x-large { - font-size: 1rem; -} -.v-btn:before { - border-radius: inherit; - bottom: 0; - color: inherit; - content: ""; - left: 0; - opacity: 0; - pointer-events: none; - position: absolute; - right: 0; - top: 0; - transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1); - background-color: currentColor; -} -.v-btn:not(.v-btn--disabled) { - will-change: box-shadow; -} -.v-btn:not(.v-btn--round).v-size--x-small { - height: 20px; - min-width: 36px; - padding: 0 8.8888888889px; -} -.v-btn:not(.v-btn--round).v-size--small { - height: 28px; - min-width: 50px; - padding: 0 12.4444444444px; -} -.v-btn:not(.v-btn--round).v-size--default { - height: 36px; - min-width: 64px; - padding: 0 16px; -} -.v-btn:not(.v-btn--round).v-size--large { - height: 44px; - min-width: 78px; - padding: 0 19.5555555556px; -} -.v-btn:not(.v-btn--round).v-size--x-large { - height: 52px; - min-width: 92px; - padding: 0 23.1111111111px; -} -.v-btn > .v-btn__content .v-icon { - color: inherit; -} -.v-btn__content { - align-items: center; - color: inherit; - display: flex; - flex: 1 0 auto; - justify-content: inherit; - line-height: normal; - position: relative; -} -.v-btn__content .v-icon--left, -.v-btn__content .v-icon--right { - font-size: 18px; - height: 18px; - width: 18px; -} -.v-application--is-ltr .v-btn__content .v-icon--left { - margin-left: -4px; - margin-right: 8px; -} -.v-application--is-ltr .v-btn__content .v-icon--right, -.v-application--is-rtl .v-btn__content .v-icon--left { - margin-left: 8px; - margin-right: -4px; -} -.v-application--is-rtl .v-btn__content .v-icon--right { - margin-left: -4px; - margin-right: 8px; -} -.v-btn__loader { - align-items: center; - display: flex; - height: 100%; - justify-content: center; - left: 0; - position: absolute; - top: 0; - width: 100%; -} -.v-btn:not(.v-btn--text):not(.v-btn--outlined).v-btn--active:before { - opacity: 0.18; -} -.v-btn:not(.v-btn--text):not(.v-btn--outlined):hover:before { - opacity: 0.08; -} -.v-btn:not(.v-btn--text):not(.v-btn--outlined):focus:before { - opacity: 0.24; -} -.v-btn--absolute, -.v-btn--fixed { - position: absolute; -} -.v-btn--absolute.v-btn--right, -.v-btn--fixed.v-btn--right { - right: 16px; -} -.v-btn--absolute.v-btn--left, -.v-btn--fixed.v-btn--left { - left: 16px; -} -.v-btn--absolute.v-btn--top, -.v-btn--fixed.v-btn--top { - top: 16px; -} -.v-btn--absolute.v-btn--bottom, -.v-btn--fixed.v-btn--bottom { - bottom: 16px; -} -.v-btn--block { - display: flex; - flex: 1 0 auto; - min-width: 100% !important; - max-width: auto; -} -.v-btn--contained { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), - 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} -.v-btn--contained:after { - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), - 0 1px 10px 0 rgba(0, 0, 0, 0.12); -} -.v-btn--contained:active { - box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), - 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); -} -.v-btn--depressed { - box-shadow: none !important; -} -.v-btn--disabled { - box-shadow: none; - pointer-events: none; -} -.v-btn--fab, -.v-btn--icon { - min-height: 0; - min-width: 0; - padding: 0; -} -.v-btn--fab.v-size--x-small .v-icon, -.v-btn--icon.v-size--x-small .v-icon { - height: 18px; - font-size: 18px; - width: 18px; -} -.v-btn--fab.v-size--default .v-icon, -.v-btn--fab.v-size--small .v-icon, -.v-btn--icon.v-size--default .v-icon, -.v-btn--icon.v-size--small .v-icon { - height: 24px; - font-size: 24px; - width: 24px; -} -.v-btn--fab.v-size--large .v-icon, -.v-btn--icon.v-size--large .v-icon { - height: 28px; - font-size: 28px; - width: 28px; -} -.v-btn--fab.v-size--x-large .v-icon, -.v-btn--icon.v-size--x-large .v-icon { - height: 32px; - font-size: 32px; - width: 32px; -} -.v-btn--icon.v-size--x-small { - height: 20px; - width: 20px; -} -.v-btn--icon.v-size--small { - height: 28px; - width: 28px; -} -.v-btn--icon.v-size--default { - height: 36px; - width: 36px; -} -.v-btn--icon.v-size--large { - height: 44px; - width: 44px; -} -.v-btn--icon.v-size--x-large { - height: 52px; - width: 52px; -} -.v-btn--fab.v-btn--contained { - box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), - 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12); -} -.v-btn--fab.v-btn--contained:after { - box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), - 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); -} -.v-btn--fab.v-btn--contained:active { - box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), - 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12); -} -.v-btn--fab.v-btn--absolute, -.v-btn--fab.v-btn--fixed { - z-index: 4; -} -.v-btn--fab.v-size--x-small { - height: 32px; - width: 32px; -} -.v-btn--fab.v-size--x-small.v-btn--absolute.v-btn--bottom { - bottom: -16px; -} -.v-btn--fab.v-size--x-small.v-btn--absolute.v-btn--top { - top: -16px; -} -.v-btn--fab.v-size--small { - height: 40px; - width: 40px; -} -.v-btn--fab.v-size--small.v-btn--absolute.v-btn--bottom { - bottom: -20px; -} -.v-btn--fab.v-size--small.v-btn--absolute.v-btn--top { - top: -20px; -} -.v-btn--fab.v-size--default { - height: 56px; - width: 56px; -} -.v-btn--fab.v-size--default.v-btn--absolute.v-btn--bottom { - bottom: -28px; -} -.v-btn--fab.v-size--default.v-btn--absolute.v-btn--top { - top: -28px; -} -.v-btn--fab.v-size--large { - height: 64px; - width: 64px; -} -.v-btn--fab.v-size--large.v-btn--absolute.v-btn--bottom { - bottom: -32px; -} -.v-btn--fab.v-size--large.v-btn--absolute.v-btn--top { - top: -32px; -} -.v-btn--fab.v-size--x-large { - height: 72px; - width: 72px; -} -.v-btn--fab.v-size--x-large.v-btn--absolute.v-btn--bottom { - bottom: -36px; -} -.v-btn--fab.v-size--x-large.v-btn--absolute.v-btn--top { - top: -36px; -} -.v-btn--fixed { - position: fixed; -} -.v-btn--loading { - pointer-events: none; - transition: none; -} -.v-btn--loading .v-btn__content { - opacity: 0; -} -.v-btn--outlined { - border: thin solid currentColor; -} -.v-btn--outlined .v-btn__content .v-icon, -.v-btn--round .v-btn__content .v-icon { - color: currentColor; -} -.v-btn--flat, -.v-btn--outlined, -.v-btn--text { - background-color: transparent; -} -.v-btn--outlined:before, -.v-btn--round:before, -.v-btn--rounded:before { - border-radius: inherit; -} -.v-btn--round { - border-radius: 50%; -} -.v-btn--rounded { - border-radius: 28px; -} -.v-btn--tile { - border-radius: 0; -} -.theme--light.v-sheet { - background-color: #fff; - border-color: #fff; - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-sheet--outlined { - border: thin solid rgba(0, 0, 0, 0.12); -} -.theme--dark.v-sheet { - background-color: #1e1e1e; - border-color: #1e1e1e; - color: #fff; -} -.theme--dark.v-sheet--outlined { - border: thin solid hsla(0, 0%, 100%, 0.12); -} -.v-sheet { - border-radius: 0; -} -.v-sheet:not(.v-sheet--outlined) { - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), - 0 0 0 0 rgba(0, 0, 0, 0.12); -} -.v-sheet.v-sheet--shaped { - border-radius: 24px 0; -} -@-webkit-keyframes v-shake { - 59% { - margin-left: 0; - } - 60%, - 80% { - margin-left: 2px; - } - 70%, - 90% { - margin-left: -2px; - } -} -@keyframes v-shake { - 59% { - margin-left: 0; - } - 60%, - 80% { - margin-left: 2px; - } - 70%, - 90% { - margin-left: -2px; - } -} -.v-application .black { - background-color: #000 !important; - border-color: #000 !important; -} -.v-application .black--text { - color: #000 !important; - caret-color: #000 !important; -} -.v-application .white { - background-color: #fff !important; - border-color: #fff !important; -} -.v-application .white--text { - color: #fff !important; - caret-color: #fff !important; -} -.v-application .transparent { - background-color: transparent !important; - border-color: transparent !important; -} -.v-application .transparent--text { - color: transparent !important; - caret-color: transparent !important; -} -.v-application .red { - background-color: #f44336 !important; - border-color: #f44336 !important; -} -.v-application .red--text { - color: #f44336 !important; - caret-color: #f44336 !important; -} -.v-application .red.lighten-5 { - background-color: #ffebee !important; - border-color: #ffebee !important; -} -.v-application .red--text.text--lighten-5 { - color: #ffebee !important; - caret-color: #ffebee !important; -} -.v-application .red.lighten-4 { - background-color: #ffcdd2 !important; - border-color: #ffcdd2 !important; -} -.v-application .red--text.text--lighten-4 { - color: #ffcdd2 !important; - caret-color: #ffcdd2 !important; -} -.v-application .red.lighten-3 { - background-color: #ef9a9a !important; - border-color: #ef9a9a !important; -} -.v-application .red--text.text--lighten-3 { - color: #ef9a9a !important; - caret-color: #ef9a9a !important; -} -.v-application .red.lighten-2 { - background-color: #e57373 !important; - border-color: #e57373 !important; -} -.v-application .red--text.text--lighten-2 { - color: #e57373 !important; - caret-color: #e57373 !important; -} -.v-application .red.lighten-1 { - background-color: #ef5350 !important; - border-color: #ef5350 !important; -} -.v-application .red--text.text--lighten-1 { - color: #ef5350 !important; - caret-color: #ef5350 !important; -} -.v-application .red.darken-1 { - background-color: #e53935 !important; - border-color: #e53935 !important; -} -.v-application .red--text.text--darken-1 { - color: #e53935 !important; - caret-color: #e53935 !important; -} -.v-application .red.darken-2 { - background-color: #d32f2f !important; - border-color: #d32f2f !important; -} -.v-application .red--text.text--darken-2 { - color: #d32f2f !important; - caret-color: #d32f2f !important; -} -.v-application .red.darken-3 { - background-color: #c62828 !important; - border-color: #c62828 !important; -} -.v-application .red--text.text--darken-3 { - color: #c62828 !important; - caret-color: #c62828 !important; -} -.v-application .red.darken-4 { - background-color: #b71c1c !important; - border-color: #b71c1c !important; -} -.v-application .red--text.text--darken-4 { - color: #b71c1c !important; - caret-color: #b71c1c !important; -} -.v-application .red.accent-1 { - background-color: #ff8a80 !important; - border-color: #ff8a80 !important; -} -.v-application .red--text.text--accent-1 { - color: #ff8a80 !important; - caret-color: #ff8a80 !important; -} -.v-application .red.accent-2 { - background-color: #ff5252 !important; - border-color: #ff5252 !important; -} -.v-application .red--text.text--accent-2 { - color: #ff5252 !important; - caret-color: #ff5252 !important; -} -.v-application .red.accent-3 { - background-color: #ff1744 !important; - border-color: #ff1744 !important; -} -.v-application .red--text.text--accent-3 { - color: #ff1744 !important; - caret-color: #ff1744 !important; -} -.v-application .red.accent-4 { - background-color: #d50000 !important; - border-color: #d50000 !important; -} -.v-application .red--text.text--accent-4 { - color: #d50000 !important; - caret-color: #d50000 !important; -} -.v-application .pink { - background-color: #e91e63 !important; - border-color: #e91e63 !important; -} -.v-application .pink--text { - color: #e91e63 !important; - caret-color: #e91e63 !important; -} -.v-application .pink.lighten-5 { - background-color: #fce4ec !important; - border-color: #fce4ec !important; -} -.v-application .pink--text.text--lighten-5 { - color: #fce4ec !important; - caret-color: #fce4ec !important; -} -.v-application .pink.lighten-4 { - background-color: #f8bbd0 !important; - border-color: #f8bbd0 !important; -} -.v-application .pink--text.text--lighten-4 { - color: #f8bbd0 !important; - caret-color: #f8bbd0 !important; -} -.v-application .pink.lighten-3 { - background-color: #f48fb1 !important; - border-color: #f48fb1 !important; -} -.v-application .pink--text.text--lighten-3 { - color: #f48fb1 !important; - caret-color: #f48fb1 !important; -} -.v-application .pink.lighten-2 { - background-color: #f06292 !important; - border-color: #f06292 !important; -} -.v-application .pink--text.text--lighten-2 { - color: #f06292 !important; - caret-color: #f06292 !important; -} -.v-application .pink.lighten-1 { - background-color: #ec407a !important; - border-color: #ec407a !important; -} -.v-application .pink--text.text--lighten-1 { - color: #ec407a !important; - caret-color: #ec407a !important; -} -.v-application .pink.darken-1 { - background-color: #d81b60 !important; - border-color: #d81b60 !important; -} -.v-application .pink--text.text--darken-1 { - color: #d81b60 !important; - caret-color: #d81b60 !important; -} -.v-application .pink.darken-2 { - background-color: #c2185b !important; - border-color: #c2185b !important; -} -.v-application .pink--text.text--darken-2 { - color: #c2185b !important; - caret-color: #c2185b !important; -} -.v-application .pink.darken-3 { - background-color: #ad1457 !important; - border-color: #ad1457 !important; -} -.v-application .pink--text.text--darken-3 { - color: #ad1457 !important; - caret-color: #ad1457 !important; -} -.v-application .pink.darken-4 { - background-color: #880e4f !important; - border-color: #880e4f !important; -} -.v-application .pink--text.text--darken-4 { - color: #880e4f !important; - caret-color: #880e4f !important; -} -.v-application .pink.accent-1 { - background-color: #ff80ab !important; - border-color: #ff80ab !important; -} -.v-application .pink--text.text--accent-1 { - color: #ff80ab !important; - caret-color: #ff80ab !important; -} -.v-application .pink.accent-2 { - background-color: #ff4081 !important; - border-color: #ff4081 !important; -} -.v-application .pink--text.text--accent-2 { - color: #ff4081 !important; - caret-color: #ff4081 !important; -} -.v-application .pink.accent-3 { - background-color: #f50057 !important; - border-color: #f50057 !important; -} -.v-application .pink--text.text--accent-3 { - color: #f50057 !important; - caret-color: #f50057 !important; -} -.v-application .pink.accent-4 { - background-color: #c51162 !important; - border-color: #c51162 !important; -} -.v-application .pink--text.text--accent-4 { - color: #c51162 !important; - caret-color: #c51162 !important; -} -.v-application .purple { - background-color: #9c27b0 !important; - border-color: #9c27b0 !important; -} -.v-application .purple--text { - color: #9c27b0 !important; - caret-color: #9c27b0 !important; -} -.v-application .purple.lighten-5 { - background-color: #f3e5f5 !important; - border-color: #f3e5f5 !important; -} -.v-application .purple--text.text--lighten-5 { - color: #f3e5f5 !important; - caret-color: #f3e5f5 !important; -} -.v-application .purple.lighten-4 { - background-color: #e1bee7 !important; - border-color: #e1bee7 !important; -} -.v-application .purple--text.text--lighten-4 { - color: #e1bee7 !important; - caret-color: #e1bee7 !important; -} -.v-application .purple.lighten-3 { - background-color: #ce93d8 !important; - border-color: #ce93d8 !important; -} -.v-application .purple--text.text--lighten-3 { - color: #ce93d8 !important; - caret-color: #ce93d8 !important; -} -.v-application .purple.lighten-2 { - background-color: #ba68c8 !important; - border-color: #ba68c8 !important; -} -.v-application .purple--text.text--lighten-2 { - color: #ba68c8 !important; - caret-color: #ba68c8 !important; -} -.v-application .purple.lighten-1 { - background-color: #ab47bc !important; - border-color: #ab47bc !important; -} -.v-application .purple--text.text--lighten-1 { - color: #ab47bc !important; - caret-color: #ab47bc !important; -} -.v-application .purple.darken-1 { - background-color: #8e24aa !important; - border-color: #8e24aa !important; -} -.v-application .purple--text.text--darken-1 { - color: #8e24aa !important; - caret-color: #8e24aa !important; -} -.v-application .purple.darken-2 { - background-color: #7b1fa2 !important; - border-color: #7b1fa2 !important; -} -.v-application .purple--text.text--darken-2 { - color: #7b1fa2 !important; - caret-color: #7b1fa2 !important; -} -.v-application .purple.darken-3 { - background-color: #6a1b9a !important; - border-color: #6a1b9a !important; -} -.v-application .purple--text.text--darken-3 { - color: #6a1b9a !important; - caret-color: #6a1b9a !important; -} -.v-application .purple.darken-4 { - background-color: #4a148c !important; - border-color: #4a148c !important; -} -.v-application .purple--text.text--darken-4 { - color: #4a148c !important; - caret-color: #4a148c !important; -} -.v-application .purple.accent-1 { - background-color: #ea80fc !important; - border-color: #ea80fc !important; -} -.v-application .purple--text.text--accent-1 { - color: #ea80fc !important; - caret-color: #ea80fc !important; -} -.v-application .purple.accent-2 { - background-color: #e040fb !important; - border-color: #e040fb !important; -} -.v-application .purple--text.text--accent-2 { - color: #e040fb !important; - caret-color: #e040fb !important; -} -.v-application .purple.accent-3 { - background-color: #d500f9 !important; - border-color: #d500f9 !important; -} -.v-application .purple--text.text--accent-3 { - color: #d500f9 !important; - caret-color: #d500f9 !important; -} -.v-application .purple.accent-4 { - background-color: #a0f !important; - border-color: #a0f !important; -} -.v-application .purple--text.text--accent-4 { - color: #a0f !important; - caret-color: #a0f !important; -} -.v-application .deep-purple { - background-color: #673ab7 !important; - border-color: #673ab7 !important; -} -.v-application .deep-purple--text { - color: #673ab7 !important; - caret-color: #673ab7 !important; -} -.v-application .deep-purple.lighten-5 { - background-color: #ede7f6 !important; - border-color: #ede7f6 !important; -} -.v-application .deep-purple--text.text--lighten-5 { - color: #ede7f6 !important; - caret-color: #ede7f6 !important; -} -.v-application .deep-purple.lighten-4 { - background-color: #d1c4e9 !important; - border-color: #d1c4e9 !important; -} -.v-application .deep-purple--text.text--lighten-4 { - color: #d1c4e9 !important; - caret-color: #d1c4e9 !important; -} -.v-application .deep-purple.lighten-3 { - background-color: #b39ddb !important; - border-color: #b39ddb !important; -} -.v-application .deep-purple--text.text--lighten-3 { - color: #b39ddb !important; - caret-color: #b39ddb !important; -} -.v-application .deep-purple.lighten-2 { - background-color: #9575cd !important; - border-color: #9575cd !important; -} -.v-application .deep-purple--text.text--lighten-2 { - color: #9575cd !important; - caret-color: #9575cd !important; -} -.v-application .deep-purple.lighten-1 { - background-color: #7e57c2 !important; - border-color: #7e57c2 !important; -} -.v-application .deep-purple--text.text--lighten-1 { - color: #7e57c2 !important; - caret-color: #7e57c2 !important; -} -.v-application .deep-purple.darken-1 { - background-color: #5e35b1 !important; - border-color: #5e35b1 !important; -} -.v-application .deep-purple--text.text--darken-1 { - color: #5e35b1 !important; - caret-color: #5e35b1 !important; -} -.v-application .deep-purple.darken-2 { - background-color: #512da8 !important; - border-color: #512da8 !important; -} -.v-application .deep-purple--text.text--darken-2 { - color: #512da8 !important; - caret-color: #512da8 !important; -} -.v-application .deep-purple.darken-3 { - background-color: #4527a0 !important; - border-color: #4527a0 !important; -} -.v-application .deep-purple--text.text--darken-3 { - color: #4527a0 !important; - caret-color: #4527a0 !important; -} -.v-application .deep-purple.darken-4 { - background-color: #311b92 !important; - border-color: #311b92 !important; -} -.v-application .deep-purple--text.text--darken-4 { - color: #311b92 !important; - caret-color: #311b92 !important; -} -.v-application .deep-purple.accent-1 { - background-color: #b388ff !important; - border-color: #b388ff !important; -} -.v-application .deep-purple--text.text--accent-1 { - color: #b388ff !important; - caret-color: #b388ff !important; -} -.v-application .deep-purple.accent-2 { - background-color: #7c4dff !important; - border-color: #7c4dff !important; -} -.v-application .deep-purple--text.text--accent-2 { - color: #7c4dff !important; - caret-color: #7c4dff !important; -} -.v-application .deep-purple.accent-3 { - background-color: #651fff !important; - border-color: #651fff !important; -} -.v-application .deep-purple--text.text--accent-3 { - color: #651fff !important; - caret-color: #651fff !important; -} -.v-application .deep-purple.accent-4 { - background-color: #6200ea !important; - border-color: #6200ea !important; -} -.v-application .deep-purple--text.text--accent-4 { - color: #6200ea !important; - caret-color: #6200ea !important; -} -.v-application .indigo { - background-color: #3f51b5 !important; - border-color: #3f51b5 !important; -} -.v-application .indigo--text { - color: #3f51b5 !important; - caret-color: #3f51b5 !important; -} -.v-application .indigo.lighten-5 { - background-color: #e8eaf6 !important; - border-color: #e8eaf6 !important; -} -.v-application .indigo--text.text--lighten-5 { - color: #e8eaf6 !important; - caret-color: #e8eaf6 !important; -} -.v-application .indigo.lighten-4 { - background-color: #c5cae9 !important; - border-color: #c5cae9 !important; -} -.v-application .indigo--text.text--lighten-4 { - color: #c5cae9 !important; - caret-color: #c5cae9 !important; -} -.v-application .indigo.lighten-3 { - background-color: #9fa8da !important; - border-color: #9fa8da !important; -} -.v-application .indigo--text.text--lighten-3 { - color: #9fa8da !important; - caret-color: #9fa8da !important; -} -.v-application .indigo.lighten-2 { - background-color: #7986cb !important; - border-color: #7986cb !important; -} -.v-application .indigo--text.text--lighten-2 { - color: #7986cb !important; - caret-color: #7986cb !important; -} -.v-application .indigo.lighten-1 { - background-color: #5c6bc0 !important; - border-color: #5c6bc0 !important; -} -.v-application .indigo--text.text--lighten-1 { - color: #5c6bc0 !important; - caret-color: #5c6bc0 !important; -} -.v-application .indigo.darken-1 { - background-color: #3949ab !important; - border-color: #3949ab !important; -} -.v-application .indigo--text.text--darken-1 { - color: #3949ab !important; - caret-color: #3949ab !important; -} -.v-application .indigo.darken-2 { - background-color: #303f9f !important; - border-color: #303f9f !important; -} -.v-application .indigo--text.text--darken-2 { - color: #303f9f !important; - caret-color: #303f9f !important; -} -.v-application .indigo.darken-3 { - background-color: #283593 !important; - border-color: #283593 !important; -} -.v-application .indigo--text.text--darken-3 { - color: #283593 !important; - caret-color: #283593 !important; -} -.v-application .indigo.darken-4 { - background-color: #1a237e !important; - border-color: #1a237e !important; -} -.v-application .indigo--text.text--darken-4 { - color: #1a237e !important; - caret-color: #1a237e !important; -} -.v-application .indigo.accent-1 { - background-color: #8c9eff !important; - border-color: #8c9eff !important; -} -.v-application .indigo--text.text--accent-1 { - color: #8c9eff !important; - caret-color: #8c9eff !important; -} -.v-application .indigo.accent-2 { - background-color: #536dfe !important; - border-color: #536dfe !important; -} -.v-application .indigo--text.text--accent-2 { - color: #536dfe !important; - caret-color: #536dfe !important; -} -.v-application .indigo.accent-3 { - background-color: #3d5afe !important; - border-color: #3d5afe !important; -} -.v-application .indigo--text.text--accent-3 { - color: #3d5afe !important; - caret-color: #3d5afe !important; -} -.v-application .indigo.accent-4 { - background-color: #304ffe !important; - border-color: #304ffe !important; -} -.v-application .indigo--text.text--accent-4 { - color: #304ffe !important; - caret-color: #304ffe !important; -} -.v-application .blue { - background-color: #2196f3 !important; - border-color: #2196f3 !important; -} -.v-application .blue--text { - color: #2196f3 !important; - caret-color: #2196f3 !important; -} -.v-application .blue.lighten-5 { - background-color: #e3f2fd !important; - border-color: #e3f2fd !important; -} -.v-application .blue--text.text--lighten-5 { - color: #e3f2fd !important; - caret-color: #e3f2fd !important; -} -.v-application .blue.lighten-4 { - background-color: #bbdefb !important; - border-color: #bbdefb !important; -} -.v-application .blue--text.text--lighten-4 { - color: #bbdefb !important; - caret-color: #bbdefb !important; -} -.v-application .blue.lighten-3 { - background-color: #90caf9 !important; - border-color: #90caf9 !important; -} -.v-application .blue--text.text--lighten-3 { - color: #90caf9 !important; - caret-color: #90caf9 !important; -} -.v-application .blue.lighten-2 { - background-color: #64b5f6 !important; - border-color: #64b5f6 !important; -} -.v-application .blue--text.text--lighten-2 { - color: #64b5f6 !important; - caret-color: #64b5f6 !important; -} -.v-application .blue.lighten-1 { - background-color: #42a5f5 !important; - border-color: #42a5f5 !important; -} -.v-application .blue--text.text--lighten-1 { - color: #42a5f5 !important; - caret-color: #42a5f5 !important; -} -.v-application .blue.darken-1 { - background-color: #1e88e5 !important; - border-color: #1e88e5 !important; -} -.v-application .blue--text.text--darken-1 { - color: #1e88e5 !important; - caret-color: #1e88e5 !important; -} -.v-application .blue.darken-2 { - background-color: #1976d2 !important; - border-color: #1976d2 !important; -} -.v-application .blue--text.text--darken-2 { - color: #1976d2 !important; - caret-color: #1976d2 !important; -} -.v-application .blue.darken-3 { - background-color: #1565c0 !important; - border-color: #1565c0 !important; -} -.v-application .blue--text.text--darken-3 { - color: #1565c0 !important; - caret-color: #1565c0 !important; -} -.v-application .blue.darken-4 { - background-color: #0d47a1 !important; - border-color: #0d47a1 !important; -} -.v-application .blue--text.text--darken-4 { - color: #0d47a1 !important; - caret-color: #0d47a1 !important; -} -.v-application .blue.accent-1 { - background-color: #82b1ff !important; - border-color: #82b1ff !important; -} -.v-application .blue--text.text--accent-1 { - color: #82b1ff !important; - caret-color: #82b1ff !important; -} -.v-application .blue.accent-2 { - background-color: #448aff !important; - border-color: #448aff !important; -} -.v-application .blue--text.text--accent-2 { - color: #448aff !important; - caret-color: #448aff !important; -} -.v-application .blue.accent-3 { - background-color: #2979ff !important; - border-color: #2979ff !important; -} -.v-application .blue--text.text--accent-3 { - color: #2979ff !important; - caret-color: #2979ff !important; -} -.v-application .blue.accent-4 { - background-color: #2962ff !important; - border-color: #2962ff !important; -} -.v-application .blue--text.text--accent-4 { - color: #2962ff !important; - caret-color: #2962ff !important; -} -.v-application .light-blue { - background-color: #03a9f4 !important; - border-color: #03a9f4 !important; -} -.v-application .light-blue--text { - color: #03a9f4 !important; - caret-color: #03a9f4 !important; -} -.v-application .light-blue.lighten-5 { - background-color: #e1f5fe !important; - border-color: #e1f5fe !important; -} -.v-application .light-blue--text.text--lighten-5 { - color: #e1f5fe !important; - caret-color: #e1f5fe !important; -} -.v-application .light-blue.lighten-4 { - background-color: #b3e5fc !important; - border-color: #b3e5fc !important; -} -.v-application .light-blue--text.text--lighten-4 { - color: #b3e5fc !important; - caret-color: #b3e5fc !important; -} -.v-application .light-blue.lighten-3 { - background-color: #81d4fa !important; - border-color: #81d4fa !important; -} -.v-application .light-blue--text.text--lighten-3 { - color: #81d4fa !important; - caret-color: #81d4fa !important; -} -.v-application .light-blue.lighten-2 { - background-color: #4fc3f7 !important; - border-color: #4fc3f7 !important; -} -.v-application .light-blue--text.text--lighten-2 { - color: #4fc3f7 !important; - caret-color: #4fc3f7 !important; -} -.v-application .light-blue.lighten-1 { - background-color: #29b6f6 !important; - border-color: #29b6f6 !important; -} -.v-application .light-blue--text.text--lighten-1 { - color: #29b6f6 !important; - caret-color: #29b6f6 !important; -} -.v-application .light-blue.darken-1 { - background-color: #039be5 !important; - border-color: #039be5 !important; -} -.v-application .light-blue--text.text--darken-1 { - color: #039be5 !important; - caret-color: #039be5 !important; -} -.v-application .light-blue.darken-2 { - background-color: #0288d1 !important; - border-color: #0288d1 !important; -} -.v-application .light-blue--text.text--darken-2 { - color: #0288d1 !important; - caret-color: #0288d1 !important; -} -.v-application .light-blue.darken-3 { - background-color: #0277bd !important; - border-color: #0277bd !important; -} -.v-application .light-blue--text.text--darken-3 { - color: #0277bd !important; - caret-color: #0277bd !important; -} -.v-application .light-blue.darken-4 { - background-color: #01579b !important; - border-color: #01579b !important; -} -.v-application .light-blue--text.text--darken-4 { - color: #01579b !important; - caret-color: #01579b !important; -} -.v-application .light-blue.accent-1 { - background-color: #80d8ff !important; - border-color: #80d8ff !important; -} -.v-application .light-blue--text.text--accent-1 { - color: #80d8ff !important; - caret-color: #80d8ff !important; -} -.v-application .light-blue.accent-2 { - background-color: #40c4ff !important; - border-color: #40c4ff !important; -} -.v-application .light-blue--text.text--accent-2 { - color: #40c4ff !important; - caret-color: #40c4ff !important; -} -.v-application .light-blue.accent-3 { - background-color: #00b0ff !important; - border-color: #00b0ff !important; -} -.v-application .light-blue--text.text--accent-3 { - color: #00b0ff !important; - caret-color: #00b0ff !important; -} -.v-application .light-blue.accent-4 { - background-color: #0091ea !important; - border-color: #0091ea !important; -} -.v-application .light-blue--text.text--accent-4 { - color: #0091ea !important; - caret-color: #0091ea !important; -} -.v-application .cyan { - background-color: #00bcd4 !important; - border-color: #00bcd4 !important; -} -.v-application .cyan--text { - color: #00bcd4 !important; - caret-color: #00bcd4 !important; -} -.v-application .cyan.lighten-5 { - background-color: #e0f7fa !important; - border-color: #e0f7fa !important; -} -.v-application .cyan--text.text--lighten-5 { - color: #e0f7fa !important; - caret-color: #e0f7fa !important; -} -.v-application .cyan.lighten-4 { - background-color: #b2ebf2 !important; - border-color: #b2ebf2 !important; -} -.v-application .cyan--text.text--lighten-4 { - color: #b2ebf2 !important; - caret-color: #b2ebf2 !important; -} -.v-application .cyan.lighten-3 { - background-color: #80deea !important; - border-color: #80deea !important; -} -.v-application .cyan--text.text--lighten-3 { - color: #80deea !important; - caret-color: #80deea !important; -} -.v-application .cyan.lighten-2 { - background-color: #4dd0e1 !important; - border-color: #4dd0e1 !important; -} -.v-application .cyan--text.text--lighten-2 { - color: #4dd0e1 !important; - caret-color: #4dd0e1 !important; -} -.v-application .cyan.lighten-1 { - background-color: #26c6da !important; - border-color: #26c6da !important; -} -.v-application .cyan--text.text--lighten-1 { - color: #26c6da !important; - caret-color: #26c6da !important; -} -.v-application .cyan.darken-1 { - background-color: #00acc1 !important; - border-color: #00acc1 !important; -} -.v-application .cyan--text.text--darken-1 { - color: #00acc1 !important; - caret-color: #00acc1 !important; -} -.v-application .cyan.darken-2 { - background-color: #0097a7 !important; - border-color: #0097a7 !important; -} -.v-application .cyan--text.text--darken-2 { - color: #0097a7 !important; - caret-color: #0097a7 !important; -} -.v-application .cyan.darken-3 { - background-color: #00838f !important; - border-color: #00838f !important; -} -.v-application .cyan--text.text--darken-3 { - color: #00838f !important; - caret-color: #00838f !important; -} -.v-application .cyan.darken-4 { - background-color: #006064 !important; - border-color: #006064 !important; -} -.v-application .cyan--text.text--darken-4 { - color: #006064 !important; - caret-color: #006064 !important; -} -.v-application .cyan.accent-1 { - background-color: #84ffff !important; - border-color: #84ffff !important; -} -.v-application .cyan--text.text--accent-1 { - color: #84ffff !important; - caret-color: #84ffff !important; -} -.v-application .cyan.accent-2 { - background-color: #18ffff !important; - border-color: #18ffff !important; -} -.v-application .cyan--text.text--accent-2 { - color: #18ffff !important; - caret-color: #18ffff !important; -} -.v-application .cyan.accent-3 { - background-color: #00e5ff !important; - border-color: #00e5ff !important; -} -.v-application .cyan--text.text--accent-3 { - color: #00e5ff !important; - caret-color: #00e5ff !important; -} -.v-application .cyan.accent-4 { - background-color: #00b8d4 !important; - border-color: #00b8d4 !important; -} -.v-application .cyan--text.text--accent-4 { - color: #00b8d4 !important; - caret-color: #00b8d4 !important; -} -.v-application .teal { - background-color: #009688 !important; - border-color: #009688 !important; -} -.v-application .teal--text { - color: #009688 !important; - caret-color: #009688 !important; -} -.v-application .teal.lighten-5 { - background-color: #e0f2f1 !important; - border-color: #e0f2f1 !important; -} -.v-application .teal--text.text--lighten-5 { - color: #e0f2f1 !important; - caret-color: #e0f2f1 !important; -} -.v-application .teal.lighten-4 { - background-color: #b2dfdb !important; - border-color: #b2dfdb !important; -} -.v-application .teal--text.text--lighten-4 { - color: #b2dfdb !important; - caret-color: #b2dfdb !important; -} -.v-application .teal.lighten-3 { - background-color: #80cbc4 !important; - border-color: #80cbc4 !important; -} -.v-application .teal--text.text--lighten-3 { - color: #80cbc4 !important; - caret-color: #80cbc4 !important; -} -.v-application .teal.lighten-2 { - background-color: #4db6ac !important; - border-color: #4db6ac !important; -} -.v-application .teal--text.text--lighten-2 { - color: #4db6ac !important; - caret-color: #4db6ac !important; -} -.v-application .teal.lighten-1 { - background-color: #26a69a !important; - border-color: #26a69a !important; -} -.v-application .teal--text.text--lighten-1 { - color: #26a69a !important; - caret-color: #26a69a !important; -} -.v-application .teal.darken-1 { - background-color: #00897b !important; - border-color: #00897b !important; -} -.v-application .teal--text.text--darken-1 { - color: #00897b !important; - caret-color: #00897b !important; -} -.v-application .teal.darken-2 { - background-color: #00796b !important; - border-color: #00796b !important; -} -.v-application .teal--text.text--darken-2 { - color: #00796b !important; - caret-color: #00796b !important; -} -.v-application .teal.darken-3 { - background-color: #00695c !important; - border-color: #00695c !important; -} -.v-application .teal--text.text--darken-3 { - color: #00695c !important; - caret-color: #00695c !important; -} -.v-application .teal.darken-4 { - background-color: #004d40 !important; - border-color: #004d40 !important; -} -.v-application .teal--text.text--darken-4 { - color: #004d40 !important; - caret-color: #004d40 !important; -} -.v-application .teal.accent-1 { - background-color: #a7ffeb !important; - border-color: #a7ffeb !important; -} -.v-application .teal--text.text--accent-1 { - color: #a7ffeb !important; - caret-color: #a7ffeb !important; -} -.v-application .teal.accent-2 { - background-color: #64ffda !important; - border-color: #64ffda !important; -} -.v-application .teal--text.text--accent-2 { - color: #64ffda !important; - caret-color: #64ffda !important; -} -.v-application .teal.accent-3 { - background-color: #1de9b6 !important; - border-color: #1de9b6 !important; -} -.v-application .teal--text.text--accent-3 { - color: #1de9b6 !important; - caret-color: #1de9b6 !important; -} -.v-application .teal.accent-4 { - background-color: #00bfa5 !important; - border-color: #00bfa5 !important; -} -.v-application .teal--text.text--accent-4 { - color: #00bfa5 !important; - caret-color: #00bfa5 !important; -} -.v-application .green { - background-color: #4caf50 !important; - border-color: #4caf50 !important; -} -.v-application .green--text { - color: #4caf50 !important; - caret-color: #4caf50 !important; -} -.v-application .green.lighten-5 { - background-color: #e8f5e9 !important; - border-color: #e8f5e9 !important; -} -.v-application .green--text.text--lighten-5 { - color: #e8f5e9 !important; - caret-color: #e8f5e9 !important; -} -.v-application .green.lighten-4 { - background-color: #c8e6c9 !important; - border-color: #c8e6c9 !important; -} -.v-application .green--text.text--lighten-4 { - color: #c8e6c9 !important; - caret-color: #c8e6c9 !important; -} -.v-application .green.lighten-3 { - background-color: #a5d6a7 !important; - border-color: #a5d6a7 !important; -} -.v-application .green--text.text--lighten-3 { - color: #a5d6a7 !important; - caret-color: #a5d6a7 !important; -} -.v-application .green.lighten-2 { - background-color: #81c784 !important; - border-color: #81c784 !important; -} -.v-application .green--text.text--lighten-2 { - color: #81c784 !important; - caret-color: #81c784 !important; -} -.v-application .green.lighten-1 { - background-color: #66bb6a !important; - border-color: #66bb6a !important; -} -.v-application .green--text.text--lighten-1 { - color: #66bb6a !important; - caret-color: #66bb6a !important; -} -.v-application .green.darken-1 { - background-color: #43a047 !important; - border-color: #43a047 !important; -} -.v-application .green--text.text--darken-1 { - color: #43a047 !important; - caret-color: #43a047 !important; -} -.v-application .green.darken-2 { - background-color: #388e3c !important; - border-color: #388e3c !important; -} -.v-application .green--text.text--darken-2 { - color: #388e3c !important; - caret-color: #388e3c !important; -} -.v-application .green.darken-3 { - background-color: #2e7d32 !important; - border-color: #2e7d32 !important; -} -.v-application .green--text.text--darken-3 { - color: #2e7d32 !important; - caret-color: #2e7d32 !important; -} -.v-application .green.darken-4 { - background-color: #1b5e20 !important; - border-color: #1b5e20 !important; -} -.v-application .green--text.text--darken-4 { - color: #1b5e20 !important; - caret-color: #1b5e20 !important; -} -.v-application .green.accent-1 { - background-color: #b9f6ca !important; - border-color: #b9f6ca !important; -} -.v-application .green--text.text--accent-1 { - color: #b9f6ca !important; - caret-color: #b9f6ca !important; -} -.v-application .green.accent-2 { - background-color: #69f0ae !important; - border-color: #69f0ae !important; -} -.v-application .green--text.text--accent-2 { - color: #69f0ae !important; - caret-color: #69f0ae !important; -} -.v-application .green.accent-3 { - background-color: #00e676 !important; - border-color: #00e676 !important; -} -.v-application .green--text.text--accent-3 { - color: #00e676 !important; - caret-color: #00e676 !important; -} -.v-application .green.accent-4 { - background-color: #00c853 !important; - border-color: #00c853 !important; -} -.v-application .green--text.text--accent-4 { - color: #00c853 !important; - caret-color: #00c853 !important; -} -.v-application .light-green { - background-color: #8bc34a !important; - border-color: #8bc34a !important; -} -.v-application .light-green--text { - color: #8bc34a !important; - caret-color: #8bc34a !important; -} -.v-application .light-green.lighten-5 { - background-color: #f1f8e9 !important; - border-color: #f1f8e9 !important; -} -.v-application .light-green--text.text--lighten-5 { - color: #f1f8e9 !important; - caret-color: #f1f8e9 !important; -} -.v-application .light-green.lighten-4 { - background-color: #dcedc8 !important; - border-color: #dcedc8 !important; -} -.v-application .light-green--text.text--lighten-4 { - color: #dcedc8 !important; - caret-color: #dcedc8 !important; -} -.v-application .light-green.lighten-3 { - background-color: #c5e1a5 !important; - border-color: #c5e1a5 !important; -} -.v-application .light-green--text.text--lighten-3 { - color: #c5e1a5 !important; - caret-color: #c5e1a5 !important; -} -.v-application .light-green.lighten-2 { - background-color: #aed581 !important; - border-color: #aed581 !important; -} -.v-application .light-green--text.text--lighten-2 { - color: #aed581 !important; - caret-color: #aed581 !important; -} -.v-application .light-green.lighten-1 { - background-color: #9ccc65 !important; - border-color: #9ccc65 !important; -} -.v-application .light-green--text.text--lighten-1 { - color: #9ccc65 !important; - caret-color: #9ccc65 !important; -} -.v-application .light-green.darken-1 { - background-color: #7cb342 !important; - border-color: #7cb342 !important; -} -.v-application .light-green--text.text--darken-1 { - color: #7cb342 !important; - caret-color: #7cb342 !important; -} -.v-application .light-green.darken-2 { - background-color: #689f38 !important; - border-color: #689f38 !important; -} -.v-application .light-green--text.text--darken-2 { - color: #689f38 !important; - caret-color: #689f38 !important; -} -.v-application .light-green.darken-3 { - background-color: #558b2f !important; - border-color: #558b2f !important; -} -.v-application .light-green--text.text--darken-3 { - color: #558b2f !important; - caret-color: #558b2f !important; -} -.v-application .light-green.darken-4 { - background-color: #33691e !important; - border-color: #33691e !important; -} -.v-application .light-green--text.text--darken-4 { - color: #33691e !important; - caret-color: #33691e !important; -} -.v-application .light-green.accent-1 { - background-color: #ccff90 !important; - border-color: #ccff90 !important; -} -.v-application .light-green--text.text--accent-1 { - color: #ccff90 !important; - caret-color: #ccff90 !important; -} -.v-application .light-green.accent-2 { - background-color: #b2ff59 !important; - border-color: #b2ff59 !important; -} -.v-application .light-green--text.text--accent-2 { - color: #b2ff59 !important; - caret-color: #b2ff59 !important; -} -.v-application .light-green.accent-3 { - background-color: #76ff03 !important; - border-color: #76ff03 !important; -} -.v-application .light-green--text.text--accent-3 { - color: #76ff03 !important; - caret-color: #76ff03 !important; -} -.v-application .light-green.accent-4 { - background-color: #64dd17 !important; - border-color: #64dd17 !important; -} -.v-application .light-green--text.text--accent-4 { - color: #64dd17 !important; - caret-color: #64dd17 !important; -} -.v-application .lime { - background-color: #cddc39 !important; - border-color: #cddc39 !important; -} -.v-application .lime--text { - color: #cddc39 !important; - caret-color: #cddc39 !important; -} -.v-application .lime.lighten-5 { - background-color: #f9fbe7 !important; - border-color: #f9fbe7 !important; -} -.v-application .lime--text.text--lighten-5 { - color: #f9fbe7 !important; - caret-color: #f9fbe7 !important; -} -.v-application .lime.lighten-4 { - background-color: #f0f4c3 !important; - border-color: #f0f4c3 !important; -} -.v-application .lime--text.text--lighten-4 { - color: #f0f4c3 !important; - caret-color: #f0f4c3 !important; -} -.v-application .lime.lighten-3 { - background-color: #e6ee9c !important; - border-color: #e6ee9c !important; -} -.v-application .lime--text.text--lighten-3 { - color: #e6ee9c !important; - caret-color: #e6ee9c !important; -} -.v-application .lime.lighten-2 { - background-color: #dce775 !important; - border-color: #dce775 !important; -} -.v-application .lime--text.text--lighten-2 { - color: #dce775 !important; - caret-color: #dce775 !important; -} -.v-application .lime.lighten-1 { - background-color: #d4e157 !important; - border-color: #d4e157 !important; -} -.v-application .lime--text.text--lighten-1 { - color: #d4e157 !important; - caret-color: #d4e157 !important; -} -.v-application .lime.darken-1 { - background-color: #c0ca33 !important; - border-color: #c0ca33 !important; -} -.v-application .lime--text.text--darken-1 { - color: #c0ca33 !important; - caret-color: #c0ca33 !important; -} -.v-application .lime.darken-2 { - background-color: #afb42b !important; - border-color: #afb42b !important; -} -.v-application .lime--text.text--darken-2 { - color: #afb42b !important; - caret-color: #afb42b !important; -} -.v-application .lime.darken-3 { - background-color: #9e9d24 !important; - border-color: #9e9d24 !important; -} -.v-application .lime--text.text--darken-3 { - color: #9e9d24 !important; - caret-color: #9e9d24 !important; -} -.v-application .lime.darken-4 { - background-color: #827717 !important; - border-color: #827717 !important; -} -.v-application .lime--text.text--darken-4 { - color: #827717 !important; - caret-color: #827717 !important; -} -.v-application .lime.accent-1 { - background-color: #f4ff81 !important; - border-color: #f4ff81 !important; -} -.v-application .lime--text.text--accent-1 { - color: #f4ff81 !important; - caret-color: #f4ff81 !important; -} -.v-application .lime.accent-2 { - background-color: #eeff41 !important; - border-color: #eeff41 !important; -} -.v-application .lime--text.text--accent-2 { - color: #eeff41 !important; - caret-color: #eeff41 !important; -} -.v-application .lime.accent-3 { - background-color: #c6ff00 !important; - border-color: #c6ff00 !important; -} -.v-application .lime--text.text--accent-3 { - color: #c6ff00 !important; - caret-color: #c6ff00 !important; -} -.v-application .lime.accent-4 { - background-color: #aeea00 !important; - border-color: #aeea00 !important; -} -.v-application .lime--text.text--accent-4 { - color: #aeea00 !important; - caret-color: #aeea00 !important; -} -.v-application .yellow { - background-color: #ffeb3b !important; - border-color: #ffeb3b !important; -} -.v-application .yellow--text { - color: #ffeb3b !important; - caret-color: #ffeb3b !important; -} -.v-application .yellow.lighten-5 { - background-color: #fffde7 !important; - border-color: #fffde7 !important; -} -.v-application .yellow--text.text--lighten-5 { - color: #fffde7 !important; - caret-color: #fffde7 !important; -} -.v-application .yellow.lighten-4 { - background-color: #fff9c4 !important; - border-color: #fff9c4 !important; -} -.v-application .yellow--text.text--lighten-4 { - color: #fff9c4 !important; - caret-color: #fff9c4 !important; -} -.v-application .yellow.lighten-3 { - background-color: #fff59d !important; - border-color: #fff59d !important; -} -.v-application .yellow--text.text--lighten-3 { - color: #fff59d !important; - caret-color: #fff59d !important; -} -.v-application .yellow.lighten-2 { - background-color: #fff176 !important; - border-color: #fff176 !important; -} -.v-application .yellow--text.text--lighten-2 { - color: #fff176 !important; - caret-color: #fff176 !important; -} -.v-application .yellow.lighten-1 { - background-color: #ffee58 !important; - border-color: #ffee58 !important; -} -.v-application .yellow--text.text--lighten-1 { - color: #ffee58 !important; - caret-color: #ffee58 !important; -} -.v-application .yellow.darken-1 { - background-color: #fdd835 !important; - border-color: #fdd835 !important; -} -.v-application .yellow--text.text--darken-1 { - color: #fdd835 !important; - caret-color: #fdd835 !important; -} -.v-application .yellow.darken-2 { - background-color: #fbc02d !important; - border-color: #fbc02d !important; -} -.v-application .yellow--text.text--darken-2 { - color: #fbc02d !important; - caret-color: #fbc02d !important; -} -.v-application .yellow.darken-3 { - background-color: #f9a825 !important; - border-color: #f9a825 !important; -} -.v-application .yellow--text.text--darken-3 { - color: #f9a825 !important; - caret-color: #f9a825 !important; -} -.v-application .yellow.darken-4 { - background-color: #f57f17 !important; - border-color: #f57f17 !important; -} -.v-application .yellow--text.text--darken-4 { - color: #f57f17 !important; - caret-color: #f57f17 !important; -} -.v-application .yellow.accent-1 { - background-color: #ffff8d !important; - border-color: #ffff8d !important; -} -.v-application .yellow--text.text--accent-1 { - color: #ffff8d !important; - caret-color: #ffff8d !important; -} -.v-application .yellow.accent-2 { - background-color: #ff0 !important; - border-color: #ff0 !important; -} -.v-application .yellow--text.text--accent-2 { - color: #ff0 !important; - caret-color: #ff0 !important; -} -.v-application .yellow.accent-3 { - background-color: #ffea00 !important; - border-color: #ffea00 !important; -} -.v-application .yellow--text.text--accent-3 { - color: #ffea00 !important; - caret-color: #ffea00 !important; -} -.v-application .yellow.accent-4 { - background-color: #ffd600 !important; - border-color: #ffd600 !important; -} -.v-application .yellow--text.text--accent-4 { - color: #ffd600 !important; - caret-color: #ffd600 !important; -} -.v-application .amber { - background-color: #ffc107 !important; - border-color: #ffc107 !important; -} -.v-application .amber--text { - color: #ffc107 !important; - caret-color: #ffc107 !important; -} -.v-application .amber.lighten-5 { - background-color: #fff8e1 !important; - border-color: #fff8e1 !important; -} -.v-application .amber--text.text--lighten-5 { - color: #fff8e1 !important; - caret-color: #fff8e1 !important; -} -.v-application .amber.lighten-4 { - background-color: #ffecb3 !important; - border-color: #ffecb3 !important; -} -.v-application .amber--text.text--lighten-4 { - color: #ffecb3 !important; - caret-color: #ffecb3 !important; -} -.v-application .amber.lighten-3 { - background-color: #ffe082 !important; - border-color: #ffe082 !important; -} -.v-application .amber--text.text--lighten-3 { - color: #ffe082 !important; - caret-color: #ffe082 !important; -} -.v-application .amber.lighten-2 { - background-color: #ffd54f !important; - border-color: #ffd54f !important; -} -.v-application .amber--text.text--lighten-2 { - color: #ffd54f !important; - caret-color: #ffd54f !important; -} -.v-application .amber.lighten-1 { - background-color: #ffca28 !important; - border-color: #ffca28 !important; -} -.v-application .amber--text.text--lighten-1 { - color: #ffca28 !important; - caret-color: #ffca28 !important; -} -.v-application .amber.darken-1 { - background-color: #ffb300 !important; - border-color: #ffb300 !important; -} -.v-application .amber--text.text--darken-1 { - color: #ffb300 !important; - caret-color: #ffb300 !important; -} -.v-application .amber.darken-2 { - background-color: #ffa000 !important; - border-color: #ffa000 !important; -} -.v-application .amber--text.text--darken-2 { - color: #ffa000 !important; - caret-color: #ffa000 !important; -} -.v-application .amber.darken-3 { - background-color: #ff8f00 !important; - border-color: #ff8f00 !important; -} -.v-application .amber--text.text--darken-3 { - color: #ff8f00 !important; - caret-color: #ff8f00 !important; -} -.v-application .amber.darken-4 { - background-color: #ff6f00 !important; - border-color: #ff6f00 !important; -} -.v-application .amber--text.text--darken-4 { - color: #ff6f00 !important; - caret-color: #ff6f00 !important; -} -.v-application .amber.accent-1 { - background-color: #ffe57f !important; - border-color: #ffe57f !important; -} -.v-application .amber--text.text--accent-1 { - color: #ffe57f !important; - caret-color: #ffe57f !important; -} -.v-application .amber.accent-2 { - background-color: #ffd740 !important; - border-color: #ffd740 !important; -} -.v-application .amber--text.text--accent-2 { - color: #ffd740 !important; - caret-color: #ffd740 !important; -} -.v-application .amber.accent-3 { - background-color: #ffc400 !important; - border-color: #ffc400 !important; -} -.v-application .amber--text.text--accent-3 { - color: #ffc400 !important; - caret-color: #ffc400 !important; -} -.v-application .amber.accent-4 { - background-color: #ffab00 !important; - border-color: #ffab00 !important; -} -.v-application .amber--text.text--accent-4 { - color: #ffab00 !important; - caret-color: #ffab00 !important; -} -.v-application .primary { - background-color: #ff9800 !important; - border-color: #ff9800 !important; -} -.v-application .primary--text { - color: #ff9800 !important; - caret-color: #ff9800 !important; -} -.v-application .primary.lighten-5 { - background-color: #fff3e0 !important; - border-color: #fff3e0 !important; -} -.v-application .primary--text.text--lighten-5 { - color: #fff3e0 !important; - caret-color: #fff3e0 !important; -} -.v-application .primary.lighten-4 { - background-color: #ffe0b2 !important; - border-color: #ffe0b2 !important; -} -.v-application .primary--text.text--lighten-4 { - color: #ffe0b2 !important; - caret-color: #ffe0b2 !important; -} -.v-application .primary.lighten-3 { - background-color: #ffcc80 !important; - border-color: #ffcc80 !important; -} -.v-application .primary--text.text--lighten-3 { - color: #ffcc80 !important; - caret-color: #ffcc80 !important; -} -.v-application .primary.lighten-2 { - background-color: #ffb74d !important; - border-color: #ffb74d !important; -} -.v-application .primary--text.text--lighten-2 { - color: #ffb74d !important; - caret-color: #ffb74d !important; -} -.v-application .primary.lighten-1 { - background-color: #ffa726 !important; - border-color: #ffa726 !important; -} -.v-application .primary--text.text--lighten-1 { - color: #ffa726 !important; - caret-color: #ffa726 !important; -} -.v-application .primary.darken-1 { - background-color: #fb8c00 !important; - border-color: #fb8c00 !important; -} -.v-application .primary--text.text--darken-1 { - color: #fb8c00 !important; - caret-color: #fb8c00 !important; -} -.v-application .primary.darken-2 { - background-color: #f57c00 !important; - border-color: #f57c00 !important; -} -.v-application .primary--text.text--darken-2 { - color: #f57c00 !important; - caret-color: #f57c00 !important; -} -.v-application .primary.darken-3 { - background-color: #ef6c00 !important; - border-color: #ef6c00 !important; -} -.v-application .primary--text.text--darken-3 { - color: #ef6c00 !important; - caret-color: #ef6c00 !important; -} -.v-application .primary.darken-4 { - background-color: #e65100 !important; - border-color: #e65100 !important; -} -.v-application .primary--text.text--darken-4 { - color: #e65100 !important; - caret-color: #e65100 !important; -} -.v-application .primary.accent-1 { - background-color: #ffd180 !important; - border-color: #ffd180 !important; -} -.v-application .primary--text.text--accent-1 { - color: #ffd180 !important; - caret-color: #ffd180 !important; -} -.v-application .primary.accent-2 { - background-color: #ffab40 !important; - border-color: #ffab40 !important; -} -.v-application .primary--text.text--accent-2 { - color: #ffab40 !important; - caret-color: #ffab40 !important; -} -.v-application .primary.accent-3 { - background-color: #ff9100 !important; - border-color: #ff9100 !important; -} -.v-application .primary--text.text--accent-3 { - color: #ff9100 !important; - caret-color: #ff9100 !important; -} -.v-application .primary.accent-4 { - background-color: #ff6d00 !important; - border-color: #ff6d00 !important; -} -.v-application .primary--text.text--accent-4 { - color: #ff6d00 !important; - caret-color: #ff6d00 !important; -} -.v-application .deep-primary { - background-color: #ff5722 !important; - border-color: #ff5722 !important; -} -.v-application .deep-primary--text { - color: #ff5722 !important; - caret-color: #ff5722 !important; -} -.v-application .deep-primary.lighten-5 { - background-color: #fbe9e7 !important; - border-color: #fbe9e7 !important; -} -.v-application .deep-primary--text.text--lighten-5 { - color: #fbe9e7 !important; - caret-color: #fbe9e7 !important; -} -.v-application .deep-primary.lighten-4 { - background-color: #ffccbc !important; - border-color: #ffccbc !important; -} -.v-application .deep-primary--text.text--lighten-4 { - color: #ffccbc !important; - caret-color: #ffccbc !important; -} -.v-application .deep-primary.lighten-3 { - background-color: #ffab91 !important; - border-color: #ffab91 !important; -} -.v-application .deep-primary--text.text--lighten-3 { - color: #ffab91 !important; - caret-color: #ffab91 !important; -} -.v-application .deep-primary.lighten-2 { - background-color: #ff8a65 !important; - border-color: #ff8a65 !important; -} -.v-application .deep-primary--text.text--lighten-2 { - color: #ff8a65 !important; - caret-color: #ff8a65 !important; -} -.v-application .deep-primary.lighten-1 { - background-color: #ff7043 !important; - border-color: #ff7043 !important; -} -.v-application .deep-primary--text.text--lighten-1 { - color: #ff7043 !important; - caret-color: #ff7043 !important; -} -.v-application .deep-primary.darken-1 { - background-color: #f4511e !important; - border-color: #f4511e !important; -} -.v-application .deep-primary--text.text--darken-1 { - color: #f4511e !important; - caret-color: #f4511e !important; -} -.v-application .deep-primary.darken-2 { - background-color: #e64a19 !important; - border-color: #e64a19 !important; -} -.v-application .deep-primary--text.text--darken-2 { - color: #e64a19 !important; - caret-color: #e64a19 !important; -} -.v-application .deep-primary.darken-3 { - background-color: #d84315 !important; - border-color: #d84315 !important; -} -.v-application .deep-primary--text.text--darken-3 { - color: #d84315 !important; - caret-color: #d84315 !important; -} -.v-application .deep-primary.darken-4 { - background-color: #bf360c !important; - border-color: #bf360c !important; -} -.v-application .deep-primary--text.text--darken-4 { - color: #bf360c !important; - caret-color: #bf360c !important; -} -.v-application .deep-primary.accent-1 { - background-color: #ff9e80 !important; - border-color: #ff9e80 !important; -} -.v-application .deep-primary--text.text--accent-1 { - color: #ff9e80 !important; - caret-color: #ff9e80 !important; -} -.v-application .deep-primary.accent-2 { - background-color: #ff6e40 !important; - border-color: #ff6e40 !important; -} -.v-application .deep-primary--text.text--accent-2 { - color: #ff6e40 !important; - caret-color: #ff6e40 !important; -} -.v-application .deep-primary.accent-3 { - background-color: #ff3d00 !important; - border-color: #ff3d00 !important; -} -.v-application .deep-primary--text.text--accent-3 { - color: #ff3d00 !important; - caret-color: #ff3d00 !important; -} -.v-application .deep-primary.accent-4 { - background-color: #dd2c00 !important; - border-color: #dd2c00 !important; -} -.v-application .deep-primary--text.text--accent-4 { - color: #dd2c00 !important; - caret-color: #dd2c00 !important; -} -.v-application .brown { - background-color: #795548 !important; - border-color: #795548 !important; -} -.v-application .brown--text { - color: #795548 !important; - caret-color: #795548 !important; -} -.v-application .brown.lighten-5 { - background-color: #efebe9 !important; - border-color: #efebe9 !important; -} -.v-application .brown--text.text--lighten-5 { - color: #efebe9 !important; - caret-color: #efebe9 !important; -} -.v-application .brown.lighten-4 { - background-color: #d7ccc8 !important; - border-color: #d7ccc8 !important; -} -.v-application .brown--text.text--lighten-4 { - color: #d7ccc8 !important; - caret-color: #d7ccc8 !important; -} -.v-application .brown.lighten-3 { - background-color: #bcaaa4 !important; - border-color: #bcaaa4 !important; -} -.v-application .brown--text.text--lighten-3 { - color: #bcaaa4 !important; - caret-color: #bcaaa4 !important; -} -.v-application .brown.lighten-2 { - background-color: #a1887f !important; - border-color: #a1887f !important; -} -.v-application .brown--text.text--lighten-2 { - color: #a1887f !important; - caret-color: #a1887f !important; -} -.v-application .brown.lighten-1 { - background-color: #8d6e63 !important; - border-color: #8d6e63 !important; -} -.v-application .brown--text.text--lighten-1 { - color: #8d6e63 !important; - caret-color: #8d6e63 !important; -} -.v-application .brown.darken-1 { - background-color: #6d4c41 !important; - border-color: #6d4c41 !important; -} -.v-application .brown--text.text--darken-1 { - color: #6d4c41 !important; - caret-color: #6d4c41 !important; -} -.v-application .brown.darken-2 { - background-color: #5d4037 !important; - border-color: #5d4037 !important; -} -.v-application .brown--text.text--darken-2 { - color: #5d4037 !important; - caret-color: #5d4037 !important; -} -.v-application .brown.darken-3 { - background-color: #4e342e !important; - border-color: #4e342e !important; -} -.v-application .brown--text.text--darken-3 { - color: #4e342e !important; - caret-color: #4e342e !important; -} -.v-application .brown.darken-4 { - background-color: #3e2723 !important; - border-color: #3e2723 !important; -} -.v-application .brown--text.text--darken-4 { - color: #3e2723 !important; - caret-color: #3e2723 !important; -} -.v-application .blue-grey { - background-color: #607d8b !important; - border-color: #607d8b !important; -} -.v-application .blue-grey--text { - color: #607d8b !important; - caret-color: #607d8b !important; -} -.v-application .blue-grey.lighten-5 { - background-color: #eceff1 !important; - border-color: #eceff1 !important; -} -.v-application .blue-grey--text.text--lighten-5 { - color: #eceff1 !important; - caret-color: #eceff1 !important; -} -.v-application .blue-grey.lighten-4 { - background-color: #cfd8dc !important; - border-color: #cfd8dc !important; -} -.v-application .blue-grey--text.text--lighten-4 { - color: #cfd8dc !important; - caret-color: #cfd8dc !important; -} -.v-application .blue-grey.lighten-3 { - background-color: #b0bec5 !important; - border-color: #b0bec5 !important; -} -.v-application .blue-grey--text.text--lighten-3 { - color: #b0bec5 !important; - caret-color: #b0bec5 !important; -} -.v-application .blue-grey.lighten-2 { - background-color: #90a4ae !important; - border-color: #90a4ae !important; -} -.v-application .blue-grey--text.text--lighten-2 { - color: #90a4ae !important; - caret-color: #90a4ae !important; -} -.v-application .blue-grey.lighten-1 { - background-color: #78909c !important; - border-color: #78909c !important; -} -.v-application .blue-grey--text.text--lighten-1 { - color: #78909c !important; - caret-color: #78909c !important; -} -.v-application .blue-grey.darken-1 { - background-color: #546e7a !important; - border-color: #546e7a !important; -} -.v-application .blue-grey--text.text--darken-1 { - color: #546e7a !important; - caret-color: #546e7a !important; -} -.v-application .blue-grey.darken-2 { - background-color: #455a64 !important; - border-color: #455a64 !important; -} -.v-application .blue-grey--text.text--darken-2 { - color: #455a64 !important; - caret-color: #455a64 !important; -} -.v-application .blue-grey.darken-3 { - background-color: #37474f !important; - border-color: #37474f !important; -} -.v-application .blue-grey--text.text--darken-3 { - color: #37474f !important; - caret-color: #37474f !important; -} -.v-application .blue-grey.darken-4 { - background-color: #263238 !important; - border-color: #263238 !important; -} -.v-application .blue-grey--text.text--darken-4 { - color: #263238 !important; - caret-color: #263238 !important; -} -.v-application .grey { - background-color: #9e9e9e !important; - border-color: #9e9e9e !important; -} -.v-application .grey--text { - color: #9e9e9e !important; - caret-color: #9e9e9e !important; -} -.v-application .grey.lighten-5 { - background-color: #fafafa !important; - border-color: #fafafa !important; -} -.v-application .grey--text.text--lighten-5 { - color: #fafafa !important; - caret-color: #fafafa !important; -} -.v-application .grey.lighten-4 { - background-color: #f5f5f5 !important; - border-color: #f5f5f5 !important; -} -.v-application .grey--text.text--lighten-4 { - color: #f5f5f5 !important; - caret-color: #f5f5f5 !important; -} -.v-application .grey.lighten-3 { - background-color: #eee !important; - border-color: #eee !important; -} -.v-application .grey--text.text--lighten-3 { - color: #eee !important; - caret-color: #eee !important; -} -.v-application .grey.lighten-2 { - background-color: #e0e0e0 !important; - border-color: #e0e0e0 !important; -} -.v-application .grey--text.text--lighten-2 { - color: #e0e0e0 !important; - caret-color: #e0e0e0 !important; -} -.v-application .grey.lighten-1 { - background-color: #bdbdbd !important; - border-color: #bdbdbd !important; -} -.v-application .grey--text.text--lighten-1 { - color: #bdbdbd !important; - caret-color: #bdbdbd !important; -} -.v-application .grey.darken-1 { - background-color: #757575 !important; - border-color: #757575 !important; -} -.v-application .grey--text.text--darken-1 { - color: #757575 !important; - caret-color: #757575 !important; -} -.v-application .grey.darken-2 { - background-color: #616161 !important; - border-color: #616161 !important; -} -.v-application .grey--text.text--darken-2 { - color: #616161 !important; - caret-color: #616161 !important; -} -.v-application .grey.darken-3 { - background-color: #424242 !important; - border-color: #424242 !important; -} -.v-application .grey--text.text--darken-3 { - color: #424242 !important; - caret-color: #424242 !important; -} -.v-application .grey.darken-4 { - background-color: #212121 !important; - border-color: #212121 !important; -} -.v-application .grey--text.text--darken-4 { - color: #212121 !important; - caret-color: #212121 !important; -} -.v-application .shades.black { - background-color: #000 !important; - border-color: #000 !important; -} -.v-application .shades--text.text--black { - color: #000 !important; - caret-color: #000 !important; -} -.v-application .shades.white { - background-color: #fff !important; - border-color: #fff !important; -} -.v-application .shades--text.text--white { - color: #fff !important; - caret-color: #fff !important; -} -.v-application .shades.transparent { - background-color: transparent !important; - border-color: transparent !important; -} -.v-application .shades--text.text--transparent { - color: transparent !important; - caret-color: transparent !important; -} /*! - * ress.css • v2.0.4 - * MIT License - * github.com/filipelinhares/ress - */ -html { - box-sizing: border-box; - overflow-y: scroll; - -webkit-text-size-adjust: 100%; - word-break: normal; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; -} -*, -:after, -:before { - background-repeat: no-repeat; - box-sizing: inherit; -} -:after, -:before { - text-decoration: inherit; - vertical-align: inherit; -} -* { - padding: 0; - margin: 0; -} -hr { - overflow: visible; - height: 0; -} -details, -main { - display: block; -} -summary { - display: list-item; -} -small { - font-size: 80%; -} -[hidden] { - display: none; -} -abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} -a { - background-color: transparent; -} -a:active, -a:hover { - outline-width: 0; -} -code, -kbd, -pre, -samp { - font-family: monospace, monospace; -} -pre { - font-size: 1em; -} -b, -strong { - font-weight: bolder; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -input { - border-radius: 0; -} -[disabled] { - cursor: default; -} -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} -[type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; -} -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -textarea { - overflow: auto; - resize: vertical; -} -button, -input, -optgroup, -select, -textarea { - font: inherit; -} -optgroup { - font-weight: 700; -} -button { - overflow: visible; -} -button, -select { - text-transform: none; -} -[role="button"], -[type="button"], -[type="reset"], -[type="submit"], -button { - cursor: pointer; - color: inherit; -} -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} -[type="reset"], -[type="submit"], -button, -html [type="button"] { - -webkit-appearance: button; -} -button, -input, -select, -textarea { - background-color: transparent; - border-style: none; -} -select { - -moz-appearance: none; - -webkit-appearance: none; -} -select::-ms-expand { - display: none; -} -select::-ms-value { - color: currentColor; -} -legend { - border: 0; - color: inherit; - display: table; - white-space: normal; - max-width: 100%; -} -::-webkit-file-upload-button { - -webkit-appearance: button; - color: inherit; - font: inherit; -} -img { - border-style: none; -} -progress { - vertical-align: baseline; -} -@media screen { - [hidden~="screen"] { - display: inherit; - } - [hidden~="screen"]:not(:active):not(:focus):not(:target) { - position: absolute !important; - clip: rect(0 0 0 0) !important; - } -} -[aria-busy="true"] { - cursor: progress; -} -[aria-controls] { - cursor: pointer; -} -[aria-disabled="true"] { - cursor: default; -} -.v-application .elevation-24 { - box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), - 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-23 { - box-shadow: 0 11px 14px -7px rgba(0, 0, 0, 0.2), - 0 23px 36px 3px rgba(0, 0, 0, 0.14), 0 9px 44px 8px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-22 { - box-shadow: 0 10px 14px -6px rgba(0, 0, 0, 0.2), - 0 22px 35px 3px rgba(0, 0, 0, 0.14), 0 8px 42px 7px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-21 { - box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), - 0 21px 33px 3px rgba(0, 0, 0, 0.14), 0 8px 40px 7px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-20 { - box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), - 0 20px 31px 3px rgba(0, 0, 0, 0.14), 0 8px 38px 7px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-19 { - box-shadow: 0 9px 12px -6px rgba(0, 0, 0, 0.2), - 0 19px 29px 2px rgba(0, 0, 0, 0.14), 0 7px 36px 6px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-18 { - box-shadow: 0 9px 11px -5px rgba(0, 0, 0, 0.2), - 0 18px 28px 2px rgba(0, 0, 0, 0.14), 0 7px 34px 6px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-17 { - box-shadow: 0 8px 11px -5px rgba(0, 0, 0, 0.2), - 0 17px 26px 2px rgba(0, 0, 0, 0.14), 0 6px 32px 5px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-16 { - box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), - 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-15 { - box-shadow: 0 8px 9px -5px rgba(0, 0, 0, 0.2), - 0 15px 22px 2px rgba(0, 0, 0, 0.14), 0 6px 28px 5px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-14 { - box-shadow: 0 7px 9px -4px rgba(0, 0, 0, 0.2), - 0 14px 21px 2px rgba(0, 0, 0, 0.14), 0 5px 26px 4px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-13 { - box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), - 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-12 { - box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), - 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-11 { - box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2), - 0 11px 15px 1px rgba(0, 0, 0, 0.14), 0 4px 20px 3px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-10 { - box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2), - 0 10px 14px 1px rgba(0, 0, 0, 0.14), 0 4px 18px 3px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-9 { - box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), - 0 9px 12px 1px rgba(0, 0, 0, 0.14), 0 3px 16px 2px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-8 { - box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), - 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-7 { - box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2), - 0 7px 10px 1px rgba(0, 0, 0, 0.14), 0 2px 16px 1px rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-6 { - box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), - 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-5 { - box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), - 0 1px 14px 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-4 { - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), - 0 1px 10px 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-3 { - box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), - 0 1px 8px 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-2 { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), - 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-1 { - box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), - 0 1px 3px 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .elevation-0 { - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), - 0 0 0 0 rgba(0, 0, 0, 0.12) !important; -} -.v-application .carousel-transition-enter { - transform: translate(100%); -} -.v-application .carousel-transition-leave, -.v-application .carousel-transition-leave-to { - position: absolute; - top: 0; - transform: translate(-100%); -} -.carousel-reverse-transition-enter { - transform: translate(-100%); -} -.carousel-reverse-transition-leave, -.carousel-reverse-transition-leave-to { - position: absolute; - top: 0; - transform: translate(100%); -} -.dialog-transition-enter, -.dialog-transition-leave-to { - transform: scale(0.5); - opacity: 0; -} -.dialog-transition-enter-to, -.dialog-transition-leave { - opacity: 1; -} -.dialog-bottom-transition-enter, -.dialog-bottom-transition-leave-to { - transform: translateY(100%); -} -.picker-reverse-transition-enter-active, -.picker-reverse-transition-leave-active, -.picker-transition-enter-active, -.picker-transition-leave-active { - transition: 0.3s cubic-bezier(0, 0, 0.2, 1); -} -.picker-reverse-transition-enter, -.picker-reverse-transition-leave-to, -.picker-transition-enter, -.picker-transition-leave-to { - opacity: 0; -} -.picker-reverse-transition-leave, -.picker-reverse-transition-leave-active, -.picker-reverse-transition-leave-to, -.picker-transition-leave, -.picker-transition-leave-active, -.picker-transition-leave-to { - position: absolute !important; -} -.picker-transition-enter { - transform: translateY(100%); -} -.picker-reverse-transition-enter, -.picker-transition-leave-to { - transform: translateY(-100%); -} -.picker-reverse-transition-leave-to { - transform: translateY(100%); -} -.picker-title-transition-enter-to, -.picker-title-transition-leave { - transform: translate(0); -} -.picker-title-transition-enter { - transform: translate(-100%); -} -.picker-title-transition-leave-to { - opacity: 0; - transform: translate(100%); -} -.picker-title-transition-leave, -.picker-title-transition-leave-active, -.picker-title-transition-leave-to { - position: absolute !important; -} -.tab-transition-enter { - transform: translate(100%); -} -.tab-transition-leave, -.tab-transition-leave-active { - position: absolute; - top: 0; -} -.tab-transition-leave-to { - position: absolute; -} -.tab-reverse-transition-enter, -.tab-transition-leave-to { - transform: translate(-100%); -} -.tab-reverse-transition-leave, -.tab-reverse-transition-leave-to { - top: 0; - position: absolute; - transform: translate(100%); -} -.expand-transition-enter-active, -.expand-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.expand-transition-move { - transition: transform 0.6s; -} -.expand-x-transition-enter-active, -.expand-x-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.expand-x-transition-move { - transition: transform 0.6s; -} -.scale-transition-enter-active, -.scale-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scale-transition-move { - transition: transform 0.6s; -} -.scale-transition-enter, -.scale-transition-leave, -.scale-transition-leave-to { - opacity: 0; - transform: scale(0); -} -.scale-rotate-transition-enter-active, -.scale-rotate-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scale-rotate-transition-move { - transition: transform 0.6s; -} -.scale-rotate-transition-enter, -.scale-rotate-transition-leave, -.scale-rotate-transition-leave-to { - opacity: 0; - transform: scale(0) rotate(-45deg); -} -.scale-rotate-reverse-transition-enter-active, -.scale-rotate-reverse-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scale-rotate-reverse-transition-move { - transition: transform 0.6s; -} -.scale-rotate-reverse-transition-enter, -.scale-rotate-reverse-transition-leave, -.scale-rotate-reverse-transition-leave-to { - opacity: 0; - transform: scale(0) rotate(45deg); -} -.message-transition-enter-active, -.message-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.message-transition-move { - transition: transform 0.6s; -} -.message-transition-enter, -.message-transition-leave-to { - opacity: 0; - transform: translateY(-15px); -} -.message-transition-leave, -.message-transition-leave-active { - position: absolute; -} -.slide-y-transition-enter-active, -.slide-y-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.slide-y-transition-move { - transition: transform 0.6s; -} -.slide-y-transition-enter, -.slide-y-transition-leave-to { - opacity: 0; - transform: translateY(-15px); -} -.slide-y-reverse-transition-enter-active, -.slide-y-reverse-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.slide-y-reverse-transition-move { - transition: transform 0.6s; -} -.slide-y-reverse-transition-enter, -.slide-y-reverse-transition-leave-to { - opacity: 0; - transform: translateY(15px); -} -.scroll-y-transition-enter-active, -.scroll-y-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scroll-y-transition-move { - transition: transform 0.6s; -} -.scroll-y-transition-enter, -.scroll-y-transition-leave-to { - opacity: 0; -} -.scroll-y-transition-enter { - transform: translateY(-15px); -} -.scroll-y-transition-leave-to { - transform: translateY(15px); -} -.scroll-y-reverse-transition-enter-active, -.scroll-y-reverse-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scroll-y-reverse-transition-move { - transition: transform 0.6s; -} -.scroll-y-reverse-transition-enter, -.scroll-y-reverse-transition-leave-to { - opacity: 0; -} -.scroll-y-reverse-transition-enter { - transform: translateY(15px); -} -.scroll-y-reverse-transition-leave-to { - transform: translateY(-15px); -} -.scroll-x-transition-enter-active, -.scroll-x-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scroll-x-transition-move { - transition: transform 0.6s; -} -.scroll-x-transition-enter, -.scroll-x-transition-leave-to { - opacity: 0; -} -.scroll-x-transition-enter { - transform: translateX(-15px); -} -.scroll-x-transition-leave-to { - transform: translateX(15px); -} -.scroll-x-reverse-transition-enter-active, -.scroll-x-reverse-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.scroll-x-reverse-transition-move { - transition: transform 0.6s; -} -.scroll-x-reverse-transition-enter, -.scroll-x-reverse-transition-leave-to { - opacity: 0; -} -.scroll-x-reverse-transition-enter { - transform: translateX(15px); -} -.scroll-x-reverse-transition-leave-to { - transform: translateX(-15px); -} -.slide-x-transition-enter-active, -.slide-x-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.slide-x-transition-move { - transition: transform 0.6s; -} -.slide-x-transition-enter, -.slide-x-transition-leave-to { - opacity: 0; - transform: translateX(-15px); -} -.slide-x-reverse-transition-enter-active, -.slide-x-reverse-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.slide-x-reverse-transition-move { - transition: transform 0.6s; -} -.slide-x-reverse-transition-enter, -.slide-x-reverse-transition-leave-to { - opacity: 0; - transform: translateX(15px); -} -.fade-transition-enter-active, -.fade-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.fade-transition-move { - transition: transform 0.6s; -} -.fade-transition-enter, -.fade-transition-leave-to { - opacity: 0 !important; -} -.fab-transition-enter-active, -.fab-transition-leave-active { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.fab-transition-move { - transition: transform 0.6s; -} -.fab-transition-enter, -.fab-transition-leave-to { - transform: scale(0) rotate(-45deg); -} -.v-application .blockquote { - padding: 16px 0 16px 24px; - font-size: 18px; - font-weight: 300; -} -.v-application code, -.v-application kbd { - border-radius: 3px; - font-size: 85%; - font-weight: 900; -} -.v-application code { - background-color: #fbe5e1; - color: #c0341d; - padding: 0 0.4rem; -} -.v-application kbd { - background: #212529; - color: #fff; - padding: 0.2rem 0.4rem; -} -html { - font-size: 16px; - overflow-x: hidden; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -html.overflow-y-hidden { - overflow-y: hidden !important; -} -.v-application { - font-family: Roboto, sans-serif; - line-height: 1.5; -} -.v-application ::-ms-clear, -.v-application ::-ms-reveal { - display: none; -} -.v-application .theme--light.heading { - color: rgba(0, 0, 0, 0.87); -} -.v-application .theme--dark.heading { - color: #fff; -} -.v-application ol, -.v-application ul { - padding-left: 24px; -} -.v-application .display-4 { - font-size: 6rem !important; - line-height: 6rem; - letter-spacing: -0.015625em !important; -} -.v-application .display-3, -.v-application .display-4 { - font-weight: 300; - font-family: Roboto, sans-serif !important; -} -.v-application .display-3 { - font-size: 3.75rem !important; - line-height: 3.75rem; - letter-spacing: -0.0083333333em !important; -} -.v-application .display-2 { - font-size: 3rem !important; - line-height: 3.125rem; - letter-spacing: normal !important; -} -.v-application .display-1, -.v-application .display-2 { - font-weight: 400; - font-family: Roboto, sans-serif !important; -} -.v-application .display-1 { - font-size: 2.125rem !important; - line-height: 2.5rem; - letter-spacing: 0.0073529412em !important; -} -.v-application .headline { - font-size: 1.5rem !important; - font-weight: 400; - letter-spacing: normal !important; -} -.v-application .headline, -.v-application .title { - line-height: 2rem; - font-family: Roboto, sans-serif !important; -} -.v-application .title { - font-size: 1.25rem !important; - font-weight: 500; - letter-spacing: 0.0125em !important; -} -.v-application .subtitle-2 { - font-size: 0.875rem !important; - font-weight: 500; - letter-spacing: 0.0071428571em !important; - line-height: 1.375rem; - font-family: Roboto, sans-serif !important; -} -.v-application .subtitle-1 { - font-size: 1rem !important; - letter-spacing: 0.009375em !important; - line-height: 1.75rem; -} -.v-application .body-2, -.v-application .subtitle-1 { - font-weight: 400; - font-family: Roboto, sans-serif !important; -} -.v-application .body-2 { - font-size: 0.875rem !important; - letter-spacing: 0.0178571429em !important; - line-height: 1.25rem; -} -.v-application .body-1 { - font-size: 1rem !important; - letter-spacing: 0.03125em !important; - line-height: 1.5rem; -} -.v-application .body-1, -.v-application .caption { - font-weight: 400; - font-family: Roboto, sans-serif !important; -} -.v-application .caption { - font-size: 0.75rem !important; - letter-spacing: 0.0333333333em !important; - line-height: 1.25rem; -} -.v-application .overline { - font-size: 0.75rem !important; - font-weight: 500; - letter-spacing: 0.1666666667em !important; - line-height: 2rem; - text-transform: uppercase; - font-family: Roboto, sans-serif !important; -} -.v-application p { - margin-bottom: 16px; -} -@media only print { - .v-application .hidden-print-only { - display: none !important; - } -} -@media only screen { - .v-application .hidden-screen-only { - display: none !important; - } -} -@media only screen and (max-width: 599px) { - .v-application .hidden-xs-only { - display: none !important; - } -} -@media only screen and (min-width: 600px) and (max-width: 959px) { - .v-application .hidden-sm-only { - display: none !important; - } -} -@media only screen and (max-width: 959px) { - .v-application .hidden-sm-and-down { - display: none !important; - } -} -@media only screen and (min-width: 600px) { - .v-application .hidden-sm-and-up { - display: none !important; - } -} -@media only screen and (min-width: 960px) and (max-width: 1263px) { - .v-application .hidden-md-only { - display: none !important; - } -} -@media only screen and (max-width: 1263px) { - .v-application .hidden-md-and-down { - display: none !important; - } -} -@media only screen and (min-width: 960px) { - .v-application .hidden-md-and-up { - display: none !important; - } -} -@media only screen and (min-width: 1264px) and (max-width: 1903px) { - .v-application .hidden-lg-only { - display: none !important; - } -} -@media only screen and (max-width: 1903px) { - .v-application .hidden-lg-and-down { - display: none !important; - } -} -@media only screen and (min-width: 1264px) { - .v-application .hidden-lg-and-up { - display: none !important; - } -} -@media only screen and (min-width: 1904px) { - .v-application .hidden-xl-only { - display: none !important; - } -} -.d-sr-only, -.d-sr-only-focusable:not(:focus) { - border: 0 !important; - clip: rect(0, 0, 0, 0) !important; - height: 1px !important; - margin: -1px !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - white-space: nowrap !important; - width: 1px !important; -} -.v-application .font-weight-thin { - font-weight: 100 !important; -} -.v-application .font-weight-light { - font-weight: 300 !important; -} -.v-application .font-weight-regular { - font-weight: 400 !important; -} -.v-application .font-weight-medium { - font-weight: 500 !important; -} -.v-application .font-weight-bold { - font-weight: 700 !important; -} -.v-application .font-weight-black { - font-weight: 900 !important; -} -.v-application .font-italic { - font-style: italic !important; -} -.v-application .transition-fast-out-slow-in { - transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; -} -.v-application .transition-linear-out-slow-in { - transition: 0.3s cubic-bezier(0, 0, 0.2, 1) !important; -} -.v-application .transition-fast-out-linear-in { - transition: 0.3s cubic-bezier(0.4, 0, 1, 1) !important; -} -.v-application .transition-ease-in-out { - transition: 0.3s cubic-bezier(0.4, 0, 0.6, 1) !important; -} -.v-application .transition-fast-in-fast-out { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; -} -.v-application .transition-swing { - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important; -} -.v-application .overflow-auto { - overflow: auto !important; -} -.v-application .overflow-hidden { - overflow: hidden !important; -} -.v-application .overflow-visible { - overflow: visible !important; -} -.v-application .overflow-x-auto { - overflow-x: auto !important; -} -.v-application .overflow-x-hidden { - overflow-x: hidden !important; -} -.v-application .overflow-y-auto { - overflow-y: auto !important; -} -.v-application .overflow-y-hidden { - overflow-y: hidden !important; -} -.v-application .d-none { - display: none !important; -} -.v-application .d-inline { - display: inline !important; -} -.v-application .d-inline-block { - display: inline-block !important; -} -.v-application .d-block { - display: block !important; -} -.v-application .d-table { - display: table !important; -} -.v-application .d-table-row { - display: table-row !important; -} -.v-application .d-table-cell { - display: table-cell !important; -} -.v-application .d-flex { - display: flex !important; -} -.v-application .d-inline-flex { - display: inline-flex !important; -} -.v-application .float-none { - float: none !important; -} -.v-application .float-left { - float: left !important; -} -.v-application .float-right { - float: right !important; -} -.v-application .flex-fill { - flex: 1 1 auto !important; -} -.v-application .flex-row { - flex-direction: row !important; -} -.v-application .flex-column { - flex-direction: column !important; -} -.v-application .flex-row-reverse { - flex-direction: row-reverse !important; -} -.v-application .flex-column-reverse { - flex-direction: column-reverse !important; -} -.v-application .flex-grow-0 { - flex-grow: 0 !important; -} -.v-application .flex-grow-1 { - flex-grow: 1 !important; -} -.v-application .flex-shrink-0 { - flex-shrink: 0 !important; -} -.v-application .flex-shrink-1 { - flex-shrink: 1 !important; -} -.v-application .flex-wrap { - flex-wrap: wrap !important; -} -.v-application .flex-nowrap { - flex-wrap: nowrap !important; -} -.v-application .flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} -.v-application .justify-start { - justify-content: flex-start !important; -} -.v-application .justify-end { - justify-content: flex-end !important; -} -.v-application .justify-center { - justify-content: center !important; -} -.v-application .justify-space-between { - justify-content: space-between !important; -} -.v-application .justify-space-around { - justify-content: space-around !important; -} -.v-application .align-start { - align-items: flex-start !important; -} -.v-application .align-end { - align-items: flex-end !important; -} -.v-application .align-center { - align-items: center !important; -} -.v-application .align-baseline { - align-items: baseline !important; -} -.v-application .align-stretch { - align-items: stretch !important; -} -.v-application .align-content-start { - align-content: flex-start !important; -} -.v-application .align-content-end { - align-content: flex-end !important; -} -.v-application .align-content-center { - align-content: center !important; -} -.v-application .align-content-space-between { - align-content: space-between !important; -} -.v-application .align-content-space-around { - align-content: space-around !important; -} -.v-application .align-content-stretch { - align-content: stretch !important; -} -.v-application .align-self-auto { - align-self: auto !important; -} -.v-application .align-self-start { - align-self: flex-start !important; -} -.v-application .align-self-end { - align-self: flex-end !important; -} -.v-application .align-self-center { - align-self: center !important; -} -.v-application .align-self-baseline { - align-self: baseline !important; -} -.v-application .align-self-stretch { - align-self: stretch !important; -} -.v-application .order-first { - order: -1 !important; -} -.v-application .order-0 { - order: 0 !important; -} -.v-application .order-1 { - order: 1 !important; -} -.v-application .order-2 { - order: 2 !important; -} -.v-application .order-3 { - order: 3 !important; -} -.v-application .order-4 { - order: 4 !important; -} -.v-application .order-5 { - order: 5 !important; -} -.v-application .order-6 { - order: 6 !important; -} -.v-application .order-7 { - order: 7 !important; -} -.v-application .order-8 { - order: 8 !important; -} -.v-application .order-9 { - order: 9 !important; -} -.v-application .order-10 { - order: 10 !important; -} -.v-application .order-11 { - order: 11 !important; -} -.v-application .order-12 { - order: 12 !important; -} -.v-application .order-last { - order: 13 !important; -} -.v-application .ma-0 { - margin: 0 !important; -} -.v-application .ma-1 { - margin: 4px !important; -} -.v-application .ma-2 { - margin: 8px !important; -} -.v-application .ma-3 { - margin: 12px !important; -} -.v-application .ma-4 { - margin: 16px !important; -} -.v-application .ma-5 { - margin: 20px !important; -} -.v-application .ma-6 { - margin: 24px !important; -} -.v-application .ma-7 { - margin: 28px !important; -} -.v-application .ma-8 { - margin: 32px !important; -} -.v-application .ma-9 { - margin: 36px !important; -} -.v-application .ma-10 { - margin: 40px !important; -} -.v-application .ma-11 { - margin: 44px !important; -} -.v-application .ma-12 { - margin: 48px !important; -} -.v-application .ma-13 { - margin: 52px !important; -} -.v-application .ma-14 { - margin: 56px !important; -} -.v-application .ma-15 { - margin: 60px !important; -} -.v-application .ma-16 { - margin: 64px !important; -} -.v-application .ma-auto { - margin: auto !important; -} -.v-application .mx-0 { - margin-right: 0 !important; - margin-left: 0 !important; -} -.v-application .mx-1 { - margin-right: 4px !important; - margin-left: 4px !important; -} -.v-application .mx-2 { - margin-right: 8px !important; - margin-left: 8px !important; -} -.v-application .mx-3 { - margin-right: 12px !important; - margin-left: 12px !important; -} -.v-application .mx-4 { - margin-right: 16px !important; - margin-left: 16px !important; -} -.v-application .mx-5 { - margin-right: 20px !important; - margin-left: 20px !important; -} -.v-application .mx-6 { - margin-right: 24px !important; - margin-left: 24px !important; -} -.v-application .mx-7 { - margin-right: 28px !important; - margin-left: 28px !important; -} -.v-application .mx-8 { - margin-right: 32px !important; - margin-left: 32px !important; -} -.v-application .mx-9 { - margin-right: 36px !important; - margin-left: 36px !important; -} -.v-application .mx-10 { - margin-right: 40px !important; - margin-left: 40px !important; -} -.v-application .mx-11 { - margin-right: 44px !important; - margin-left: 44px !important; -} -.v-application .mx-12 { - margin-right: 48px !important; - margin-left: 48px !important; -} -.v-application .mx-13 { - margin-right: 52px !important; - margin-left: 52px !important; -} -.v-application .mx-14 { - margin-right: 56px !important; - margin-left: 56px !important; -} -.v-application .mx-15 { - margin-right: 60px !important; - margin-left: 60px !important; -} -.v-application .mx-16 { - margin-right: 64px !important; - margin-left: 64px !important; -} -.v-application .mx-auto { - margin-right: auto !important; - margin-left: auto !important; -} -.v-application .my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; -} -.v-application .my-1 { - margin-top: 4px !important; - margin-bottom: 4px !important; -} -.v-application .my-2 { - margin-top: 8px !important; - margin-bottom: 8px !important; -} -.v-application .my-3 { - margin-top: 12px !important; - margin-bottom: 12px !important; -} -.v-application .my-4 { - margin-top: 16px !important; - margin-bottom: 16px !important; -} -.v-application .my-5 { - margin-top: 20px !important; - margin-bottom: 20px !important; -} -.v-application .my-6 { - margin-top: 24px !important; - margin-bottom: 24px !important; -} -.v-application .my-7 { - margin-top: 28px !important; - margin-bottom: 28px !important; -} -.v-application .my-8 { - margin-top: 32px !important; - margin-bottom: 32px !important; -} -.v-application .my-9 { - margin-top: 36px !important; - margin-bottom: 36px !important; -} -.v-application .my-10 { - margin-top: 40px !important; - margin-bottom: 40px !important; -} -.v-application .my-11 { - margin-top: 44px !important; - margin-bottom: 44px !important; -} -.v-application .my-12 { - margin-top: 48px !important; - margin-bottom: 48px !important; -} -.v-application .my-13 { - margin-top: 52px !important; - margin-bottom: 52px !important; -} -.v-application .my-14 { - margin-top: 56px !important; - margin-bottom: 56px !important; -} -.v-application .my-15 { - margin-top: 60px !important; - margin-bottom: 60px !important; -} -.v-application .my-16 { - margin-top: 64px !important; - margin-bottom: 64px !important; -} -.v-application .my-auto { - margin-top: auto !important; - margin-bottom: auto !important; -} -.v-application .mt-0 { - margin-top: 0 !important; -} -.v-application .mt-1 { - margin-top: 4px !important; -} -.v-application .mt-2 { - margin-top: 8px !important; -} -.v-application .mt-3 { - margin-top: 12px !important; -} -.v-application .mt-4 { - margin-top: 16px !important; -} -.v-application .mt-5 { - margin-top: 20px !important; -} -.v-application .mt-6 { - margin-top: 24px !important; -} -.v-application .mt-7 { - margin-top: 28px !important; -} -.v-application .mt-8 { - margin-top: 32px !important; -} -.v-application .mt-9 { - margin-top: 36px !important; -} -.v-application .mt-10 { - margin-top: 40px !important; -} -.v-application .mt-11 { - margin-top: 44px !important; -} -.v-application .mt-12 { - margin-top: 48px !important; -} -.v-application .mt-13 { - margin-top: 52px !important; -} -.v-application .mt-14 { - margin-top: 56px !important; -} -.v-application .mt-15 { - margin-top: 60px !important; -} -.v-application .mt-16 { - margin-top: 64px !important; -} -.v-application .mt-auto { - margin-top: auto !important; -} -.v-application .mr-0 { - margin-right: 0 !important; -} -.v-application .mr-1 { - margin-right: 4px !important; -} -.v-application .mr-2 { - margin-right: 8px !important; -} -.v-application .mr-3 { - margin-right: 12px !important; -} -.v-application .mr-4 { - margin-right: 16px !important; -} -.v-application .mr-5 { - margin-right: 20px !important; -} -.v-application .mr-6 { - margin-right: 24px !important; -} -.v-application .mr-7 { - margin-right: 28px !important; -} -.v-application .mr-8 { - margin-right: 32px !important; -} -.v-application .mr-9 { - margin-right: 36px !important; -} -.v-application .mr-10 { - margin-right: 40px !important; -} -.v-application .mr-11 { - margin-right: 44px !important; -} -.v-application .mr-12 { - margin-right: 48px !important; -} -.v-application .mr-13 { - margin-right: 52px !important; -} -.v-application .mr-14 { - margin-right: 56px !important; -} -.v-application .mr-15 { - margin-right: 60px !important; -} -.v-application .mr-16 { - margin-right: 64px !important; -} -.v-application .mr-auto { - margin-right: auto !important; -} -.v-application .mb-0 { - margin-bottom: 0 !important; -} -.v-application .mb-1 { - margin-bottom: 4px !important; -} -.v-application .mb-2 { - margin-bottom: 8px !important; -} -.v-application .mb-3 { - margin-bottom: 12px !important; -} -.v-application .mb-4 { - margin-bottom: 16px !important; -} -.v-application .mb-5 { - margin-bottom: 20px !important; -} -.v-application .mb-6 { - margin-bottom: 24px !important; -} -.v-application .mb-7 { - margin-bottom: 28px !important; -} -.v-application .mb-8 { - margin-bottom: 32px !important; -} -.v-application .mb-9 { - margin-bottom: 36px !important; -} -.v-application .mb-10 { - margin-bottom: 40px !important; -} -.v-application .mb-11 { - margin-bottom: 44px !important; -} -.v-application .mb-12 { - margin-bottom: 48px !important; -} -.v-application .mb-13 { - margin-bottom: 52px !important; -} -.v-application .mb-14 { - margin-bottom: 56px !important; -} -.v-application .mb-15 { - margin-bottom: 60px !important; -} -.v-application .mb-16 { - margin-bottom: 64px !important; -} -.v-application .mb-auto { - margin-bottom: auto !important; -} -.v-application .ml-0 { - margin-left: 0 !important; -} -.v-application .ml-1 { - margin-left: 4px !important; -} -.v-application .ml-2 { - margin-left: 8px !important; -} -.v-application .ml-3 { - margin-left: 12px !important; -} -.v-application .ml-4 { - margin-left: 16px !important; -} -.v-application .ml-5 { - margin-left: 20px !important; -} -.v-application .ml-6 { - margin-left: 24px !important; -} -.v-application .ml-7 { - margin-left: 28px !important; -} -.v-application .ml-8 { - margin-left: 32px !important; -} -.v-application .ml-9 { - margin-left: 36px !important; -} -.v-application .ml-10 { - margin-left: 40px !important; -} -.v-application .ml-11 { - margin-left: 44px !important; -} -.v-application .ml-12 { - margin-left: 48px !important; -} -.v-application .ml-13 { - margin-left: 52px !important; -} -.v-application .ml-14 { - margin-left: 56px !important; -} -.v-application .ml-15 { - margin-left: 60px !important; -} -.v-application .ml-16 { - margin-left: 64px !important; -} -.v-application .ml-auto { - margin-left: auto !important; -} -.v-application--is-ltr .ms-0 { - margin-left: 0 !important; -} -.v-application--is-rtl .ms-0 { - margin-right: 0 !important; -} -.v-application--is-ltr .ms-1 { - margin-left: 4px !important; -} -.v-application--is-rtl .ms-1 { - margin-right: 4px !important; -} -.v-application--is-ltr .ms-2 { - margin-left: 8px !important; -} -.v-application--is-rtl .ms-2 { - margin-right: 8px !important; -} -.v-application--is-ltr .ms-3 { - margin-left: 12px !important; -} -.v-application--is-rtl .ms-3 { - margin-right: 12px !important; -} -.v-application--is-ltr .ms-4 { - margin-left: 16px !important; -} -.v-application--is-rtl .ms-4 { - margin-right: 16px !important; -} -.v-application--is-ltr .ms-5 { - margin-left: 20px !important; -} -.v-application--is-rtl .ms-5 { - margin-right: 20px !important; -} -.v-application--is-ltr .ms-6 { - margin-left: 24px !important; -} -.v-application--is-rtl .ms-6 { - margin-right: 24px !important; -} -.v-application--is-ltr .ms-7 { - margin-left: 28px !important; -} -.v-application--is-rtl .ms-7 { - margin-right: 28px !important; -} -.v-application--is-ltr .ms-8 { - margin-left: 32px !important; -} -.v-application--is-rtl .ms-8 { - margin-right: 32px !important; -} -.v-application--is-ltr .ms-9 { - margin-left: 36px !important; -} -.v-application--is-rtl .ms-9 { - margin-right: 36px !important; -} -.v-application--is-ltr .ms-10 { - margin-left: 40px !important; -} -.v-application--is-rtl .ms-10 { - margin-right: 40px !important; -} -.v-application--is-ltr .ms-11 { - margin-left: 44px !important; -} -.v-application--is-rtl .ms-11 { - margin-right: 44px !important; -} -.v-application--is-ltr .ms-12 { - margin-left: 48px !important; -} -.v-application--is-rtl .ms-12 { - margin-right: 48px !important; -} -.v-application--is-ltr .ms-13 { - margin-left: 52px !important; -} -.v-application--is-rtl .ms-13 { - margin-right: 52px !important; -} -.v-application--is-ltr .ms-14 { - margin-left: 56px !important; -} -.v-application--is-rtl .ms-14 { - margin-right: 56px !important; -} -.v-application--is-ltr .ms-15 { - margin-left: 60px !important; -} -.v-application--is-rtl .ms-15 { - margin-right: 60px !important; -} -.v-application--is-ltr .ms-16 { - margin-left: 64px !important; -} -.v-application--is-rtl .ms-16 { - margin-right: 64px !important; -} -.v-application--is-ltr .ms-auto { - margin-left: auto !important; -} -.v-application--is-rtl .ms-auto { - margin-right: auto !important; -} -.v-application--is-ltr .me-0 { - margin-right: 0 !important; -} -.v-application--is-rtl .me-0 { - margin-left: 0 !important; -} -.v-application--is-ltr .me-1 { - margin-right: 4px !important; -} -.v-application--is-rtl .me-1 { - margin-left: 4px !important; -} -.v-application--is-ltr .me-2 { - margin-right: 8px !important; -} -.v-application--is-rtl .me-2 { - margin-left: 8px !important; -} -.v-application--is-ltr .me-3 { - margin-right: 12px !important; -} -.v-application--is-rtl .me-3 { - margin-left: 12px !important; -} -.v-application--is-ltr .me-4 { - margin-right: 16px !important; -} -.v-application--is-rtl .me-4 { - margin-left: 16px !important; -} -.v-application--is-ltr .me-5 { - margin-right: 20px !important; -} -.v-application--is-rtl .me-5 { - margin-left: 20px !important; -} -.v-application--is-ltr .me-6 { - margin-right: 24px !important; -} -.v-application--is-rtl .me-6 { - margin-left: 24px !important; -} -.v-application--is-ltr .me-7 { - margin-right: 28px !important; -} -.v-application--is-rtl .me-7 { - margin-left: 28px !important; -} -.v-application--is-ltr .me-8 { - margin-right: 32px !important; -} -.v-application--is-rtl .me-8 { - margin-left: 32px !important; -} -.v-application--is-ltr .me-9 { - margin-right: 36px !important; -} -.v-application--is-rtl .me-9 { - margin-left: 36px !important; -} -.v-application--is-ltr .me-10 { - margin-right: 40px !important; -} -.v-application--is-rtl .me-10 { - margin-left: 40px !important; -} -.v-application--is-ltr .me-11 { - margin-right: 44px !important; -} -.v-application--is-rtl .me-11 { - margin-left: 44px !important; -} -.v-application--is-ltr .me-12 { - margin-right: 48px !important; -} -.v-application--is-rtl .me-12 { - margin-left: 48px !important; -} -.v-application--is-ltr .me-13 { - margin-right: 52px !important; -} -.v-application--is-rtl .me-13 { - margin-left: 52px !important; -} -.v-application--is-ltr .me-14 { - margin-right: 56px !important; -} -.v-application--is-rtl .me-14 { - margin-left: 56px !important; -} -.v-application--is-ltr .me-15 { - margin-right: 60px !important; -} -.v-application--is-rtl .me-15 { - margin-left: 60px !important; -} -.v-application--is-ltr .me-16 { - margin-right: 64px !important; -} -.v-application--is-rtl .me-16 { - margin-left: 64px !important; -} -.v-application--is-ltr .me-auto { - margin-right: auto !important; -} -.v-application--is-rtl .me-auto { - margin-left: auto !important; -} -.v-application .ma-n1 { - margin: -4px !important; -} -.v-application .ma-n2 { - margin: -8px !important; -} -.v-application .ma-n3 { - margin: -12px !important; -} -.v-application .ma-n4 { - margin: -16px !important; -} -.v-application .ma-n5 { - margin: -20px !important; -} -.v-application .ma-n6 { - margin: -24px !important; -} -.v-application .ma-n7 { - margin: -28px !important; -} -.v-application .ma-n8 { - margin: -32px !important; -} -.v-application .ma-n9 { - margin: -36px !important; -} -.v-application .ma-n10 { - margin: -40px !important; -} -.v-application .ma-n11 { - margin: -44px !important; -} -.v-application .ma-n12 { - margin: -48px !important; -} -.v-application .ma-n13 { - margin: -52px !important; -} -.v-application .ma-n14 { - margin: -56px !important; -} -.v-application .ma-n15 { - margin: -60px !important; -} -.v-application .ma-n16 { - margin: -64px !important; -} -.v-application .mx-n1 { - margin-right: -4px !important; - margin-left: -4px !important; -} -.v-application .mx-n2 { - margin-right: -8px !important; - margin-left: -8px !important; -} -.v-application .mx-n3 { - margin-right: -12px !important; - margin-left: -12px !important; -} -.v-application .mx-n4 { - margin-right: -16px !important; - margin-left: -16px !important; -} -.v-application .mx-n5 { - margin-right: -20px !important; - margin-left: -20px !important; -} -.v-application .mx-n6 { - margin-right: -24px !important; - margin-left: -24px !important; -} -.v-application .mx-n7 { - margin-right: -28px !important; - margin-left: -28px !important; -} -.v-application .mx-n8 { - margin-right: -32px !important; - margin-left: -32px !important; -} -.v-application .mx-n9 { - margin-right: -36px !important; - margin-left: -36px !important; -} -.v-application .mx-n10 { - margin-right: -40px !important; - margin-left: -40px !important; -} -.v-application .mx-n11 { - margin-right: -44px !important; - margin-left: -44px !important; -} -.v-application .mx-n12 { - margin-right: -48px !important; - margin-left: -48px !important; -} -.v-application .mx-n13 { - margin-right: -52px !important; - margin-left: -52px !important; -} -.v-application .mx-n14 { - margin-right: -56px !important; - margin-left: -56px !important; -} -.v-application .mx-n15 { - margin-right: -60px !important; - margin-left: -60px !important; -} -.v-application .mx-n16 { - margin-right: -64px !important; - margin-left: -64px !important; -} -.v-application .my-n1 { - margin-top: -4px !important; - margin-bottom: -4px !important; -} -.v-application .my-n2 { - margin-top: -8px !important; - margin-bottom: -8px !important; -} -.v-application .my-n3 { - margin-top: -12px !important; - margin-bottom: -12px !important; -} -.v-application .my-n4 { - margin-top: -16px !important; - margin-bottom: -16px !important; -} -.v-application .my-n5 { - margin-top: -20px !important; - margin-bottom: -20px !important; -} -.v-application .my-n6 { - margin-top: -24px !important; - margin-bottom: -24px !important; -} -.v-application .my-n7 { - margin-top: -28px !important; - margin-bottom: -28px !important; -} -.v-application .my-n8 { - margin-top: -32px !important; - margin-bottom: -32px !important; -} -.v-application .my-n9 { - margin-top: -36px !important; - margin-bottom: -36px !important; -} -.v-application .my-n10 { - margin-top: -40px !important; - margin-bottom: -40px !important; -} -.v-application .my-n11 { - margin-top: -44px !important; - margin-bottom: -44px !important; -} -.v-application .my-n12 { - margin-top: -48px !important; - margin-bottom: -48px !important; -} -.v-application .my-n13 { - margin-top: -52px !important; - margin-bottom: -52px !important; -} -.v-application .my-n14 { - margin-top: -56px !important; - margin-bottom: -56px !important; -} -.v-application .my-n15 { - margin-top: -60px !important; - margin-bottom: -60px !important; -} -.v-application .my-n16 { - margin-top: -64px !important; - margin-bottom: -64px !important; -} -.v-application .mt-n1 { - margin-top: -4px !important; -} -.v-application .mt-n2 { - margin-top: -8px !important; -} -.v-application .mt-n3 { - margin-top: -12px !important; -} -.v-application .mt-n4 { - margin-top: -16px !important; -} -.v-application .mt-n5 { - margin-top: -20px !important; -} -.v-application .mt-n6 { - margin-top: -24px !important; -} -.v-application .mt-n7 { - margin-top: -28px !important; -} -.v-application .mt-n8 { - margin-top: -32px !important; -} -.v-application .mt-n9 { - margin-top: -36px !important; -} -.v-application .mt-n10 { - margin-top: -40px !important; -} -.v-application .mt-n11 { - margin-top: -44px !important; -} -.v-application .mt-n12 { - margin-top: -48px !important; -} -.v-application .mt-n13 { - margin-top: -52px !important; -} -.v-application .mt-n14 { - margin-top: -56px !important; -} -.v-application .mt-n15 { - margin-top: -60px !important; -} -.v-application .mt-n16 { - margin-top: -64px !important; -} -.v-application .mr-n1 { - margin-right: -4px !important; -} -.v-application .mr-n2 { - margin-right: -8px !important; -} -.v-application .mr-n3 { - margin-right: -12px !important; -} -.v-application .mr-n4 { - margin-right: -16px !important; -} -.v-application .mr-n5 { - margin-right: -20px !important; -} -.v-application .mr-n6 { - margin-right: -24px !important; -} -.v-application .mr-n7 { - margin-right: -28px !important; -} -.v-application .mr-n8 { - margin-right: -32px !important; -} -.v-application .mr-n9 { - margin-right: -36px !important; -} -.v-application .mr-n10 { - margin-right: -40px !important; -} -.v-application .mr-n11 { - margin-right: -44px !important; -} -.v-application .mr-n12 { - margin-right: -48px !important; -} -.v-application .mr-n13 { - margin-right: -52px !important; -} -.v-application .mr-n14 { - margin-right: -56px !important; -} -.v-application .mr-n15 { - margin-right: -60px !important; -} -.v-application .mr-n16 { - margin-right: -64px !important; -} -.v-application .mb-n1 { - margin-bottom: -4px !important; -} -.v-application .mb-n2 { - margin-bottom: -8px !important; -} -.v-application .mb-n3 { - margin-bottom: -12px !important; -} -.v-application .mb-n4 { - margin-bottom: -16px !important; -} -.v-application .mb-n5 { - margin-bottom: -20px !important; -} -.v-application .mb-n6 { - margin-bottom: -24px !important; -} -.v-application .mb-n7 { - margin-bottom: -28px !important; -} -.v-application .mb-n8 { - margin-bottom: -32px !important; -} -.v-application .mb-n9 { - margin-bottom: -36px !important; -} -.v-application .mb-n10 { - margin-bottom: -40px !important; -} -.v-application .mb-n11 { - margin-bottom: -44px !important; -} -.v-application .mb-n12 { - margin-bottom: -48px !important; -} -.v-application .mb-n13 { - margin-bottom: -52px !important; -} -.v-application .mb-n14 { - margin-bottom: -56px !important; -} -.v-application .mb-n15 { - margin-bottom: -60px !important; -} -.v-application .mb-n16 { - margin-bottom: -64px !important; -} -.v-application .ml-n1 { - margin-left: -4px !important; -} -.v-application .ml-n2 { - margin-left: -8px !important; -} -.v-application .ml-n3 { - margin-left: -12px !important; -} -.v-application .ml-n4 { - margin-left: -16px !important; -} -.v-application .ml-n5 { - margin-left: -20px !important; -} -.v-application .ml-n6 { - margin-left: -24px !important; -} -.v-application .ml-n7 { - margin-left: -28px !important; -} -.v-application .ml-n8 { - margin-left: -32px !important; -} -.v-application .ml-n9 { - margin-left: -36px !important; -} -.v-application .ml-n10 { - margin-left: -40px !important; -} -.v-application .ml-n11 { - margin-left: -44px !important; -} -.v-application .ml-n12 { - margin-left: -48px !important; -} -.v-application .ml-n13 { - margin-left: -52px !important; -} -.v-application .ml-n14 { - margin-left: -56px !important; -} -.v-application .ml-n15 { - margin-left: -60px !important; -} -.v-application .ml-n16 { - margin-left: -64px !important; -} -.v-application--is-ltr .ms-n1 { - margin-left: -4px !important; -} -.v-application--is-rtl .ms-n1 { - margin-right: -4px !important; -} -.v-application--is-ltr .ms-n2 { - margin-left: -8px !important; -} -.v-application--is-rtl .ms-n2 { - margin-right: -8px !important; -} -.v-application--is-ltr .ms-n3 { - margin-left: -12px !important; -} -.v-application--is-rtl .ms-n3 { - margin-right: -12px !important; -} -.v-application--is-ltr .ms-n4 { - margin-left: -16px !important; -} -.v-application--is-rtl .ms-n4 { - margin-right: -16px !important; -} -.v-application--is-ltr .ms-n5 { - margin-left: -20px !important; -} -.v-application--is-rtl .ms-n5 { - margin-right: -20px !important; -} -.v-application--is-ltr .ms-n6 { - margin-left: -24px !important; -} -.v-application--is-rtl .ms-n6 { - margin-right: -24px !important; -} -.v-application--is-ltr .ms-n7 { - margin-left: -28px !important; -} -.v-application--is-rtl .ms-n7 { - margin-right: -28px !important; -} -.v-application--is-ltr .ms-n8 { - margin-left: -32px !important; -} -.v-application--is-rtl .ms-n8 { - margin-right: -32px !important; -} -.v-application--is-ltr .ms-n9 { - margin-left: -36px !important; -} -.v-application--is-rtl .ms-n9 { - margin-right: -36px !important; -} -.v-application--is-ltr .ms-n10 { - margin-left: -40px !important; -} -.v-application--is-rtl .ms-n10 { - margin-right: -40px !important; -} -.v-application--is-ltr .ms-n11 { - margin-left: -44px !important; -} -.v-application--is-rtl .ms-n11 { - margin-right: -44px !important; -} -.v-application--is-ltr .ms-n12 { - margin-left: -48px !important; -} -.v-application--is-rtl .ms-n12 { - margin-right: -48px !important; -} -.v-application--is-ltr .ms-n13 { - margin-left: -52px !important; -} -.v-application--is-rtl .ms-n13 { - margin-right: -52px !important; -} -.v-application--is-ltr .ms-n14 { - margin-left: -56px !important; -} -.v-application--is-rtl .ms-n14 { - margin-right: -56px !important; -} -.v-application--is-ltr .ms-n15 { - margin-left: -60px !important; -} -.v-application--is-rtl .ms-n15 { - margin-right: -60px !important; -} -.v-application--is-ltr .ms-n16 { - margin-left: -64px !important; -} -.v-application--is-rtl .ms-n16 { - margin-right: -64px !important; -} -.v-application--is-ltr .me-n1 { - margin-right: -4px !important; -} -.v-application--is-rtl .me-n1 { - margin-left: -4px !important; -} -.v-application--is-ltr .me-n2 { - margin-right: -8px !important; -} -.v-application--is-rtl .me-n2 { - margin-left: -8px !important; -} -.v-application--is-ltr .me-n3 { - margin-right: -12px !important; -} -.v-application--is-rtl .me-n3 { - margin-left: -12px !important; -} -.v-application--is-ltr .me-n4 { - margin-right: -16px !important; -} -.v-application--is-rtl .me-n4 { - margin-left: -16px !important; -} -.v-application--is-ltr .me-n5 { - margin-right: -20px !important; -} -.v-application--is-rtl .me-n5 { - margin-left: -20px !important; -} -.v-application--is-ltr .me-n6 { - margin-right: -24px !important; -} -.v-application--is-rtl .me-n6 { - margin-left: -24px !important; -} -.v-application--is-ltr .me-n7 { - margin-right: -28px !important; -} -.v-application--is-rtl .me-n7 { - margin-left: -28px !important; -} -.v-application--is-ltr .me-n8 { - margin-right: -32px !important; -} -.v-application--is-rtl .me-n8 { - margin-left: -32px !important; -} -.v-application--is-ltr .me-n9 { - margin-right: -36px !important; -} -.v-application--is-rtl .me-n9 { - margin-left: -36px !important; -} -.v-application--is-ltr .me-n10 { - margin-right: -40px !important; -} -.v-application--is-rtl .me-n10 { - margin-left: -40px !important; -} -.v-application--is-ltr .me-n11 { - margin-right: -44px !important; -} -.v-application--is-rtl .me-n11 { - margin-left: -44px !important; -} -.v-application--is-ltr .me-n12 { - margin-right: -48px !important; -} -.v-application--is-rtl .me-n12 { - margin-left: -48px !important; -} -.v-application--is-ltr .me-n13 { - margin-right: -52px !important; -} -.v-application--is-rtl .me-n13 { - margin-left: -52px !important; -} -.v-application--is-ltr .me-n14 { - margin-right: -56px !important; -} -.v-application--is-rtl .me-n14 { - margin-left: -56px !important; -} -.v-application--is-ltr .me-n15 { - margin-right: -60px !important; -} -.v-application--is-rtl .me-n15 { - margin-left: -60px !important; -} -.v-application--is-ltr .me-n16 { - margin-right: -64px !important; -} -.v-application--is-rtl .me-n16 { - margin-left: -64px !important; -} -.v-application .pa-0 { - padding: 0 !important; -} -.v-application .pa-1 { - padding: 4px !important; -} -.v-application .pa-2 { - padding: 8px !important; -} -.v-application .pa-3 { - padding: 12px !important; -} -.v-application .pa-4 { - padding: 16px !important; -} -.v-application .pa-5 { - padding: 20px !important; -} -.v-application .pa-6 { - padding: 24px !important; -} -.v-application .pa-7 { - padding: 28px !important; -} -.v-application .pa-8 { - padding: 32px !important; -} -.v-application .pa-9 { - padding: 36px !important; -} -.v-application .pa-10 { - padding: 40px !important; -} -.v-application .pa-11 { - padding: 44px !important; -} -.v-application .pa-12 { - padding: 48px !important; -} -.v-application .pa-13 { - padding: 52px !important; -} -.v-application .pa-14 { - padding: 56px !important; -} -.v-application .pa-15 { - padding: 60px !important; -} -.v-application .pa-16 { - padding: 64px !important; -} -.v-application .px-0 { - padding-right: 0 !important; - padding-left: 0 !important; -} -.v-application .px-1 { - padding-right: 4px !important; - padding-left: 4px !important; -} -.v-application .px-2 { - padding-right: 8px !important; - padding-left: 8px !important; -} -.v-application .px-3 { - padding-right: 12px !important; - padding-left: 12px !important; -} -.v-application .px-4 { - padding-right: 16px !important; - padding-left: 16px !important; -} -.v-application .px-5 { - padding-right: 20px !important; - padding-left: 20px !important; -} -.v-application .px-6 { - padding-right: 24px !important; - padding-left: 24px !important; -} -.v-application .px-7 { - padding-right: 28px !important; - padding-left: 28px !important; -} -.v-application .px-8 { - padding-right: 32px !important; - padding-left: 32px !important; -} -.v-application .px-9 { - padding-right: 36px !important; - padding-left: 36px !important; -} -.v-application .px-10 { - padding-right: 40px !important; - padding-left: 40px !important; -} -.v-application .px-11 { - padding-right: 44px !important; - padding-left: 44px !important; -} -.v-application .px-12 { - padding-right: 48px !important; - padding-left: 48px !important; -} -.v-application .px-13 { - padding-right: 52px !important; - padding-left: 52px !important; -} -.v-application .px-14 { - padding-right: 56px !important; - padding-left: 56px !important; -} -.v-application .px-15 { - padding-right: 60px !important; - padding-left: 60px !important; -} -.v-application .px-16 { - padding-right: 64px !important; - padding-left: 64px !important; -} -.v-application .py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; -} -.v-application .py-1 { - padding-top: 4px !important; - padding-bottom: 4px !important; -} -.v-application .py-2 { - padding-top: 8px !important; - padding-bottom: 8px !important; -} -.v-application .py-3 { - padding-top: 12px !important; - padding-bottom: 12px !important; -} -.v-application .py-4 { - padding-top: 16px !important; - padding-bottom: 16px !important; -} -.v-application .py-5 { - padding-top: 20px !important; - padding-bottom: 20px !important; -} -.v-application .py-6 { - padding-top: 24px !important; - padding-bottom: 24px !important; -} -.v-application .py-7 { - padding-top: 28px !important; - padding-bottom: 28px !important; -} -.v-application .py-8 { - padding-top: 32px !important; - padding-bottom: 32px !important; -} -.v-application .py-9 { - padding-top: 36px !important; - padding-bottom: 36px !important; -} -.v-application .py-10 { - padding-top: 40px !important; - padding-bottom: 40px !important; -} -.v-application .py-11 { - padding-top: 44px !important; - padding-bottom: 44px !important; -} -.v-application .py-12 { - padding-top: 48px !important; - padding-bottom: 48px !important; -} -.v-application .py-13 { - padding-top: 52px !important; - padding-bottom: 52px !important; -} -.v-application .py-14 { - padding-top: 56px !important; - padding-bottom: 56px !important; -} -.v-application .py-15 { - padding-top: 60px !important; - padding-bottom: 60px !important; -} -.v-application .py-16 { - padding-top: 64px !important; - padding-bottom: 64px !important; -} -.v-application .pt-0 { - padding-top: 0 !important; -} -.v-application .pt-1 { - padding-top: 4px !important; -} -.v-application .pt-2 { - padding-top: 8px !important; -} -.v-application .pt-3 { - padding-top: 12px !important; -} -.v-application .pt-4 { - padding-top: 16px !important; -} -.v-application .pt-5 { - padding-top: 20px !important; -} -.v-application .pt-6 { - padding-top: 24px !important; -} -.v-application .pt-7 { - padding-top: 28px !important; -} -.v-application .pt-8 { - padding-top: 32px !important; -} -.v-application .pt-9 { - padding-top: 36px !important; -} -.v-application .pt-10 { - padding-top: 40px !important; -} -.v-application .pt-11 { - padding-top: 44px !important; -} -.v-application .pt-12 { - padding-top: 48px !important; -} -.v-application .pt-13 { - padding-top: 52px !important; -} -.v-application .pt-14 { - padding-top: 56px !important; -} -.v-application .pt-15 { - padding-top: 60px !important; -} -.v-application .pt-16 { - padding-top: 64px !important; -} -.v-application .pr-0 { - padding-right: 0 !important; -} -.v-application .pr-1 { - padding-right: 4px !important; -} -.v-application .pr-2 { - padding-right: 8px !important; -} -.v-application .pr-3 { - padding-right: 12px !important; -} -.v-application .pr-4 { - padding-right: 16px !important; -} -.v-application .pr-5 { - padding-right: 20px !important; -} -.v-application .pr-6 { - padding-right: 24px !important; -} -.v-application .pr-7 { - padding-right: 28px !important; -} -.v-application .pr-8 { - padding-right: 32px !important; -} -.v-application .pr-9 { - padding-right: 36px !important; -} -.v-application .pr-10 { - padding-right: 40px !important; -} -.v-application .pr-11 { - padding-right: 44px !important; -} -.v-application .pr-12 { - padding-right: 48px !important; -} -.v-application .pr-13 { - padding-right: 52px !important; -} -.v-application .pr-14 { - padding-right: 56px !important; -} -.v-application .pr-15 { - padding-right: 60px !important; -} -.v-application .pr-16 { - padding-right: 64px !important; -} -.v-application .pb-0 { - padding-bottom: 0 !important; -} -.v-application .pb-1 { - padding-bottom: 4px !important; -} -.v-application .pb-2 { - padding-bottom: 8px !important; -} -.v-application .pb-3 { - padding-bottom: 12px !important; -} -.v-application .pb-4 { - padding-bottom: 16px !important; -} -.v-application .pb-5 { - padding-bottom: 20px !important; -} -.v-application .pb-6 { - padding-bottom: 24px !important; -} -.v-application .pb-7 { - padding-bottom: 28px !important; -} -.v-application .pb-8 { - padding-bottom: 32px !important; -} -.v-application .pb-9 { - padding-bottom: 36px !important; -} -.v-application .pb-10 { - padding-bottom: 40px !important; -} -.v-application .pb-11 { - padding-bottom: 44px !important; -} -.v-application .pb-12 { - padding-bottom: 48px !important; -} -.v-application .pb-13 { - padding-bottom: 52px !important; -} -.v-application .pb-14 { - padding-bottom: 56px !important; -} -.v-application .pb-15 { - padding-bottom: 60px !important; -} -.v-application .pb-16 { - padding-bottom: 64px !important; -} -.v-application .pl-0 { - padding-left: 0 !important; -} -.v-application .pl-1 { - padding-left: 4px !important; -} -.v-application .pl-2 { - padding-left: 8px !important; -} -.v-application .pl-3 { - padding-left: 12px !important; -} -.v-application .pl-4 { - padding-left: 16px !important; -} -.v-application .pl-5 { - padding-left: 20px !important; -} -.v-application .pl-6 { - padding-left: 24px !important; -} -.v-application .pl-7 { - padding-left: 28px !important; -} -.v-application .pl-8 { - padding-left: 32px !important; -} -.v-application .pl-9 { - padding-left: 36px !important; -} -.v-application .pl-10 { - padding-left: 40px !important; -} -.v-application .pl-11 { - padding-left: 44px !important; -} -.v-application .pl-12 { - padding-left: 48px !important; -} -.v-application .pl-13 { - padding-left: 52px !important; -} -.v-application .pl-14 { - padding-left: 56px !important; -} -.v-application .pl-15 { - padding-left: 60px !important; -} -.v-application .pl-16 { - padding-left: 64px !important; -} -.v-application--is-ltr .ps-0 { - padding-left: 0 !important; -} -.v-application--is-rtl .ps-0 { - padding-right: 0 !important; -} -.v-application--is-ltr .ps-1 { - padding-left: 4px !important; -} -.v-application--is-rtl .ps-1 { - padding-right: 4px !important; -} -.v-application--is-ltr .ps-2 { - padding-left: 8px !important; -} -.v-application--is-rtl .ps-2 { - padding-right: 8px !important; -} -.v-application--is-ltr .ps-3 { - padding-left: 12px !important; -} -.v-application--is-rtl .ps-3 { - padding-right: 12px !important; -} -.v-application--is-ltr .ps-4 { - padding-left: 16px !important; -} -.v-application--is-rtl .ps-4 { - padding-right: 16px !important; -} -.v-application--is-ltr .ps-5 { - padding-left: 20px !important; -} -.v-application--is-rtl .ps-5 { - padding-right: 20px !important; -} -.v-application--is-ltr .ps-6 { - padding-left: 24px !important; -} -.v-application--is-rtl .ps-6 { - padding-right: 24px !important; -} -.v-application--is-ltr .ps-7 { - padding-left: 28px !important; -} -.v-application--is-rtl .ps-7 { - padding-right: 28px !important; -} -.v-application--is-ltr .ps-8 { - padding-left: 32px !important; -} -.v-application--is-rtl .ps-8 { - padding-right: 32px !important; -} -.v-application--is-ltr .ps-9 { - padding-left: 36px !important; -} -.v-application--is-rtl .ps-9 { - padding-right: 36px !important; -} -.v-application--is-ltr .ps-10 { - padding-left: 40px !important; -} -.v-application--is-rtl .ps-10 { - padding-right: 40px !important; -} -.v-application--is-ltr .ps-11 { - padding-left: 44px !important; -} -.v-application--is-rtl .ps-11 { - padding-right: 44px !important; -} -.v-application--is-ltr .ps-12 { - padding-left: 48px !important; -} -.v-application--is-rtl .ps-12 { - padding-right: 48px !important; -} -.v-application--is-ltr .ps-13 { - padding-left: 52px !important; -} -.v-application--is-rtl .ps-13 { - padding-right: 52px !important; -} -.v-application--is-ltr .ps-14 { - padding-left: 56px !important; -} -.v-application--is-rtl .ps-14 { - padding-right: 56px !important; -} -.v-application--is-ltr .ps-15 { - padding-left: 60px !important; -} -.v-application--is-rtl .ps-15 { - padding-right: 60px !important; -} -.v-application--is-ltr .ps-16 { - padding-left: 64px !important; -} -.v-application--is-rtl .ps-16 { - padding-right: 64px !important; -} -.v-application--is-ltr .pe-0 { - padding-right: 0 !important; -} -.v-application--is-rtl .pe-0 { - padding-left: 0 !important; -} -.v-application--is-ltr .pe-1 { - padding-right: 4px !important; -} -.v-application--is-rtl .pe-1 { - padding-left: 4px !important; -} -.v-application--is-ltr .pe-2 { - padding-right: 8px !important; -} -.v-application--is-rtl .pe-2 { - padding-left: 8px !important; -} -.v-application--is-ltr .pe-3 { - padding-right: 12px !important; -} -.v-application--is-rtl .pe-3 { - padding-left: 12px !important; -} -.v-application--is-ltr .pe-4 { - padding-right: 16px !important; -} -.v-application--is-rtl .pe-4 { - padding-left: 16px !important; -} -.v-application--is-ltr .pe-5 { - padding-right: 20px !important; -} -.v-application--is-rtl .pe-5 { - padding-left: 20px !important; -} -.v-application--is-ltr .pe-6 { - padding-right: 24px !important; -} -.v-application--is-rtl .pe-6 { - padding-left: 24px !important; -} -.v-application--is-ltr .pe-7 { - padding-right: 28px !important; -} -.v-application--is-rtl .pe-7 { - padding-left: 28px !important; -} -.v-application--is-ltr .pe-8 { - padding-right: 32px !important; -} -.v-application--is-rtl .pe-8 { - padding-left: 32px !important; -} -.v-application--is-ltr .pe-9 { - padding-right: 36px !important; -} -.v-application--is-rtl .pe-9 { - padding-left: 36px !important; -} -.v-application--is-ltr .pe-10 { - padding-right: 40px !important; -} -.v-application--is-rtl .pe-10 { - padding-left: 40px !important; -} -.v-application--is-ltr .pe-11 { - padding-right: 44px !important; -} -.v-application--is-rtl .pe-11 { - padding-left: 44px !important; -} -.v-application--is-ltr .pe-12 { - padding-right: 48px !important; -} -.v-application--is-rtl .pe-12 { - padding-left: 48px !important; -} -.v-application--is-ltr .pe-13 { - padding-right: 52px !important; -} -.v-application--is-rtl .pe-13 { - padding-left: 52px !important; -} -.v-application--is-ltr .pe-14 { - padding-right: 56px !important; -} -.v-application--is-rtl .pe-14 { - padding-left: 56px !important; -} -.v-application--is-ltr .pe-15 { - padding-right: 60px !important; -} -.v-application--is-rtl .pe-15 { - padding-left: 60px !important; -} -.v-application--is-ltr .pe-16 { - padding-right: 64px !important; -} -.v-application--is-rtl .pe-16 { - padding-left: 64px !important; -} -.v-application .rounded-0 { - border-radius: 0 !important; -} -.v-application .rounded-sm { - border-radius: 2px !important; -} -.v-application .rounded { - border-radius: 4px !important; -} -.v-application .rounded-lg { - border-radius: 8px !important; -} -.v-application .rounded-xl { - border-radius: 24px !important; -} -.v-application .rounded-pill { - border-radius: 9999px !important; -} -.v-application .rounded-circle { - border-radius: 50% !important; -} -.v-application .rounded-t-0 { - border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; -} -.v-application .rounded-t-sm { - border-top-left-radius: 2px !important; - border-top-right-radius: 2px !important; -} -.v-application .rounded-t { - border-top-left-radius: 4px !important; - border-top-right-radius: 4px !important; -} -.v-application .rounded-t-lg { - border-top-left-radius: 8px !important; - border-top-right-radius: 8px !important; -} -.v-application .rounded-t-xl { - border-top-left-radius: 24px !important; - border-top-right-radius: 24px !important; -} -.v-application .rounded-t-pill { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; -} -.v-application .rounded-t-circle { - border-top-left-radius: 50% !important; - border-top-right-radius: 50% !important; -} -.v-application .rounded-r-0 { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; -} -.v-application .rounded-r-sm { - border-top-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} -.v-application .rounded-r { - border-top-right-radius: 4px !important; - border-bottom-right-radius: 4px !important; -} -.v-application .rounded-r-lg { - border-top-right-radius: 8px !important; - border-bottom-right-radius: 8px !important; -} -.v-application .rounded-r-xl { - border-top-right-radius: 24px !important; - border-bottom-right-radius: 24px !important; -} -.v-application .rounded-r-pill { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; -} -.v-application .rounded-r-circle { - border-top-right-radius: 50% !important; - border-bottom-right-radius: 50% !important; -} -.v-application .rounded-b-0 { - border-bottom-left-radius: 0 !important; - border-bottom-right-radius: 0 !important; -} -.v-application .rounded-b-sm { - border-bottom-left-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} -.v-application .rounded-b { - border-bottom-left-radius: 4px !important; - border-bottom-right-radius: 4px !important; -} -.v-application .rounded-b-lg { - border-bottom-left-radius: 8px !important; - border-bottom-right-radius: 8px !important; -} -.v-application .rounded-b-xl { - border-bottom-left-radius: 24px !important; - border-bottom-right-radius: 24px !important; -} -.v-application .rounded-b-pill { - border-bottom-left-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; -} -.v-application .rounded-b-circle { - border-bottom-left-radius: 50% !important; - border-bottom-right-radius: 50% !important; -} -.v-application .rounded-l-0 { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; -} -.v-application .rounded-l-sm { - border-top-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -.v-application .rounded-l { - border-top-left-radius: 4px !important; - border-bottom-left-radius: 4px !important; -} -.v-application .rounded-l-lg { - border-top-left-radius: 8px !important; - border-bottom-left-radius: 8px !important; -} -.v-application .rounded-l-xl { - border-top-left-radius: 24px !important; - border-bottom-left-radius: 24px !important; -} -.v-application .rounded-l-pill { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; -} -.v-application .rounded-l-circle { - border-top-left-radius: 50% !important; - border-bottom-left-radius: 50% !important; -} -.v-application .rounded-tl-0 { - border-top-left-radius: 0 !important; -} -.v-application .rounded-tl-sm { - border-top-left-radius: 2px !important; -} -.v-application .rounded-tl { - border-top-left-radius: 4px !important; -} -.v-application .rounded-tl-lg { - border-top-left-radius: 8px !important; -} -.v-application .rounded-tl-xl { - border-top-left-radius: 24px !important; -} -.v-application .rounded-tl-pill { - border-top-left-radius: 9999px !important; -} -.v-application .rounded-tl-circle { - border-top-left-radius: 50% !important; -} -.v-application .rounded-tr-0 { - border-top-right-radius: 0 !important; -} -.v-application .rounded-tr-sm { - border-top-right-radius: 2px !important; -} -.v-application .rounded-tr { - border-top-right-radius: 4px !important; -} -.v-application .rounded-tr-lg { - border-top-right-radius: 8px !important; -} -.v-application .rounded-tr-xl { - border-top-right-radius: 24px !important; -} -.v-application .rounded-tr-pill { - border-top-right-radius: 9999px !important; -} -.v-application .rounded-tr-circle { - border-top-right-radius: 50% !important; -} -.v-application .rounded-br-0 { - border-bottom-right-radius: 0 !important; -} -.v-application .rounded-br-sm { - border-bottom-right-radius: 2px !important; -} -.v-application .rounded-br { - border-bottom-right-radius: 4px !important; -} -.v-application .rounded-br-lg { - border-bottom-right-radius: 8px !important; -} -.v-application .rounded-br-xl { - border-bottom-right-radius: 24px !important; -} -.v-application .rounded-br-pill { - border-bottom-right-radius: 9999px !important; -} -.v-application .rounded-br-circle { - border-bottom-right-radius: 50% !important; -} -.v-application .rounded-bl-0 { - border-bottom-left-radius: 0 !important; -} -.v-application .rounded-bl-sm { - border-bottom-left-radius: 2px !important; -} -.v-application .rounded-bl { - border-bottom-left-radius: 4px !important; -} -.v-application .rounded-bl-lg { - border-bottom-left-radius: 8px !important; -} -.v-application .rounded-bl-xl { - border-bottom-left-radius: 24px !important; -} -.v-application .rounded-bl-pill { - border-bottom-left-radius: 9999px !important; -} -.v-application .rounded-bl-circle { - border-bottom-left-radius: 50% !important; -} -.v-application .text-left { - text-align: left !important; -} -.v-application .text-right { - text-align: right !important; -} -.v-application .text-center { - text-align: center !important; -} -.v-application .text-justify { - text-align: justify !important; -} -.v-application .text-start { - text-align: start !important; -} -.v-application .text-end { - text-align: end !important; -} -.v-application .text-decoration-line-through { - text-decoration: line-through !important; -} -.v-application .text-decoration-none { - text-decoration: none !important; -} -.v-application .text-decoration-overline { - text-decoration: overline !important; -} -.v-application .text-decoration-underline { - text-decoration: underline !important; -} -.v-application .text-wrap { - white-space: normal !important; -} -.v-application .text-no-wrap { - white-space: nowrap !important; -} -.v-application .text-break { - overflow-wrap: break-word !important; - word-break: break-word !important; -} -.v-application .text-truncate { - white-space: nowrap !important; - overflow: hidden !important; - text-overflow: ellipsis !important; -} -.v-application .text-none { - text-transform: none !important; -} -.v-application .text-capitalize { - text-transform: capitalize !important; -} -.v-application .text-lowercase { - text-transform: lowercase !important; -} -.v-application .text-uppercase { - text-transform: uppercase !important; -} -.v-application .text-h1 { - font-size: 6rem !important; - line-height: 6rem; - letter-spacing: -0.015625em !important; -} -.v-application .text-h1, -.v-application .text-h2 { - font-weight: 300; - font-family: Roboto, sans-serif !important; -} -.v-application .text-h2 { - font-size: 3.75rem !important; - line-height: 3.75rem; - letter-spacing: -0.0083333333em !important; -} -.v-application .text-h3 { - font-size: 3rem !important; - line-height: 3.125rem; - letter-spacing: normal !important; -} -.v-application .text-h3, -.v-application .text-h4 { - font-weight: 400; - font-family: Roboto, sans-serif !important; -} -.v-application .text-h4 { - font-size: 2.125rem !important; - line-height: 2.5rem; - letter-spacing: 0.0073529412em !important; -} -.v-application .text-h5 { - font-size: 1.5rem !important; - font-weight: 400; - letter-spacing: normal !important; -} -.v-application .text-h5, -.v-application .text-h6 { - line-height: 2rem; - font-family: Roboto, sans-serif !important; -} -.v-application .text-h6 { - font-size: 1.25rem !important; - font-weight: 500; - letter-spacing: 0.0125em !important; -} -.v-application .text-subtitle-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.75rem; - letter-spacing: 0.009375em !important; - font-family: Roboto, sans-serif !important; -} -.v-application .text-subtitle-2 { - font-size: 0.875rem !important; - font-weight: 500; - line-height: 1.375rem; - letter-spacing: 0.0071428571em !important; - font-family: Roboto, sans-serif !important; -} -.v-application .text-body-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.5rem; - letter-spacing: 0.03125em !important; - font-family: Roboto, sans-serif !important; -} -.v-application .text-body-2 { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0178571429em !important; -} -.v-application .text-body-2, -.v-application .text-button { - font-size: 0.875rem !important; - font-family: Roboto, sans-serif !important; -} -.v-application .text-button { - font-weight: 500; - line-height: 2.25rem; - letter-spacing: 0.0892857143em !important; - text-transform: uppercase !important; -} -.v-application .text-caption { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0333333333em !important; -} -.v-application .text-caption, -.v-application .text-overline { - font-size: 0.75rem !important; - font-family: Roboto, sans-serif !important; -} -.v-application .text-overline { - font-weight: 500; - line-height: 2rem; - letter-spacing: 0.1666666667em !important; - text-transform: uppercase !important; -} -@media (min-width: 600px) { - .v-application .d-sm-none { - display: none !important; - } - .v-application .d-sm-inline { - display: inline !important; - } - .v-application .d-sm-inline-block { - display: inline-block !important; - } - .v-application .d-sm-block { - display: block !important; - } - .v-application .d-sm-table { - display: table !important; - } - .v-application .d-sm-table-row { - display: table-row !important; - } - .v-application .d-sm-table-cell { - display: table-cell !important; - } - .v-application .d-sm-flex { - display: flex !important; - } - .v-application .d-sm-inline-flex { - display: inline-flex !important; - } - .v-application .float-sm-none { - float: none !important; - } - .v-application .float-sm-left { - float: left !important; - } - .v-application .float-sm-right { - float: right !important; - } - .v-application .flex-sm-fill { - flex: 1 1 auto !important; - } - .v-application .flex-sm-row { - flex-direction: row !important; - } - .v-application .flex-sm-column { - flex-direction: column !important; - } - .v-application .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - .v-application .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - .v-application .flex-sm-grow-0 { - flex-grow: 0 !important; - } - .v-application .flex-sm-grow-1 { - flex-grow: 1 !important; - } - .v-application .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - .v-application .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - .v-application .flex-sm-wrap { - flex-wrap: wrap !important; - } - .v-application .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - .v-application .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .v-application .justify-sm-start { - justify-content: flex-start !important; - } - .v-application .justify-sm-end { - justify-content: flex-end !important; - } - .v-application .justify-sm-center { - justify-content: center !important; - } - .v-application .justify-sm-space-between { - justify-content: space-between !important; - } - .v-application .justify-sm-space-around { - justify-content: space-around !important; - } - .v-application .align-sm-start { - align-items: flex-start !important; - } - .v-application .align-sm-end { - align-items: flex-end !important; - } - .v-application .align-sm-center { - align-items: center !important; - } - .v-application .align-sm-baseline { - align-items: baseline !important; - } - .v-application .align-sm-stretch { - align-items: stretch !important; - } - .v-application .align-content-sm-start { - align-content: flex-start !important; - } - .v-application .align-content-sm-end { - align-content: flex-end !important; - } - .v-application .align-content-sm-center { - align-content: center !important; - } - .v-application .align-content-sm-space-between { - align-content: space-between !important; - } - .v-application .align-content-sm-space-around { - align-content: space-around !important; - } - .v-application .align-content-sm-stretch { - align-content: stretch !important; - } - .v-application .align-self-sm-auto { - align-self: auto !important; - } - .v-application .align-self-sm-start { - align-self: flex-start !important; - } - .v-application .align-self-sm-end { - align-self: flex-end !important; - } - .v-application .align-self-sm-center { - align-self: center !important; - } - .v-application .align-self-sm-baseline { - align-self: baseline !important; - } - .v-application .align-self-sm-stretch { - align-self: stretch !important; - } - .v-application .order-sm-first { - order: -1 !important; - } - .v-application .order-sm-0 { - order: 0 !important; - } - .v-application .order-sm-1 { - order: 1 !important; - } - .v-application .order-sm-2 { - order: 2 !important; - } - .v-application .order-sm-3 { - order: 3 !important; - } - .v-application .order-sm-4 { - order: 4 !important; - } - .v-application .order-sm-5 { - order: 5 !important; - } - .v-application .order-sm-6 { - order: 6 !important; - } - .v-application .order-sm-7 { - order: 7 !important; - } - .v-application .order-sm-8 { - order: 8 !important; - } - .v-application .order-sm-9 { - order: 9 !important; - } - .v-application .order-sm-10 { - order: 10 !important; - } - .v-application .order-sm-11 { - order: 11 !important; - } - .v-application .order-sm-12 { - order: 12 !important; - } - .v-application .order-sm-last { - order: 13 !important; - } - .v-application .ma-sm-0 { - margin: 0 !important; - } - .v-application .ma-sm-1 { - margin: 4px !important; - } - .v-application .ma-sm-2 { - margin: 8px !important; - } - .v-application .ma-sm-3 { - margin: 12px !important; - } - .v-application .ma-sm-4 { - margin: 16px !important; - } - .v-application .ma-sm-5 { - margin: 20px !important; - } - .v-application .ma-sm-6 { - margin: 24px !important; - } - .v-application .ma-sm-7 { - margin: 28px !important; - } - .v-application .ma-sm-8 { - margin: 32px !important; - } - .v-application .ma-sm-9 { - margin: 36px !important; - } - .v-application .ma-sm-10 { - margin: 40px !important; - } - .v-application .ma-sm-11 { - margin: 44px !important; - } - .v-application .ma-sm-12 { - margin: 48px !important; - } - .v-application .ma-sm-13 { - margin: 52px !important; - } - .v-application .ma-sm-14 { - margin: 56px !important; - } - .v-application .ma-sm-15 { - margin: 60px !important; - } - .v-application .ma-sm-16 { - margin: 64px !important; - } - .v-application .ma-sm-auto { - margin: auto !important; - } - .v-application .mx-sm-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - .v-application .mx-sm-1 { - margin-right: 4px !important; - margin-left: 4px !important; - } - .v-application .mx-sm-2 { - margin-right: 8px !important; - margin-left: 8px !important; - } - .v-application .mx-sm-3 { - margin-right: 12px !important; - margin-left: 12px !important; - } - .v-application .mx-sm-4 { - margin-right: 16px !important; - margin-left: 16px !important; - } - .v-application .mx-sm-5 { - margin-right: 20px !important; - margin-left: 20px !important; - } - .v-application .mx-sm-6 { - margin-right: 24px !important; - margin-left: 24px !important; - } - .v-application .mx-sm-7 { - margin-right: 28px !important; - margin-left: 28px !important; - } - .v-application .mx-sm-8 { - margin-right: 32px !important; - margin-left: 32px !important; - } - .v-application .mx-sm-9 { - margin-right: 36px !important; - margin-left: 36px !important; - } - .v-application .mx-sm-10 { - margin-right: 40px !important; - margin-left: 40px !important; - } - .v-application .mx-sm-11 { - margin-right: 44px !important; - margin-left: 44px !important; - } - .v-application .mx-sm-12 { - margin-right: 48px !important; - margin-left: 48px !important; - } - .v-application .mx-sm-13 { - margin-right: 52px !important; - margin-left: 52px !important; - } - .v-application .mx-sm-14 { - margin-right: 56px !important; - margin-left: 56px !important; - } - .v-application .mx-sm-15 { - margin-right: 60px !important; - margin-left: 60px !important; - } - .v-application .mx-sm-16 { - margin-right: 64px !important; - margin-left: 64px !important; - } - .v-application .mx-sm-auto { - margin-right: auto !important; - margin-left: auto !important; - } - .v-application .my-sm-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .v-application .my-sm-1 { - margin-top: 4px !important; - margin-bottom: 4px !important; - } - .v-application .my-sm-2 { - margin-top: 8px !important; - margin-bottom: 8px !important; - } - .v-application .my-sm-3 { - margin-top: 12px !important; - margin-bottom: 12px !important; - } - .v-application .my-sm-4 { - margin-top: 16px !important; - margin-bottom: 16px !important; - } - .v-application .my-sm-5 { - margin-top: 20px !important; - margin-bottom: 20px !important; - } - .v-application .my-sm-6 { - margin-top: 24px !important; - margin-bottom: 24px !important; - } - .v-application .my-sm-7 { - margin-top: 28px !important; - margin-bottom: 28px !important; - } - .v-application .my-sm-8 { - margin-top: 32px !important; - margin-bottom: 32px !important; - } - .v-application .my-sm-9 { - margin-top: 36px !important; - margin-bottom: 36px !important; - } - .v-application .my-sm-10 { - margin-top: 40px !important; - margin-bottom: 40px !important; - } - .v-application .my-sm-11 { - margin-top: 44px !important; - margin-bottom: 44px !important; - } - .v-application .my-sm-12 { - margin-top: 48px !important; - margin-bottom: 48px !important; - } - .v-application .my-sm-13 { - margin-top: 52px !important; - margin-bottom: 52px !important; - } - .v-application .my-sm-14 { - margin-top: 56px !important; - margin-bottom: 56px !important; - } - .v-application .my-sm-15 { - margin-top: 60px !important; - margin-bottom: 60px !important; - } - .v-application .my-sm-16 { - margin-top: 64px !important; - margin-bottom: 64px !important; - } - .v-application .my-sm-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .v-application .mt-sm-0 { - margin-top: 0 !important; - } - .v-application .mt-sm-1 { - margin-top: 4px !important; - } - .v-application .mt-sm-2 { - margin-top: 8px !important; - } - .v-application .mt-sm-3 { - margin-top: 12px !important; - } - .v-application .mt-sm-4 { - margin-top: 16px !important; - } - .v-application .mt-sm-5 { - margin-top: 20px !important; - } - .v-application .mt-sm-6 { - margin-top: 24px !important; - } - .v-application .mt-sm-7 { - margin-top: 28px !important; - } - .v-application .mt-sm-8 { - margin-top: 32px !important; - } - .v-application .mt-sm-9 { - margin-top: 36px !important; - } - .v-application .mt-sm-10 { - margin-top: 40px !important; - } - .v-application .mt-sm-11 { - margin-top: 44px !important; - } - .v-application .mt-sm-12 { - margin-top: 48px !important; - } - .v-application .mt-sm-13 { - margin-top: 52px !important; - } - .v-application .mt-sm-14 { - margin-top: 56px !important; - } - .v-application .mt-sm-15 { - margin-top: 60px !important; - } - .v-application .mt-sm-16 { - margin-top: 64px !important; - } - .v-application .mt-sm-auto { - margin-top: auto !important; - } - .v-application .mr-sm-0 { - margin-right: 0 !important; - } - .v-application .mr-sm-1 { - margin-right: 4px !important; - } - .v-application .mr-sm-2 { - margin-right: 8px !important; - } - .v-application .mr-sm-3 { - margin-right: 12px !important; - } - .v-application .mr-sm-4 { - margin-right: 16px !important; - } - .v-application .mr-sm-5 { - margin-right: 20px !important; - } - .v-application .mr-sm-6 { - margin-right: 24px !important; - } - .v-application .mr-sm-7 { - margin-right: 28px !important; - } - .v-application .mr-sm-8 { - margin-right: 32px !important; - } - .v-application .mr-sm-9 { - margin-right: 36px !important; - } - .v-application .mr-sm-10 { - margin-right: 40px !important; - } - .v-application .mr-sm-11 { - margin-right: 44px !important; - } - .v-application .mr-sm-12 { - margin-right: 48px !important; - } - .v-application .mr-sm-13 { - margin-right: 52px !important; - } - .v-application .mr-sm-14 { - margin-right: 56px !important; - } - .v-application .mr-sm-15 { - margin-right: 60px !important; - } - .v-application .mr-sm-16 { - margin-right: 64px !important; - } - .v-application .mr-sm-auto { - margin-right: auto !important; - } - .v-application .mb-sm-0 { - margin-bottom: 0 !important; - } - .v-application .mb-sm-1 { - margin-bottom: 4px !important; - } - .v-application .mb-sm-2 { - margin-bottom: 8px !important; - } - .v-application .mb-sm-3 { - margin-bottom: 12px !important; - } - .v-application .mb-sm-4 { - margin-bottom: 16px !important; - } - .v-application .mb-sm-5 { - margin-bottom: 20px !important; - } - .v-application .mb-sm-6 { - margin-bottom: 24px !important; - } - .v-application .mb-sm-7 { - margin-bottom: 28px !important; - } - .v-application .mb-sm-8 { - margin-bottom: 32px !important; - } - .v-application .mb-sm-9 { - margin-bottom: 36px !important; - } - .v-application .mb-sm-10 { - margin-bottom: 40px !important; - } - .v-application .mb-sm-11 { - margin-bottom: 44px !important; - } - .v-application .mb-sm-12 { - margin-bottom: 48px !important; - } - .v-application .mb-sm-13 { - margin-bottom: 52px !important; - } - .v-application .mb-sm-14 { - margin-bottom: 56px !important; - } - .v-application .mb-sm-15 { - margin-bottom: 60px !important; - } - .v-application .mb-sm-16 { - margin-bottom: 64px !important; - } - .v-application .mb-sm-auto { - margin-bottom: auto !important; - } - .v-application .ml-sm-0 { - margin-left: 0 !important; - } - .v-application .ml-sm-1 { - margin-left: 4px !important; - } - .v-application .ml-sm-2 { - margin-left: 8px !important; - } - .v-application .ml-sm-3 { - margin-left: 12px !important; - } - .v-application .ml-sm-4 { - margin-left: 16px !important; - } - .v-application .ml-sm-5 { - margin-left: 20px !important; - } - .v-application .ml-sm-6 { - margin-left: 24px !important; - } - .v-application .ml-sm-7 { - margin-left: 28px !important; - } - .v-application .ml-sm-8 { - margin-left: 32px !important; - } - .v-application .ml-sm-9 { - margin-left: 36px !important; - } - .v-application .ml-sm-10 { - margin-left: 40px !important; - } - .v-application .ml-sm-11 { - margin-left: 44px !important; - } - .v-application .ml-sm-12 { - margin-left: 48px !important; - } - .v-application .ml-sm-13 { - margin-left: 52px !important; - } - .v-application .ml-sm-14 { - margin-left: 56px !important; - } - .v-application .ml-sm-15 { - margin-left: 60px !important; - } - .v-application .ml-sm-16 { - margin-left: 64px !important; - } - .v-application .ml-sm-auto { - margin-left: auto !important; - } - .v-application--is-ltr .ms-sm-0 { - margin-left: 0 !important; - } - .v-application--is-rtl .ms-sm-0 { - margin-right: 0 !important; - } - .v-application--is-ltr .ms-sm-1 { - margin-left: 4px !important; - } - .v-application--is-rtl .ms-sm-1 { - margin-right: 4px !important; - } - .v-application--is-ltr .ms-sm-2 { - margin-left: 8px !important; - } - .v-application--is-rtl .ms-sm-2 { - margin-right: 8px !important; - } - .v-application--is-ltr .ms-sm-3 { - margin-left: 12px !important; - } - .v-application--is-rtl .ms-sm-3 { - margin-right: 12px !important; - } - .v-application--is-ltr .ms-sm-4 { - margin-left: 16px !important; - } - .v-application--is-rtl .ms-sm-4 { - margin-right: 16px !important; - } - .v-application--is-ltr .ms-sm-5 { - margin-left: 20px !important; - } - .v-application--is-rtl .ms-sm-5 { - margin-right: 20px !important; - } - .v-application--is-ltr .ms-sm-6 { - margin-left: 24px !important; - } - .v-application--is-rtl .ms-sm-6 { - margin-right: 24px !important; - } - .v-application--is-ltr .ms-sm-7 { - margin-left: 28px !important; - } - .v-application--is-rtl .ms-sm-7 { - margin-right: 28px !important; - } - .v-application--is-ltr .ms-sm-8 { - margin-left: 32px !important; - } - .v-application--is-rtl .ms-sm-8 { - margin-right: 32px !important; - } - .v-application--is-ltr .ms-sm-9 { - margin-left: 36px !important; - } - .v-application--is-rtl .ms-sm-9 { - margin-right: 36px !important; - } - .v-application--is-ltr .ms-sm-10 { - margin-left: 40px !important; - } - .v-application--is-rtl .ms-sm-10 { - margin-right: 40px !important; - } - .v-application--is-ltr .ms-sm-11 { - margin-left: 44px !important; - } - .v-application--is-rtl .ms-sm-11 { - margin-right: 44px !important; - } - .v-application--is-ltr .ms-sm-12 { - margin-left: 48px !important; - } - .v-application--is-rtl .ms-sm-12 { - margin-right: 48px !important; - } - .v-application--is-ltr .ms-sm-13 { - margin-left: 52px !important; - } - .v-application--is-rtl .ms-sm-13 { - margin-right: 52px !important; - } - .v-application--is-ltr .ms-sm-14 { - margin-left: 56px !important; - } - .v-application--is-rtl .ms-sm-14 { - margin-right: 56px !important; - } - .v-application--is-ltr .ms-sm-15 { - margin-left: 60px !important; - } - .v-application--is-rtl .ms-sm-15 { - margin-right: 60px !important; - } - .v-application--is-ltr .ms-sm-16 { - margin-left: 64px !important; - } - .v-application--is-rtl .ms-sm-16 { - margin-right: 64px !important; - } - .v-application--is-ltr .ms-sm-auto { - margin-left: auto !important; - } - .v-application--is-rtl .ms-sm-auto { - margin-right: auto !important; - } - .v-application--is-ltr .me-sm-0 { - margin-right: 0 !important; - } - .v-application--is-rtl .me-sm-0 { - margin-left: 0 !important; - } - .v-application--is-ltr .me-sm-1 { - margin-right: 4px !important; - } - .v-application--is-rtl .me-sm-1 { - margin-left: 4px !important; - } - .v-application--is-ltr .me-sm-2 { - margin-right: 8px !important; - } - .v-application--is-rtl .me-sm-2 { - margin-left: 8px !important; - } - .v-application--is-ltr .me-sm-3 { - margin-right: 12px !important; - } - .v-application--is-rtl .me-sm-3 { - margin-left: 12px !important; - } - .v-application--is-ltr .me-sm-4 { - margin-right: 16px !important; - } - .v-application--is-rtl .me-sm-4 { - margin-left: 16px !important; - } - .v-application--is-ltr .me-sm-5 { - margin-right: 20px !important; - } - .v-application--is-rtl .me-sm-5 { - margin-left: 20px !important; - } - .v-application--is-ltr .me-sm-6 { - margin-right: 24px !important; - } - .v-application--is-rtl .me-sm-6 { - margin-left: 24px !important; - } - .v-application--is-ltr .me-sm-7 { - margin-right: 28px !important; - } - .v-application--is-rtl .me-sm-7 { - margin-left: 28px !important; - } - .v-application--is-ltr .me-sm-8 { - margin-right: 32px !important; - } - .v-application--is-rtl .me-sm-8 { - margin-left: 32px !important; - } - .v-application--is-ltr .me-sm-9 { - margin-right: 36px !important; - } - .v-application--is-rtl .me-sm-9 { - margin-left: 36px !important; - } - .v-application--is-ltr .me-sm-10 { - margin-right: 40px !important; - } - .v-application--is-rtl .me-sm-10 { - margin-left: 40px !important; - } - .v-application--is-ltr .me-sm-11 { - margin-right: 44px !important; - } - .v-application--is-rtl .me-sm-11 { - margin-left: 44px !important; - } - .v-application--is-ltr .me-sm-12 { - margin-right: 48px !important; - } - .v-application--is-rtl .me-sm-12 { - margin-left: 48px !important; - } - .v-application--is-ltr .me-sm-13 { - margin-right: 52px !important; - } - .v-application--is-rtl .me-sm-13 { - margin-left: 52px !important; - } - .v-application--is-ltr .me-sm-14 { - margin-right: 56px !important; - } - .v-application--is-rtl .me-sm-14 { - margin-left: 56px !important; - } - .v-application--is-ltr .me-sm-15 { - margin-right: 60px !important; - } - .v-application--is-rtl .me-sm-15 { - margin-left: 60px !important; - } - .v-application--is-ltr .me-sm-16 { - margin-right: 64px !important; - } - .v-application--is-rtl .me-sm-16 { - margin-left: 64px !important; - } - .v-application--is-ltr .me-sm-auto { - margin-right: auto !important; - } - .v-application--is-rtl .me-sm-auto { - margin-left: auto !important; - } - .v-application .ma-sm-n1 { - margin: -4px !important; - } - .v-application .ma-sm-n2 { - margin: -8px !important; - } - .v-application .ma-sm-n3 { - margin: -12px !important; - } - .v-application .ma-sm-n4 { - margin: -16px !important; - } - .v-application .ma-sm-n5 { - margin: -20px !important; - } - .v-application .ma-sm-n6 { - margin: -24px !important; - } - .v-application .ma-sm-n7 { - margin: -28px !important; - } - .v-application .ma-sm-n8 { - margin: -32px !important; - } - .v-application .ma-sm-n9 { - margin: -36px !important; - } - .v-application .ma-sm-n10 { - margin: -40px !important; - } - .v-application .ma-sm-n11 { - margin: -44px !important; - } - .v-application .ma-sm-n12 { - margin: -48px !important; - } - .v-application .ma-sm-n13 { - margin: -52px !important; - } - .v-application .ma-sm-n14 { - margin: -56px !important; - } - .v-application .ma-sm-n15 { - margin: -60px !important; - } - .v-application .ma-sm-n16 { - margin: -64px !important; - } - .v-application .mx-sm-n1 { - margin-right: -4px !important; - margin-left: -4px !important; - } - .v-application .mx-sm-n2 { - margin-right: -8px !important; - margin-left: -8px !important; - } - .v-application .mx-sm-n3 { - margin-right: -12px !important; - margin-left: -12px !important; - } - .v-application .mx-sm-n4 { - margin-right: -16px !important; - margin-left: -16px !important; - } - .v-application .mx-sm-n5 { - margin-right: -20px !important; - margin-left: -20px !important; - } - .v-application .mx-sm-n6 { - margin-right: -24px !important; - margin-left: -24px !important; - } - .v-application .mx-sm-n7 { - margin-right: -28px !important; - margin-left: -28px !important; - } - .v-application .mx-sm-n8 { - margin-right: -32px !important; - margin-left: -32px !important; - } - .v-application .mx-sm-n9 { - margin-right: -36px !important; - margin-left: -36px !important; - } - .v-application .mx-sm-n10 { - margin-right: -40px !important; - margin-left: -40px !important; - } - .v-application .mx-sm-n11 { - margin-right: -44px !important; - margin-left: -44px !important; - } - .v-application .mx-sm-n12 { - margin-right: -48px !important; - margin-left: -48px !important; - } - .v-application .mx-sm-n13 { - margin-right: -52px !important; - margin-left: -52px !important; - } - .v-application .mx-sm-n14 { - margin-right: -56px !important; - margin-left: -56px !important; - } - .v-application .mx-sm-n15 { - margin-right: -60px !important; - margin-left: -60px !important; - } - .v-application .mx-sm-n16 { - margin-right: -64px !important; - margin-left: -64px !important; - } - .v-application .my-sm-n1 { - margin-top: -4px !important; - margin-bottom: -4px !important; - } - .v-application .my-sm-n2 { - margin-top: -8px !important; - margin-bottom: -8px !important; - } - .v-application .my-sm-n3 { - margin-top: -12px !important; - margin-bottom: -12px !important; - } - .v-application .my-sm-n4 { - margin-top: -16px !important; - margin-bottom: -16px !important; - } - .v-application .my-sm-n5 { - margin-top: -20px !important; - margin-bottom: -20px !important; - } - .v-application .my-sm-n6 { - margin-top: -24px !important; - margin-bottom: -24px !important; - } - .v-application .my-sm-n7 { - margin-top: -28px !important; - margin-bottom: -28px !important; - } - .v-application .my-sm-n8 { - margin-top: -32px !important; - margin-bottom: -32px !important; - } - .v-application .my-sm-n9 { - margin-top: -36px !important; - margin-bottom: -36px !important; - } - .v-application .my-sm-n10 { - margin-top: -40px !important; - margin-bottom: -40px !important; - } - .v-application .my-sm-n11 { - margin-top: -44px !important; - margin-bottom: -44px !important; - } - .v-application .my-sm-n12 { - margin-top: -48px !important; - margin-bottom: -48px !important; - } - .v-application .my-sm-n13 { - margin-top: -52px !important; - margin-bottom: -52px !important; - } - .v-application .my-sm-n14 { - margin-top: -56px !important; - margin-bottom: -56px !important; - } - .v-application .my-sm-n15 { - margin-top: -60px !important; - margin-bottom: -60px !important; - } - .v-application .my-sm-n16 { - margin-top: -64px !important; - margin-bottom: -64px !important; - } - .v-application .mt-sm-n1 { - margin-top: -4px !important; - } - .v-application .mt-sm-n2 { - margin-top: -8px !important; - } - .v-application .mt-sm-n3 { - margin-top: -12px !important; - } - .v-application .mt-sm-n4 { - margin-top: -16px !important; - } - .v-application .mt-sm-n5 { - margin-top: -20px !important; - } - .v-application .mt-sm-n6 { - margin-top: -24px !important; - } - .v-application .mt-sm-n7 { - margin-top: -28px !important; - } - .v-application .mt-sm-n8 { - margin-top: -32px !important; - } - .v-application .mt-sm-n9 { - margin-top: -36px !important; - } - .v-application .mt-sm-n10 { - margin-top: -40px !important; - } - .v-application .mt-sm-n11 { - margin-top: -44px !important; - } - .v-application .mt-sm-n12 { - margin-top: -48px !important; - } - .v-application .mt-sm-n13 { - margin-top: -52px !important; - } - .v-application .mt-sm-n14 { - margin-top: -56px !important; - } - .v-application .mt-sm-n15 { - margin-top: -60px !important; - } - .v-application .mt-sm-n16 { - margin-top: -64px !important; - } - .v-application .mr-sm-n1 { - margin-right: -4px !important; - } - .v-application .mr-sm-n2 { - margin-right: -8px !important; - } - .v-application .mr-sm-n3 { - margin-right: -12px !important; - } - .v-application .mr-sm-n4 { - margin-right: -16px !important; - } - .v-application .mr-sm-n5 { - margin-right: -20px !important; - } - .v-application .mr-sm-n6 { - margin-right: -24px !important; - } - .v-application .mr-sm-n7 { - margin-right: -28px !important; - } - .v-application .mr-sm-n8 { - margin-right: -32px !important; - } - .v-application .mr-sm-n9 { - margin-right: -36px !important; - } - .v-application .mr-sm-n10 { - margin-right: -40px !important; - } - .v-application .mr-sm-n11 { - margin-right: -44px !important; - } - .v-application .mr-sm-n12 { - margin-right: -48px !important; - } - .v-application .mr-sm-n13 { - margin-right: -52px !important; - } - .v-application .mr-sm-n14 { - margin-right: -56px !important; - } - .v-application .mr-sm-n15 { - margin-right: -60px !important; - } - .v-application .mr-sm-n16 { - margin-right: -64px !important; - } - .v-application .mb-sm-n1 { - margin-bottom: -4px !important; - } - .v-application .mb-sm-n2 { - margin-bottom: -8px !important; - } - .v-application .mb-sm-n3 { - margin-bottom: -12px !important; - } - .v-application .mb-sm-n4 { - margin-bottom: -16px !important; - } - .v-application .mb-sm-n5 { - margin-bottom: -20px !important; - } - .v-application .mb-sm-n6 { - margin-bottom: -24px !important; - } - .v-application .mb-sm-n7 { - margin-bottom: -28px !important; - } - .v-application .mb-sm-n8 { - margin-bottom: -32px !important; - } - .v-application .mb-sm-n9 { - margin-bottom: -36px !important; - } - .v-application .mb-sm-n10 { - margin-bottom: -40px !important; - } - .v-application .mb-sm-n11 { - margin-bottom: -44px !important; - } - .v-application .mb-sm-n12 { - margin-bottom: -48px !important; - } - .v-application .mb-sm-n13 { - margin-bottom: -52px !important; - } - .v-application .mb-sm-n14 { - margin-bottom: -56px !important; - } - .v-application .mb-sm-n15 { - margin-bottom: -60px !important; - } - .v-application .mb-sm-n16 { - margin-bottom: -64px !important; - } - .v-application .ml-sm-n1 { - margin-left: -4px !important; - } - .v-application .ml-sm-n2 { - margin-left: -8px !important; - } - .v-application .ml-sm-n3 { - margin-left: -12px !important; - } - .v-application .ml-sm-n4 { - margin-left: -16px !important; - } - .v-application .ml-sm-n5 { - margin-left: -20px !important; - } - .v-application .ml-sm-n6 { - margin-left: -24px !important; - } - .v-application .ml-sm-n7 { - margin-left: -28px !important; - } - .v-application .ml-sm-n8 { - margin-left: -32px !important; - } - .v-application .ml-sm-n9 { - margin-left: -36px !important; - } - .v-application .ml-sm-n10 { - margin-left: -40px !important; - } - .v-application .ml-sm-n11 { - margin-left: -44px !important; - } - .v-application .ml-sm-n12 { - margin-left: -48px !important; - } - .v-application .ml-sm-n13 { - margin-left: -52px !important; - } - .v-application .ml-sm-n14 { - margin-left: -56px !important; - } - .v-application .ml-sm-n15 { - margin-left: -60px !important; - } - .v-application .ml-sm-n16 { - margin-left: -64px !important; - } - .v-application--is-ltr .ms-sm-n1 { - margin-left: -4px !important; - } - .v-application--is-rtl .ms-sm-n1 { - margin-right: -4px !important; - } - .v-application--is-ltr .ms-sm-n2 { - margin-left: -8px !important; - } - .v-application--is-rtl .ms-sm-n2 { - margin-right: -8px !important; - } - .v-application--is-ltr .ms-sm-n3 { - margin-left: -12px !important; - } - .v-application--is-rtl .ms-sm-n3 { - margin-right: -12px !important; - } - .v-application--is-ltr .ms-sm-n4 { - margin-left: -16px !important; - } - .v-application--is-rtl .ms-sm-n4 { - margin-right: -16px !important; - } - .v-application--is-ltr .ms-sm-n5 { - margin-left: -20px !important; - } - .v-application--is-rtl .ms-sm-n5 { - margin-right: -20px !important; - } - .v-application--is-ltr .ms-sm-n6 { - margin-left: -24px !important; - } - .v-application--is-rtl .ms-sm-n6 { - margin-right: -24px !important; - } - .v-application--is-ltr .ms-sm-n7 { - margin-left: -28px !important; - } - .v-application--is-rtl .ms-sm-n7 { - margin-right: -28px !important; - } - .v-application--is-ltr .ms-sm-n8 { - margin-left: -32px !important; - } - .v-application--is-rtl .ms-sm-n8 { - margin-right: -32px !important; - } - .v-application--is-ltr .ms-sm-n9 { - margin-left: -36px !important; - } - .v-application--is-rtl .ms-sm-n9 { - margin-right: -36px !important; - } - .v-application--is-ltr .ms-sm-n10 { - margin-left: -40px !important; - } - .v-application--is-rtl .ms-sm-n10 { - margin-right: -40px !important; - } - .v-application--is-ltr .ms-sm-n11 { - margin-left: -44px !important; - } - .v-application--is-rtl .ms-sm-n11 { - margin-right: -44px !important; - } - .v-application--is-ltr .ms-sm-n12 { - margin-left: -48px !important; - } - .v-application--is-rtl .ms-sm-n12 { - margin-right: -48px !important; - } - .v-application--is-ltr .ms-sm-n13 { - margin-left: -52px !important; - } - .v-application--is-rtl .ms-sm-n13 { - margin-right: -52px !important; - } - .v-application--is-ltr .ms-sm-n14 { - margin-left: -56px !important; - } - .v-application--is-rtl .ms-sm-n14 { - margin-right: -56px !important; - } - .v-application--is-ltr .ms-sm-n15 { - margin-left: -60px !important; - } - .v-application--is-rtl .ms-sm-n15 { - margin-right: -60px !important; - } - .v-application--is-ltr .ms-sm-n16 { - margin-left: -64px !important; - } - .v-application--is-rtl .ms-sm-n16 { - margin-right: -64px !important; - } - .v-application--is-ltr .me-sm-n1 { - margin-right: -4px !important; - } - .v-application--is-rtl .me-sm-n1 { - margin-left: -4px !important; - } - .v-application--is-ltr .me-sm-n2 { - margin-right: -8px !important; - } - .v-application--is-rtl .me-sm-n2 { - margin-left: -8px !important; - } - .v-application--is-ltr .me-sm-n3 { - margin-right: -12px !important; - } - .v-application--is-rtl .me-sm-n3 { - margin-left: -12px !important; - } - .v-application--is-ltr .me-sm-n4 { - margin-right: -16px !important; - } - .v-application--is-rtl .me-sm-n4 { - margin-left: -16px !important; - } - .v-application--is-ltr .me-sm-n5 { - margin-right: -20px !important; - } - .v-application--is-rtl .me-sm-n5 { - margin-left: -20px !important; - } - .v-application--is-ltr .me-sm-n6 { - margin-right: -24px !important; - } - .v-application--is-rtl .me-sm-n6 { - margin-left: -24px !important; - } - .v-application--is-ltr .me-sm-n7 { - margin-right: -28px !important; - } - .v-application--is-rtl .me-sm-n7 { - margin-left: -28px !important; - } - .v-application--is-ltr .me-sm-n8 { - margin-right: -32px !important; - } - .v-application--is-rtl .me-sm-n8 { - margin-left: -32px !important; - } - .v-application--is-ltr .me-sm-n9 { - margin-right: -36px !important; - } - .v-application--is-rtl .me-sm-n9 { - margin-left: -36px !important; - } - .v-application--is-ltr .me-sm-n10 { - margin-right: -40px !important; - } - .v-application--is-rtl .me-sm-n10 { - margin-left: -40px !important; - } - .v-application--is-ltr .me-sm-n11 { - margin-right: -44px !important; - } - .v-application--is-rtl .me-sm-n11 { - margin-left: -44px !important; - } - .v-application--is-ltr .me-sm-n12 { - margin-right: -48px !important; - } - .v-application--is-rtl .me-sm-n12 { - margin-left: -48px !important; - } - .v-application--is-ltr .me-sm-n13 { - margin-right: -52px !important; - } - .v-application--is-rtl .me-sm-n13 { - margin-left: -52px !important; - } - .v-application--is-ltr .me-sm-n14 { - margin-right: -56px !important; - } - .v-application--is-rtl .me-sm-n14 { - margin-left: -56px !important; - } - .v-application--is-ltr .me-sm-n15 { - margin-right: -60px !important; - } - .v-application--is-rtl .me-sm-n15 { - margin-left: -60px !important; - } - .v-application--is-ltr .me-sm-n16 { - margin-right: -64px !important; - } - .v-application--is-rtl .me-sm-n16 { - margin-left: -64px !important; - } - .v-application .pa-sm-0 { - padding: 0 !important; - } - .v-application .pa-sm-1 { - padding: 4px !important; - } - .v-application .pa-sm-2 { - padding: 8px !important; - } - .v-application .pa-sm-3 { - padding: 12px !important; - } - .v-application .pa-sm-4 { - padding: 16px !important; - } - .v-application .pa-sm-5 { - padding: 20px !important; - } - .v-application .pa-sm-6 { - padding: 24px !important; - } - .v-application .pa-sm-7 { - padding: 28px !important; - } - .v-application .pa-sm-8 { - padding: 32px !important; - } - .v-application .pa-sm-9 { - padding: 36px !important; - } - .v-application .pa-sm-10 { - padding: 40px !important; - } - .v-application .pa-sm-11 { - padding: 44px !important; - } - .v-application .pa-sm-12 { - padding: 48px !important; - } - .v-application .pa-sm-13 { - padding: 52px !important; - } - .v-application .pa-sm-14 { - padding: 56px !important; - } - .v-application .pa-sm-15 { - padding: 60px !important; - } - .v-application .pa-sm-16 { - padding: 64px !important; - } - .v-application .px-sm-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - .v-application .px-sm-1 { - padding-right: 4px !important; - padding-left: 4px !important; - } - .v-application .px-sm-2 { - padding-right: 8px !important; - padding-left: 8px !important; - } - .v-application .px-sm-3 { - padding-right: 12px !important; - padding-left: 12px !important; - } - .v-application .px-sm-4 { - padding-right: 16px !important; - padding-left: 16px !important; - } - .v-application .px-sm-5 { - padding-right: 20px !important; - padding-left: 20px !important; - } - .v-application .px-sm-6 { - padding-right: 24px !important; - padding-left: 24px !important; - } - .v-application .px-sm-7 { - padding-right: 28px !important; - padding-left: 28px !important; - } - .v-application .px-sm-8 { - padding-right: 32px !important; - padding-left: 32px !important; - } - .v-application .px-sm-9 { - padding-right: 36px !important; - padding-left: 36px !important; - } - .v-application .px-sm-10 { - padding-right: 40px !important; - padding-left: 40px !important; - } - .v-application .px-sm-11 { - padding-right: 44px !important; - padding-left: 44px !important; - } - .v-application .px-sm-12 { - padding-right: 48px !important; - padding-left: 48px !important; - } - .v-application .px-sm-13 { - padding-right: 52px !important; - padding-left: 52px !important; - } - .v-application .px-sm-14 { - padding-right: 56px !important; - padding-left: 56px !important; - } - .v-application .px-sm-15 { - padding-right: 60px !important; - padding-left: 60px !important; - } - .v-application .px-sm-16 { - padding-right: 64px !important; - padding-left: 64px !important; - } - .v-application .py-sm-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .v-application .py-sm-1 { - padding-top: 4px !important; - padding-bottom: 4px !important; - } - .v-application .py-sm-2 { - padding-top: 8px !important; - padding-bottom: 8px !important; - } - .v-application .py-sm-3 { - padding-top: 12px !important; - padding-bottom: 12px !important; - } - .v-application .py-sm-4 { - padding-top: 16px !important; - padding-bottom: 16px !important; - } - .v-application .py-sm-5 { - padding-top: 20px !important; - padding-bottom: 20px !important; - } - .v-application .py-sm-6 { - padding-top: 24px !important; - padding-bottom: 24px !important; - } - .v-application .py-sm-7 { - padding-top: 28px !important; - padding-bottom: 28px !important; - } - .v-application .py-sm-8 { - padding-top: 32px !important; - padding-bottom: 32px !important; - } - .v-application .py-sm-9 { - padding-top: 36px !important; - padding-bottom: 36px !important; - } - .v-application .py-sm-10 { - padding-top: 40px !important; - padding-bottom: 40px !important; - } - .v-application .py-sm-11 { - padding-top: 44px !important; - padding-bottom: 44px !important; - } - .v-application .py-sm-12 { - padding-top: 48px !important; - padding-bottom: 48px !important; - } - .v-application .py-sm-13 { - padding-top: 52px !important; - padding-bottom: 52px !important; - } - .v-application .py-sm-14 { - padding-top: 56px !important; - padding-bottom: 56px !important; - } - .v-application .py-sm-15 { - padding-top: 60px !important; - padding-bottom: 60px !important; - } - .v-application .py-sm-16 { - padding-top: 64px !important; - padding-bottom: 64px !important; - } - .v-application .pt-sm-0 { - padding-top: 0 !important; - } - .v-application .pt-sm-1 { - padding-top: 4px !important; - } - .v-application .pt-sm-2 { - padding-top: 8px !important; - } - .v-application .pt-sm-3 { - padding-top: 12px !important; - } - .v-application .pt-sm-4 { - padding-top: 16px !important; - } - .v-application .pt-sm-5 { - padding-top: 20px !important; - } - .v-application .pt-sm-6 { - padding-top: 24px !important; - } - .v-application .pt-sm-7 { - padding-top: 28px !important; - } - .v-application .pt-sm-8 { - padding-top: 32px !important; - } - .v-application .pt-sm-9 { - padding-top: 36px !important; - } - .v-application .pt-sm-10 { - padding-top: 40px !important; - } - .v-application .pt-sm-11 { - padding-top: 44px !important; - } - .v-application .pt-sm-12 { - padding-top: 48px !important; - } - .v-application .pt-sm-13 { - padding-top: 52px !important; - } - .v-application .pt-sm-14 { - padding-top: 56px !important; - } - .v-application .pt-sm-15 { - padding-top: 60px !important; - } - .v-application .pt-sm-16 { - padding-top: 64px !important; - } - .v-application .pr-sm-0 { - padding-right: 0 !important; - } - .v-application .pr-sm-1 { - padding-right: 4px !important; - } - .v-application .pr-sm-2 { - padding-right: 8px !important; - } - .v-application .pr-sm-3 { - padding-right: 12px !important; - } - .v-application .pr-sm-4 { - padding-right: 16px !important; - } - .v-application .pr-sm-5 { - padding-right: 20px !important; - } - .v-application .pr-sm-6 { - padding-right: 24px !important; - } - .v-application .pr-sm-7 { - padding-right: 28px !important; - } - .v-application .pr-sm-8 { - padding-right: 32px !important; - } - .v-application .pr-sm-9 { - padding-right: 36px !important; - } - .v-application .pr-sm-10 { - padding-right: 40px !important; - } - .v-application .pr-sm-11 { - padding-right: 44px !important; - } - .v-application .pr-sm-12 { - padding-right: 48px !important; - } - .v-application .pr-sm-13 { - padding-right: 52px !important; - } - .v-application .pr-sm-14 { - padding-right: 56px !important; - } - .v-application .pr-sm-15 { - padding-right: 60px !important; - } - .v-application .pr-sm-16 { - padding-right: 64px !important; - } - .v-application .pb-sm-0 { - padding-bottom: 0 !important; - } - .v-application .pb-sm-1 { - padding-bottom: 4px !important; - } - .v-application .pb-sm-2 { - padding-bottom: 8px !important; - } - .v-application .pb-sm-3 { - padding-bottom: 12px !important; - } - .v-application .pb-sm-4 { - padding-bottom: 16px !important; - } - .v-application .pb-sm-5 { - padding-bottom: 20px !important; - } - .v-application .pb-sm-6 { - padding-bottom: 24px !important; - } - .v-application .pb-sm-7 { - padding-bottom: 28px !important; - } - .v-application .pb-sm-8 { - padding-bottom: 32px !important; - } - .v-application .pb-sm-9 { - padding-bottom: 36px !important; - } - .v-application .pb-sm-10 { - padding-bottom: 40px !important; - } - .v-application .pb-sm-11 { - padding-bottom: 44px !important; - } - .v-application .pb-sm-12 { - padding-bottom: 48px !important; - } - .v-application .pb-sm-13 { - padding-bottom: 52px !important; - } - .v-application .pb-sm-14 { - padding-bottom: 56px !important; - } - .v-application .pb-sm-15 { - padding-bottom: 60px !important; - } - .v-application .pb-sm-16 { - padding-bottom: 64px !important; - } - .v-application .pl-sm-0 { - padding-left: 0 !important; - } - .v-application .pl-sm-1 { - padding-left: 4px !important; - } - .v-application .pl-sm-2 { - padding-left: 8px !important; - } - .v-application .pl-sm-3 { - padding-left: 12px !important; - } - .v-application .pl-sm-4 { - padding-left: 16px !important; - } - .v-application .pl-sm-5 { - padding-left: 20px !important; - } - .v-application .pl-sm-6 { - padding-left: 24px !important; - } - .v-application .pl-sm-7 { - padding-left: 28px !important; - } - .v-application .pl-sm-8 { - padding-left: 32px !important; - } - .v-application .pl-sm-9 { - padding-left: 36px !important; - } - .v-application .pl-sm-10 { - padding-left: 40px !important; - } - .v-application .pl-sm-11 { - padding-left: 44px !important; - } - .v-application .pl-sm-12 { - padding-left: 48px !important; - } - .v-application .pl-sm-13 { - padding-left: 52px !important; - } - .v-application .pl-sm-14 { - padding-left: 56px !important; - } - .v-application .pl-sm-15 { - padding-left: 60px !important; - } - .v-application .pl-sm-16 { - padding-left: 64px !important; - } - .v-application--is-ltr .ps-sm-0 { - padding-left: 0 !important; - } - .v-application--is-rtl .ps-sm-0 { - padding-right: 0 !important; - } - .v-application--is-ltr .ps-sm-1 { - padding-left: 4px !important; - } - .v-application--is-rtl .ps-sm-1 { - padding-right: 4px !important; - } - .v-application--is-ltr .ps-sm-2 { - padding-left: 8px !important; - } - .v-application--is-rtl .ps-sm-2 { - padding-right: 8px !important; - } - .v-application--is-ltr .ps-sm-3 { - padding-left: 12px !important; - } - .v-application--is-rtl .ps-sm-3 { - padding-right: 12px !important; - } - .v-application--is-ltr .ps-sm-4 { - padding-left: 16px !important; - } - .v-application--is-rtl .ps-sm-4 { - padding-right: 16px !important; - } - .v-application--is-ltr .ps-sm-5 { - padding-left: 20px !important; - } - .v-application--is-rtl .ps-sm-5 { - padding-right: 20px !important; - } - .v-application--is-ltr .ps-sm-6 { - padding-left: 24px !important; - } - .v-application--is-rtl .ps-sm-6 { - padding-right: 24px !important; - } - .v-application--is-ltr .ps-sm-7 { - padding-left: 28px !important; - } - .v-application--is-rtl .ps-sm-7 { - padding-right: 28px !important; - } - .v-application--is-ltr .ps-sm-8 { - padding-left: 32px !important; - } - .v-application--is-rtl .ps-sm-8 { - padding-right: 32px !important; - } - .v-application--is-ltr .ps-sm-9 { - padding-left: 36px !important; - } - .v-application--is-rtl .ps-sm-9 { - padding-right: 36px !important; - } - .v-application--is-ltr .ps-sm-10 { - padding-left: 40px !important; - } - .v-application--is-rtl .ps-sm-10 { - padding-right: 40px !important; - } - .v-application--is-ltr .ps-sm-11 { - padding-left: 44px !important; - } - .v-application--is-rtl .ps-sm-11 { - padding-right: 44px !important; - } - .v-application--is-ltr .ps-sm-12 { - padding-left: 48px !important; - } - .v-application--is-rtl .ps-sm-12 { - padding-right: 48px !important; - } - .v-application--is-ltr .ps-sm-13 { - padding-left: 52px !important; - } - .v-application--is-rtl .ps-sm-13 { - padding-right: 52px !important; - } - .v-application--is-ltr .ps-sm-14 { - padding-left: 56px !important; - } - .v-application--is-rtl .ps-sm-14 { - padding-right: 56px !important; - } - .v-application--is-ltr .ps-sm-15 { - padding-left: 60px !important; - } - .v-application--is-rtl .ps-sm-15 { - padding-right: 60px !important; - } - .v-application--is-ltr .ps-sm-16 { - padding-left: 64px !important; - } - .v-application--is-rtl .ps-sm-16 { - padding-right: 64px !important; - } - .v-application--is-ltr .pe-sm-0 { - padding-right: 0 !important; - } - .v-application--is-rtl .pe-sm-0 { - padding-left: 0 !important; - } - .v-application--is-ltr .pe-sm-1 { - padding-right: 4px !important; - } - .v-application--is-rtl .pe-sm-1 { - padding-left: 4px !important; - } - .v-application--is-ltr .pe-sm-2 { - padding-right: 8px !important; - } - .v-application--is-rtl .pe-sm-2 { - padding-left: 8px !important; - } - .v-application--is-ltr .pe-sm-3 { - padding-right: 12px !important; - } - .v-application--is-rtl .pe-sm-3 { - padding-left: 12px !important; - } - .v-application--is-ltr .pe-sm-4 { - padding-right: 16px !important; - } - .v-application--is-rtl .pe-sm-4 { - padding-left: 16px !important; - } - .v-application--is-ltr .pe-sm-5 { - padding-right: 20px !important; - } - .v-application--is-rtl .pe-sm-5 { - padding-left: 20px !important; - } - .v-application--is-ltr .pe-sm-6 { - padding-right: 24px !important; - } - .v-application--is-rtl .pe-sm-6 { - padding-left: 24px !important; - } - .v-application--is-ltr .pe-sm-7 { - padding-right: 28px !important; - } - .v-application--is-rtl .pe-sm-7 { - padding-left: 28px !important; - } - .v-application--is-ltr .pe-sm-8 { - padding-right: 32px !important; - } - .v-application--is-rtl .pe-sm-8 { - padding-left: 32px !important; - } - .v-application--is-ltr .pe-sm-9 { - padding-right: 36px !important; - } - .v-application--is-rtl .pe-sm-9 { - padding-left: 36px !important; - } - .v-application--is-ltr .pe-sm-10 { - padding-right: 40px !important; - } - .v-application--is-rtl .pe-sm-10 { - padding-left: 40px !important; - } - .v-application--is-ltr .pe-sm-11 { - padding-right: 44px !important; - } - .v-application--is-rtl .pe-sm-11 { - padding-left: 44px !important; - } - .v-application--is-ltr .pe-sm-12 { - padding-right: 48px !important; - } - .v-application--is-rtl .pe-sm-12 { - padding-left: 48px !important; - } - .v-application--is-ltr .pe-sm-13 { - padding-right: 52px !important; - } - .v-application--is-rtl .pe-sm-13 { - padding-left: 52px !important; - } - .v-application--is-ltr .pe-sm-14 { - padding-right: 56px !important; - } - .v-application--is-rtl .pe-sm-14 { - padding-left: 56px !important; - } - .v-application--is-ltr .pe-sm-15 { - padding-right: 60px !important; - } - .v-application--is-rtl .pe-sm-15 { - padding-left: 60px !important; - } - .v-application--is-ltr .pe-sm-16 { - padding-right: 64px !important; - } - .v-application--is-rtl .pe-sm-16 { - padding-left: 64px !important; - } - .v-application .text-sm-left { - text-align: left !important; - } - .v-application .text-sm-right { - text-align: right !important; - } - .v-application .text-sm-center { - text-align: center !important; - } - .v-application .text-sm-justify { - text-align: justify !important; - } - .v-application .text-sm-start { - text-align: start !important; - } - .v-application .text-sm-end { - text-align: end !important; - } - .v-application .text-sm-h1 { - font-size: 6rem !important; - line-height: 6rem; - letter-spacing: -0.015625em !important; - } - .v-application .text-sm-h1, - .v-application .text-sm-h2 { - font-weight: 300; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-h2 { - font-size: 3.75rem !important; - line-height: 3.75rem; - letter-spacing: -0.0083333333em !important; - } - .v-application .text-sm-h3 { - font-size: 3rem !important; - line-height: 3.125rem; - letter-spacing: normal !important; - } - .v-application .text-sm-h3, - .v-application .text-sm-h4 { - font-weight: 400; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-h4 { - font-size: 2.125rem !important; - line-height: 2.5rem; - letter-spacing: 0.0073529412em !important; - } - .v-application .text-sm-h5 { - font-size: 1.5rem !important; - font-weight: 400; - letter-spacing: normal !important; - } - .v-application .text-sm-h5, - .v-application .text-sm-h6 { - line-height: 2rem; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-h6 { - font-size: 1.25rem !important; - font-weight: 500; - letter-spacing: 0.0125em !important; - } - .v-application .text-sm-subtitle-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.75rem; - letter-spacing: 0.009375em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-subtitle-2 { - font-size: 0.875rem !important; - font-weight: 500; - line-height: 1.375rem; - letter-spacing: 0.0071428571em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-body-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.5rem; - letter-spacing: 0.03125em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-body-2 { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0178571429em !important; - } - .v-application .text-sm-body-2, - .v-application .text-sm-button { - font-size: 0.875rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-button { - font-weight: 500; - line-height: 2.25rem; - letter-spacing: 0.0892857143em !important; - text-transform: uppercase !important; - } - .v-application .text-sm-caption { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0333333333em !important; - } - .v-application .text-sm-caption, - .v-application .text-sm-overline { - font-size: 0.75rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-sm-overline { - font-weight: 500; - line-height: 2rem; - letter-spacing: 0.1666666667em !important; - text-transform: uppercase !important; - } -} -@media (min-width: 960px) { - .v-application .d-md-none { - display: none !important; - } - .v-application .d-md-inline { - display: inline !important; - } - .v-application .d-md-inline-block { - display: inline-block !important; - } - .v-application .d-md-block { - display: block !important; - } - .v-application .d-md-table { - display: table !important; - } - .v-application .d-md-table-row { - display: table-row !important; - } - .v-application .d-md-table-cell { - display: table-cell !important; - } - .v-application .d-md-flex { - display: flex !important; - } - .v-application .d-md-inline-flex { - display: inline-flex !important; - } - .v-application .float-md-none { - float: none !important; - } - .v-application .float-md-left { - float: left !important; - } - .v-application .float-md-right { - float: right !important; - } - .v-application .flex-md-fill { - flex: 1 1 auto !important; - } - .v-application .flex-md-row { - flex-direction: row !important; - } - .v-application .flex-md-column { - flex-direction: column !important; - } - .v-application .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - .v-application .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - .v-application .flex-md-grow-0 { - flex-grow: 0 !important; - } - .v-application .flex-md-grow-1 { - flex-grow: 1 !important; - } - .v-application .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - .v-application .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - .v-application .flex-md-wrap { - flex-wrap: wrap !important; - } - .v-application .flex-md-nowrap { - flex-wrap: nowrap !important; - } - .v-application .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .v-application .justify-md-start { - justify-content: flex-start !important; - } - .v-application .justify-md-end { - justify-content: flex-end !important; - } - .v-application .justify-md-center { - justify-content: center !important; - } - .v-application .justify-md-space-between { - justify-content: space-between !important; - } - .v-application .justify-md-space-around { - justify-content: space-around !important; - } - .v-application .align-md-start { - align-items: flex-start !important; - } - .v-application .align-md-end { - align-items: flex-end !important; - } - .v-application .align-md-center { - align-items: center !important; - } - .v-application .align-md-baseline { - align-items: baseline !important; - } - .v-application .align-md-stretch { - align-items: stretch !important; - } - .v-application .align-content-md-start { - align-content: flex-start !important; - } - .v-application .align-content-md-end { - align-content: flex-end !important; - } - .v-application .align-content-md-center { - align-content: center !important; - } - .v-application .align-content-md-space-between { - align-content: space-between !important; - } - .v-application .align-content-md-space-around { - align-content: space-around !important; - } - .v-application .align-content-md-stretch { - align-content: stretch !important; - } - .v-application .align-self-md-auto { - align-self: auto !important; - } - .v-application .align-self-md-start { - align-self: flex-start !important; - } - .v-application .align-self-md-end { - align-self: flex-end !important; - } - .v-application .align-self-md-center { - align-self: center !important; - } - .v-application .align-self-md-baseline { - align-self: baseline !important; - } - .v-application .align-self-md-stretch { - align-self: stretch !important; - } - .v-application .order-md-first { - order: -1 !important; - } - .v-application .order-md-0 { - order: 0 !important; - } - .v-application .order-md-1 { - order: 1 !important; - } - .v-application .order-md-2 { - order: 2 !important; - } - .v-application .order-md-3 { - order: 3 !important; - } - .v-application .order-md-4 { - order: 4 !important; - } - .v-application .order-md-5 { - order: 5 !important; - } - .v-application .order-md-6 { - order: 6 !important; - } - .v-application .order-md-7 { - order: 7 !important; - } - .v-application .order-md-8 { - order: 8 !important; - } - .v-application .order-md-9 { - order: 9 !important; - } - .v-application .order-md-10 { - order: 10 !important; - } - .v-application .order-md-11 { - order: 11 !important; - } - .v-application .order-md-12 { - order: 12 !important; - } - .v-application .order-md-last { - order: 13 !important; - } - .v-application .ma-md-0 { - margin: 0 !important; - } - .v-application .ma-md-1 { - margin: 4px !important; - } - .v-application .ma-md-2 { - margin: 8px !important; - } - .v-application .ma-md-3 { - margin: 12px !important; - } - .v-application .ma-md-4 { - margin: 16px !important; - } - .v-application .ma-md-5 { - margin: 20px !important; - } - .v-application .ma-md-6 { - margin: 24px !important; - } - .v-application .ma-md-7 { - margin: 28px !important; - } - .v-application .ma-md-8 { - margin: 32px !important; - } - .v-application .ma-md-9 { - margin: 36px !important; - } - .v-application .ma-md-10 { - margin: 40px !important; - } - .v-application .ma-md-11 { - margin: 44px !important; - } - .v-application .ma-md-12 { - margin: 48px !important; - } - .v-application .ma-md-13 { - margin: 52px !important; - } - .v-application .ma-md-14 { - margin: 56px !important; - } - .v-application .ma-md-15 { - margin: 60px !important; - } - .v-application .ma-md-16 { - margin: 64px !important; - } - .v-application .ma-md-auto { - margin: auto !important; - } - .v-application .mx-md-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - .v-application .mx-md-1 { - margin-right: 4px !important; - margin-left: 4px !important; - } - .v-application .mx-md-2 { - margin-right: 8px !important; - margin-left: 8px !important; - } - .v-application .mx-md-3 { - margin-right: 12px !important; - margin-left: 12px !important; - } - .v-application .mx-md-4 { - margin-right: 16px !important; - margin-left: 16px !important; - } - .v-application .mx-md-5 { - margin-right: 20px !important; - margin-left: 20px !important; - } - .v-application .mx-md-6 { - margin-right: 24px !important; - margin-left: 24px !important; - } - .v-application .mx-md-7 { - margin-right: 28px !important; - margin-left: 28px !important; - } - .v-application .mx-md-8 { - margin-right: 32px !important; - margin-left: 32px !important; - } - .v-application .mx-md-9 { - margin-right: 36px !important; - margin-left: 36px !important; - } - .v-application .mx-md-10 { - margin-right: 40px !important; - margin-left: 40px !important; - } - .v-application .mx-md-11 { - margin-right: 44px !important; - margin-left: 44px !important; - } - .v-application .mx-md-12 { - margin-right: 48px !important; - margin-left: 48px !important; - } - .v-application .mx-md-13 { - margin-right: 52px !important; - margin-left: 52px !important; - } - .v-application .mx-md-14 { - margin-right: 56px !important; - margin-left: 56px !important; - } - .v-application .mx-md-15 { - margin-right: 60px !important; - margin-left: 60px !important; - } - .v-application .mx-md-16 { - margin-right: 64px !important; - margin-left: 64px !important; - } - .v-application .mx-md-auto { - margin-right: auto !important; - margin-left: auto !important; - } - .v-application .my-md-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .v-application .my-md-1 { - margin-top: 4px !important; - margin-bottom: 4px !important; - } - .v-application .my-md-2 { - margin-top: 8px !important; - margin-bottom: 8px !important; - } - .v-application .my-md-3 { - margin-top: 12px !important; - margin-bottom: 12px !important; - } - .v-application .my-md-4 { - margin-top: 16px !important; - margin-bottom: 16px !important; - } - .v-application .my-md-5 { - margin-top: 20px !important; - margin-bottom: 20px !important; - } - .v-application .my-md-6 { - margin-top: 24px !important; - margin-bottom: 24px !important; - } - .v-application .my-md-7 { - margin-top: 28px !important; - margin-bottom: 28px !important; - } - .v-application .my-md-8 { - margin-top: 32px !important; - margin-bottom: 32px !important; - } - .v-application .my-md-9 { - margin-top: 36px !important; - margin-bottom: 36px !important; - } - .v-application .my-md-10 { - margin-top: 40px !important; - margin-bottom: 40px !important; - } - .v-application .my-md-11 { - margin-top: 44px !important; - margin-bottom: 44px !important; - } - .v-application .my-md-12 { - margin-top: 48px !important; - margin-bottom: 48px !important; - } - .v-application .my-md-13 { - margin-top: 52px !important; - margin-bottom: 52px !important; - } - .v-application .my-md-14 { - margin-top: 56px !important; - margin-bottom: 56px !important; - } - .v-application .my-md-15 { - margin-top: 60px !important; - margin-bottom: 60px !important; - } - .v-application .my-md-16 { - margin-top: 64px !important; - margin-bottom: 64px !important; - } - .v-application .my-md-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .v-application .mt-md-0 { - margin-top: 0 !important; - } - .v-application .mt-md-1 { - margin-top: 4px !important; - } - .v-application .mt-md-2 { - margin-top: 8px !important; - } - .v-application .mt-md-3 { - margin-top: 12px !important; - } - .v-application .mt-md-4 { - margin-top: 16px !important; - } - .v-application .mt-md-5 { - margin-top: 20px !important; - } - .v-application .mt-md-6 { - margin-top: 24px !important; - } - .v-application .mt-md-7 { - margin-top: 28px !important; - } - .v-application .mt-md-8 { - margin-top: 32px !important; - } - .v-application .mt-md-9 { - margin-top: 36px !important; - } - .v-application .mt-md-10 { - margin-top: 40px !important; - } - .v-application .mt-md-11 { - margin-top: 44px !important; - } - .v-application .mt-md-12 { - margin-top: 48px !important; - } - .v-application .mt-md-13 { - margin-top: 52px !important; - } - .v-application .mt-md-14 { - margin-top: 56px !important; - } - .v-application .mt-md-15 { - margin-top: 60px !important; - } - .v-application .mt-md-16 { - margin-top: 64px !important; - } - .v-application .mt-md-auto { - margin-top: auto !important; - } - .v-application .mr-md-0 { - margin-right: 0 !important; - } - .v-application .mr-md-1 { - margin-right: 4px !important; - } - .v-application .mr-md-2 { - margin-right: 8px !important; - } - .v-application .mr-md-3 { - margin-right: 12px !important; - } - .v-application .mr-md-4 { - margin-right: 16px !important; - } - .v-application .mr-md-5 { - margin-right: 20px !important; - } - .v-application .mr-md-6 { - margin-right: 24px !important; - } - .v-application .mr-md-7 { - margin-right: 28px !important; - } - .v-application .mr-md-8 { - margin-right: 32px !important; - } - .v-application .mr-md-9 { - margin-right: 36px !important; - } - .v-application .mr-md-10 { - margin-right: 40px !important; - } - .v-application .mr-md-11 { - margin-right: 44px !important; - } - .v-application .mr-md-12 { - margin-right: 48px !important; - } - .v-application .mr-md-13 { - margin-right: 52px !important; - } - .v-application .mr-md-14 { - margin-right: 56px !important; - } - .v-application .mr-md-15 { - margin-right: 60px !important; - } - .v-application .mr-md-16 { - margin-right: 64px !important; - } - .v-application .mr-md-auto { - margin-right: auto !important; - } - .v-application .mb-md-0 { - margin-bottom: 0 !important; - } - .v-application .mb-md-1 { - margin-bottom: 4px !important; - } - .v-application .mb-md-2 { - margin-bottom: 8px !important; - } - .v-application .mb-md-3 { - margin-bottom: 12px !important; - } - .v-application .mb-md-4 { - margin-bottom: 16px !important; - } - .v-application .mb-md-5 { - margin-bottom: 20px !important; - } - .v-application .mb-md-6 { - margin-bottom: 24px !important; - } - .v-application .mb-md-7 { - margin-bottom: 28px !important; - } - .v-application .mb-md-8 { - margin-bottom: 32px !important; - } - .v-application .mb-md-9 { - margin-bottom: 36px !important; - } - .v-application .mb-md-10 { - margin-bottom: 40px !important; - } - .v-application .mb-md-11 { - margin-bottom: 44px !important; - } - .v-application .mb-md-12 { - margin-bottom: 48px !important; - } - .v-application .mb-md-13 { - margin-bottom: 52px !important; - } - .v-application .mb-md-14 { - margin-bottom: 56px !important; - } - .v-application .mb-md-15 { - margin-bottom: 60px !important; - } - .v-application .mb-md-16 { - margin-bottom: 64px !important; - } - .v-application .mb-md-auto { - margin-bottom: auto !important; - } - .v-application .ml-md-0 { - margin-left: 0 !important; - } - .v-application .ml-md-1 { - margin-left: 4px !important; - } - .v-application .ml-md-2 { - margin-left: 8px !important; - } - .v-application .ml-md-3 { - margin-left: 12px !important; - } - .v-application .ml-md-4 { - margin-left: 16px !important; - } - .v-application .ml-md-5 { - margin-left: 20px !important; - } - .v-application .ml-md-6 { - margin-left: 24px !important; - } - .v-application .ml-md-7 { - margin-left: 28px !important; - } - .v-application .ml-md-8 { - margin-left: 32px !important; - } - .v-application .ml-md-9 { - margin-left: 36px !important; - } - .v-application .ml-md-10 { - margin-left: 40px !important; - } - .v-application .ml-md-11 { - margin-left: 44px !important; - } - .v-application .ml-md-12 { - margin-left: 48px !important; - } - .v-application .ml-md-13 { - margin-left: 52px !important; - } - .v-application .ml-md-14 { - margin-left: 56px !important; - } - .v-application .ml-md-15 { - margin-left: 60px !important; - } - .v-application .ml-md-16 { - margin-left: 64px !important; - } - .v-application .ml-md-auto { - margin-left: auto !important; - } - .v-application--is-ltr .ms-md-0 { - margin-left: 0 !important; - } - .v-application--is-rtl .ms-md-0 { - margin-right: 0 !important; - } - .v-application--is-ltr .ms-md-1 { - margin-left: 4px !important; - } - .v-application--is-rtl .ms-md-1 { - margin-right: 4px !important; - } - .v-application--is-ltr .ms-md-2 { - margin-left: 8px !important; - } - .v-application--is-rtl .ms-md-2 { - margin-right: 8px !important; - } - .v-application--is-ltr .ms-md-3 { - margin-left: 12px !important; - } - .v-application--is-rtl .ms-md-3 { - margin-right: 12px !important; - } - .v-application--is-ltr .ms-md-4 { - margin-left: 16px !important; - } - .v-application--is-rtl .ms-md-4 { - margin-right: 16px !important; - } - .v-application--is-ltr .ms-md-5 { - margin-left: 20px !important; - } - .v-application--is-rtl .ms-md-5 { - margin-right: 20px !important; - } - .v-application--is-ltr .ms-md-6 { - margin-left: 24px !important; - } - .v-application--is-rtl .ms-md-6 { - margin-right: 24px !important; - } - .v-application--is-ltr .ms-md-7 { - margin-left: 28px !important; - } - .v-application--is-rtl .ms-md-7 { - margin-right: 28px !important; - } - .v-application--is-ltr .ms-md-8 { - margin-left: 32px !important; - } - .v-application--is-rtl .ms-md-8 { - margin-right: 32px !important; - } - .v-application--is-ltr .ms-md-9 { - margin-left: 36px !important; - } - .v-application--is-rtl .ms-md-9 { - margin-right: 36px !important; - } - .v-application--is-ltr .ms-md-10 { - margin-left: 40px !important; - } - .v-application--is-rtl .ms-md-10 { - margin-right: 40px !important; - } - .v-application--is-ltr .ms-md-11 { - margin-left: 44px !important; - } - .v-application--is-rtl .ms-md-11 { - margin-right: 44px !important; - } - .v-application--is-ltr .ms-md-12 { - margin-left: 48px !important; - } - .v-application--is-rtl .ms-md-12 { - margin-right: 48px !important; - } - .v-application--is-ltr .ms-md-13 { - margin-left: 52px !important; - } - .v-application--is-rtl .ms-md-13 { - margin-right: 52px !important; - } - .v-application--is-ltr .ms-md-14 { - margin-left: 56px !important; - } - .v-application--is-rtl .ms-md-14 { - margin-right: 56px !important; - } - .v-application--is-ltr .ms-md-15 { - margin-left: 60px !important; - } - .v-application--is-rtl .ms-md-15 { - margin-right: 60px !important; - } - .v-application--is-ltr .ms-md-16 { - margin-left: 64px !important; - } - .v-application--is-rtl .ms-md-16 { - margin-right: 64px !important; - } - .v-application--is-ltr .ms-md-auto { - margin-left: auto !important; - } - .v-application--is-rtl .ms-md-auto { - margin-right: auto !important; - } - .v-application--is-ltr .me-md-0 { - margin-right: 0 !important; - } - .v-application--is-rtl .me-md-0 { - margin-left: 0 !important; - } - .v-application--is-ltr .me-md-1 { - margin-right: 4px !important; - } - .v-application--is-rtl .me-md-1 { - margin-left: 4px !important; - } - .v-application--is-ltr .me-md-2 { - margin-right: 8px !important; - } - .v-application--is-rtl .me-md-2 { - margin-left: 8px !important; - } - .v-application--is-ltr .me-md-3 { - margin-right: 12px !important; - } - .v-application--is-rtl .me-md-3 { - margin-left: 12px !important; - } - .v-application--is-ltr .me-md-4 { - margin-right: 16px !important; - } - .v-application--is-rtl .me-md-4 { - margin-left: 16px !important; - } - .v-application--is-ltr .me-md-5 { - margin-right: 20px !important; - } - .v-application--is-rtl .me-md-5 { - margin-left: 20px !important; - } - .v-application--is-ltr .me-md-6 { - margin-right: 24px !important; - } - .v-application--is-rtl .me-md-6 { - margin-left: 24px !important; - } - .v-application--is-ltr .me-md-7 { - margin-right: 28px !important; - } - .v-application--is-rtl .me-md-7 { - margin-left: 28px !important; - } - .v-application--is-ltr .me-md-8 { - margin-right: 32px !important; - } - .v-application--is-rtl .me-md-8 { - margin-left: 32px !important; - } - .v-application--is-ltr .me-md-9 { - margin-right: 36px !important; - } - .v-application--is-rtl .me-md-9 { - margin-left: 36px !important; - } - .v-application--is-ltr .me-md-10 { - margin-right: 40px !important; - } - .v-application--is-rtl .me-md-10 { - margin-left: 40px !important; - } - .v-application--is-ltr .me-md-11 { - margin-right: 44px !important; - } - .v-application--is-rtl .me-md-11 { - margin-left: 44px !important; - } - .v-application--is-ltr .me-md-12 { - margin-right: 48px !important; - } - .v-application--is-rtl .me-md-12 { - margin-left: 48px !important; - } - .v-application--is-ltr .me-md-13 { - margin-right: 52px !important; - } - .v-application--is-rtl .me-md-13 { - margin-left: 52px !important; - } - .v-application--is-ltr .me-md-14 { - margin-right: 56px !important; - } - .v-application--is-rtl .me-md-14 { - margin-left: 56px !important; - } - .v-application--is-ltr .me-md-15 { - margin-right: 60px !important; - } - .v-application--is-rtl .me-md-15 { - margin-left: 60px !important; - } - .v-application--is-ltr .me-md-16 { - margin-right: 64px !important; - } - .v-application--is-rtl .me-md-16 { - margin-left: 64px !important; - } - .v-application--is-ltr .me-md-auto { - margin-right: auto !important; - } - .v-application--is-rtl .me-md-auto { - margin-left: auto !important; - } - .v-application .ma-md-n1 { - margin: -4px !important; - } - .v-application .ma-md-n2 { - margin: -8px !important; - } - .v-application .ma-md-n3 { - margin: -12px !important; - } - .v-application .ma-md-n4 { - margin: -16px !important; - } - .v-application .ma-md-n5 { - margin: -20px !important; - } - .v-application .ma-md-n6 { - margin: -24px !important; - } - .v-application .ma-md-n7 { - margin: -28px !important; - } - .v-application .ma-md-n8 { - margin: -32px !important; - } - .v-application .ma-md-n9 { - margin: -36px !important; - } - .v-application .ma-md-n10 { - margin: -40px !important; - } - .v-application .ma-md-n11 { - margin: -44px !important; - } - .v-application .ma-md-n12 { - margin: -48px !important; - } - .v-application .ma-md-n13 { - margin: -52px !important; - } - .v-application .ma-md-n14 { - margin: -56px !important; - } - .v-application .ma-md-n15 { - margin: -60px !important; - } - .v-application .ma-md-n16 { - margin: -64px !important; - } - .v-application .mx-md-n1 { - margin-right: -4px !important; - margin-left: -4px !important; - } - .v-application .mx-md-n2 { - margin-right: -8px !important; - margin-left: -8px !important; - } - .v-application .mx-md-n3 { - margin-right: -12px !important; - margin-left: -12px !important; - } - .v-application .mx-md-n4 { - margin-right: -16px !important; - margin-left: -16px !important; - } - .v-application .mx-md-n5 { - margin-right: -20px !important; - margin-left: -20px !important; - } - .v-application .mx-md-n6 { - margin-right: -24px !important; - margin-left: -24px !important; - } - .v-application .mx-md-n7 { - margin-right: -28px !important; - margin-left: -28px !important; - } - .v-application .mx-md-n8 { - margin-right: -32px !important; - margin-left: -32px !important; - } - .v-application .mx-md-n9 { - margin-right: -36px !important; - margin-left: -36px !important; - } - .v-application .mx-md-n10 { - margin-right: -40px !important; - margin-left: -40px !important; - } - .v-application .mx-md-n11 { - margin-right: -44px !important; - margin-left: -44px !important; - } - .v-application .mx-md-n12 { - margin-right: -48px !important; - margin-left: -48px !important; - } - .v-application .mx-md-n13 { - margin-right: -52px !important; - margin-left: -52px !important; - } - .v-application .mx-md-n14 { - margin-right: -56px !important; - margin-left: -56px !important; - } - .v-application .mx-md-n15 { - margin-right: -60px !important; - margin-left: -60px !important; - } - .v-application .mx-md-n16 { - margin-right: -64px !important; - margin-left: -64px !important; - } - .v-application .my-md-n1 { - margin-top: -4px !important; - margin-bottom: -4px !important; - } - .v-application .my-md-n2 { - margin-top: -8px !important; - margin-bottom: -8px !important; - } - .v-application .my-md-n3 { - margin-top: -12px !important; - margin-bottom: -12px !important; - } - .v-application .my-md-n4 { - margin-top: -16px !important; - margin-bottom: -16px !important; - } - .v-application .my-md-n5 { - margin-top: -20px !important; - margin-bottom: -20px !important; - } - .v-application .my-md-n6 { - margin-top: -24px !important; - margin-bottom: -24px !important; - } - .v-application .my-md-n7 { - margin-top: -28px !important; - margin-bottom: -28px !important; - } - .v-application .my-md-n8 { - margin-top: -32px !important; - margin-bottom: -32px !important; - } - .v-application .my-md-n9 { - margin-top: -36px !important; - margin-bottom: -36px !important; - } - .v-application .my-md-n10 { - margin-top: -40px !important; - margin-bottom: -40px !important; - } - .v-application .my-md-n11 { - margin-top: -44px !important; - margin-bottom: -44px !important; - } - .v-application .my-md-n12 { - margin-top: -48px !important; - margin-bottom: -48px !important; - } - .v-application .my-md-n13 { - margin-top: -52px !important; - margin-bottom: -52px !important; - } - .v-application .my-md-n14 { - margin-top: -56px !important; - margin-bottom: -56px !important; - } - .v-application .my-md-n15 { - margin-top: -60px !important; - margin-bottom: -60px !important; - } - .v-application .my-md-n16 { - margin-top: -64px !important; - margin-bottom: -64px !important; - } - .v-application .mt-md-n1 { - margin-top: -4px !important; - } - .v-application .mt-md-n2 { - margin-top: -8px !important; - } - .v-application .mt-md-n3 { - margin-top: -12px !important; - } - .v-application .mt-md-n4 { - margin-top: -16px !important; - } - .v-application .mt-md-n5 { - margin-top: -20px !important; - } - .v-application .mt-md-n6 { - margin-top: -24px !important; - } - .v-application .mt-md-n7 { - margin-top: -28px !important; - } - .v-application .mt-md-n8 { - margin-top: -32px !important; - } - .v-application .mt-md-n9 { - margin-top: -36px !important; - } - .v-application .mt-md-n10 { - margin-top: -40px !important; - } - .v-application .mt-md-n11 { - margin-top: -44px !important; - } - .v-application .mt-md-n12 { - margin-top: -48px !important; - } - .v-application .mt-md-n13 { - margin-top: -52px !important; - } - .v-application .mt-md-n14 { - margin-top: -56px !important; - } - .v-application .mt-md-n15 { - margin-top: -60px !important; - } - .v-application .mt-md-n16 { - margin-top: -64px !important; - } - .v-application .mr-md-n1 { - margin-right: -4px !important; - } - .v-application .mr-md-n2 { - margin-right: -8px !important; - } - .v-application .mr-md-n3 { - margin-right: -12px !important; - } - .v-application .mr-md-n4 { - margin-right: -16px !important; - } - .v-application .mr-md-n5 { - margin-right: -20px !important; - } - .v-application .mr-md-n6 { - margin-right: -24px !important; - } - .v-application .mr-md-n7 { - margin-right: -28px !important; - } - .v-application .mr-md-n8 { - margin-right: -32px !important; - } - .v-application .mr-md-n9 { - margin-right: -36px !important; - } - .v-application .mr-md-n10 { - margin-right: -40px !important; - } - .v-application .mr-md-n11 { - margin-right: -44px !important; - } - .v-application .mr-md-n12 { - margin-right: -48px !important; - } - .v-application .mr-md-n13 { - margin-right: -52px !important; - } - .v-application .mr-md-n14 { - margin-right: -56px !important; - } - .v-application .mr-md-n15 { - margin-right: -60px !important; - } - .v-application .mr-md-n16 { - margin-right: -64px !important; - } - .v-application .mb-md-n1 { - margin-bottom: -4px !important; - } - .v-application .mb-md-n2 { - margin-bottom: -8px !important; - } - .v-application .mb-md-n3 { - margin-bottom: -12px !important; - } - .v-application .mb-md-n4 { - margin-bottom: -16px !important; - } - .v-application .mb-md-n5 { - margin-bottom: -20px !important; - } - .v-application .mb-md-n6 { - margin-bottom: -24px !important; - } - .v-application .mb-md-n7 { - margin-bottom: -28px !important; - } - .v-application .mb-md-n8 { - margin-bottom: -32px !important; - } - .v-application .mb-md-n9 { - margin-bottom: -36px !important; - } - .v-application .mb-md-n10 { - margin-bottom: -40px !important; - } - .v-application .mb-md-n11 { - margin-bottom: -44px !important; - } - .v-application .mb-md-n12 { - margin-bottom: -48px !important; - } - .v-application .mb-md-n13 { - margin-bottom: -52px !important; - } - .v-application .mb-md-n14 { - margin-bottom: -56px !important; - } - .v-application .mb-md-n15 { - margin-bottom: -60px !important; - } - .v-application .mb-md-n16 { - margin-bottom: -64px !important; - } - .v-application .ml-md-n1 { - margin-left: -4px !important; - } - .v-application .ml-md-n2 { - margin-left: -8px !important; - } - .v-application .ml-md-n3 { - margin-left: -12px !important; - } - .v-application .ml-md-n4 { - margin-left: -16px !important; - } - .v-application .ml-md-n5 { - margin-left: -20px !important; - } - .v-application .ml-md-n6 { - margin-left: -24px !important; - } - .v-application .ml-md-n7 { - margin-left: -28px !important; - } - .v-application .ml-md-n8 { - margin-left: -32px !important; - } - .v-application .ml-md-n9 { - margin-left: -36px !important; - } - .v-application .ml-md-n10 { - margin-left: -40px !important; - } - .v-application .ml-md-n11 { - margin-left: -44px !important; - } - .v-application .ml-md-n12 { - margin-left: -48px !important; - } - .v-application .ml-md-n13 { - margin-left: -52px !important; - } - .v-application .ml-md-n14 { - margin-left: -56px !important; - } - .v-application .ml-md-n15 { - margin-left: -60px !important; - } - .v-application .ml-md-n16 { - margin-left: -64px !important; - } - .v-application--is-ltr .ms-md-n1 { - margin-left: -4px !important; - } - .v-application--is-rtl .ms-md-n1 { - margin-right: -4px !important; - } - .v-application--is-ltr .ms-md-n2 { - margin-left: -8px !important; - } - .v-application--is-rtl .ms-md-n2 { - margin-right: -8px !important; - } - .v-application--is-ltr .ms-md-n3 { - margin-left: -12px !important; - } - .v-application--is-rtl .ms-md-n3 { - margin-right: -12px !important; - } - .v-application--is-ltr .ms-md-n4 { - margin-left: -16px !important; - } - .v-application--is-rtl .ms-md-n4 { - margin-right: -16px !important; - } - .v-application--is-ltr .ms-md-n5 { - margin-left: -20px !important; - } - .v-application--is-rtl .ms-md-n5 { - margin-right: -20px !important; - } - .v-application--is-ltr .ms-md-n6 { - margin-left: -24px !important; - } - .v-application--is-rtl .ms-md-n6 { - margin-right: -24px !important; - } - .v-application--is-ltr .ms-md-n7 { - margin-left: -28px !important; - } - .v-application--is-rtl .ms-md-n7 { - margin-right: -28px !important; - } - .v-application--is-ltr .ms-md-n8 { - margin-left: -32px !important; - } - .v-application--is-rtl .ms-md-n8 { - margin-right: -32px !important; - } - .v-application--is-ltr .ms-md-n9 { - margin-left: -36px !important; - } - .v-application--is-rtl .ms-md-n9 { - margin-right: -36px !important; - } - .v-application--is-ltr .ms-md-n10 { - margin-left: -40px !important; - } - .v-application--is-rtl .ms-md-n10 { - margin-right: -40px !important; - } - .v-application--is-ltr .ms-md-n11 { - margin-left: -44px !important; - } - .v-application--is-rtl .ms-md-n11 { - margin-right: -44px !important; - } - .v-application--is-ltr .ms-md-n12 { - margin-left: -48px !important; - } - .v-application--is-rtl .ms-md-n12 { - margin-right: -48px !important; - } - .v-application--is-ltr .ms-md-n13 { - margin-left: -52px !important; - } - .v-application--is-rtl .ms-md-n13 { - margin-right: -52px !important; - } - .v-application--is-ltr .ms-md-n14 { - margin-left: -56px !important; - } - .v-application--is-rtl .ms-md-n14 { - margin-right: -56px !important; - } - .v-application--is-ltr .ms-md-n15 { - margin-left: -60px !important; - } - .v-application--is-rtl .ms-md-n15 { - margin-right: -60px !important; - } - .v-application--is-ltr .ms-md-n16 { - margin-left: -64px !important; - } - .v-application--is-rtl .ms-md-n16 { - margin-right: -64px !important; - } - .v-application--is-ltr .me-md-n1 { - margin-right: -4px !important; - } - .v-application--is-rtl .me-md-n1 { - margin-left: -4px !important; - } - .v-application--is-ltr .me-md-n2 { - margin-right: -8px !important; - } - .v-application--is-rtl .me-md-n2 { - margin-left: -8px !important; - } - .v-application--is-ltr .me-md-n3 { - margin-right: -12px !important; - } - .v-application--is-rtl .me-md-n3 { - margin-left: -12px !important; - } - .v-application--is-ltr .me-md-n4 { - margin-right: -16px !important; - } - .v-application--is-rtl .me-md-n4 { - margin-left: -16px !important; - } - .v-application--is-ltr .me-md-n5 { - margin-right: -20px !important; - } - .v-application--is-rtl .me-md-n5 { - margin-left: -20px !important; - } - .v-application--is-ltr .me-md-n6 { - margin-right: -24px !important; - } - .v-application--is-rtl .me-md-n6 { - margin-left: -24px !important; - } - .v-application--is-ltr .me-md-n7 { - margin-right: -28px !important; - } - .v-application--is-rtl .me-md-n7 { - margin-left: -28px !important; - } - .v-application--is-ltr .me-md-n8 { - margin-right: -32px !important; - } - .v-application--is-rtl .me-md-n8 { - margin-left: -32px !important; - } - .v-application--is-ltr .me-md-n9 { - margin-right: -36px !important; - } - .v-application--is-rtl .me-md-n9 { - margin-left: -36px !important; - } - .v-application--is-ltr .me-md-n10 { - margin-right: -40px !important; - } - .v-application--is-rtl .me-md-n10 { - margin-left: -40px !important; - } - .v-application--is-ltr .me-md-n11 { - margin-right: -44px !important; - } - .v-application--is-rtl .me-md-n11 { - margin-left: -44px !important; - } - .v-application--is-ltr .me-md-n12 { - margin-right: -48px !important; - } - .v-application--is-rtl .me-md-n12 { - margin-left: -48px !important; - } - .v-application--is-ltr .me-md-n13 { - margin-right: -52px !important; - } - .v-application--is-rtl .me-md-n13 { - margin-left: -52px !important; - } - .v-application--is-ltr .me-md-n14 { - margin-right: -56px !important; - } - .v-application--is-rtl .me-md-n14 { - margin-left: -56px !important; - } - .v-application--is-ltr .me-md-n15 { - margin-right: -60px !important; - } - .v-application--is-rtl .me-md-n15 { - margin-left: -60px !important; - } - .v-application--is-ltr .me-md-n16 { - margin-right: -64px !important; - } - .v-application--is-rtl .me-md-n16 { - margin-left: -64px !important; - } - .v-application .pa-md-0 { - padding: 0 !important; - } - .v-application .pa-md-1 { - padding: 4px !important; - } - .v-application .pa-md-2 { - padding: 8px !important; - } - .v-application .pa-md-3 { - padding: 12px !important; - } - .v-application .pa-md-4 { - padding: 16px !important; - } - .v-application .pa-md-5 { - padding: 20px !important; - } - .v-application .pa-md-6 { - padding: 24px !important; - } - .v-application .pa-md-7 { - padding: 28px !important; - } - .v-application .pa-md-8 { - padding: 32px !important; - } - .v-application .pa-md-9 { - padding: 36px !important; - } - .v-application .pa-md-10 { - padding: 40px !important; - } - .v-application .pa-md-11 { - padding: 44px !important; - } - .v-application .pa-md-12 { - padding: 48px !important; - } - .v-application .pa-md-13 { - padding: 52px !important; - } - .v-application .pa-md-14 { - padding: 56px !important; - } - .v-application .pa-md-15 { - padding: 60px !important; - } - .v-application .pa-md-16 { - padding: 64px !important; - } - .v-application .px-md-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - .v-application .px-md-1 { - padding-right: 4px !important; - padding-left: 4px !important; - } - .v-application .px-md-2 { - padding-right: 8px !important; - padding-left: 8px !important; - } - .v-application .px-md-3 { - padding-right: 12px !important; - padding-left: 12px !important; - } - .v-application .px-md-4 { - padding-right: 16px !important; - padding-left: 16px !important; - } - .v-application .px-md-5 { - padding-right: 20px !important; - padding-left: 20px !important; - } - .v-application .px-md-6 { - padding-right: 24px !important; - padding-left: 24px !important; - } - .v-application .px-md-7 { - padding-right: 28px !important; - padding-left: 28px !important; - } - .v-application .px-md-8 { - padding-right: 32px !important; - padding-left: 32px !important; - } - .v-application .px-md-9 { - padding-right: 36px !important; - padding-left: 36px !important; - } - .v-application .px-md-10 { - padding-right: 40px !important; - padding-left: 40px !important; - } - .v-application .px-md-11 { - padding-right: 44px !important; - padding-left: 44px !important; - } - .v-application .px-md-12 { - padding-right: 48px !important; - padding-left: 48px !important; - } - .v-application .px-md-13 { - padding-right: 52px !important; - padding-left: 52px !important; - } - .v-application .px-md-14 { - padding-right: 56px !important; - padding-left: 56px !important; - } - .v-application .px-md-15 { - padding-right: 60px !important; - padding-left: 60px !important; - } - .v-application .px-md-16 { - padding-right: 64px !important; - padding-left: 64px !important; - } - .v-application .py-md-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .v-application .py-md-1 { - padding-top: 4px !important; - padding-bottom: 4px !important; - } - .v-application .py-md-2 { - padding-top: 8px !important; - padding-bottom: 8px !important; - } - .v-application .py-md-3 { - padding-top: 12px !important; - padding-bottom: 12px !important; - } - .v-application .py-md-4 { - padding-top: 16px !important; - padding-bottom: 16px !important; - } - .v-application .py-md-5 { - padding-top: 20px !important; - padding-bottom: 20px !important; - } - .v-application .py-md-6 { - padding-top: 24px !important; - padding-bottom: 24px !important; - } - .v-application .py-md-7 { - padding-top: 28px !important; - padding-bottom: 28px !important; - } - .v-application .py-md-8 { - padding-top: 32px !important; - padding-bottom: 32px !important; - } - .v-application .py-md-9 { - padding-top: 36px !important; - padding-bottom: 36px !important; - } - .v-application .py-md-10 { - padding-top: 40px !important; - padding-bottom: 40px !important; - } - .v-application .py-md-11 { - padding-top: 44px !important; - padding-bottom: 44px !important; - } - .v-application .py-md-12 { - padding-top: 48px !important; - padding-bottom: 48px !important; - } - .v-application .py-md-13 { - padding-top: 52px !important; - padding-bottom: 52px !important; - } - .v-application .py-md-14 { - padding-top: 56px !important; - padding-bottom: 56px !important; - } - .v-application .py-md-15 { - padding-top: 60px !important; - padding-bottom: 60px !important; - } - .v-application .py-md-16 { - padding-top: 64px !important; - padding-bottom: 64px !important; - } - .v-application .pt-md-0 { - padding-top: 0 !important; - } - .v-application .pt-md-1 { - padding-top: 4px !important; - } - .v-application .pt-md-2 { - padding-top: 8px !important; - } - .v-application .pt-md-3 { - padding-top: 12px !important; - } - .v-application .pt-md-4 { - padding-top: 16px !important; - } - .v-application .pt-md-5 { - padding-top: 20px !important; - } - .v-application .pt-md-6 { - padding-top: 24px !important; - } - .v-application .pt-md-7 { - padding-top: 28px !important; - } - .v-application .pt-md-8 { - padding-top: 32px !important; - } - .v-application .pt-md-9 { - padding-top: 36px !important; - } - .v-application .pt-md-10 { - padding-top: 40px !important; - } - .v-application .pt-md-11 { - padding-top: 44px !important; - } - .v-application .pt-md-12 { - padding-top: 48px !important; - } - .v-application .pt-md-13 { - padding-top: 52px !important; - } - .v-application .pt-md-14 { - padding-top: 56px !important; - } - .v-application .pt-md-15 { - padding-top: 60px !important; - } - .v-application .pt-md-16 { - padding-top: 64px !important; - } - .v-application .pr-md-0 { - padding-right: 0 !important; - } - .v-application .pr-md-1 { - padding-right: 4px !important; - } - .v-application .pr-md-2 { - padding-right: 8px !important; - } - .v-application .pr-md-3 { - padding-right: 12px !important; - } - .v-application .pr-md-4 { - padding-right: 16px !important; - } - .v-application .pr-md-5 { - padding-right: 20px !important; - } - .v-application .pr-md-6 { - padding-right: 24px !important; - } - .v-application .pr-md-7 { - padding-right: 28px !important; - } - .v-application .pr-md-8 { - padding-right: 32px !important; - } - .v-application .pr-md-9 { - padding-right: 36px !important; - } - .v-application .pr-md-10 { - padding-right: 40px !important; - } - .v-application .pr-md-11 { - padding-right: 44px !important; - } - .v-application .pr-md-12 { - padding-right: 48px !important; - } - .v-application .pr-md-13 { - padding-right: 52px !important; - } - .v-application .pr-md-14 { - padding-right: 56px !important; - } - .v-application .pr-md-15 { - padding-right: 60px !important; - } - .v-application .pr-md-16 { - padding-right: 64px !important; - } - .v-application .pb-md-0 { - padding-bottom: 0 !important; - } - .v-application .pb-md-1 { - padding-bottom: 4px !important; - } - .v-application .pb-md-2 { - padding-bottom: 8px !important; - } - .v-application .pb-md-3 { - padding-bottom: 12px !important; - } - .v-application .pb-md-4 { - padding-bottom: 16px !important; - } - .v-application .pb-md-5 { - padding-bottom: 20px !important; - } - .v-application .pb-md-6 { - padding-bottom: 24px !important; - } - .v-application .pb-md-7 { - padding-bottom: 28px !important; - } - .v-application .pb-md-8 { - padding-bottom: 32px !important; - } - .v-application .pb-md-9 { - padding-bottom: 36px !important; - } - .v-application .pb-md-10 { - padding-bottom: 40px !important; - } - .v-application .pb-md-11 { - padding-bottom: 44px !important; - } - .v-application .pb-md-12 { - padding-bottom: 48px !important; - } - .v-application .pb-md-13 { - padding-bottom: 52px !important; - } - .v-application .pb-md-14 { - padding-bottom: 56px !important; - } - .v-application .pb-md-15 { - padding-bottom: 60px !important; - } - .v-application .pb-md-16 { - padding-bottom: 64px !important; - } - .v-application .pl-md-0 { - padding-left: 0 !important; - } - .v-application .pl-md-1 { - padding-left: 4px !important; - } - .v-application .pl-md-2 { - padding-left: 8px !important; - } - .v-application .pl-md-3 { - padding-left: 12px !important; - } - .v-application .pl-md-4 { - padding-left: 16px !important; - } - .v-application .pl-md-5 { - padding-left: 20px !important; - } - .v-application .pl-md-6 { - padding-left: 24px !important; - } - .v-application .pl-md-7 { - padding-left: 28px !important; - } - .v-application .pl-md-8 { - padding-left: 32px !important; - } - .v-application .pl-md-9 { - padding-left: 36px !important; - } - .v-application .pl-md-10 { - padding-left: 40px !important; - } - .v-application .pl-md-11 { - padding-left: 44px !important; - } - .v-application .pl-md-12 { - padding-left: 48px !important; - } - .v-application .pl-md-13 { - padding-left: 52px !important; - } - .v-application .pl-md-14 { - padding-left: 56px !important; - } - .v-application .pl-md-15 { - padding-left: 60px !important; - } - .v-application .pl-md-16 { - padding-left: 64px !important; - } - .v-application--is-ltr .ps-md-0 { - padding-left: 0 !important; - } - .v-application--is-rtl .ps-md-0 { - padding-right: 0 !important; - } - .v-application--is-ltr .ps-md-1 { - padding-left: 4px !important; - } - .v-application--is-rtl .ps-md-1 { - padding-right: 4px !important; - } - .v-application--is-ltr .ps-md-2 { - padding-left: 8px !important; - } - .v-application--is-rtl .ps-md-2 { - padding-right: 8px !important; - } - .v-application--is-ltr .ps-md-3 { - padding-left: 12px !important; - } - .v-application--is-rtl .ps-md-3 { - padding-right: 12px !important; - } - .v-application--is-ltr .ps-md-4 { - padding-left: 16px !important; - } - .v-application--is-rtl .ps-md-4 { - padding-right: 16px !important; - } - .v-application--is-ltr .ps-md-5 { - padding-left: 20px !important; - } - .v-application--is-rtl .ps-md-5 { - padding-right: 20px !important; - } - .v-application--is-ltr .ps-md-6 { - padding-left: 24px !important; - } - .v-application--is-rtl .ps-md-6 { - padding-right: 24px !important; - } - .v-application--is-ltr .ps-md-7 { - padding-left: 28px !important; - } - .v-application--is-rtl .ps-md-7 { - padding-right: 28px !important; - } - .v-application--is-ltr .ps-md-8 { - padding-left: 32px !important; - } - .v-application--is-rtl .ps-md-8 { - padding-right: 32px !important; - } - .v-application--is-ltr .ps-md-9 { - padding-left: 36px !important; - } - .v-application--is-rtl .ps-md-9 { - padding-right: 36px !important; - } - .v-application--is-ltr .ps-md-10 { - padding-left: 40px !important; - } - .v-application--is-rtl .ps-md-10 { - padding-right: 40px !important; - } - .v-application--is-ltr .ps-md-11 { - padding-left: 44px !important; - } - .v-application--is-rtl .ps-md-11 { - padding-right: 44px !important; - } - .v-application--is-ltr .ps-md-12 { - padding-left: 48px !important; - } - .v-application--is-rtl .ps-md-12 { - padding-right: 48px !important; - } - .v-application--is-ltr .ps-md-13 { - padding-left: 52px !important; - } - .v-application--is-rtl .ps-md-13 { - padding-right: 52px !important; - } - .v-application--is-ltr .ps-md-14 { - padding-left: 56px !important; - } - .v-application--is-rtl .ps-md-14 { - padding-right: 56px !important; - } - .v-application--is-ltr .ps-md-15 { - padding-left: 60px !important; - } - .v-application--is-rtl .ps-md-15 { - padding-right: 60px !important; - } - .v-application--is-ltr .ps-md-16 { - padding-left: 64px !important; - } - .v-application--is-rtl .ps-md-16 { - padding-right: 64px !important; - } - .v-application--is-ltr .pe-md-0 { - padding-right: 0 !important; - } - .v-application--is-rtl .pe-md-0 { - padding-left: 0 !important; - } - .v-application--is-ltr .pe-md-1 { - padding-right: 4px !important; - } - .v-application--is-rtl .pe-md-1 { - padding-left: 4px !important; - } - .v-application--is-ltr .pe-md-2 { - padding-right: 8px !important; - } - .v-application--is-rtl .pe-md-2 { - padding-left: 8px !important; - } - .v-application--is-ltr .pe-md-3 { - padding-right: 12px !important; - } - .v-application--is-rtl .pe-md-3 { - padding-left: 12px !important; - } - .v-application--is-ltr .pe-md-4 { - padding-right: 16px !important; - } - .v-application--is-rtl .pe-md-4 { - padding-left: 16px !important; - } - .v-application--is-ltr .pe-md-5 { - padding-right: 20px !important; - } - .v-application--is-rtl .pe-md-5 { - padding-left: 20px !important; - } - .v-application--is-ltr .pe-md-6 { - padding-right: 24px !important; - } - .v-application--is-rtl .pe-md-6 { - padding-left: 24px !important; - } - .v-application--is-ltr .pe-md-7 { - padding-right: 28px !important; - } - .v-application--is-rtl .pe-md-7 { - padding-left: 28px !important; - } - .v-application--is-ltr .pe-md-8 { - padding-right: 32px !important; - } - .v-application--is-rtl .pe-md-8 { - padding-left: 32px !important; - } - .v-application--is-ltr .pe-md-9 { - padding-right: 36px !important; - } - .v-application--is-rtl .pe-md-9 { - padding-left: 36px !important; - } - .v-application--is-ltr .pe-md-10 { - padding-right: 40px !important; - } - .v-application--is-rtl .pe-md-10 { - padding-left: 40px !important; - } - .v-application--is-ltr .pe-md-11 { - padding-right: 44px !important; - } - .v-application--is-rtl .pe-md-11 { - padding-left: 44px !important; - } - .v-application--is-ltr .pe-md-12 { - padding-right: 48px !important; - } - .v-application--is-rtl .pe-md-12 { - padding-left: 48px !important; - } - .v-application--is-ltr .pe-md-13 { - padding-right: 52px !important; - } - .v-application--is-rtl .pe-md-13 { - padding-left: 52px !important; - } - .v-application--is-ltr .pe-md-14 { - padding-right: 56px !important; - } - .v-application--is-rtl .pe-md-14 { - padding-left: 56px !important; - } - .v-application--is-ltr .pe-md-15 { - padding-right: 60px !important; - } - .v-application--is-rtl .pe-md-15 { - padding-left: 60px !important; - } - .v-application--is-ltr .pe-md-16 { - padding-right: 64px !important; - } - .v-application--is-rtl .pe-md-16 { - padding-left: 64px !important; - } - .v-application .text-md-left { - text-align: left !important; - } - .v-application .text-md-right { - text-align: right !important; - } - .v-application .text-md-center { - text-align: center !important; - } - .v-application .text-md-justify { - text-align: justify !important; - } - .v-application .text-md-start { - text-align: start !important; - } - .v-application .text-md-end { - text-align: end !important; - } - .v-application .text-md-h1 { - font-size: 6rem !important; - line-height: 6rem; - letter-spacing: -0.015625em !important; - } - .v-application .text-md-h1, - .v-application .text-md-h2 { - font-weight: 300; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-h2 { - font-size: 3.75rem !important; - line-height: 3.75rem; - letter-spacing: -0.0083333333em !important; - } - .v-application .text-md-h3 { - font-size: 3rem !important; - line-height: 3.125rem; - letter-spacing: normal !important; - } - .v-application .text-md-h3, - .v-application .text-md-h4 { - font-weight: 400; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-h4 { - font-size: 2.125rem !important; - line-height: 2.5rem; - letter-spacing: 0.0073529412em !important; - } - .v-application .text-md-h5 { - font-size: 1.5rem !important; - font-weight: 400; - letter-spacing: normal !important; - } - .v-application .text-md-h5, - .v-application .text-md-h6 { - line-height: 2rem; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-h6 { - font-size: 1.25rem !important; - font-weight: 500; - letter-spacing: 0.0125em !important; - } - .v-application .text-md-subtitle-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.75rem; - letter-spacing: 0.009375em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-subtitle-2 { - font-size: 0.875rem !important; - font-weight: 500; - line-height: 1.375rem; - letter-spacing: 0.0071428571em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-body-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.5rem; - letter-spacing: 0.03125em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-body-2 { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0178571429em !important; - } - .v-application .text-md-body-2, - .v-application .text-md-button { - font-size: 0.875rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-button { - font-weight: 500; - line-height: 2.25rem; - letter-spacing: 0.0892857143em !important; - text-transform: uppercase !important; - } - .v-application .text-md-caption { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0333333333em !important; - } - .v-application .text-md-caption, - .v-application .text-md-overline { - font-size: 0.75rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-md-overline { - font-weight: 500; - line-height: 2rem; - letter-spacing: 0.1666666667em !important; - text-transform: uppercase !important; - } -} -@media (min-width: 1264px) { - .v-application .d-lg-none { - display: none !important; - } - .v-application .d-lg-inline { - display: inline !important; - } - .v-application .d-lg-inline-block { - display: inline-block !important; - } - .v-application .d-lg-block { - display: block !important; - } - .v-application .d-lg-table { - display: table !important; - } - .v-application .d-lg-table-row { - display: table-row !important; - } - .v-application .d-lg-table-cell { - display: table-cell !important; - } - .v-application .d-lg-flex { - display: flex !important; - } - .v-application .d-lg-inline-flex { - display: inline-flex !important; - } - .v-application .float-lg-none { - float: none !important; - } - .v-application .float-lg-left { - float: left !important; - } - .v-application .float-lg-right { - float: right !important; - } - .v-application .flex-lg-fill { - flex: 1 1 auto !important; - } - .v-application .flex-lg-row { - flex-direction: row !important; - } - .v-application .flex-lg-column { - flex-direction: column !important; - } - .v-application .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - .v-application .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - .v-application .flex-lg-grow-0 { - flex-grow: 0 !important; - } - .v-application .flex-lg-grow-1 { - flex-grow: 1 !important; - } - .v-application .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - .v-application .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - .v-application .flex-lg-wrap { - flex-wrap: wrap !important; - } - .v-application .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - .v-application .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .v-application .justify-lg-start { - justify-content: flex-start !important; - } - .v-application .justify-lg-end { - justify-content: flex-end !important; - } - .v-application .justify-lg-center { - justify-content: center !important; - } - .v-application .justify-lg-space-between { - justify-content: space-between !important; - } - .v-application .justify-lg-space-around { - justify-content: space-around !important; - } - .v-application .align-lg-start { - align-items: flex-start !important; - } - .v-application .align-lg-end { - align-items: flex-end !important; - } - .v-application .align-lg-center { - align-items: center !important; - } - .v-application .align-lg-baseline { - align-items: baseline !important; - } - .v-application .align-lg-stretch { - align-items: stretch !important; - } - .v-application .align-content-lg-start { - align-content: flex-start !important; - } - .v-application .align-content-lg-end { - align-content: flex-end !important; - } - .v-application .align-content-lg-center { - align-content: center !important; - } - .v-application .align-content-lg-space-between { - align-content: space-between !important; - } - .v-application .align-content-lg-space-around { - align-content: space-around !important; - } - .v-application .align-content-lg-stretch { - align-content: stretch !important; - } - .v-application .align-self-lg-auto { - align-self: auto !important; - } - .v-application .align-self-lg-start { - align-self: flex-start !important; - } - .v-application .align-self-lg-end { - align-self: flex-end !important; - } - .v-application .align-self-lg-center { - align-self: center !important; - } - .v-application .align-self-lg-baseline { - align-self: baseline !important; - } - .v-application .align-self-lg-stretch { - align-self: stretch !important; - } - .v-application .order-lg-first { - order: -1 !important; - } - .v-application .order-lg-0 { - order: 0 !important; - } - .v-application .order-lg-1 { - order: 1 !important; - } - .v-application .order-lg-2 { - order: 2 !important; - } - .v-application .order-lg-3 { - order: 3 !important; - } - .v-application .order-lg-4 { - order: 4 !important; - } - .v-application .order-lg-5 { - order: 5 !important; - } - .v-application .order-lg-6 { - order: 6 !important; - } - .v-application .order-lg-7 { - order: 7 !important; - } - .v-application .order-lg-8 { - order: 8 !important; - } - .v-application .order-lg-9 { - order: 9 !important; - } - .v-application .order-lg-10 { - order: 10 !important; - } - .v-application .order-lg-11 { - order: 11 !important; - } - .v-application .order-lg-12 { - order: 12 !important; - } - .v-application .order-lg-last { - order: 13 !important; - } - .v-application .ma-lg-0 { - margin: 0 !important; - } - .v-application .ma-lg-1 { - margin: 4px !important; - } - .v-application .ma-lg-2 { - margin: 8px !important; - } - .v-application .ma-lg-3 { - margin: 12px !important; - } - .v-application .ma-lg-4 { - margin: 16px !important; - } - .v-application .ma-lg-5 { - margin: 20px !important; - } - .v-application .ma-lg-6 { - margin: 24px !important; - } - .v-application .ma-lg-7 { - margin: 28px !important; - } - .v-application .ma-lg-8 { - margin: 32px !important; - } - .v-application .ma-lg-9 { - margin: 36px !important; - } - .v-application .ma-lg-10 { - margin: 40px !important; - } - .v-application .ma-lg-11 { - margin: 44px !important; - } - .v-application .ma-lg-12 { - margin: 48px !important; - } - .v-application .ma-lg-13 { - margin: 52px !important; - } - .v-application .ma-lg-14 { - margin: 56px !important; - } - .v-application .ma-lg-15 { - margin: 60px !important; - } - .v-application .ma-lg-16 { - margin: 64px !important; - } - .v-application .ma-lg-auto { - margin: auto !important; - } - .v-application .mx-lg-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - .v-application .mx-lg-1 { - margin-right: 4px !important; - margin-left: 4px !important; - } - .v-application .mx-lg-2 { - margin-right: 8px !important; - margin-left: 8px !important; - } - .v-application .mx-lg-3 { - margin-right: 12px !important; - margin-left: 12px !important; - } - .v-application .mx-lg-4 { - margin-right: 16px !important; - margin-left: 16px !important; - } - .v-application .mx-lg-5 { - margin-right: 20px !important; - margin-left: 20px !important; - } - .v-application .mx-lg-6 { - margin-right: 24px !important; - margin-left: 24px !important; - } - .v-application .mx-lg-7 { - margin-right: 28px !important; - margin-left: 28px !important; - } - .v-application .mx-lg-8 { - margin-right: 32px !important; - margin-left: 32px !important; - } - .v-application .mx-lg-9 { - margin-right: 36px !important; - margin-left: 36px !important; - } - .v-application .mx-lg-10 { - margin-right: 40px !important; - margin-left: 40px !important; - } - .v-application .mx-lg-11 { - margin-right: 44px !important; - margin-left: 44px !important; - } - .v-application .mx-lg-12 { - margin-right: 48px !important; - margin-left: 48px !important; - } - .v-application .mx-lg-13 { - margin-right: 52px !important; - margin-left: 52px !important; - } - .v-application .mx-lg-14 { - margin-right: 56px !important; - margin-left: 56px !important; - } - .v-application .mx-lg-15 { - margin-right: 60px !important; - margin-left: 60px !important; - } - .v-application .mx-lg-16 { - margin-right: 64px !important; - margin-left: 64px !important; - } - .v-application .mx-lg-auto { - margin-right: auto !important; - margin-left: auto !important; - } - .v-application .my-lg-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .v-application .my-lg-1 { - margin-top: 4px !important; - margin-bottom: 4px !important; - } - .v-application .my-lg-2 { - margin-top: 8px !important; - margin-bottom: 8px !important; - } - .v-application .my-lg-3 { - margin-top: 12px !important; - margin-bottom: 12px !important; - } - .v-application .my-lg-4 { - margin-top: 16px !important; - margin-bottom: 16px !important; - } - .v-application .my-lg-5 { - margin-top: 20px !important; - margin-bottom: 20px !important; - } - .v-application .my-lg-6 { - margin-top: 24px !important; - margin-bottom: 24px !important; - } - .v-application .my-lg-7 { - margin-top: 28px !important; - margin-bottom: 28px !important; - } - .v-application .my-lg-8 { - margin-top: 32px !important; - margin-bottom: 32px !important; - } - .v-application .my-lg-9 { - margin-top: 36px !important; - margin-bottom: 36px !important; - } - .v-application .my-lg-10 { - margin-top: 40px !important; - margin-bottom: 40px !important; - } - .v-application .my-lg-11 { - margin-top: 44px !important; - margin-bottom: 44px !important; - } - .v-application .my-lg-12 { - margin-top: 48px !important; - margin-bottom: 48px !important; - } - .v-application .my-lg-13 { - margin-top: 52px !important; - margin-bottom: 52px !important; - } - .v-application .my-lg-14 { - margin-top: 56px !important; - margin-bottom: 56px !important; - } - .v-application .my-lg-15 { - margin-top: 60px !important; - margin-bottom: 60px !important; - } - .v-application .my-lg-16 { - margin-top: 64px !important; - margin-bottom: 64px !important; - } - .v-application .my-lg-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .v-application .mt-lg-0 { - margin-top: 0 !important; - } - .v-application .mt-lg-1 { - margin-top: 4px !important; - } - .v-application .mt-lg-2 { - margin-top: 8px !important; - } - .v-application .mt-lg-3 { - margin-top: 12px !important; - } - .v-application .mt-lg-4 { - margin-top: 16px !important; - } - .v-application .mt-lg-5 { - margin-top: 20px !important; - } - .v-application .mt-lg-6 { - margin-top: 24px !important; - } - .v-application .mt-lg-7 { - margin-top: 28px !important; - } - .v-application .mt-lg-8 { - margin-top: 32px !important; - } - .v-application .mt-lg-9 { - margin-top: 36px !important; - } - .v-application .mt-lg-10 { - margin-top: 40px !important; - } - .v-application .mt-lg-11 { - margin-top: 44px !important; - } - .v-application .mt-lg-12 { - margin-top: 48px !important; - } - .v-application .mt-lg-13 { - margin-top: 52px !important; - } - .v-application .mt-lg-14 { - margin-top: 56px !important; - } - .v-application .mt-lg-15 { - margin-top: 60px !important; - } - .v-application .mt-lg-16 { - margin-top: 64px !important; - } - .v-application .mt-lg-auto { - margin-top: auto !important; - } - .v-application .mr-lg-0 { - margin-right: 0 !important; - } - .v-application .mr-lg-1 { - margin-right: 4px !important; - } - .v-application .mr-lg-2 { - margin-right: 8px !important; - } - .v-application .mr-lg-3 { - margin-right: 12px !important; - } - .v-application .mr-lg-4 { - margin-right: 16px !important; - } - .v-application .mr-lg-5 { - margin-right: 20px !important; - } - .v-application .mr-lg-6 { - margin-right: 24px !important; - } - .v-application .mr-lg-7 { - margin-right: 28px !important; - } - .v-application .mr-lg-8 { - margin-right: 32px !important; - } - .v-application .mr-lg-9 { - margin-right: 36px !important; - } - .v-application .mr-lg-10 { - margin-right: 40px !important; - } - .v-application .mr-lg-11 { - margin-right: 44px !important; - } - .v-application .mr-lg-12 { - margin-right: 48px !important; - } - .v-application .mr-lg-13 { - margin-right: 52px !important; - } - .v-application .mr-lg-14 { - margin-right: 56px !important; - } - .v-application .mr-lg-15 { - margin-right: 60px !important; - } - .v-application .mr-lg-16 { - margin-right: 64px !important; - } - .v-application .mr-lg-auto { - margin-right: auto !important; - } - .v-application .mb-lg-0 { - margin-bottom: 0 !important; - } - .v-application .mb-lg-1 { - margin-bottom: 4px !important; - } - .v-application .mb-lg-2 { - margin-bottom: 8px !important; - } - .v-application .mb-lg-3 { - margin-bottom: 12px !important; - } - .v-application .mb-lg-4 { - margin-bottom: 16px !important; - } - .v-application .mb-lg-5 { - margin-bottom: 20px !important; - } - .v-application .mb-lg-6 { - margin-bottom: 24px !important; - } - .v-application .mb-lg-7 { - margin-bottom: 28px !important; - } - .v-application .mb-lg-8 { - margin-bottom: 32px !important; - } - .v-application .mb-lg-9 { - margin-bottom: 36px !important; - } - .v-application .mb-lg-10 { - margin-bottom: 40px !important; - } - .v-application .mb-lg-11 { - margin-bottom: 44px !important; - } - .v-application .mb-lg-12 { - margin-bottom: 48px !important; - } - .v-application .mb-lg-13 { - margin-bottom: 52px !important; - } - .v-application .mb-lg-14 { - margin-bottom: 56px !important; - } - .v-application .mb-lg-15 { - margin-bottom: 60px !important; - } - .v-application .mb-lg-16 { - margin-bottom: 64px !important; - } - .v-application .mb-lg-auto { - margin-bottom: auto !important; - } - .v-application .ml-lg-0 { - margin-left: 0 !important; - } - .v-application .ml-lg-1 { - margin-left: 4px !important; - } - .v-application .ml-lg-2 { - margin-left: 8px !important; - } - .v-application .ml-lg-3 { - margin-left: 12px !important; - } - .v-application .ml-lg-4 { - margin-left: 16px !important; - } - .v-application .ml-lg-5 { - margin-left: 20px !important; - } - .v-application .ml-lg-6 { - margin-left: 24px !important; - } - .v-application .ml-lg-7 { - margin-left: 28px !important; - } - .v-application .ml-lg-8 { - margin-left: 32px !important; - } - .v-application .ml-lg-9 { - margin-left: 36px !important; - } - .v-application .ml-lg-10 { - margin-left: 40px !important; - } - .v-application .ml-lg-11 { - margin-left: 44px !important; - } - .v-application .ml-lg-12 { - margin-left: 48px !important; - } - .v-application .ml-lg-13 { - margin-left: 52px !important; - } - .v-application .ml-lg-14 { - margin-left: 56px !important; - } - .v-application .ml-lg-15 { - margin-left: 60px !important; - } - .v-application .ml-lg-16 { - margin-left: 64px !important; - } - .v-application .ml-lg-auto { - margin-left: auto !important; - } - .v-application--is-ltr .ms-lg-0 { - margin-left: 0 !important; - } - .v-application--is-rtl .ms-lg-0 { - margin-right: 0 !important; - } - .v-application--is-ltr .ms-lg-1 { - margin-left: 4px !important; - } - .v-application--is-rtl .ms-lg-1 { - margin-right: 4px !important; - } - .v-application--is-ltr .ms-lg-2 { - margin-left: 8px !important; - } - .v-application--is-rtl .ms-lg-2 { - margin-right: 8px !important; - } - .v-application--is-ltr .ms-lg-3 { - margin-left: 12px !important; - } - .v-application--is-rtl .ms-lg-3 { - margin-right: 12px !important; - } - .v-application--is-ltr .ms-lg-4 { - margin-left: 16px !important; - } - .v-application--is-rtl .ms-lg-4 { - margin-right: 16px !important; - } - .v-application--is-ltr .ms-lg-5 { - margin-left: 20px !important; - } - .v-application--is-rtl .ms-lg-5 { - margin-right: 20px !important; - } - .v-application--is-ltr .ms-lg-6 { - margin-left: 24px !important; - } - .v-application--is-rtl .ms-lg-6 { - margin-right: 24px !important; - } - .v-application--is-ltr .ms-lg-7 { - margin-left: 28px !important; - } - .v-application--is-rtl .ms-lg-7 { - margin-right: 28px !important; - } - .v-application--is-ltr .ms-lg-8 { - margin-left: 32px !important; - } - .v-application--is-rtl .ms-lg-8 { - margin-right: 32px !important; - } - .v-application--is-ltr .ms-lg-9 { - margin-left: 36px !important; - } - .v-application--is-rtl .ms-lg-9 { - margin-right: 36px !important; - } - .v-application--is-ltr .ms-lg-10 { - margin-left: 40px !important; - } - .v-application--is-rtl .ms-lg-10 { - margin-right: 40px !important; - } - .v-application--is-ltr .ms-lg-11 { - margin-left: 44px !important; - } - .v-application--is-rtl .ms-lg-11 { - margin-right: 44px !important; - } - .v-application--is-ltr .ms-lg-12 { - margin-left: 48px !important; - } - .v-application--is-rtl .ms-lg-12 { - margin-right: 48px !important; - } - .v-application--is-ltr .ms-lg-13 { - margin-left: 52px !important; - } - .v-application--is-rtl .ms-lg-13 { - margin-right: 52px !important; - } - .v-application--is-ltr .ms-lg-14 { - margin-left: 56px !important; - } - .v-application--is-rtl .ms-lg-14 { - margin-right: 56px !important; - } - .v-application--is-ltr .ms-lg-15 { - margin-left: 60px !important; - } - .v-application--is-rtl .ms-lg-15 { - margin-right: 60px !important; - } - .v-application--is-ltr .ms-lg-16 { - margin-left: 64px !important; - } - .v-application--is-rtl .ms-lg-16 { - margin-right: 64px !important; - } - .v-application--is-ltr .ms-lg-auto { - margin-left: auto !important; - } - .v-application--is-rtl .ms-lg-auto { - margin-right: auto !important; - } - .v-application--is-ltr .me-lg-0 { - margin-right: 0 !important; - } - .v-application--is-rtl .me-lg-0 { - margin-left: 0 !important; - } - .v-application--is-ltr .me-lg-1 { - margin-right: 4px !important; - } - .v-application--is-rtl .me-lg-1 { - margin-left: 4px !important; - } - .v-application--is-ltr .me-lg-2 { - margin-right: 8px !important; - } - .v-application--is-rtl .me-lg-2 { - margin-left: 8px !important; - } - .v-application--is-ltr .me-lg-3 { - margin-right: 12px !important; - } - .v-application--is-rtl .me-lg-3 { - margin-left: 12px !important; - } - .v-application--is-ltr .me-lg-4 { - margin-right: 16px !important; - } - .v-application--is-rtl .me-lg-4 { - margin-left: 16px !important; - } - .v-application--is-ltr .me-lg-5 { - margin-right: 20px !important; - } - .v-application--is-rtl .me-lg-5 { - margin-left: 20px !important; - } - .v-application--is-ltr .me-lg-6 { - margin-right: 24px !important; - } - .v-application--is-rtl .me-lg-6 { - margin-left: 24px !important; - } - .v-application--is-ltr .me-lg-7 { - margin-right: 28px !important; - } - .v-application--is-rtl .me-lg-7 { - margin-left: 28px !important; - } - .v-application--is-ltr .me-lg-8 { - margin-right: 32px !important; - } - .v-application--is-rtl .me-lg-8 { - margin-left: 32px !important; - } - .v-application--is-ltr .me-lg-9 { - margin-right: 36px !important; - } - .v-application--is-rtl .me-lg-9 { - margin-left: 36px !important; - } - .v-application--is-ltr .me-lg-10 { - margin-right: 40px !important; - } - .v-application--is-rtl .me-lg-10 { - margin-left: 40px !important; - } - .v-application--is-ltr .me-lg-11 { - margin-right: 44px !important; - } - .v-application--is-rtl .me-lg-11 { - margin-left: 44px !important; - } - .v-application--is-ltr .me-lg-12 { - margin-right: 48px !important; - } - .v-application--is-rtl .me-lg-12 { - margin-left: 48px !important; - } - .v-application--is-ltr .me-lg-13 { - margin-right: 52px !important; - } - .v-application--is-rtl .me-lg-13 { - margin-left: 52px !important; - } - .v-application--is-ltr .me-lg-14 { - margin-right: 56px !important; - } - .v-application--is-rtl .me-lg-14 { - margin-left: 56px !important; - } - .v-application--is-ltr .me-lg-15 { - margin-right: 60px !important; - } - .v-application--is-rtl .me-lg-15 { - margin-left: 60px !important; - } - .v-application--is-ltr .me-lg-16 { - margin-right: 64px !important; - } - .v-application--is-rtl .me-lg-16 { - margin-left: 64px !important; - } - .v-application--is-ltr .me-lg-auto { - margin-right: auto !important; - } - .v-application--is-rtl .me-lg-auto { - margin-left: auto !important; - } - .v-application .ma-lg-n1 { - margin: -4px !important; - } - .v-application .ma-lg-n2 { - margin: -8px !important; - } - .v-application .ma-lg-n3 { - margin: -12px !important; - } - .v-application .ma-lg-n4 { - margin: -16px !important; - } - .v-application .ma-lg-n5 { - margin: -20px !important; - } - .v-application .ma-lg-n6 { - margin: -24px !important; - } - .v-application .ma-lg-n7 { - margin: -28px !important; - } - .v-application .ma-lg-n8 { - margin: -32px !important; - } - .v-application .ma-lg-n9 { - margin: -36px !important; - } - .v-application .ma-lg-n10 { - margin: -40px !important; - } - .v-application .ma-lg-n11 { - margin: -44px !important; - } - .v-application .ma-lg-n12 { - margin: -48px !important; - } - .v-application .ma-lg-n13 { - margin: -52px !important; - } - .v-application .ma-lg-n14 { - margin: -56px !important; - } - .v-application .ma-lg-n15 { - margin: -60px !important; - } - .v-application .ma-lg-n16 { - margin: -64px !important; - } - .v-application .mx-lg-n1 { - margin-right: -4px !important; - margin-left: -4px !important; - } - .v-application .mx-lg-n2 { - margin-right: -8px !important; - margin-left: -8px !important; - } - .v-application .mx-lg-n3 { - margin-right: -12px !important; - margin-left: -12px !important; - } - .v-application .mx-lg-n4 { - margin-right: -16px !important; - margin-left: -16px !important; - } - .v-application .mx-lg-n5 { - margin-right: -20px !important; - margin-left: -20px !important; - } - .v-application .mx-lg-n6 { - margin-right: -24px !important; - margin-left: -24px !important; - } - .v-application .mx-lg-n7 { - margin-right: -28px !important; - margin-left: -28px !important; - } - .v-application .mx-lg-n8 { - margin-right: -32px !important; - margin-left: -32px !important; - } - .v-application .mx-lg-n9 { - margin-right: -36px !important; - margin-left: -36px !important; - } - .v-application .mx-lg-n10 { - margin-right: -40px !important; - margin-left: -40px !important; - } - .v-application .mx-lg-n11 { - margin-right: -44px !important; - margin-left: -44px !important; - } - .v-application .mx-lg-n12 { - margin-right: -48px !important; - margin-left: -48px !important; - } - .v-application .mx-lg-n13 { - margin-right: -52px !important; - margin-left: -52px !important; - } - .v-application .mx-lg-n14 { - margin-right: -56px !important; - margin-left: -56px !important; - } - .v-application .mx-lg-n15 { - margin-right: -60px !important; - margin-left: -60px !important; - } - .v-application .mx-lg-n16 { - margin-right: -64px !important; - margin-left: -64px !important; - } - .v-application .my-lg-n1 { - margin-top: -4px !important; - margin-bottom: -4px !important; - } - .v-application .my-lg-n2 { - margin-top: -8px !important; - margin-bottom: -8px !important; - } - .v-application .my-lg-n3 { - margin-top: -12px !important; - margin-bottom: -12px !important; - } - .v-application .my-lg-n4 { - margin-top: -16px !important; - margin-bottom: -16px !important; - } - .v-application .my-lg-n5 { - margin-top: -20px !important; - margin-bottom: -20px !important; - } - .v-application .my-lg-n6 { - margin-top: -24px !important; - margin-bottom: -24px !important; - } - .v-application .my-lg-n7 { - margin-top: -28px !important; - margin-bottom: -28px !important; - } - .v-application .my-lg-n8 { - margin-top: -32px !important; - margin-bottom: -32px !important; - } - .v-application .my-lg-n9 { - margin-top: -36px !important; - margin-bottom: -36px !important; - } - .v-application .my-lg-n10 { - margin-top: -40px !important; - margin-bottom: -40px !important; - } - .v-application .my-lg-n11 { - margin-top: -44px !important; - margin-bottom: -44px !important; - } - .v-application .my-lg-n12 { - margin-top: -48px !important; - margin-bottom: -48px !important; - } - .v-application .my-lg-n13 { - margin-top: -52px !important; - margin-bottom: -52px !important; - } - .v-application .my-lg-n14 { - margin-top: -56px !important; - margin-bottom: -56px !important; - } - .v-application .my-lg-n15 { - margin-top: -60px !important; - margin-bottom: -60px !important; - } - .v-application .my-lg-n16 { - margin-top: -64px !important; - margin-bottom: -64px !important; - } - .v-application .mt-lg-n1 { - margin-top: -4px !important; - } - .v-application .mt-lg-n2 { - margin-top: -8px !important; - } - .v-application .mt-lg-n3 { - margin-top: -12px !important; - } - .v-application .mt-lg-n4 { - margin-top: -16px !important; - } - .v-application .mt-lg-n5 { - margin-top: -20px !important; - } - .v-application .mt-lg-n6 { - margin-top: -24px !important; - } - .v-application .mt-lg-n7 { - margin-top: -28px !important; - } - .v-application .mt-lg-n8 { - margin-top: -32px !important; - } - .v-application .mt-lg-n9 { - margin-top: -36px !important; - } - .v-application .mt-lg-n10 { - margin-top: -40px !important; - } - .v-application .mt-lg-n11 { - margin-top: -44px !important; - } - .v-application .mt-lg-n12 { - margin-top: -48px !important; - } - .v-application .mt-lg-n13 { - margin-top: -52px !important; - } - .v-application .mt-lg-n14 { - margin-top: -56px !important; - } - .v-application .mt-lg-n15 { - margin-top: -60px !important; - } - .v-application .mt-lg-n16 { - margin-top: -64px !important; - } - .v-application .mr-lg-n1 { - margin-right: -4px !important; - } - .v-application .mr-lg-n2 { - margin-right: -8px !important; - } - .v-application .mr-lg-n3 { - margin-right: -12px !important; - } - .v-application .mr-lg-n4 { - margin-right: -16px !important; - } - .v-application .mr-lg-n5 { - margin-right: -20px !important; - } - .v-application .mr-lg-n6 { - margin-right: -24px !important; - } - .v-application .mr-lg-n7 { - margin-right: -28px !important; - } - .v-application .mr-lg-n8 { - margin-right: -32px !important; - } - .v-application .mr-lg-n9 { - margin-right: -36px !important; - } - .v-application .mr-lg-n10 { - margin-right: -40px !important; - } - .v-application .mr-lg-n11 { - margin-right: -44px !important; - } - .v-application .mr-lg-n12 { - margin-right: -48px !important; - } - .v-application .mr-lg-n13 { - margin-right: -52px !important; - } - .v-application .mr-lg-n14 { - margin-right: -56px !important; - } - .v-application .mr-lg-n15 { - margin-right: -60px !important; - } - .v-application .mr-lg-n16 { - margin-right: -64px !important; - } - .v-application .mb-lg-n1 { - margin-bottom: -4px !important; - } - .v-application .mb-lg-n2 { - margin-bottom: -8px !important; - } - .v-application .mb-lg-n3 { - margin-bottom: -12px !important; - } - .v-application .mb-lg-n4 { - margin-bottom: -16px !important; - } - .v-application .mb-lg-n5 { - margin-bottom: -20px !important; - } - .v-application .mb-lg-n6 { - margin-bottom: -24px !important; - } - .v-application .mb-lg-n7 { - margin-bottom: -28px !important; - } - .v-application .mb-lg-n8 { - margin-bottom: -32px !important; - } - .v-application .mb-lg-n9 { - margin-bottom: -36px !important; - } - .v-application .mb-lg-n10 { - margin-bottom: -40px !important; - } - .v-application .mb-lg-n11 { - margin-bottom: -44px !important; - } - .v-application .mb-lg-n12 { - margin-bottom: -48px !important; - } - .v-application .mb-lg-n13 { - margin-bottom: -52px !important; - } - .v-application .mb-lg-n14 { - margin-bottom: -56px !important; - } - .v-application .mb-lg-n15 { - margin-bottom: -60px !important; - } - .v-application .mb-lg-n16 { - margin-bottom: -64px !important; - } - .v-application .ml-lg-n1 { - margin-left: -4px !important; - } - .v-application .ml-lg-n2 { - margin-left: -8px !important; - } - .v-application .ml-lg-n3 { - margin-left: -12px !important; - } - .v-application .ml-lg-n4 { - margin-left: -16px !important; - } - .v-application .ml-lg-n5 { - margin-left: -20px !important; - } - .v-application .ml-lg-n6 { - margin-left: -24px !important; - } - .v-application .ml-lg-n7 { - margin-left: -28px !important; - } - .v-application .ml-lg-n8 { - margin-left: -32px !important; - } - .v-application .ml-lg-n9 { - margin-left: -36px !important; - } - .v-application .ml-lg-n10 { - margin-left: -40px !important; - } - .v-application .ml-lg-n11 { - margin-left: -44px !important; - } - .v-application .ml-lg-n12 { - margin-left: -48px !important; - } - .v-application .ml-lg-n13 { - margin-left: -52px !important; - } - .v-application .ml-lg-n14 { - margin-left: -56px !important; - } - .v-application .ml-lg-n15 { - margin-left: -60px !important; - } - .v-application .ml-lg-n16 { - margin-left: -64px !important; - } - .v-application--is-ltr .ms-lg-n1 { - margin-left: -4px !important; - } - .v-application--is-rtl .ms-lg-n1 { - margin-right: -4px !important; - } - .v-application--is-ltr .ms-lg-n2 { - margin-left: -8px !important; - } - .v-application--is-rtl .ms-lg-n2 { - margin-right: -8px !important; - } - .v-application--is-ltr .ms-lg-n3 { - margin-left: -12px !important; - } - .v-application--is-rtl .ms-lg-n3 { - margin-right: -12px !important; - } - .v-application--is-ltr .ms-lg-n4 { - margin-left: -16px !important; - } - .v-application--is-rtl .ms-lg-n4 { - margin-right: -16px !important; - } - .v-application--is-ltr .ms-lg-n5 { - margin-left: -20px !important; - } - .v-application--is-rtl .ms-lg-n5 { - margin-right: -20px !important; - } - .v-application--is-ltr .ms-lg-n6 { - margin-left: -24px !important; - } - .v-application--is-rtl .ms-lg-n6 { - margin-right: -24px !important; - } - .v-application--is-ltr .ms-lg-n7 { - margin-left: -28px !important; - } - .v-application--is-rtl .ms-lg-n7 { - margin-right: -28px !important; - } - .v-application--is-ltr .ms-lg-n8 { - margin-left: -32px !important; - } - .v-application--is-rtl .ms-lg-n8 { - margin-right: -32px !important; - } - .v-application--is-ltr .ms-lg-n9 { - margin-left: -36px !important; - } - .v-application--is-rtl .ms-lg-n9 { - margin-right: -36px !important; - } - .v-application--is-ltr .ms-lg-n10 { - margin-left: -40px !important; - } - .v-application--is-rtl .ms-lg-n10 { - margin-right: -40px !important; - } - .v-application--is-ltr .ms-lg-n11 { - margin-left: -44px !important; - } - .v-application--is-rtl .ms-lg-n11 { - margin-right: -44px !important; - } - .v-application--is-ltr .ms-lg-n12 { - margin-left: -48px !important; - } - .v-application--is-rtl .ms-lg-n12 { - margin-right: -48px !important; - } - .v-application--is-ltr .ms-lg-n13 { - margin-left: -52px !important; - } - .v-application--is-rtl .ms-lg-n13 { - margin-right: -52px !important; - } - .v-application--is-ltr .ms-lg-n14 { - margin-left: -56px !important; - } - .v-application--is-rtl .ms-lg-n14 { - margin-right: -56px !important; - } - .v-application--is-ltr .ms-lg-n15 { - margin-left: -60px !important; - } - .v-application--is-rtl .ms-lg-n15 { - margin-right: -60px !important; - } - .v-application--is-ltr .ms-lg-n16 { - margin-left: -64px !important; - } - .v-application--is-rtl .ms-lg-n16 { - margin-right: -64px !important; - } - .v-application--is-ltr .me-lg-n1 { - margin-right: -4px !important; - } - .v-application--is-rtl .me-lg-n1 { - margin-left: -4px !important; - } - .v-application--is-ltr .me-lg-n2 { - margin-right: -8px !important; - } - .v-application--is-rtl .me-lg-n2 { - margin-left: -8px !important; - } - .v-application--is-ltr .me-lg-n3 { - margin-right: -12px !important; - } - .v-application--is-rtl .me-lg-n3 { - margin-left: -12px !important; - } - .v-application--is-ltr .me-lg-n4 { - margin-right: -16px !important; - } - .v-application--is-rtl .me-lg-n4 { - margin-left: -16px !important; - } - .v-application--is-ltr .me-lg-n5 { - margin-right: -20px !important; - } - .v-application--is-rtl .me-lg-n5 { - margin-left: -20px !important; - } - .v-application--is-ltr .me-lg-n6 { - margin-right: -24px !important; - } - .v-application--is-rtl .me-lg-n6 { - margin-left: -24px !important; - } - .v-application--is-ltr .me-lg-n7 { - margin-right: -28px !important; - } - .v-application--is-rtl .me-lg-n7 { - margin-left: -28px !important; - } - .v-application--is-ltr .me-lg-n8 { - margin-right: -32px !important; - } - .v-application--is-rtl .me-lg-n8 { - margin-left: -32px !important; - } - .v-application--is-ltr .me-lg-n9 { - margin-right: -36px !important; - } - .v-application--is-rtl .me-lg-n9 { - margin-left: -36px !important; - } - .v-application--is-ltr .me-lg-n10 { - margin-right: -40px !important; - } - .v-application--is-rtl .me-lg-n10 { - margin-left: -40px !important; - } - .v-application--is-ltr .me-lg-n11 { - margin-right: -44px !important; - } - .v-application--is-rtl .me-lg-n11 { - margin-left: -44px !important; - } - .v-application--is-ltr .me-lg-n12 { - margin-right: -48px !important; - } - .v-application--is-rtl .me-lg-n12 { - margin-left: -48px !important; - } - .v-application--is-ltr .me-lg-n13 { - margin-right: -52px !important; - } - .v-application--is-rtl .me-lg-n13 { - margin-left: -52px !important; - } - .v-application--is-ltr .me-lg-n14 { - margin-right: -56px !important; - } - .v-application--is-rtl .me-lg-n14 { - margin-left: -56px !important; - } - .v-application--is-ltr .me-lg-n15 { - margin-right: -60px !important; - } - .v-application--is-rtl .me-lg-n15 { - margin-left: -60px !important; - } - .v-application--is-ltr .me-lg-n16 { - margin-right: -64px !important; - } - .v-application--is-rtl .me-lg-n16 { - margin-left: -64px !important; - } - .v-application .pa-lg-0 { - padding: 0 !important; - } - .v-application .pa-lg-1 { - padding: 4px !important; - } - .v-application .pa-lg-2 { - padding: 8px !important; - } - .v-application .pa-lg-3 { - padding: 12px !important; - } - .v-application .pa-lg-4 { - padding: 16px !important; - } - .v-application .pa-lg-5 { - padding: 20px !important; - } - .v-application .pa-lg-6 { - padding: 24px !important; - } - .v-application .pa-lg-7 { - padding: 28px !important; - } - .v-application .pa-lg-8 { - padding: 32px !important; - } - .v-application .pa-lg-9 { - padding: 36px !important; - } - .v-application .pa-lg-10 { - padding: 40px !important; - } - .v-application .pa-lg-11 { - padding: 44px !important; - } - .v-application .pa-lg-12 { - padding: 48px !important; - } - .v-application .pa-lg-13 { - padding: 52px !important; - } - .v-application .pa-lg-14 { - padding: 56px !important; - } - .v-application .pa-lg-15 { - padding: 60px !important; - } - .v-application .pa-lg-16 { - padding: 64px !important; - } - .v-application .px-lg-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - .v-application .px-lg-1 { - padding-right: 4px !important; - padding-left: 4px !important; - } - .v-application .px-lg-2 { - padding-right: 8px !important; - padding-left: 8px !important; - } - .v-application .px-lg-3 { - padding-right: 12px !important; - padding-left: 12px !important; - } - .v-application .px-lg-4 { - padding-right: 16px !important; - padding-left: 16px !important; - } - .v-application .px-lg-5 { - padding-right: 20px !important; - padding-left: 20px !important; - } - .v-application .px-lg-6 { - padding-right: 24px !important; - padding-left: 24px !important; - } - .v-application .px-lg-7 { - padding-right: 28px !important; - padding-left: 28px !important; - } - .v-application .px-lg-8 { - padding-right: 32px !important; - padding-left: 32px !important; - } - .v-application .px-lg-9 { - padding-right: 36px !important; - padding-left: 36px !important; - } - .v-application .px-lg-10 { - padding-right: 40px !important; - padding-left: 40px !important; - } - .v-application .px-lg-11 { - padding-right: 44px !important; - padding-left: 44px !important; - } - .v-application .px-lg-12 { - padding-right: 48px !important; - padding-left: 48px !important; - } - .v-application .px-lg-13 { - padding-right: 52px !important; - padding-left: 52px !important; - } - .v-application .px-lg-14 { - padding-right: 56px !important; - padding-left: 56px !important; - } - .v-application .px-lg-15 { - padding-right: 60px !important; - padding-left: 60px !important; - } - .v-application .px-lg-16 { - padding-right: 64px !important; - padding-left: 64px !important; - } - .v-application .py-lg-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .v-application .py-lg-1 { - padding-top: 4px !important; - padding-bottom: 4px !important; - } - .v-application .py-lg-2 { - padding-top: 8px !important; - padding-bottom: 8px !important; - } - .v-application .py-lg-3 { - padding-top: 12px !important; - padding-bottom: 12px !important; - } - .v-application .py-lg-4 { - padding-top: 16px !important; - padding-bottom: 16px !important; - } - .v-application .py-lg-5 { - padding-top: 20px !important; - padding-bottom: 20px !important; - } - .v-application .py-lg-6 { - padding-top: 24px !important; - padding-bottom: 24px !important; - } - .v-application .py-lg-7 { - padding-top: 28px !important; - padding-bottom: 28px !important; - } - .v-application .py-lg-8 { - padding-top: 32px !important; - padding-bottom: 32px !important; - } - .v-application .py-lg-9 { - padding-top: 36px !important; - padding-bottom: 36px !important; - } - .v-application .py-lg-10 { - padding-top: 40px !important; - padding-bottom: 40px !important; - } - .v-application .py-lg-11 { - padding-top: 44px !important; - padding-bottom: 44px !important; - } - .v-application .py-lg-12 { - padding-top: 48px !important; - padding-bottom: 48px !important; - } - .v-application .py-lg-13 { - padding-top: 52px !important; - padding-bottom: 52px !important; - } - .v-application .py-lg-14 { - padding-top: 56px !important; - padding-bottom: 56px !important; - } - .v-application .py-lg-15 { - padding-top: 60px !important; - padding-bottom: 60px !important; - } - .v-application .py-lg-16 { - padding-top: 64px !important; - padding-bottom: 64px !important; - } - .v-application .pt-lg-0 { - padding-top: 0 !important; - } - .v-application .pt-lg-1 { - padding-top: 4px !important; - } - .v-application .pt-lg-2 { - padding-top: 8px !important; - } - .v-application .pt-lg-3 { - padding-top: 12px !important; - } - .v-application .pt-lg-4 { - padding-top: 16px !important; - } - .v-application .pt-lg-5 { - padding-top: 20px !important; - } - .v-application .pt-lg-6 { - padding-top: 24px !important; - } - .v-application .pt-lg-7 { - padding-top: 28px !important; - } - .v-application .pt-lg-8 { - padding-top: 32px !important; - } - .v-application .pt-lg-9 { - padding-top: 36px !important; - } - .v-application .pt-lg-10 { - padding-top: 40px !important; - } - .v-application .pt-lg-11 { - padding-top: 44px !important; - } - .v-application .pt-lg-12 { - padding-top: 48px !important; - } - .v-application .pt-lg-13 { - padding-top: 52px !important; - } - .v-application .pt-lg-14 { - padding-top: 56px !important; - } - .v-application .pt-lg-15 { - padding-top: 60px !important; - } - .v-application .pt-lg-16 { - padding-top: 64px !important; - } - .v-application .pr-lg-0 { - padding-right: 0 !important; - } - .v-application .pr-lg-1 { - padding-right: 4px !important; - } - .v-application .pr-lg-2 { - padding-right: 8px !important; - } - .v-application .pr-lg-3 { - padding-right: 12px !important; - } - .v-application .pr-lg-4 { - padding-right: 16px !important; - } - .v-application .pr-lg-5 { - padding-right: 20px !important; - } - .v-application .pr-lg-6 { - padding-right: 24px !important; - } - .v-application .pr-lg-7 { - padding-right: 28px !important; - } - .v-application .pr-lg-8 { - padding-right: 32px !important; - } - .v-application .pr-lg-9 { - padding-right: 36px !important; - } - .v-application .pr-lg-10 { - padding-right: 40px !important; - } - .v-application .pr-lg-11 { - padding-right: 44px !important; - } - .v-application .pr-lg-12 { - padding-right: 48px !important; - } - .v-application .pr-lg-13 { - padding-right: 52px !important; - } - .v-application .pr-lg-14 { - padding-right: 56px !important; - } - .v-application .pr-lg-15 { - padding-right: 60px !important; - } - .v-application .pr-lg-16 { - padding-right: 64px !important; - } - .v-application .pb-lg-0 { - padding-bottom: 0 !important; - } - .v-application .pb-lg-1 { - padding-bottom: 4px !important; - } - .v-application .pb-lg-2 { - padding-bottom: 8px !important; - } - .v-application .pb-lg-3 { - padding-bottom: 12px !important; - } - .v-application .pb-lg-4 { - padding-bottom: 16px !important; - } - .v-application .pb-lg-5 { - padding-bottom: 20px !important; - } - .v-application .pb-lg-6 { - padding-bottom: 24px !important; - } - .v-application .pb-lg-7 { - padding-bottom: 28px !important; - } - .v-application .pb-lg-8 { - padding-bottom: 32px !important; - } - .v-application .pb-lg-9 { - padding-bottom: 36px !important; - } - .v-application .pb-lg-10 { - padding-bottom: 40px !important; - } - .v-application .pb-lg-11 { - padding-bottom: 44px !important; - } - .v-application .pb-lg-12 { - padding-bottom: 48px !important; - } - .v-application .pb-lg-13 { - padding-bottom: 52px !important; - } - .v-application .pb-lg-14 { - padding-bottom: 56px !important; - } - .v-application .pb-lg-15 { - padding-bottom: 60px !important; - } - .v-application .pb-lg-16 { - padding-bottom: 64px !important; - } - .v-application .pl-lg-0 { - padding-left: 0 !important; - } - .v-application .pl-lg-1 { - padding-left: 4px !important; - } - .v-application .pl-lg-2 { - padding-left: 8px !important; - } - .v-application .pl-lg-3 { - padding-left: 12px !important; - } - .v-application .pl-lg-4 { - padding-left: 16px !important; - } - .v-application .pl-lg-5 { - padding-left: 20px !important; - } - .v-application .pl-lg-6 { - padding-left: 24px !important; - } - .v-application .pl-lg-7 { - padding-left: 28px !important; - } - .v-application .pl-lg-8 { - padding-left: 32px !important; - } - .v-application .pl-lg-9 { - padding-left: 36px !important; - } - .v-application .pl-lg-10 { - padding-left: 40px !important; - } - .v-application .pl-lg-11 { - padding-left: 44px !important; - } - .v-application .pl-lg-12 { - padding-left: 48px !important; - } - .v-application .pl-lg-13 { - padding-left: 52px !important; - } - .v-application .pl-lg-14 { - padding-left: 56px !important; - } - .v-application .pl-lg-15 { - padding-left: 60px !important; - } - .v-application .pl-lg-16 { - padding-left: 64px !important; - } - .v-application--is-ltr .ps-lg-0 { - padding-left: 0 !important; - } - .v-application--is-rtl .ps-lg-0 { - padding-right: 0 !important; - } - .v-application--is-ltr .ps-lg-1 { - padding-left: 4px !important; - } - .v-application--is-rtl .ps-lg-1 { - padding-right: 4px !important; - } - .v-application--is-ltr .ps-lg-2 { - padding-left: 8px !important; - } - .v-application--is-rtl .ps-lg-2 { - padding-right: 8px !important; - } - .v-application--is-ltr .ps-lg-3 { - padding-left: 12px !important; - } - .v-application--is-rtl .ps-lg-3 { - padding-right: 12px !important; - } - .v-application--is-ltr .ps-lg-4 { - padding-left: 16px !important; - } - .v-application--is-rtl .ps-lg-4 { - padding-right: 16px !important; - } - .v-application--is-ltr .ps-lg-5 { - padding-left: 20px !important; - } - .v-application--is-rtl .ps-lg-5 { - padding-right: 20px !important; - } - .v-application--is-ltr .ps-lg-6 { - padding-left: 24px !important; - } - .v-application--is-rtl .ps-lg-6 { - padding-right: 24px !important; - } - .v-application--is-ltr .ps-lg-7 { - padding-left: 28px !important; - } - .v-application--is-rtl .ps-lg-7 { - padding-right: 28px !important; - } - .v-application--is-ltr .ps-lg-8 { - padding-left: 32px !important; - } - .v-application--is-rtl .ps-lg-8 { - padding-right: 32px !important; - } - .v-application--is-ltr .ps-lg-9 { - padding-left: 36px !important; - } - .v-application--is-rtl .ps-lg-9 { - padding-right: 36px !important; - } - .v-application--is-ltr .ps-lg-10 { - padding-left: 40px !important; - } - .v-application--is-rtl .ps-lg-10 { - padding-right: 40px !important; - } - .v-application--is-ltr .ps-lg-11 { - padding-left: 44px !important; - } - .v-application--is-rtl .ps-lg-11 { - padding-right: 44px !important; - } - .v-application--is-ltr .ps-lg-12 { - padding-left: 48px !important; - } - .v-application--is-rtl .ps-lg-12 { - padding-right: 48px !important; - } - .v-application--is-ltr .ps-lg-13 { - padding-left: 52px !important; - } - .v-application--is-rtl .ps-lg-13 { - padding-right: 52px !important; - } - .v-application--is-ltr .ps-lg-14 { - padding-left: 56px !important; - } - .v-application--is-rtl .ps-lg-14 { - padding-right: 56px !important; - } - .v-application--is-ltr .ps-lg-15 { - padding-left: 60px !important; - } - .v-application--is-rtl .ps-lg-15 { - padding-right: 60px !important; - } - .v-application--is-ltr .ps-lg-16 { - padding-left: 64px !important; - } - .v-application--is-rtl .ps-lg-16 { - padding-right: 64px !important; - } - .v-application--is-ltr .pe-lg-0 { - padding-right: 0 !important; - } - .v-application--is-rtl .pe-lg-0 { - padding-left: 0 !important; - } - .v-application--is-ltr .pe-lg-1 { - padding-right: 4px !important; - } - .v-application--is-rtl .pe-lg-1 { - padding-left: 4px !important; - } - .v-application--is-ltr .pe-lg-2 { - padding-right: 8px !important; - } - .v-application--is-rtl .pe-lg-2 { - padding-left: 8px !important; - } - .v-application--is-ltr .pe-lg-3 { - padding-right: 12px !important; - } - .v-application--is-rtl .pe-lg-3 { - padding-left: 12px !important; - } - .v-application--is-ltr .pe-lg-4 { - padding-right: 16px !important; - } - .v-application--is-rtl .pe-lg-4 { - padding-left: 16px !important; - } - .v-application--is-ltr .pe-lg-5 { - padding-right: 20px !important; - } - .v-application--is-rtl .pe-lg-5 { - padding-left: 20px !important; - } - .v-application--is-ltr .pe-lg-6 { - padding-right: 24px !important; - } - .v-application--is-rtl .pe-lg-6 { - padding-left: 24px !important; - } - .v-application--is-ltr .pe-lg-7 { - padding-right: 28px !important; - } - .v-application--is-rtl .pe-lg-7 { - padding-left: 28px !important; - } - .v-application--is-ltr .pe-lg-8 { - padding-right: 32px !important; - } - .v-application--is-rtl .pe-lg-8 { - padding-left: 32px !important; - } - .v-application--is-ltr .pe-lg-9 { - padding-right: 36px !important; - } - .v-application--is-rtl .pe-lg-9 { - padding-left: 36px !important; - } - .v-application--is-ltr .pe-lg-10 { - padding-right: 40px !important; - } - .v-application--is-rtl .pe-lg-10 { - padding-left: 40px !important; - } - .v-application--is-ltr .pe-lg-11 { - padding-right: 44px !important; - } - .v-application--is-rtl .pe-lg-11 { - padding-left: 44px !important; - } - .v-application--is-ltr .pe-lg-12 { - padding-right: 48px !important; - } - .v-application--is-rtl .pe-lg-12 { - padding-left: 48px !important; - } - .v-application--is-ltr .pe-lg-13 { - padding-right: 52px !important; - } - .v-application--is-rtl .pe-lg-13 { - padding-left: 52px !important; - } - .v-application--is-ltr .pe-lg-14 { - padding-right: 56px !important; - } - .v-application--is-rtl .pe-lg-14 { - padding-left: 56px !important; - } - .v-application--is-ltr .pe-lg-15 { - padding-right: 60px !important; - } - .v-application--is-rtl .pe-lg-15 { - padding-left: 60px !important; - } - .v-application--is-ltr .pe-lg-16 { - padding-right: 64px !important; - } - .v-application--is-rtl .pe-lg-16 { - padding-left: 64px !important; - } - .v-application .text-lg-left { - text-align: left !important; - } - .v-application .text-lg-right { - text-align: right !important; - } - .v-application .text-lg-center { - text-align: center !important; - } - .v-application .text-lg-justify { - text-align: justify !important; - } - .v-application .text-lg-start { - text-align: start !important; - } - .v-application .text-lg-end { - text-align: end !important; - } - .v-application .text-lg-h1 { - font-size: 6rem !important; - line-height: 6rem; - letter-spacing: -0.015625em !important; - } - .v-application .text-lg-h1, - .v-application .text-lg-h2 { - font-weight: 300; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-h2 { - font-size: 3.75rem !important; - line-height: 3.75rem; - letter-spacing: -0.0083333333em !important; - } - .v-application .text-lg-h3 { - font-size: 3rem !important; - line-height: 3.125rem; - letter-spacing: normal !important; - } - .v-application .text-lg-h3, - .v-application .text-lg-h4 { - font-weight: 400; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-h4 { - font-size: 2.125rem !important; - line-height: 2.5rem; - letter-spacing: 0.0073529412em !important; - } - .v-application .text-lg-h5 { - font-size: 1.5rem !important; - font-weight: 400; - letter-spacing: normal !important; - } - .v-application .text-lg-h5, - .v-application .text-lg-h6 { - line-height: 2rem; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-h6 { - font-size: 1.25rem !important; - font-weight: 500; - letter-spacing: 0.0125em !important; - } - .v-application .text-lg-subtitle-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.75rem; - letter-spacing: 0.009375em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-subtitle-2 { - font-size: 0.875rem !important; - font-weight: 500; - line-height: 1.375rem; - letter-spacing: 0.0071428571em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-body-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.5rem; - letter-spacing: 0.03125em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-body-2 { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0178571429em !important; - } - .v-application .text-lg-body-2, - .v-application .text-lg-button { - font-size: 0.875rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-button { - font-weight: 500; - line-height: 2.25rem; - letter-spacing: 0.0892857143em !important; - text-transform: uppercase !important; - } - .v-application .text-lg-caption { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0333333333em !important; - } - .v-application .text-lg-caption, - .v-application .text-lg-overline { - font-size: 0.75rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-lg-overline { - font-weight: 500; - line-height: 2rem; - letter-spacing: 0.1666666667em !important; - text-transform: uppercase !important; - } -} -@media (min-width: 1904px) { - .v-application .d-xl-none { - display: none !important; - } - .v-application .d-xl-inline { - display: inline !important; - } - .v-application .d-xl-inline-block { - display: inline-block !important; - } - .v-application .d-xl-block { - display: block !important; - } - .v-application .d-xl-table { - display: table !important; - } - .v-application .d-xl-table-row { - display: table-row !important; - } - .v-application .d-xl-table-cell { - display: table-cell !important; - } - .v-application .d-xl-flex { - display: flex !important; - } - .v-application .d-xl-inline-flex { - display: inline-flex !important; - } - .v-application .float-xl-none { - float: none !important; - } - .v-application .float-xl-left { - float: left !important; - } - .v-application .float-xl-right { - float: right !important; - } - .v-application .flex-xl-fill { - flex: 1 1 auto !important; - } - .v-application .flex-xl-row { - flex-direction: row !important; - } - .v-application .flex-xl-column { - flex-direction: column !important; - } - .v-application .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - .v-application .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - .v-application .flex-xl-grow-0 { - flex-grow: 0 !important; - } - .v-application .flex-xl-grow-1 { - flex-grow: 1 !important; - } - .v-application .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - .v-application .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - .v-application .flex-xl-wrap { - flex-wrap: wrap !important; - } - .v-application .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - .v-application .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .v-application .justify-xl-start { - justify-content: flex-start !important; - } - .v-application .justify-xl-end { - justify-content: flex-end !important; - } - .v-application .justify-xl-center { - justify-content: center !important; - } - .v-application .justify-xl-space-between { - justify-content: space-between !important; - } - .v-application .justify-xl-space-around { - justify-content: space-around !important; - } - .v-application .align-xl-start { - align-items: flex-start !important; - } - .v-application .align-xl-end { - align-items: flex-end !important; - } - .v-application .align-xl-center { - align-items: center !important; - } - .v-application .align-xl-baseline { - align-items: baseline !important; - } - .v-application .align-xl-stretch { - align-items: stretch !important; - } - .v-application .align-content-xl-start { - align-content: flex-start !important; - } - .v-application .align-content-xl-end { - align-content: flex-end !important; - } - .v-application .align-content-xl-center { - align-content: center !important; - } - .v-application .align-content-xl-space-between { - align-content: space-between !important; - } - .v-application .align-content-xl-space-around { - align-content: space-around !important; - } - .v-application .align-content-xl-stretch { - align-content: stretch !important; - } - .v-application .align-self-xl-auto { - align-self: auto !important; - } - .v-application .align-self-xl-start { - align-self: flex-start !important; - } - .v-application .align-self-xl-end { - align-self: flex-end !important; - } - .v-application .align-self-xl-center { - align-self: center !important; - } - .v-application .align-self-xl-baseline { - align-self: baseline !important; - } - .v-application .align-self-xl-stretch { - align-self: stretch !important; - } - .v-application .order-xl-first { - order: -1 !important; - } - .v-application .order-xl-0 { - order: 0 !important; - } - .v-application .order-xl-1 { - order: 1 !important; - } - .v-application .order-xl-2 { - order: 2 !important; - } - .v-application .order-xl-3 { - order: 3 !important; - } - .v-application .order-xl-4 { - order: 4 !important; - } - .v-application .order-xl-5 { - order: 5 !important; - } - .v-application .order-xl-6 { - order: 6 !important; - } - .v-application .order-xl-7 { - order: 7 !important; - } - .v-application .order-xl-8 { - order: 8 !important; - } - .v-application .order-xl-9 { - order: 9 !important; - } - .v-application .order-xl-10 { - order: 10 !important; - } - .v-application .order-xl-11 { - order: 11 !important; - } - .v-application .order-xl-12 { - order: 12 !important; - } - .v-application .order-xl-last { - order: 13 !important; - } - .v-application .ma-xl-0 { - margin: 0 !important; - } - .v-application .ma-xl-1 { - margin: 4px !important; - } - .v-application .ma-xl-2 { - margin: 8px !important; - } - .v-application .ma-xl-3 { - margin: 12px !important; - } - .v-application .ma-xl-4 { - margin: 16px !important; - } - .v-application .ma-xl-5 { - margin: 20px !important; - } - .v-application .ma-xl-6 { - margin: 24px !important; - } - .v-application .ma-xl-7 { - margin: 28px !important; - } - .v-application .ma-xl-8 { - margin: 32px !important; - } - .v-application .ma-xl-9 { - margin: 36px !important; - } - .v-application .ma-xl-10 { - margin: 40px !important; - } - .v-application .ma-xl-11 { - margin: 44px !important; - } - .v-application .ma-xl-12 { - margin: 48px !important; - } - .v-application .ma-xl-13 { - margin: 52px !important; - } - .v-application .ma-xl-14 { - margin: 56px !important; - } - .v-application .ma-xl-15 { - margin: 60px !important; - } - .v-application .ma-xl-16 { - margin: 64px !important; - } - .v-application .ma-xl-auto { - margin: auto !important; - } - .v-application .mx-xl-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - .v-application .mx-xl-1 { - margin-right: 4px !important; - margin-left: 4px !important; - } - .v-application .mx-xl-2 { - margin-right: 8px !important; - margin-left: 8px !important; - } - .v-application .mx-xl-3 { - margin-right: 12px !important; - margin-left: 12px !important; - } - .v-application .mx-xl-4 { - margin-right: 16px !important; - margin-left: 16px !important; - } - .v-application .mx-xl-5 { - margin-right: 20px !important; - margin-left: 20px !important; - } - .v-application .mx-xl-6 { - margin-right: 24px !important; - margin-left: 24px !important; - } - .v-application .mx-xl-7 { - margin-right: 28px !important; - margin-left: 28px !important; - } - .v-application .mx-xl-8 { - margin-right: 32px !important; - margin-left: 32px !important; - } - .v-application .mx-xl-9 { - margin-right: 36px !important; - margin-left: 36px !important; - } - .v-application .mx-xl-10 { - margin-right: 40px !important; - margin-left: 40px !important; - } - .v-application .mx-xl-11 { - margin-right: 44px !important; - margin-left: 44px !important; - } - .v-application .mx-xl-12 { - margin-right: 48px !important; - margin-left: 48px !important; - } - .v-application .mx-xl-13 { - margin-right: 52px !important; - margin-left: 52px !important; - } - .v-application .mx-xl-14 { - margin-right: 56px !important; - margin-left: 56px !important; - } - .v-application .mx-xl-15 { - margin-right: 60px !important; - margin-left: 60px !important; - } - .v-application .mx-xl-16 { - margin-right: 64px !important; - margin-left: 64px !important; - } - .v-application .mx-xl-auto { - margin-right: auto !important; - margin-left: auto !important; - } - .v-application .my-xl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .v-application .my-xl-1 { - margin-top: 4px !important; - margin-bottom: 4px !important; - } - .v-application .my-xl-2 { - margin-top: 8px !important; - margin-bottom: 8px !important; - } - .v-application .my-xl-3 { - margin-top: 12px !important; - margin-bottom: 12px !important; - } - .v-application .my-xl-4 { - margin-top: 16px !important; - margin-bottom: 16px !important; - } - .v-application .my-xl-5 { - margin-top: 20px !important; - margin-bottom: 20px !important; - } - .v-application .my-xl-6 { - margin-top: 24px !important; - margin-bottom: 24px !important; - } - .v-application .my-xl-7 { - margin-top: 28px !important; - margin-bottom: 28px !important; - } - .v-application .my-xl-8 { - margin-top: 32px !important; - margin-bottom: 32px !important; - } - .v-application .my-xl-9 { - margin-top: 36px !important; - margin-bottom: 36px !important; - } - .v-application .my-xl-10 { - margin-top: 40px !important; - margin-bottom: 40px !important; - } - .v-application .my-xl-11 { - margin-top: 44px !important; - margin-bottom: 44px !important; - } - .v-application .my-xl-12 { - margin-top: 48px !important; - margin-bottom: 48px !important; - } - .v-application .my-xl-13 { - margin-top: 52px !important; - margin-bottom: 52px !important; - } - .v-application .my-xl-14 { - margin-top: 56px !important; - margin-bottom: 56px !important; - } - .v-application .my-xl-15 { - margin-top: 60px !important; - margin-bottom: 60px !important; - } - .v-application .my-xl-16 { - margin-top: 64px !important; - margin-bottom: 64px !important; - } - .v-application .my-xl-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .v-application .mt-xl-0 { - margin-top: 0 !important; - } - .v-application .mt-xl-1 { - margin-top: 4px !important; - } - .v-application .mt-xl-2 { - margin-top: 8px !important; - } - .v-application .mt-xl-3 { - margin-top: 12px !important; - } - .v-application .mt-xl-4 { - margin-top: 16px !important; - } - .v-application .mt-xl-5 { - margin-top: 20px !important; - } - .v-application .mt-xl-6 { - margin-top: 24px !important; - } - .v-application .mt-xl-7 { - margin-top: 28px !important; - } - .v-application .mt-xl-8 { - margin-top: 32px !important; - } - .v-application .mt-xl-9 { - margin-top: 36px !important; - } - .v-application .mt-xl-10 { - margin-top: 40px !important; - } - .v-application .mt-xl-11 { - margin-top: 44px !important; - } - .v-application .mt-xl-12 { - margin-top: 48px !important; - } - .v-application .mt-xl-13 { - margin-top: 52px !important; - } - .v-application .mt-xl-14 { - margin-top: 56px !important; - } - .v-application .mt-xl-15 { - margin-top: 60px !important; - } - .v-application .mt-xl-16 { - margin-top: 64px !important; - } - .v-application .mt-xl-auto { - margin-top: auto !important; - } - .v-application .mr-xl-0 { - margin-right: 0 !important; - } - .v-application .mr-xl-1 { - margin-right: 4px !important; - } - .v-application .mr-xl-2 { - margin-right: 8px !important; - } - .v-application .mr-xl-3 { - margin-right: 12px !important; - } - .v-application .mr-xl-4 { - margin-right: 16px !important; - } - .v-application .mr-xl-5 { - margin-right: 20px !important; - } - .v-application .mr-xl-6 { - margin-right: 24px !important; - } - .v-application .mr-xl-7 { - margin-right: 28px !important; - } - .v-application .mr-xl-8 { - margin-right: 32px !important; - } - .v-application .mr-xl-9 { - margin-right: 36px !important; - } - .v-application .mr-xl-10 { - margin-right: 40px !important; - } - .v-application .mr-xl-11 { - margin-right: 44px !important; - } - .v-application .mr-xl-12 { - margin-right: 48px !important; - } - .v-application .mr-xl-13 { - margin-right: 52px !important; - } - .v-application .mr-xl-14 { - margin-right: 56px !important; - } - .v-application .mr-xl-15 { - margin-right: 60px !important; - } - .v-application .mr-xl-16 { - margin-right: 64px !important; - } - .v-application .mr-xl-auto { - margin-right: auto !important; - } - .v-application .mb-xl-0 { - margin-bottom: 0 !important; - } - .v-application .mb-xl-1 { - margin-bottom: 4px !important; - } - .v-application .mb-xl-2 { - margin-bottom: 8px !important; - } - .v-application .mb-xl-3 { - margin-bottom: 12px !important; - } - .v-application .mb-xl-4 { - margin-bottom: 16px !important; - } - .v-application .mb-xl-5 { - margin-bottom: 20px !important; - } - .v-application .mb-xl-6 { - margin-bottom: 24px !important; - } - .v-application .mb-xl-7 { - margin-bottom: 28px !important; - } - .v-application .mb-xl-8 { - margin-bottom: 32px !important; - } - .v-application .mb-xl-9 { - margin-bottom: 36px !important; - } - .v-application .mb-xl-10 { - margin-bottom: 40px !important; - } - .v-application .mb-xl-11 { - margin-bottom: 44px !important; - } - .v-application .mb-xl-12 { - margin-bottom: 48px !important; - } - .v-application .mb-xl-13 { - margin-bottom: 52px !important; - } - .v-application .mb-xl-14 { - margin-bottom: 56px !important; - } - .v-application .mb-xl-15 { - margin-bottom: 60px !important; - } - .v-application .mb-xl-16 { - margin-bottom: 64px !important; - } - .v-application .mb-xl-auto { - margin-bottom: auto !important; - } - .v-application .ml-xl-0 { - margin-left: 0 !important; - } - .v-application .ml-xl-1 { - margin-left: 4px !important; - } - .v-application .ml-xl-2 { - margin-left: 8px !important; - } - .v-application .ml-xl-3 { - margin-left: 12px !important; - } - .v-application .ml-xl-4 { - margin-left: 16px !important; - } - .v-application .ml-xl-5 { - margin-left: 20px !important; - } - .v-application .ml-xl-6 { - margin-left: 24px !important; - } - .v-application .ml-xl-7 { - margin-left: 28px !important; - } - .v-application .ml-xl-8 { - margin-left: 32px !important; - } - .v-application .ml-xl-9 { - margin-left: 36px !important; - } - .v-application .ml-xl-10 { - margin-left: 40px !important; - } - .v-application .ml-xl-11 { - margin-left: 44px !important; - } - .v-application .ml-xl-12 { - margin-left: 48px !important; - } - .v-application .ml-xl-13 { - margin-left: 52px !important; - } - .v-application .ml-xl-14 { - margin-left: 56px !important; - } - .v-application .ml-xl-15 { - margin-left: 60px !important; - } - .v-application .ml-xl-16 { - margin-left: 64px !important; - } - .v-application .ml-xl-auto { - margin-left: auto !important; - } - .v-application--is-ltr .ms-xl-0 { - margin-left: 0 !important; - } - .v-application--is-rtl .ms-xl-0 { - margin-right: 0 !important; - } - .v-application--is-ltr .ms-xl-1 { - margin-left: 4px !important; - } - .v-application--is-rtl .ms-xl-1 { - margin-right: 4px !important; - } - .v-application--is-ltr .ms-xl-2 { - margin-left: 8px !important; - } - .v-application--is-rtl .ms-xl-2 { - margin-right: 8px !important; - } - .v-application--is-ltr .ms-xl-3 { - margin-left: 12px !important; - } - .v-application--is-rtl .ms-xl-3 { - margin-right: 12px !important; - } - .v-application--is-ltr .ms-xl-4 { - margin-left: 16px !important; - } - .v-application--is-rtl .ms-xl-4 { - margin-right: 16px !important; - } - .v-application--is-ltr .ms-xl-5 { - margin-left: 20px !important; - } - .v-application--is-rtl .ms-xl-5 { - margin-right: 20px !important; - } - .v-application--is-ltr .ms-xl-6 { - margin-left: 24px !important; - } - .v-application--is-rtl .ms-xl-6 { - margin-right: 24px !important; - } - .v-application--is-ltr .ms-xl-7 { - margin-left: 28px !important; - } - .v-application--is-rtl .ms-xl-7 { - margin-right: 28px !important; - } - .v-application--is-ltr .ms-xl-8 { - margin-left: 32px !important; - } - .v-application--is-rtl .ms-xl-8 { - margin-right: 32px !important; - } - .v-application--is-ltr .ms-xl-9 { - margin-left: 36px !important; - } - .v-application--is-rtl .ms-xl-9 { - margin-right: 36px !important; - } - .v-application--is-ltr .ms-xl-10 { - margin-left: 40px !important; - } - .v-application--is-rtl .ms-xl-10 { - margin-right: 40px !important; - } - .v-application--is-ltr .ms-xl-11 { - margin-left: 44px !important; - } - .v-application--is-rtl .ms-xl-11 { - margin-right: 44px !important; - } - .v-application--is-ltr .ms-xl-12 { - margin-left: 48px !important; - } - .v-application--is-rtl .ms-xl-12 { - margin-right: 48px !important; - } - .v-application--is-ltr .ms-xl-13 { - margin-left: 52px !important; - } - .v-application--is-rtl .ms-xl-13 { - margin-right: 52px !important; - } - .v-application--is-ltr .ms-xl-14 { - margin-left: 56px !important; - } - .v-application--is-rtl .ms-xl-14 { - margin-right: 56px !important; - } - .v-application--is-ltr .ms-xl-15 { - margin-left: 60px !important; - } - .v-application--is-rtl .ms-xl-15 { - margin-right: 60px !important; - } - .v-application--is-ltr .ms-xl-16 { - margin-left: 64px !important; - } - .v-application--is-rtl .ms-xl-16 { - margin-right: 64px !important; - } - .v-application--is-ltr .ms-xl-auto { - margin-left: auto !important; - } - .v-application--is-rtl .ms-xl-auto { - margin-right: auto !important; - } - .v-application--is-ltr .me-xl-0 { - margin-right: 0 !important; - } - .v-application--is-rtl .me-xl-0 { - margin-left: 0 !important; - } - .v-application--is-ltr .me-xl-1 { - margin-right: 4px !important; - } - .v-application--is-rtl .me-xl-1 { - margin-left: 4px !important; - } - .v-application--is-ltr .me-xl-2 { - margin-right: 8px !important; - } - .v-application--is-rtl .me-xl-2 { - margin-left: 8px !important; - } - .v-application--is-ltr .me-xl-3 { - margin-right: 12px !important; - } - .v-application--is-rtl .me-xl-3 { - margin-left: 12px !important; - } - .v-application--is-ltr .me-xl-4 { - margin-right: 16px !important; - } - .v-application--is-rtl .me-xl-4 { - margin-left: 16px !important; - } - .v-application--is-ltr .me-xl-5 { - margin-right: 20px !important; - } - .v-application--is-rtl .me-xl-5 { - margin-left: 20px !important; - } - .v-application--is-ltr .me-xl-6 { - margin-right: 24px !important; - } - .v-application--is-rtl .me-xl-6 { - margin-left: 24px !important; - } - .v-application--is-ltr .me-xl-7 { - margin-right: 28px !important; - } - .v-application--is-rtl .me-xl-7 { - margin-left: 28px !important; - } - .v-application--is-ltr .me-xl-8 { - margin-right: 32px !important; - } - .v-application--is-rtl .me-xl-8 { - margin-left: 32px !important; - } - .v-application--is-ltr .me-xl-9 { - margin-right: 36px !important; - } - .v-application--is-rtl .me-xl-9 { - margin-left: 36px !important; - } - .v-application--is-ltr .me-xl-10 { - margin-right: 40px !important; - } - .v-application--is-rtl .me-xl-10 { - margin-left: 40px !important; - } - .v-application--is-ltr .me-xl-11 { - margin-right: 44px !important; - } - .v-application--is-rtl .me-xl-11 { - margin-left: 44px !important; - } - .v-application--is-ltr .me-xl-12 { - margin-right: 48px !important; - } - .v-application--is-rtl .me-xl-12 { - margin-left: 48px !important; - } - .v-application--is-ltr .me-xl-13 { - margin-right: 52px !important; - } - .v-application--is-rtl .me-xl-13 { - margin-left: 52px !important; - } - .v-application--is-ltr .me-xl-14 { - margin-right: 56px !important; - } - .v-application--is-rtl .me-xl-14 { - margin-left: 56px !important; - } - .v-application--is-ltr .me-xl-15 { - margin-right: 60px !important; - } - .v-application--is-rtl .me-xl-15 { - margin-left: 60px !important; - } - .v-application--is-ltr .me-xl-16 { - margin-right: 64px !important; - } - .v-application--is-rtl .me-xl-16 { - margin-left: 64px !important; - } - .v-application--is-ltr .me-xl-auto { - margin-right: auto !important; - } - .v-application--is-rtl .me-xl-auto { - margin-left: auto !important; - } - .v-application .ma-xl-n1 { - margin: -4px !important; - } - .v-application .ma-xl-n2 { - margin: -8px !important; - } - .v-application .ma-xl-n3 { - margin: -12px !important; - } - .v-application .ma-xl-n4 { - margin: -16px !important; - } - .v-application .ma-xl-n5 { - margin: -20px !important; - } - .v-application .ma-xl-n6 { - margin: -24px !important; - } - .v-application .ma-xl-n7 { - margin: -28px !important; - } - .v-application .ma-xl-n8 { - margin: -32px !important; - } - .v-application .ma-xl-n9 { - margin: -36px !important; - } - .v-application .ma-xl-n10 { - margin: -40px !important; - } - .v-application .ma-xl-n11 { - margin: -44px !important; - } - .v-application .ma-xl-n12 { - margin: -48px !important; - } - .v-application .ma-xl-n13 { - margin: -52px !important; - } - .v-application .ma-xl-n14 { - margin: -56px !important; - } - .v-application .ma-xl-n15 { - margin: -60px !important; - } - .v-application .ma-xl-n16 { - margin: -64px !important; - } - .v-application .mx-xl-n1 { - margin-right: -4px !important; - margin-left: -4px !important; - } - .v-application .mx-xl-n2 { - margin-right: -8px !important; - margin-left: -8px !important; - } - .v-application .mx-xl-n3 { - margin-right: -12px !important; - margin-left: -12px !important; - } - .v-application .mx-xl-n4 { - margin-right: -16px !important; - margin-left: -16px !important; - } - .v-application .mx-xl-n5 { - margin-right: -20px !important; - margin-left: -20px !important; - } - .v-application .mx-xl-n6 { - margin-right: -24px !important; - margin-left: -24px !important; - } - .v-application .mx-xl-n7 { - margin-right: -28px !important; - margin-left: -28px !important; - } - .v-application .mx-xl-n8 { - margin-right: -32px !important; - margin-left: -32px !important; - } - .v-application .mx-xl-n9 { - margin-right: -36px !important; - margin-left: -36px !important; - } - .v-application .mx-xl-n10 { - margin-right: -40px !important; - margin-left: -40px !important; - } - .v-application .mx-xl-n11 { - margin-right: -44px !important; - margin-left: -44px !important; - } - .v-application .mx-xl-n12 { - margin-right: -48px !important; - margin-left: -48px !important; - } - .v-application .mx-xl-n13 { - margin-right: -52px !important; - margin-left: -52px !important; - } - .v-application .mx-xl-n14 { - margin-right: -56px !important; - margin-left: -56px !important; - } - .v-application .mx-xl-n15 { - margin-right: -60px !important; - margin-left: -60px !important; - } - .v-application .mx-xl-n16 { - margin-right: -64px !important; - margin-left: -64px !important; - } - .v-application .my-xl-n1 { - margin-top: -4px !important; - margin-bottom: -4px !important; - } - .v-application .my-xl-n2 { - margin-top: -8px !important; - margin-bottom: -8px !important; - } - .v-application .my-xl-n3 { - margin-top: -12px !important; - margin-bottom: -12px !important; - } - .v-application .my-xl-n4 { - margin-top: -16px !important; - margin-bottom: -16px !important; - } - .v-application .my-xl-n5 { - margin-top: -20px !important; - margin-bottom: -20px !important; - } - .v-application .my-xl-n6 { - margin-top: -24px !important; - margin-bottom: -24px !important; - } - .v-application .my-xl-n7 { - margin-top: -28px !important; - margin-bottom: -28px !important; - } - .v-application .my-xl-n8 { - margin-top: -32px !important; - margin-bottom: -32px !important; - } - .v-application .my-xl-n9 { - margin-top: -36px !important; - margin-bottom: -36px !important; - } - .v-application .my-xl-n10 { - margin-top: -40px !important; - margin-bottom: -40px !important; - } - .v-application .my-xl-n11 { - margin-top: -44px !important; - margin-bottom: -44px !important; - } - .v-application .my-xl-n12 { - margin-top: -48px !important; - margin-bottom: -48px !important; - } - .v-application .my-xl-n13 { - margin-top: -52px !important; - margin-bottom: -52px !important; - } - .v-application .my-xl-n14 { - margin-top: -56px !important; - margin-bottom: -56px !important; - } - .v-application .my-xl-n15 { - margin-top: -60px !important; - margin-bottom: -60px !important; - } - .v-application .my-xl-n16 { - margin-top: -64px !important; - margin-bottom: -64px !important; - } - .v-application .mt-xl-n1 { - margin-top: -4px !important; - } - .v-application .mt-xl-n2 { - margin-top: -8px !important; - } - .v-application .mt-xl-n3 { - margin-top: -12px !important; - } - .v-application .mt-xl-n4 { - margin-top: -16px !important; - } - .v-application .mt-xl-n5 { - margin-top: -20px !important; - } - .v-application .mt-xl-n6 { - margin-top: -24px !important; - } - .v-application .mt-xl-n7 { - margin-top: -28px !important; - } - .v-application .mt-xl-n8 { - margin-top: -32px !important; - } - .v-application .mt-xl-n9 { - margin-top: -36px !important; - } - .v-application .mt-xl-n10 { - margin-top: -40px !important; - } - .v-application .mt-xl-n11 { - margin-top: -44px !important; - } - .v-application .mt-xl-n12 { - margin-top: -48px !important; - } - .v-application .mt-xl-n13 { - margin-top: -52px !important; - } - .v-application .mt-xl-n14 { - margin-top: -56px !important; - } - .v-application .mt-xl-n15 { - margin-top: -60px !important; - } - .v-application .mt-xl-n16 { - margin-top: -64px !important; - } - .v-application .mr-xl-n1 { - margin-right: -4px !important; - } - .v-application .mr-xl-n2 { - margin-right: -8px !important; - } - .v-application .mr-xl-n3 { - margin-right: -12px !important; - } - .v-application .mr-xl-n4 { - margin-right: -16px !important; - } - .v-application .mr-xl-n5 { - margin-right: -20px !important; - } - .v-application .mr-xl-n6 { - margin-right: -24px !important; - } - .v-application .mr-xl-n7 { - margin-right: -28px !important; - } - .v-application .mr-xl-n8 { - margin-right: -32px !important; - } - .v-application .mr-xl-n9 { - margin-right: -36px !important; - } - .v-application .mr-xl-n10 { - margin-right: -40px !important; - } - .v-application .mr-xl-n11 { - margin-right: -44px !important; - } - .v-application .mr-xl-n12 { - margin-right: -48px !important; - } - .v-application .mr-xl-n13 { - margin-right: -52px !important; - } - .v-application .mr-xl-n14 { - margin-right: -56px !important; - } - .v-application .mr-xl-n15 { - margin-right: -60px !important; - } - .v-application .mr-xl-n16 { - margin-right: -64px !important; - } - .v-application .mb-xl-n1 { - margin-bottom: -4px !important; - } - .v-application .mb-xl-n2 { - margin-bottom: -8px !important; - } - .v-application .mb-xl-n3 { - margin-bottom: -12px !important; - } - .v-application .mb-xl-n4 { - margin-bottom: -16px !important; - } - .v-application .mb-xl-n5 { - margin-bottom: -20px !important; - } - .v-application .mb-xl-n6 { - margin-bottom: -24px !important; - } - .v-application .mb-xl-n7 { - margin-bottom: -28px !important; - } - .v-application .mb-xl-n8 { - margin-bottom: -32px !important; - } - .v-application .mb-xl-n9 { - margin-bottom: -36px !important; - } - .v-application .mb-xl-n10 { - margin-bottom: -40px !important; - } - .v-application .mb-xl-n11 { - margin-bottom: -44px !important; - } - .v-application .mb-xl-n12 { - margin-bottom: -48px !important; - } - .v-application .mb-xl-n13 { - margin-bottom: -52px !important; - } - .v-application .mb-xl-n14 { - margin-bottom: -56px !important; - } - .v-application .mb-xl-n15 { - margin-bottom: -60px !important; - } - .v-application .mb-xl-n16 { - margin-bottom: -64px !important; - } - .v-application .ml-xl-n1 { - margin-left: -4px !important; - } - .v-application .ml-xl-n2 { - margin-left: -8px !important; - } - .v-application .ml-xl-n3 { - margin-left: -12px !important; - } - .v-application .ml-xl-n4 { - margin-left: -16px !important; - } - .v-application .ml-xl-n5 { - margin-left: -20px !important; - } - .v-application .ml-xl-n6 { - margin-left: -24px !important; - } - .v-application .ml-xl-n7 { - margin-left: -28px !important; - } - .v-application .ml-xl-n8 { - margin-left: -32px !important; - } - .v-application .ml-xl-n9 { - margin-left: -36px !important; - } - .v-application .ml-xl-n10 { - margin-left: -40px !important; - } - .v-application .ml-xl-n11 { - margin-left: -44px !important; - } - .v-application .ml-xl-n12 { - margin-left: -48px !important; - } - .v-application .ml-xl-n13 { - margin-left: -52px !important; - } - .v-application .ml-xl-n14 { - margin-left: -56px !important; - } - .v-application .ml-xl-n15 { - margin-left: -60px !important; - } - .v-application .ml-xl-n16 { - margin-left: -64px !important; - } - .v-application--is-ltr .ms-xl-n1 { - margin-left: -4px !important; - } - .v-application--is-rtl .ms-xl-n1 { - margin-right: -4px !important; - } - .v-application--is-ltr .ms-xl-n2 { - margin-left: -8px !important; - } - .v-application--is-rtl .ms-xl-n2 { - margin-right: -8px !important; - } - .v-application--is-ltr .ms-xl-n3 { - margin-left: -12px !important; - } - .v-application--is-rtl .ms-xl-n3 { - margin-right: -12px !important; - } - .v-application--is-ltr .ms-xl-n4 { - margin-left: -16px !important; - } - .v-application--is-rtl .ms-xl-n4 { - margin-right: -16px !important; - } - .v-application--is-ltr .ms-xl-n5 { - margin-left: -20px !important; - } - .v-application--is-rtl .ms-xl-n5 { - margin-right: -20px !important; - } - .v-application--is-ltr .ms-xl-n6 { - margin-left: -24px !important; - } - .v-application--is-rtl .ms-xl-n6 { - margin-right: -24px !important; - } - .v-application--is-ltr .ms-xl-n7 { - margin-left: -28px !important; - } - .v-application--is-rtl .ms-xl-n7 { - margin-right: -28px !important; - } - .v-application--is-ltr .ms-xl-n8 { - margin-left: -32px !important; - } - .v-application--is-rtl .ms-xl-n8 { - margin-right: -32px !important; - } - .v-application--is-ltr .ms-xl-n9 { - margin-left: -36px !important; - } - .v-application--is-rtl .ms-xl-n9 { - margin-right: -36px !important; - } - .v-application--is-ltr .ms-xl-n10 { - margin-left: -40px !important; - } - .v-application--is-rtl .ms-xl-n10 { - margin-right: -40px !important; - } - .v-application--is-ltr .ms-xl-n11 { - margin-left: -44px !important; - } - .v-application--is-rtl .ms-xl-n11 { - margin-right: -44px !important; - } - .v-application--is-ltr .ms-xl-n12 { - margin-left: -48px !important; - } - .v-application--is-rtl .ms-xl-n12 { - margin-right: -48px !important; - } - .v-application--is-ltr .ms-xl-n13 { - margin-left: -52px !important; - } - .v-application--is-rtl .ms-xl-n13 { - margin-right: -52px !important; - } - .v-application--is-ltr .ms-xl-n14 { - margin-left: -56px !important; - } - .v-application--is-rtl .ms-xl-n14 { - margin-right: -56px !important; - } - .v-application--is-ltr .ms-xl-n15 { - margin-left: -60px !important; - } - .v-application--is-rtl .ms-xl-n15 { - margin-right: -60px !important; - } - .v-application--is-ltr .ms-xl-n16 { - margin-left: -64px !important; - } - .v-application--is-rtl .ms-xl-n16 { - margin-right: -64px !important; - } - .v-application--is-ltr .me-xl-n1 { - margin-right: -4px !important; - } - .v-application--is-rtl .me-xl-n1 { - margin-left: -4px !important; - } - .v-application--is-ltr .me-xl-n2 { - margin-right: -8px !important; - } - .v-application--is-rtl .me-xl-n2 { - margin-left: -8px !important; - } - .v-application--is-ltr .me-xl-n3 { - margin-right: -12px !important; - } - .v-application--is-rtl .me-xl-n3 { - margin-left: -12px !important; - } - .v-application--is-ltr .me-xl-n4 { - margin-right: -16px !important; - } - .v-application--is-rtl .me-xl-n4 { - margin-left: -16px !important; - } - .v-application--is-ltr .me-xl-n5 { - margin-right: -20px !important; - } - .v-application--is-rtl .me-xl-n5 { - margin-left: -20px !important; - } - .v-application--is-ltr .me-xl-n6 { - margin-right: -24px !important; - } - .v-application--is-rtl .me-xl-n6 { - margin-left: -24px !important; - } - .v-application--is-ltr .me-xl-n7 { - margin-right: -28px !important; - } - .v-application--is-rtl .me-xl-n7 { - margin-left: -28px !important; - } - .v-application--is-ltr .me-xl-n8 { - margin-right: -32px !important; - } - .v-application--is-rtl .me-xl-n8 { - margin-left: -32px !important; - } - .v-application--is-ltr .me-xl-n9 { - margin-right: -36px !important; - } - .v-application--is-rtl .me-xl-n9 { - margin-left: -36px !important; - } - .v-application--is-ltr .me-xl-n10 { - margin-right: -40px !important; - } - .v-application--is-rtl .me-xl-n10 { - margin-left: -40px !important; - } - .v-application--is-ltr .me-xl-n11 { - margin-right: -44px !important; - } - .v-application--is-rtl .me-xl-n11 { - margin-left: -44px !important; - } - .v-application--is-ltr .me-xl-n12 { - margin-right: -48px !important; - } - .v-application--is-rtl .me-xl-n12 { - margin-left: -48px !important; - } - .v-application--is-ltr .me-xl-n13 { - margin-right: -52px !important; - } - .v-application--is-rtl .me-xl-n13 { - margin-left: -52px !important; - } - .v-application--is-ltr .me-xl-n14 { - margin-right: -56px !important; - } - .v-application--is-rtl .me-xl-n14 { - margin-left: -56px !important; - } - .v-application--is-ltr .me-xl-n15 { - margin-right: -60px !important; - } - .v-application--is-rtl .me-xl-n15 { - margin-left: -60px !important; - } - .v-application--is-ltr .me-xl-n16 { - margin-right: -64px !important; - } - .v-application--is-rtl .me-xl-n16 { - margin-left: -64px !important; - } - .v-application .pa-xl-0 { - padding: 0 !important; - } - .v-application .pa-xl-1 { - padding: 4px !important; - } - .v-application .pa-xl-2 { - padding: 8px !important; - } - .v-application .pa-xl-3 { - padding: 12px !important; - } - .v-application .pa-xl-4 { - padding: 16px !important; - } - .v-application .pa-xl-5 { - padding: 20px !important; - } - .v-application .pa-xl-6 { - padding: 24px !important; - } - .v-application .pa-xl-7 { - padding: 28px !important; - } - .v-application .pa-xl-8 { - padding: 32px !important; - } - .v-application .pa-xl-9 { - padding: 36px !important; - } - .v-application .pa-xl-10 { - padding: 40px !important; - } - .v-application .pa-xl-11 { - padding: 44px !important; - } - .v-application .pa-xl-12 { - padding: 48px !important; - } - .v-application .pa-xl-13 { - padding: 52px !important; - } - .v-application .pa-xl-14 { - padding: 56px !important; - } - .v-application .pa-xl-15 { - padding: 60px !important; - } - .v-application .pa-xl-16 { - padding: 64px !important; - } - .v-application .px-xl-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - .v-application .px-xl-1 { - padding-right: 4px !important; - padding-left: 4px !important; - } - .v-application .px-xl-2 { - padding-right: 8px !important; - padding-left: 8px !important; - } - .v-application .px-xl-3 { - padding-right: 12px !important; - padding-left: 12px !important; - } - .v-application .px-xl-4 { - padding-right: 16px !important; - padding-left: 16px !important; - } - .v-application .px-xl-5 { - padding-right: 20px !important; - padding-left: 20px !important; - } - .v-application .px-xl-6 { - padding-right: 24px !important; - padding-left: 24px !important; - } - .v-application .px-xl-7 { - padding-right: 28px !important; - padding-left: 28px !important; - } - .v-application .px-xl-8 { - padding-right: 32px !important; - padding-left: 32px !important; - } - .v-application .px-xl-9 { - padding-right: 36px !important; - padding-left: 36px !important; - } - .v-application .px-xl-10 { - padding-right: 40px !important; - padding-left: 40px !important; - } - .v-application .px-xl-11 { - padding-right: 44px !important; - padding-left: 44px !important; - } - .v-application .px-xl-12 { - padding-right: 48px !important; - padding-left: 48px !important; - } - .v-application .px-xl-13 { - padding-right: 52px !important; - padding-left: 52px !important; - } - .v-application .px-xl-14 { - padding-right: 56px !important; - padding-left: 56px !important; - } - .v-application .px-xl-15 { - padding-right: 60px !important; - padding-left: 60px !important; - } - .v-application .px-xl-16 { - padding-right: 64px !important; - padding-left: 64px !important; - } - .v-application .py-xl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .v-application .py-xl-1 { - padding-top: 4px !important; - padding-bottom: 4px !important; - } - .v-application .py-xl-2 { - padding-top: 8px !important; - padding-bottom: 8px !important; - } - .v-application .py-xl-3 { - padding-top: 12px !important; - padding-bottom: 12px !important; - } - .v-application .py-xl-4 { - padding-top: 16px !important; - padding-bottom: 16px !important; - } - .v-application .py-xl-5 { - padding-top: 20px !important; - padding-bottom: 20px !important; - } - .v-application .py-xl-6 { - padding-top: 24px !important; - padding-bottom: 24px !important; - } - .v-application .py-xl-7 { - padding-top: 28px !important; - padding-bottom: 28px !important; - } - .v-application .py-xl-8 { - padding-top: 32px !important; - padding-bottom: 32px !important; - } - .v-application .py-xl-9 { - padding-top: 36px !important; - padding-bottom: 36px !important; - } - .v-application .py-xl-10 { - padding-top: 40px !important; - padding-bottom: 40px !important; - } - .v-application .py-xl-11 { - padding-top: 44px !important; - padding-bottom: 44px !important; - } - .v-application .py-xl-12 { - padding-top: 48px !important; - padding-bottom: 48px !important; - } - .v-application .py-xl-13 { - padding-top: 52px !important; - padding-bottom: 52px !important; - } - .v-application .py-xl-14 { - padding-top: 56px !important; - padding-bottom: 56px !important; - } - .v-application .py-xl-15 { - padding-top: 60px !important; - padding-bottom: 60px !important; - } - .v-application .py-xl-16 { - padding-top: 64px !important; - padding-bottom: 64px !important; - } - .v-application .pt-xl-0 { - padding-top: 0 !important; - } - .v-application .pt-xl-1 { - padding-top: 4px !important; - } - .v-application .pt-xl-2 { - padding-top: 8px !important; - } - .v-application .pt-xl-3 { - padding-top: 12px !important; - } - .v-application .pt-xl-4 { - padding-top: 16px !important; - } - .v-application .pt-xl-5 { - padding-top: 20px !important; - } - .v-application .pt-xl-6 { - padding-top: 24px !important; - } - .v-application .pt-xl-7 { - padding-top: 28px !important; - } - .v-application .pt-xl-8 { - padding-top: 32px !important; - } - .v-application .pt-xl-9 { - padding-top: 36px !important; - } - .v-application .pt-xl-10 { - padding-top: 40px !important; - } - .v-application .pt-xl-11 { - padding-top: 44px !important; - } - .v-application .pt-xl-12 { - padding-top: 48px !important; - } - .v-application .pt-xl-13 { - padding-top: 52px !important; - } - .v-application .pt-xl-14 { - padding-top: 56px !important; - } - .v-application .pt-xl-15 { - padding-top: 60px !important; - } - .v-application .pt-xl-16 { - padding-top: 64px !important; - } - .v-application .pr-xl-0 { - padding-right: 0 !important; - } - .v-application .pr-xl-1 { - padding-right: 4px !important; - } - .v-application .pr-xl-2 { - padding-right: 8px !important; - } - .v-application .pr-xl-3 { - padding-right: 12px !important; - } - .v-application .pr-xl-4 { - padding-right: 16px !important; - } - .v-application .pr-xl-5 { - padding-right: 20px !important; - } - .v-application .pr-xl-6 { - padding-right: 24px !important; - } - .v-application .pr-xl-7 { - padding-right: 28px !important; - } - .v-application .pr-xl-8 { - padding-right: 32px !important; - } - .v-application .pr-xl-9 { - padding-right: 36px !important; - } - .v-application .pr-xl-10 { - padding-right: 40px !important; - } - .v-application .pr-xl-11 { - padding-right: 44px !important; - } - .v-application .pr-xl-12 { - padding-right: 48px !important; - } - .v-application .pr-xl-13 { - padding-right: 52px !important; - } - .v-application .pr-xl-14 { - padding-right: 56px !important; - } - .v-application .pr-xl-15 { - padding-right: 60px !important; - } - .v-application .pr-xl-16 { - padding-right: 64px !important; - } - .v-application .pb-xl-0 { - padding-bottom: 0 !important; - } - .v-application .pb-xl-1 { - padding-bottom: 4px !important; - } - .v-application .pb-xl-2 { - padding-bottom: 8px !important; - } - .v-application .pb-xl-3 { - padding-bottom: 12px !important; - } - .v-application .pb-xl-4 { - padding-bottom: 16px !important; - } - .v-application .pb-xl-5 { - padding-bottom: 20px !important; - } - .v-application .pb-xl-6 { - padding-bottom: 24px !important; - } - .v-application .pb-xl-7 { - padding-bottom: 28px !important; - } - .v-application .pb-xl-8 { - padding-bottom: 32px !important; - } - .v-application .pb-xl-9 { - padding-bottom: 36px !important; - } - .v-application .pb-xl-10 { - padding-bottom: 40px !important; - } - .v-application .pb-xl-11 { - padding-bottom: 44px !important; - } - .v-application .pb-xl-12 { - padding-bottom: 48px !important; - } - .v-application .pb-xl-13 { - padding-bottom: 52px !important; - } - .v-application .pb-xl-14 { - padding-bottom: 56px !important; - } - .v-application .pb-xl-15 { - padding-bottom: 60px !important; - } - .v-application .pb-xl-16 { - padding-bottom: 64px !important; - } - .v-application .pl-xl-0 { - padding-left: 0 !important; - } - .v-application .pl-xl-1 { - padding-left: 4px !important; - } - .v-application .pl-xl-2 { - padding-left: 8px !important; - } - .v-application .pl-xl-3 { - padding-left: 12px !important; - } - .v-application .pl-xl-4 { - padding-left: 16px !important; - } - .v-application .pl-xl-5 { - padding-left: 20px !important; - } - .v-application .pl-xl-6 { - padding-left: 24px !important; - } - .v-application .pl-xl-7 { - padding-left: 28px !important; - } - .v-application .pl-xl-8 { - padding-left: 32px !important; - } - .v-application .pl-xl-9 { - padding-left: 36px !important; - } - .v-application .pl-xl-10 { - padding-left: 40px !important; - } - .v-application .pl-xl-11 { - padding-left: 44px !important; - } - .v-application .pl-xl-12 { - padding-left: 48px !important; - } - .v-application .pl-xl-13 { - padding-left: 52px !important; - } - .v-application .pl-xl-14 { - padding-left: 56px !important; - } - .v-application .pl-xl-15 { - padding-left: 60px !important; - } - .v-application .pl-xl-16 { - padding-left: 64px !important; - } - .v-application--is-ltr .ps-xl-0 { - padding-left: 0 !important; - } - .v-application--is-rtl .ps-xl-0 { - padding-right: 0 !important; - } - .v-application--is-ltr .ps-xl-1 { - padding-left: 4px !important; - } - .v-application--is-rtl .ps-xl-1 { - padding-right: 4px !important; - } - .v-application--is-ltr .ps-xl-2 { - padding-left: 8px !important; - } - .v-application--is-rtl .ps-xl-2 { - padding-right: 8px !important; - } - .v-application--is-ltr .ps-xl-3 { - padding-left: 12px !important; - } - .v-application--is-rtl .ps-xl-3 { - padding-right: 12px !important; - } - .v-application--is-ltr .ps-xl-4 { - padding-left: 16px !important; - } - .v-application--is-rtl .ps-xl-4 { - padding-right: 16px !important; - } - .v-application--is-ltr .ps-xl-5 { - padding-left: 20px !important; - } - .v-application--is-rtl .ps-xl-5 { - padding-right: 20px !important; - } - .v-application--is-ltr .ps-xl-6 { - padding-left: 24px !important; - } - .v-application--is-rtl .ps-xl-6 { - padding-right: 24px !important; - } - .v-application--is-ltr .ps-xl-7 { - padding-left: 28px !important; - } - .v-application--is-rtl .ps-xl-7 { - padding-right: 28px !important; - } - .v-application--is-ltr .ps-xl-8 { - padding-left: 32px !important; - } - .v-application--is-rtl .ps-xl-8 { - padding-right: 32px !important; - } - .v-application--is-ltr .ps-xl-9 { - padding-left: 36px !important; - } - .v-application--is-rtl .ps-xl-9 { - padding-right: 36px !important; - } - .v-application--is-ltr .ps-xl-10 { - padding-left: 40px !important; - } - .v-application--is-rtl .ps-xl-10 { - padding-right: 40px !important; - } - .v-application--is-ltr .ps-xl-11 { - padding-left: 44px !important; - } - .v-application--is-rtl .ps-xl-11 { - padding-right: 44px !important; - } - .v-application--is-ltr .ps-xl-12 { - padding-left: 48px !important; - } - .v-application--is-rtl .ps-xl-12 { - padding-right: 48px !important; - } - .v-application--is-ltr .ps-xl-13 { - padding-left: 52px !important; - } - .v-application--is-rtl .ps-xl-13 { - padding-right: 52px !important; - } - .v-application--is-ltr .ps-xl-14 { - padding-left: 56px !important; - } - .v-application--is-rtl .ps-xl-14 { - padding-right: 56px !important; - } - .v-application--is-ltr .ps-xl-15 { - padding-left: 60px !important; - } - .v-application--is-rtl .ps-xl-15 { - padding-right: 60px !important; - } - .v-application--is-ltr .ps-xl-16 { - padding-left: 64px !important; - } - .v-application--is-rtl .ps-xl-16 { - padding-right: 64px !important; - } - .v-application--is-ltr .pe-xl-0 { - padding-right: 0 !important; - } - .v-application--is-rtl .pe-xl-0 { - padding-left: 0 !important; - } - .v-application--is-ltr .pe-xl-1 { - padding-right: 4px !important; - } - .v-application--is-rtl .pe-xl-1 { - padding-left: 4px !important; - } - .v-application--is-ltr .pe-xl-2 { - padding-right: 8px !important; - } - .v-application--is-rtl .pe-xl-2 { - padding-left: 8px !important; - } - .v-application--is-ltr .pe-xl-3 { - padding-right: 12px !important; - } - .v-application--is-rtl .pe-xl-3 { - padding-left: 12px !important; - } - .v-application--is-ltr .pe-xl-4 { - padding-right: 16px !important; - } - .v-application--is-rtl .pe-xl-4 { - padding-left: 16px !important; - } - .v-application--is-ltr .pe-xl-5 { - padding-right: 20px !important; - } - .v-application--is-rtl .pe-xl-5 { - padding-left: 20px !important; - } - .v-application--is-ltr .pe-xl-6 { - padding-right: 24px !important; - } - .v-application--is-rtl .pe-xl-6 { - padding-left: 24px !important; - } - .v-application--is-ltr .pe-xl-7 { - padding-right: 28px !important; - } - .v-application--is-rtl .pe-xl-7 { - padding-left: 28px !important; - } - .v-application--is-ltr .pe-xl-8 { - padding-right: 32px !important; - } - .v-application--is-rtl .pe-xl-8 { - padding-left: 32px !important; - } - .v-application--is-ltr .pe-xl-9 { - padding-right: 36px !important; - } - .v-application--is-rtl .pe-xl-9 { - padding-left: 36px !important; - } - .v-application--is-ltr .pe-xl-10 { - padding-right: 40px !important; - } - .v-application--is-rtl .pe-xl-10 { - padding-left: 40px !important; - } - .v-application--is-ltr .pe-xl-11 { - padding-right: 44px !important; - } - .v-application--is-rtl .pe-xl-11 { - padding-left: 44px !important; - } - .v-application--is-ltr .pe-xl-12 { - padding-right: 48px !important; - } - .v-application--is-rtl .pe-xl-12 { - padding-left: 48px !important; - } - .v-application--is-ltr .pe-xl-13 { - padding-right: 52px !important; - } - .v-application--is-rtl .pe-xl-13 { - padding-left: 52px !important; - } - .v-application--is-ltr .pe-xl-14 { - padding-right: 56px !important; - } - .v-application--is-rtl .pe-xl-14 { - padding-left: 56px !important; - } - .v-application--is-ltr .pe-xl-15 { - padding-right: 60px !important; - } - .v-application--is-rtl .pe-xl-15 { - padding-left: 60px !important; - } - .v-application--is-ltr .pe-xl-16 { - padding-right: 64px !important; - } - .v-application--is-rtl .pe-xl-16 { - padding-left: 64px !important; - } - .v-application .text-xl-left { - text-align: left !important; - } - .v-application .text-xl-right { - text-align: right !important; - } - .v-application .text-xl-center { - text-align: center !important; - } - .v-application .text-xl-justify { - text-align: justify !important; - } - .v-application .text-xl-start { - text-align: start !important; - } - .v-application .text-xl-end { - text-align: end !important; - } - .v-application .text-xl-h1 { - font-size: 6rem !important; - line-height: 6rem; - letter-spacing: -0.015625em !important; - } - .v-application .text-xl-h1, - .v-application .text-xl-h2 { - font-weight: 300; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-h2 { - font-size: 3.75rem !important; - line-height: 3.75rem; - letter-spacing: -0.0083333333em !important; - } - .v-application .text-xl-h3 { - font-size: 3rem !important; - line-height: 3.125rem; - letter-spacing: normal !important; - } - .v-application .text-xl-h3, - .v-application .text-xl-h4 { - font-weight: 400; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-h4 { - font-size: 2.125rem !important; - line-height: 2.5rem; - letter-spacing: 0.0073529412em !important; - } - .v-application .text-xl-h5 { - font-size: 1.5rem !important; - font-weight: 400; - letter-spacing: normal !important; - } - .v-application .text-xl-h5, - .v-application .text-xl-h6 { - line-height: 2rem; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-h6 { - font-size: 1.25rem !important; - font-weight: 500; - letter-spacing: 0.0125em !important; - } - .v-application .text-xl-subtitle-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.75rem; - letter-spacing: 0.009375em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-subtitle-2 { - font-size: 0.875rem !important; - font-weight: 500; - line-height: 1.375rem; - letter-spacing: 0.0071428571em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-body-1 { - font-size: 1rem !important; - font-weight: 400; - line-height: 1.5rem; - letter-spacing: 0.03125em !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-body-2 { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0178571429em !important; - } - .v-application .text-xl-body-2, - .v-application .text-xl-button { - font-size: 0.875rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-button { - font-weight: 500; - line-height: 2.25rem; - letter-spacing: 0.0892857143em !important; - text-transform: uppercase !important; - } - .v-application .text-xl-caption { - font-weight: 400; - line-height: 1.25rem; - letter-spacing: 0.0333333333em !important; - } - .v-application .text-xl-caption, - .v-application .text-xl-overline { - font-size: 0.75rem !important; - font-family: Roboto, sans-serif !important; - } - .v-application .text-xl-overline { - font-weight: 500; - line-height: 2rem; - letter-spacing: 0.1666666667em !important; - text-transform: uppercase !important; - } -} -@media print { - .v-application .d-print-none { - display: none !important; - } - .v-application .d-print-inline { - display: inline !important; - } - .v-application .d-print-inline-block { - display: inline-block !important; - } - .v-application .d-print-block { - display: block !important; - } - .v-application .d-print-table { - display: table !important; - } - .v-application .d-print-table-row { - display: table-row !important; - } - .v-application .d-print-table-cell { - display: table-cell !important; - } - .v-application .d-print-flex { - display: flex !important; - } - .v-application .d-print-inline-flex { - display: inline-flex !important; - } - .v-application .float-print-none { - float: none !important; - } - .v-application .float-print-left { - float: left !important; - } - .v-application .float-print-right { - float: right !important; - } -} -.v-ripple__container { - border-radius: inherit; - width: 100%; - height: 100%; - z-index: 0; - contain: strict; -} -.v-ripple__animation, -.v-ripple__container { - color: inherit; - position: absolute; - left: 0; - top: 0; - overflow: hidden; - pointer-events: none; -} -.v-ripple__animation { - border-radius: 50%; - background: currentColor; - opacity: 0; - will-change: transform, opacity; -} -.v-ripple__animation--enter { - transition: none; -} -.v-ripple__animation--in { - transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), - opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1); -} -.v-ripple__animation--out { - transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1); -} -.v-progress-circular { - position: relative; - display: inline-flex; - vertical-align: middle; - justify-content: center; - align-items: center; -} -.v-progress-circular > svg { - width: 100%; - height: 100%; - margin: auto; - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - z-index: 0; -} -.v-progress-circular--indeterminate > svg { - -webkit-animation: progress-circular-rotate 1.4s linear infinite; - animation: progress-circular-rotate 1.4s linear infinite; - transform-origin: center center; - transition: all 0.2s ease-in-out; -} -.v-progress-circular--indeterminate .v-progress-circular__overlay { - -webkit-animation: progress-circular-dash 1.4s ease-in-out infinite; - animation: progress-circular-dash 1.4s ease-in-out infinite; - stroke-linecap: round; - stroke-dasharray: 80, 200; - stroke-dashoffset: 0px; -} -.v-progress-circular__info { - align-items: center; - display: flex; - justify-content: center; -} -.v-progress-circular__underlay { - stroke: hsla(0, 0%, 62%, 0.4); - z-index: 1; -} -.v-progress-circular__overlay { - stroke: currentColor; - z-index: 2; - transition: all 0.6s ease-in-out; -} -@-webkit-keyframes progress-circular-dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0px; - } - 50% { - stroke-dasharray: 100, 200; - stroke-dashoffset: -15px; - } - to { - stroke-dasharray: 100, 200; - stroke-dashoffset: -125px; - } -} -@keyframes progress-circular-dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0px; - } - 50% { - stroke-dasharray: 100, 200; - stroke-dashoffset: -15px; - } - to { - stroke-dasharray: 100, 200; - stroke-dashoffset: -125px; - } -} -@-webkit-keyframes progress-circular-rotate { - to { - transform: rotate(1turn); - } -} -@keyframes progress-circular-rotate { - to { - transform: rotate(1turn); - } -} -.theme--light.v-card { - background-color: #fff; - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-card .v-card__subtitle, -.theme--light.v-card > .v-card__text { - color: rgba(0, 0, 0, 0.6); -} -.theme--dark.v-card { - background-color: #1e1e1e; - color: #fff; -} -.theme--dark.v-card .v-card__subtitle, -.theme--dark.v-card > .v-card__text { - color: hsla(0, 0%, 100%, 0.7); -} -.v-sheet.v-card { - border-radius: 4px; -} -.v-sheet.v-card:not(.v-sheet--outlined) { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), - 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} -.v-sheet.v-card.v-sheet--shaped { - border-radius: 24px 4px; -} -.v-card { - border-width: thin; - display: block; - max-width: 100%; - outline: none; - text-decoration: none; - transition-property: box-shadow, opacity; - overflow-wrap: break-word; - position: relative; - white-space: normal; -} -.v-card > .v-card__progress + :not(.v-btn):not(.v-chip), -.v-card > :first-child:not(.v-btn):not(.v-chip) { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} -.v-card > :last-child:not(.v-btn):not(.v-chip) { - border-bottom-left-radius: inherit; - border-bottom-right-radius: inherit; -} -.v-card__progress { - top: 0; - left: 0; - right: 0; - overflow: hidden; -} -.v-card__subtitle + .v-card__text { - padding-top: 0; -} -.v-card__subtitle, -.v-card__text { - font-size: 0.875rem; - font-weight: 400; - line-height: 1.375rem; - letter-spacing: 0.0071428571em; -} -.v-card__subtitle, -.v-card__text, -.v-card__title { - padding: 16px; -} -.v-card__title { - align-items: center; - display: flex; - flex-wrap: wrap; - font-size: 1.25rem; - font-weight: 500; - letter-spacing: 0.0125em; - line-height: 2rem; - word-break: break-all; -} -.v-card__title + .v-card__subtitle, -.v-card__title + .v-card__text { - padding-top: 0; -} -.v-card__title + .v-card__subtitle { - margin-top: -16px; -} -.v-card__text { - width: 100%; -} -.v-card__actions { - align-items: center; - display: flex; - padding: 8px; -} -.v-card__actions > .v-btn.v-btn { - padding: 0 8px; -} -.v-application--is-ltr .v-card__actions > .v-btn.v-btn + .v-btn { - margin-left: 8px; -} -.v-application--is-ltr .v-card__actions > .v-btn.v-btn .v-icon--left { - margin-left: 4px; -} -.v-application--is-ltr .v-card__actions > .v-btn.v-btn .v-icon--right { - margin-right: 4px; -} -.v-application--is-rtl .v-card__actions > .v-btn.v-btn + .v-btn { - margin-right: 8px; -} -.v-application--is-rtl .v-card__actions > .v-btn.v-btn .v-icon--left { - margin-right: 4px; -} -.v-application--is-rtl .v-card__actions > .v-btn.v-btn .v-icon--right { - margin-left: 4px; -} -.v-card--flat { - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), - 0 0 0 0 rgba(0, 0, 0, 0.12) !important; -} -.v-sheet.v-card--hover { - cursor: pointer; - transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); -} -.v-sheet.v-card--hover:focus, -.v-sheet.v-card--hover:hover { - box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), - 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); -} -.v-card--link, -.v-card--link .v-chip { - cursor: pointer; -} -.v-card--link:focus:before { - opacity: 0.08; -} -.v-card--link:before { - background: currentColor; - bottom: 0; - content: ""; - left: 0; - opacity: 0; - pointer-events: none; - position: absolute; - right: 0; - top: 0; - transition: opacity 0.2s; -} -.v-card--disabled { - pointer-events: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-card--disabled > :not(.v-card__progress) { - opacity: 0.6; - transition: inherit; -} -.v-card--loading { - overflow: hidden; -} -.v-card--raised { - box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), - 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); -} -.theme--light.v-progress-linear { - color: rgba(0, 0, 0, 0.87); -} -.theme--dark.v-progress-linear { - color: #fff; -} -.v-progress-linear { - background: transparent; - overflow: hidden; - position: relative; - transition: 0.2s cubic-bezier(0.4, 0, 0.6, 1); - width: 100%; -} -.v-progress-linear__buffer { - height: inherit; - left: 0; - position: absolute; - top: 0; - transition: inherit; - width: 100%; -} -.v-progress-linear--reverse .v-progress-linear__buffer { - left: auto; - right: 0; -} -.v-progress-linear__background { - bottom: 0; - left: 0; - position: absolute; - top: 0; - transition: inherit; -} -.v-progress-linear--reverse .v-progress-linear__background { - left: auto; - right: 0; -} -.v-progress-linear__content { - align-items: center; - display: flex; - height: 100%; - left: 0; - justify-content: center; - position: absolute; - top: 0; - width: 100%; -} -.v-progress-linear--reverse .v-progress-linear__content { - left: auto; - right: 0; -} -.v-progress-linear__determinate { - height: inherit; - left: 0; - position: absolute; - transition: inherit; -} -.v-progress-linear--reverse .v-progress-linear__determinate { - left: auto; - right: 0; -} -.v-progress-linear .v-progress-linear__indeterminate .long, -.v-progress-linear .v-progress-linear__indeterminate .short { - background-color: inherit; - bottom: 0; - height: inherit; - left: 0; - position: absolute; - right: auto; - top: 0; - width: auto; - will-change: left, right; -} -.v-progress-linear .v-progress-linear__indeterminate--active .long { - -webkit-animation-name: indeterminate-ltr; - animation-name: indeterminate-ltr; - -webkit-animation-duration: 2.2s; - animation-duration: 2.2s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} -.v-progress-linear .v-progress-linear__indeterminate--active .short { - -webkit-animation-name: indeterminate-short-ltr; - animation-name: indeterminate-short-ltr; - -webkit-animation-duration: 2.2s; - animation-duration: 2.2s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} -.v-progress-linear--reverse .v-progress-linear__indeterminate .long, -.v-progress-linear--reverse .v-progress-linear__indeterminate .short { - left: auto; - right: 0; -} -.v-progress-linear--reverse .v-progress-linear__indeterminate--active .long { - -webkit-animation-name: indeterminate-rtl; - animation-name: indeterminate-rtl; -} -.v-progress-linear--reverse .v-progress-linear__indeterminate--active .short { - -webkit-animation-name: indeterminate-short-rtl; - animation-name: indeterminate-short-rtl; -} -.v-progress-linear__stream { - -webkit-animation: stream-ltr 0.25s linear infinite; - animation: stream-ltr 0.25s linear infinite; - border-color: currentColor; - border-top: 4px dotted; - bottom: 0; - left: auto; - right: -8px; - opacity: 0.3; - pointer-events: none; - position: absolute; - top: calc(50% - 2px); - transition: inherit; -} -.v-progress-linear--reverse .v-progress-linear__stream { - -webkit-animation: stream-rtl 0.25s linear infinite; - animation: stream-rtl 0.25s linear infinite; - left: -8px; - right: auto; -} -.v-progress-linear__wrapper { - overflow: hidden; - position: relative; - transition: inherit; -} -.v-progress-linear--absolute, -.v-progress-linear--fixed { - left: 0; - z-index: 1; -} -.v-progress-linear--absolute { - position: absolute; -} -.v-progress-linear--fixed { - position: fixed; -} -.v-progress-linear--reactive .v-progress-linear__content { - pointer-events: none; -} -.v-progress-linear--rounded { - border-radius: 4px; -} -.v-progress-linear--striped .v-progress-linear__determinate { - background-image: linear-gradient( - 135deg, - hsla(0, 0%, 100%, 0.25) 25%, - transparent 0, - transparent 50%, - hsla(0, 0%, 100%, 0.25) 0, - hsla(0, 0%, 100%, 0.25) 75%, - transparent 0, - transparent - ); - background-size: 40px 40px; - background-repeat: repeat; -} -.v-progress-linear--query .v-progress-linear__indeterminate--active .long { - -webkit-animation-name: query-ltr; - animation-name: query-ltr; - -webkit-animation-duration: 2s; - animation-duration: 2s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} -.v-progress-linear--query .v-progress-linear__indeterminate--active .short { - -webkit-animation-name: query-short-ltr; - animation-name: query-short-ltr; - -webkit-animation-duration: 2s; - animation-duration: 2s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} -.v-progress-linear--query.v-progress-linear--reverse - .v-progress-linear__indeterminate--active - .long { - -webkit-animation-name: query-rtl; - animation-name: query-rtl; -} -.v-progress-linear--query.v-progress-linear--reverse - .v-progress-linear__indeterminate--active - .short { - -webkit-animation-name: query-short-rtl; - animation-name: query-short-rtl; -} -@-webkit-keyframes indeterminate-ltr { - 0% { - left: -90%; - right: 100%; - } - 60% { - left: -90%; - right: 100%; - } - to { - left: 100%; - right: -35%; - } -} -@keyframes indeterminate-ltr { - 0% { - left: -90%; - right: 100%; - } - 60% { - left: -90%; - right: 100%; - } - to { - left: 100%; - right: -35%; - } -} -@-webkit-keyframes indeterminate-rtl { - 0% { - left: 100%; - right: -90%; - } - 60% { - left: 100%; - right: -90%; - } - to { - left: -35%; - right: 100%; - } -} -@keyframes indeterminate-rtl { - 0% { - left: 100%; - right: -90%; - } - 60% { - left: 100%; - right: -90%; - } - to { - left: -35%; - right: 100%; - } -} -@-webkit-keyframes indeterminate-short-ltr { - 0% { - left: -200%; - right: 100%; - } - 60% { - left: 107%; - right: -8%; - } - to { - left: 107%; - right: -8%; - } -} -@keyframes indeterminate-short-ltr { - 0% { - left: -200%; - right: 100%; - } - 60% { - left: 107%; - right: -8%; - } - to { - left: 107%; - right: -8%; - } -} -@-webkit-keyframes indeterminate-short-rtl { - 0% { - left: 100%; - right: -200%; - } - 60% { - left: -8%; - right: 107%; - } - to { - left: -8%; - right: 107%; - } -} -@keyframes indeterminate-short-rtl { - 0% { - left: 100%; - right: -200%; - } - 60% { - left: -8%; - right: 107%; - } - to { - left: -8%; - right: 107%; - } -} -@-webkit-keyframes query-ltr { - 0% { - right: -90%; - left: 100%; - } - 60% { - right: -90%; - left: 100%; - } - to { - right: 100%; - left: -35%; - } -} -@keyframes query-ltr { - 0% { - right: -90%; - left: 100%; - } - 60% { - right: -90%; - left: 100%; - } - to { - right: 100%; - left: -35%; - } -} -@-webkit-keyframes query-rtl { - 0% { - right: 100%; - left: -90%; - } - 60% { - right: 100%; - left: -90%; - } - to { - right: -35%; - left: 100%; - } -} -@keyframes query-rtl { - 0% { - right: 100%; - left: -90%; - } - 60% { - right: 100%; - left: -90%; - } - to { - right: -35%; - left: 100%; - } -} -@-webkit-keyframes query-short-ltr { - 0% { - right: -200%; - left: 100%; - } - 60% { - right: 107%; - left: -8%; - } - to { - right: 107%; - left: -8%; - } -} -@keyframes query-short-ltr { - 0% { - right: -200%; - left: 100%; - } - 60% { - right: 107%; - left: -8%; - } - to { - right: 107%; - left: -8%; - } -} -@-webkit-keyframes query-short-rtl { - 0% { - right: 100%; - left: -200%; - } - 60% { - right: -8%; - left: 107%; - } - to { - right: -8%; - left: 107%; - } -} -@keyframes query-short-rtl { - 0% { - right: 100%; - left: -200%; - } - 60% { - right: -8%; - left: 107%; - } - to { - right: -8%; - left: 107%; - } -} -@-webkit-keyframes stream-ltr { - to { - transform: translateX(-8px); - } -} -@keyframes stream-ltr { - to { - transform: translateX(-8px); - } -} -@-webkit-keyframes stream-rtl { - to { - transform: translateX(8px); - } -} -@keyframes stream-rtl { - to { - transform: translateX(8px); - } -} -.v-dialog { - border-radius: 4px; - margin: 24px; - overflow-y: auto; - pointer-events: auto; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); - width: 100%; - z-index: inherit; - box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), - 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); -} -.v-dialog:not(.v-dialog--fullscreen) { - max-height: 90%; -} -.v-dialog > * { - width: 100%; -} -.v-dialog > .v-card > .v-card__title { - font-size: 1.25rem; - font-weight: 500; - letter-spacing: 0.0125em; - padding: 16px 24px 10px; -} -.v-dialog > .v-card > .v-card__subtitle, -.v-dialog > .v-card > .v-card__text { - padding: 0 24px 20px; -} -.v-dialog__content { - align-items: center; - display: flex; - height: 100%; - justify-content: center; - left: 0; - pointer-events: none; - position: fixed; - top: 0; - transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), z-index 1ms; - width: 100%; - z-index: 6; - outline: none; -} -.v-dialog__container { - display: none; -} -.v-dialog__container--attached { - display: inline; -} -.v-dialog--animated { - -webkit-animation-duration: 0.15s; - animation-duration: 0.15s; - -webkit-animation-name: animate-dialog; - animation-name: animate-dialog; - -webkit-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1); - animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1); -} -.v-dialog--fullscreen { - border-radius: 0; - margin: 0; - height: 100%; - position: fixed; - overflow-y: auto; - top: 0; - left: 0; -} -.v-dialog--fullscreen > .v-card { - min-height: 100%; - min-width: 100%; - margin: 0 !important; - padding: 0 !important; -} -.v-dialog--scrollable, -.v-dialog--scrollable > form { - display: flex; -} -.v-dialog--scrollable > .v-card, -.v-dialog--scrollable > form > .v-card { - display: flex; - flex: 1 1 100%; - flex-direction: column; - max-height: 100%; - max-width: 100%; -} -.v-dialog--scrollable > .v-card > .v-card__actions, -.v-dialog--scrollable > .v-card > .v-card__title, -.v-dialog--scrollable > form > .v-card > .v-card__actions, -.v-dialog--scrollable > form > .v-card > .v-card__title { - flex: 0 0 auto; -} -.v-dialog--scrollable > .v-card > .v-card__text, -.v-dialog--scrollable > form > .v-card > .v-card__text { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - flex: 1 1 auto; - overflow-y: auto; -} -@-webkit-keyframes animate-dialog { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.03); - } - to { - transform: scale(1); - } -} -@keyframes animate-dialog { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.03); - } - to { - transform: scale(1); - } -} -.theme--light.v-overlay { - color: rgba(0, 0, 0, 0.87); -} -.theme--dark.v-overlay { - color: #fff; -} -.v-overlay { - align-items: center; - border-radius: inherit; - display: flex; - justify-content: center; - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - pointer-events: none; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), z-index 1ms; -} -.v-overlay__content { - position: relative; -} -.v-overlay__scrim { - border-radius: inherit; - bottom: 0; - height: 100%; - left: 0; - position: absolute; - right: 0; - top: 0; - transition: inherit; - width: 100%; - will-change: opacity; -} -.v-overlay--absolute { - position: absolute; -} -.v-overlay--active { - pointer-events: auto; -} -.theme--light.v-divider { - border-color: rgba(0, 0, 0, 0.12); -} -.theme--dark.v-divider { - border-color: hsla(0, 0%, 100%, 0.12); -} -.v-divider { - display: block; - flex: 1 1 0px; - max-width: 100%; - height: 0; - max-height: 0; - border: solid; - border-width: thin 0 0 0; - transition: inherit; -} -.v-divider--inset:not(.v-divider--vertical) { - max-width: calc(100% - 72px); -} -.v-application--is-ltr .v-divider--inset:not(.v-divider--vertical) { - margin-left: 72px; -} -.v-application--is-rtl .v-divider--inset:not(.v-divider--vertical) { - margin-right: 72px; -} -.v-divider--vertical { - align-self: stretch; - border: solid; - border-width: 0 thin 0 0; - display: inline-flex; - height: inherit; - min-height: 100%; - max-height: 100%; - max-width: 0; - width: 0; - vertical-align: text-bottom; -} -.v-divider--vertical.v-divider--inset { - margin-top: 8px; - min-height: 0; - max-height: calc(100% - 16px); -} -.theme--light.v-icon { - color: rgba(0, 0, 0, 0.54); -} -.theme--light.v-icon:focus:after { - opacity: 0.12; -} -.theme--light.v-icon.v-icon.v-icon--disabled { - color: rgba(0, 0, 0, 0.38) !important; -} -.theme--dark.v-icon { - color: #fff; -} -.theme--dark.v-icon:focus:after { - opacity: 0.24; -} -.theme--dark.v-icon.v-icon.v-icon--disabled { - color: hsla(0, 0%, 100%, 0.5) !important; -} -.v-icon.v-icon { - align-items: center; - display: inline-flex; - font-feature-settings: "liga"; - font-size: 24px; - justify-content: center; - letter-spacing: normal; - line-height: 1; - position: relative; - text-indent: 0; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-icon.v-icon:after { - background-color: currentColor; - border-radius: 50%; - content: ""; - display: inline-block; - height: 100%; - left: 0; - opacity: 0; - pointer-events: none; - position: absolute; - top: 0; - transform: scale(1.3); - width: 100%; - transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1); -} -.v-icon.v-icon--dense { - font-size: 20px; -} -.v-icon--right { - margin-left: 8px; -} -.v-icon--left { - margin-right: 8px; -} -.v-icon.v-icon.v-icon--link { - cursor: pointer; - outline: none; -} -.v-icon--disabled { - pointer-events: none; -} -.v-icon--dense__component, -.v-icon--dense__svg { - height: 20px; -} -.v-icon__component, -.v-icon__svg { - height: 24px; - width: 24px; -} -.v-icon__svg { - fill: currentColor; -} -.container.grow-shrink-0 { - flex-grow: 0; - flex-shrink: 0; -} -.container.fill-height { - align-items: center; - display: flex; - flex-wrap: wrap; -} -.container.fill-height > .row { - flex: 1 1 100%; - max-width: calc(100% + 24px); -} -.container.fill-height > .layout { - height: 100%; - flex: 1 1 auto; -} -.container.fill-height > .layout.grow-shrink-0 { - flex-grow: 0; - flex-shrink: 0; -} -.container.grid-list-xs .layout .flex { - padding: 1px; -} -.container.grid-list-xs .layout:only-child { - margin: -1px; -} -.container.grid-list-xs .layout:not(:only-child) { - margin: auto -1px; -} -.container.grid-list-xs :not(:only-child) .layout:first-child { - margin-top: -1px; -} -.container.grid-list-xs :not(:only-child) .layout:last-child { - margin-bottom: -1px; -} -.container.grid-list-sm .layout .flex { - padding: 2px; -} -.container.grid-list-sm .layout:only-child { - margin: -2px; -} -.container.grid-list-sm .layout:not(:only-child) { - margin: auto -2px; -} -.container.grid-list-sm :not(:only-child) .layout:first-child { - margin-top: -2px; -} -.container.grid-list-sm :not(:only-child) .layout:last-child { - margin-bottom: -2px; -} -.container.grid-list-md .layout .flex { - padding: 4px; -} -.container.grid-list-md .layout:only-child { - margin: -4px; -} -.container.grid-list-md .layout:not(:only-child) { - margin: auto -4px; -} -.container.grid-list-md :not(:only-child) .layout:first-child { - margin-top: -4px; -} -.container.grid-list-md :not(:only-child) .layout:last-child { - margin-bottom: -4px; -} -.container.grid-list-lg .layout .flex { - padding: 8px; -} -.container.grid-list-lg .layout:only-child { - margin: -8px; -} -.container.grid-list-lg .layout:not(:only-child) { - margin: auto -8px; -} -.container.grid-list-lg :not(:only-child) .layout:first-child { - margin-top: -8px; -} -.container.grid-list-lg :not(:only-child) .layout:last-child { - margin-bottom: -8px; -} -.container.grid-list-xl .layout .flex { - padding: 12px; -} -.container.grid-list-xl .layout:only-child { - margin: -12px; -} -.container.grid-list-xl .layout:not(:only-child) { - margin: auto -12px; -} -.container.grid-list-xl :not(:only-child) .layout:first-child { - margin-top: -12px; -} -.container.grid-list-xl :not(:only-child) .layout:last-child { - margin-bottom: -12px; -} -.layout { - display: flex; - flex: 1 1 auto; - flex-wrap: nowrap; - min-width: 0; -} -.layout.reverse { - flex-direction: row-reverse; -} -.layout.column { - flex-direction: column; -} -.layout.column.reverse { - flex-direction: column-reverse; -} -.layout.column > .flex { - max-width: 100%; -} -.layout.wrap { - flex-wrap: wrap; -} -.layout.grow-shrink-0 { - flex-grow: 0; - flex-shrink: 0; -} -@media (min-width: 0) { - .flex.xs12 { - flex-basis: 100%; - flex-grow: 0; - max-width: 100%; - } - .flex.order-xs12 { - order: 12; - } - .flex.xs11 { - flex-basis: 91.6666666667%; - flex-grow: 0; - max-width: 91.6666666667%; - } - .flex.order-xs11 { - order: 11; - } - .flex.xs10 { - flex-basis: 83.3333333333%; - flex-grow: 0; - max-width: 83.3333333333%; - } - .flex.order-xs10 { - order: 10; - } - .flex.xs9 { - flex-basis: 75%; - flex-grow: 0; - max-width: 75%; - } - .flex.order-xs9 { - order: 9; - } - .flex.xs8 { - flex-basis: 66.6666666667%; - flex-grow: 0; - max-width: 66.6666666667%; - } - .flex.order-xs8 { - order: 8; - } - .flex.xs7 { - flex-basis: 58.3333333333%; - flex-grow: 0; - max-width: 58.3333333333%; - } - .flex.order-xs7 { - order: 7; - } - .flex.xs6 { - flex-basis: 50%; - flex-grow: 0; - max-width: 50%; - } - .flex.order-xs6 { - order: 6; - } - .flex.xs5 { - flex-basis: 41.6666666667%; - flex-grow: 0; - max-width: 41.6666666667%; - } - .flex.order-xs5 { - order: 5; - } - .flex.xs4 { - flex-basis: 33.3333333333%; - flex-grow: 0; - max-width: 33.3333333333%; - } - .flex.order-xs4 { - order: 4; - } - .flex.xs3 { - flex-basis: 25%; - flex-grow: 0; - max-width: 25%; - } - .flex.order-xs3 { - order: 3; - } - .flex.xs2 { - flex-basis: 16.6666666667%; - flex-grow: 0; - max-width: 16.6666666667%; - } - .flex.order-xs2 { - order: 2; - } - .flex.xs1 { - flex-basis: 8.3333333333%; - flex-grow: 0; - max-width: 8.3333333333%; - } - .flex.order-xs1 { - order: 1; - } - .v-application--is-ltr .flex.offset-xs12 { - margin-left: 100%; - } - .v-application--is-rtl .flex.offset-xs12 { - margin-right: 100%; - } - .v-application--is-ltr .flex.offset-xs11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .flex.offset-xs11 { - margin-right: 91.6666666667%; - } - .v-application--is-ltr .flex.offset-xs10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .flex.offset-xs10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .flex.offset-xs9 { - margin-left: 75%; - } - .v-application--is-rtl .flex.offset-xs9 { - margin-right: 75%; - } - .v-application--is-ltr .flex.offset-xs8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .flex.offset-xs8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .flex.offset-xs7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .flex.offset-xs7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .flex.offset-xs6 { - margin-left: 50%; - } - .v-application--is-rtl .flex.offset-xs6 { - margin-right: 50%; - } - .v-application--is-ltr .flex.offset-xs5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .flex.offset-xs5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .flex.offset-xs4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .flex.offset-xs4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .flex.offset-xs3 { - margin-left: 25%; - } - .v-application--is-rtl .flex.offset-xs3 { - margin-right: 25%; - } - .v-application--is-ltr .flex.offset-xs2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .flex.offset-xs2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .flex.offset-xs1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .flex.offset-xs1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .flex.offset-xs0 { - margin-left: 0; - } - .v-application--is-rtl .flex.offset-xs0 { - margin-right: 0; - } -} -@media (min-width: 600px) { - .flex.sm12 { - flex-basis: 100%; - flex-grow: 0; - max-width: 100%; - } - .flex.order-sm12 { - order: 12; - } - .flex.sm11 { - flex-basis: 91.6666666667%; - flex-grow: 0; - max-width: 91.6666666667%; - } - .flex.order-sm11 { - order: 11; - } - .flex.sm10 { - flex-basis: 83.3333333333%; - flex-grow: 0; - max-width: 83.3333333333%; - } - .flex.order-sm10 { - order: 10; - } - .flex.sm9 { - flex-basis: 75%; - flex-grow: 0; - max-width: 75%; - } - .flex.order-sm9 { - order: 9; - } - .flex.sm8 { - flex-basis: 66.6666666667%; - flex-grow: 0; - max-width: 66.6666666667%; - } - .flex.order-sm8 { - order: 8; - } - .flex.sm7 { - flex-basis: 58.3333333333%; - flex-grow: 0; - max-width: 58.3333333333%; - } - .flex.order-sm7 { - order: 7; - } - .flex.sm6 { - flex-basis: 50%; - flex-grow: 0; - max-width: 50%; - } - .flex.order-sm6 { - order: 6; - } - .flex.sm5 { - flex-basis: 41.6666666667%; - flex-grow: 0; - max-width: 41.6666666667%; - } - .flex.order-sm5 { - order: 5; - } - .flex.sm4 { - flex-basis: 33.3333333333%; - flex-grow: 0; - max-width: 33.3333333333%; - } - .flex.order-sm4 { - order: 4; - } - .flex.sm3 { - flex-basis: 25%; - flex-grow: 0; - max-width: 25%; - } - .flex.order-sm3 { - order: 3; - } - .flex.sm2 { - flex-basis: 16.6666666667%; - flex-grow: 0; - max-width: 16.6666666667%; - } - .flex.order-sm2 { - order: 2; - } - .flex.sm1 { - flex-basis: 8.3333333333%; - flex-grow: 0; - max-width: 8.3333333333%; - } - .flex.order-sm1 { - order: 1; - } - .v-application--is-ltr .flex.offset-sm12 { - margin-left: 100%; - } - .v-application--is-rtl .flex.offset-sm12 { - margin-right: 100%; - } - .v-application--is-ltr .flex.offset-sm11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .flex.offset-sm11 { - margin-right: 91.6666666667%; - } - .v-application--is-ltr .flex.offset-sm10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .flex.offset-sm10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .flex.offset-sm9 { - margin-left: 75%; - } - .v-application--is-rtl .flex.offset-sm9 { - margin-right: 75%; - } - .v-application--is-ltr .flex.offset-sm8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .flex.offset-sm8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .flex.offset-sm7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .flex.offset-sm7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .flex.offset-sm6 { - margin-left: 50%; - } - .v-application--is-rtl .flex.offset-sm6 { - margin-right: 50%; - } - .v-application--is-ltr .flex.offset-sm5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .flex.offset-sm5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .flex.offset-sm4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .flex.offset-sm4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .flex.offset-sm3 { - margin-left: 25%; - } - .v-application--is-rtl .flex.offset-sm3 { - margin-right: 25%; - } - .v-application--is-ltr .flex.offset-sm2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .flex.offset-sm2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .flex.offset-sm1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .flex.offset-sm1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .flex.offset-sm0 { - margin-left: 0; - } - .v-application--is-rtl .flex.offset-sm0 { - margin-right: 0; - } -} -@media (min-width: 960px) { - .flex.md12 { - flex-basis: 100%; - flex-grow: 0; - max-width: 100%; - } - .flex.order-md12 { - order: 12; - } - .flex.md11 { - flex-basis: 91.6666666667%; - flex-grow: 0; - max-width: 91.6666666667%; - } - .flex.order-md11 { - order: 11; - } - .flex.md10 { - flex-basis: 83.3333333333%; - flex-grow: 0; - max-width: 83.3333333333%; - } - .flex.order-md10 { - order: 10; - } - .flex.md9 { - flex-basis: 75%; - flex-grow: 0; - max-width: 75%; - } - .flex.order-md9 { - order: 9; - } - .flex.md8 { - flex-basis: 66.6666666667%; - flex-grow: 0; - max-width: 66.6666666667%; - } - .flex.order-md8 { - order: 8; - } - .flex.md7 { - flex-basis: 58.3333333333%; - flex-grow: 0; - max-width: 58.3333333333%; - } - .flex.order-md7 { - order: 7; - } - .flex.md6 { - flex-basis: 50%; - flex-grow: 0; - max-width: 50%; - } - .flex.order-md6 { - order: 6; - } - .flex.md5 { - flex-basis: 41.6666666667%; - flex-grow: 0; - max-width: 41.6666666667%; - } - .flex.order-md5 { - order: 5; - } - .flex.md4 { - flex-basis: 33.3333333333%; - flex-grow: 0; - max-width: 33.3333333333%; - } - .flex.order-md4 { - order: 4; - } - .flex.md3 { - flex-basis: 25%; - flex-grow: 0; - max-width: 25%; - } - .flex.order-md3 { - order: 3; - } - .flex.md2 { - flex-basis: 16.6666666667%; - flex-grow: 0; - max-width: 16.6666666667%; - } - .flex.order-md2 { - order: 2; - } - .flex.md1 { - flex-basis: 8.3333333333%; - flex-grow: 0; - max-width: 8.3333333333%; - } - .flex.order-md1 { - order: 1; - } - .v-application--is-ltr .flex.offset-md12 { - margin-left: 100%; - } - .v-application--is-rtl .flex.offset-md12 { - margin-right: 100%; - } - .v-application--is-ltr .flex.offset-md11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .flex.offset-md11 { - margin-right: 91.6666666667%; - } - .v-application--is-ltr .flex.offset-md10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .flex.offset-md10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .flex.offset-md9 { - margin-left: 75%; - } - .v-application--is-rtl .flex.offset-md9 { - margin-right: 75%; - } - .v-application--is-ltr .flex.offset-md8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .flex.offset-md8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .flex.offset-md7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .flex.offset-md7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .flex.offset-md6 { - margin-left: 50%; - } - .v-application--is-rtl .flex.offset-md6 { - margin-right: 50%; - } - .v-application--is-ltr .flex.offset-md5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .flex.offset-md5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .flex.offset-md4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .flex.offset-md4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .flex.offset-md3 { - margin-left: 25%; - } - .v-application--is-rtl .flex.offset-md3 { - margin-right: 25%; - } - .v-application--is-ltr .flex.offset-md2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .flex.offset-md2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .flex.offset-md1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .flex.offset-md1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .flex.offset-md0 { - margin-left: 0; - } - .v-application--is-rtl .flex.offset-md0 { - margin-right: 0; - } -} -@media (min-width: 1264px) { - .flex.lg12 { - flex-basis: 100%; - flex-grow: 0; - max-width: 100%; - } - .flex.order-lg12 { - order: 12; - } - .flex.lg11 { - flex-basis: 91.6666666667%; - flex-grow: 0; - max-width: 91.6666666667%; - } - .flex.order-lg11 { - order: 11; - } - .flex.lg10 { - flex-basis: 83.3333333333%; - flex-grow: 0; - max-width: 83.3333333333%; - } - .flex.order-lg10 { - order: 10; - } - .flex.lg9 { - flex-basis: 75%; - flex-grow: 0; - max-width: 75%; - } - .flex.order-lg9 { - order: 9; - } - .flex.lg8 { - flex-basis: 66.6666666667%; - flex-grow: 0; - max-width: 66.6666666667%; - } - .flex.order-lg8 { - order: 8; - } - .flex.lg7 { - flex-basis: 58.3333333333%; - flex-grow: 0; - max-width: 58.3333333333%; - } - .flex.order-lg7 { - order: 7; - } - .flex.lg6 { - flex-basis: 50%; - flex-grow: 0; - max-width: 50%; - } - .flex.order-lg6 { - order: 6; - } - .flex.lg5 { - flex-basis: 41.6666666667%; - flex-grow: 0; - max-width: 41.6666666667%; - } - .flex.order-lg5 { - order: 5; - } - .flex.lg4 { - flex-basis: 33.3333333333%; - flex-grow: 0; - max-width: 33.3333333333%; - } - .flex.order-lg4 { - order: 4; - } - .flex.lg3 { - flex-basis: 25%; - flex-grow: 0; - max-width: 25%; - } - .flex.order-lg3 { - order: 3; - } - .flex.lg2 { - flex-basis: 16.6666666667%; - flex-grow: 0; - max-width: 16.6666666667%; - } - .flex.order-lg2 { - order: 2; - } - .flex.lg1 { - flex-basis: 8.3333333333%; - flex-grow: 0; - max-width: 8.3333333333%; - } - .flex.order-lg1 { - order: 1; - } - .v-application--is-ltr .flex.offset-lg12 { - margin-left: 100%; - } - .v-application--is-rtl .flex.offset-lg12 { - margin-right: 100%; - } - .v-application--is-ltr .flex.offset-lg11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .flex.offset-lg11 { - margin-right: 91.6666666667%; - } - .v-application--is-ltr .flex.offset-lg10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .flex.offset-lg10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .flex.offset-lg9 { - margin-left: 75%; - } - .v-application--is-rtl .flex.offset-lg9 { - margin-right: 75%; - } - .v-application--is-ltr .flex.offset-lg8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .flex.offset-lg8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .flex.offset-lg7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .flex.offset-lg7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .flex.offset-lg6 { - margin-left: 50%; - } - .v-application--is-rtl .flex.offset-lg6 { - margin-right: 50%; - } - .v-application--is-ltr .flex.offset-lg5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .flex.offset-lg5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .flex.offset-lg4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .flex.offset-lg4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .flex.offset-lg3 { - margin-left: 25%; - } - .v-application--is-rtl .flex.offset-lg3 { - margin-right: 25%; - } - .v-application--is-ltr .flex.offset-lg2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .flex.offset-lg2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .flex.offset-lg1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .flex.offset-lg1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .flex.offset-lg0 { - margin-left: 0; - } - .v-application--is-rtl .flex.offset-lg0 { - margin-right: 0; - } -} -@media (min-width: 1904px) { - .flex.xl12 { - flex-basis: 100%; - flex-grow: 0; - max-width: 100%; - } - .flex.order-xl12 { - order: 12; - } - .flex.xl11 { - flex-basis: 91.6666666667%; - flex-grow: 0; - max-width: 91.6666666667%; - } - .flex.order-xl11 { - order: 11; - } - .flex.xl10 { - flex-basis: 83.3333333333%; - flex-grow: 0; - max-width: 83.3333333333%; - } - .flex.order-xl10 { - order: 10; - } - .flex.xl9 { - flex-basis: 75%; - flex-grow: 0; - max-width: 75%; - } - .flex.order-xl9 { - order: 9; - } - .flex.xl8 { - flex-basis: 66.6666666667%; - flex-grow: 0; - max-width: 66.6666666667%; - } - .flex.order-xl8 { - order: 8; - } - .flex.xl7 { - flex-basis: 58.3333333333%; - flex-grow: 0; - max-width: 58.3333333333%; - } - .flex.order-xl7 { - order: 7; - } - .flex.xl6 { - flex-basis: 50%; - flex-grow: 0; - max-width: 50%; - } - .flex.order-xl6 { - order: 6; - } - .flex.xl5 { - flex-basis: 41.6666666667%; - flex-grow: 0; - max-width: 41.6666666667%; - } - .flex.order-xl5 { - order: 5; - } - .flex.xl4 { - flex-basis: 33.3333333333%; - flex-grow: 0; - max-width: 33.3333333333%; - } - .flex.order-xl4 { - order: 4; - } - .flex.xl3 { - flex-basis: 25%; - flex-grow: 0; - max-width: 25%; - } - .flex.order-xl3 { - order: 3; - } - .flex.xl2 { - flex-basis: 16.6666666667%; - flex-grow: 0; - max-width: 16.6666666667%; - } - .flex.order-xl2 { - order: 2; - } - .flex.xl1 { - flex-basis: 8.3333333333%; - flex-grow: 0; - max-width: 8.3333333333%; - } - .flex.order-xl1 { - order: 1; - } - .v-application--is-ltr .flex.offset-xl12 { - margin-left: 100%; - } - .v-application--is-rtl .flex.offset-xl12 { - margin-right: 100%; - } - .v-application--is-ltr .flex.offset-xl11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .flex.offset-xl11 { - margin-right: 91.6666666667%; - } - .v-application--is-ltr .flex.offset-xl10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .flex.offset-xl10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .flex.offset-xl9 { - margin-left: 75%; - } - .v-application--is-rtl .flex.offset-xl9 { - margin-right: 75%; - } - .v-application--is-ltr .flex.offset-xl8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .flex.offset-xl8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .flex.offset-xl7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .flex.offset-xl7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .flex.offset-xl6 { - margin-left: 50%; - } - .v-application--is-rtl .flex.offset-xl6 { - margin-right: 50%; - } - .v-application--is-ltr .flex.offset-xl5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .flex.offset-xl5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .flex.offset-xl4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .flex.offset-xl4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .flex.offset-xl3 { - margin-left: 25%; - } - .v-application--is-rtl .flex.offset-xl3 { - margin-right: 25%; - } - .v-application--is-ltr .flex.offset-xl2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .flex.offset-xl2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .flex.offset-xl1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .flex.offset-xl1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .flex.offset-xl0 { - margin-left: 0; - } - .v-application--is-rtl .flex.offset-xl0 { - margin-right: 0; - } -} -.child-flex > *, -.flex { - flex: 1 1 auto; - max-width: 100%; -} -.child-flex > .grow-shrink-0, -.flex.grow-shrink-0 { - flex-grow: 0; - flex-shrink: 0; -} -.grow, -.spacer { - flex-grow: 1 !important; -} -.grow { - flex-shrink: 0 !important; -} -.shrink { - flex-grow: 0 !important; - flex-shrink: 1 !important; -} -.fill-height { - height: 100%; -} -.v-speed-dial { - position: relative; - z-index: 1; -} -.v-speed-dial--absolute { - position: absolute; -} -.v-speed-dial--fixed { - position: fixed; -} -.v-speed-dial--absolute, -.v-speed-dial--fixed { - z-index: 4; -} -.v-speed-dial--absolute > .v-btn--floating, -.v-speed-dial--fixed > .v-btn--floating { - margin: 0; -} -.v-speed-dial--top { - top: 16px; -} -.v-speed-dial--bottom { - bottom: 16px; -} -.v-speed-dial--left { - left: 16px; -} -.v-speed-dial--right { - right: 16px; -} -.v-speed-dial--direction-left .v-speed-dial__list, -.v-speed-dial--direction-right .v-speed-dial__list { - height: 100%; - top: 0; - padding: 0 16px; -} -.v-speed-dial--direction-bottom .v-speed-dial__list, -.v-speed-dial--direction-top .v-speed-dial__list { - left: 0; - width: 100%; -} -.v-speed-dial--direction-top .v-speed-dial__list { - flex-direction: column-reverse; - bottom: 100%; -} -.v-speed-dial--direction-right .v-speed-dial__list { - flex-direction: row; - left: 100%; -} -.v-speed-dial--direction-bottom .v-speed-dial__list { - flex-direction: column; - top: 100%; -} -.v-speed-dial--direction-left .v-speed-dial__list { - flex-direction: row-reverse; - right: 100%; -} -.v-speed-dial__list { - align-items: center; - display: flex; - justify-content: center; - padding: 16px 0; - position: absolute; -} -.v-speed-dial__list .v-btn { - margin: 6px; -} -.v-speed-dial:not(.v-speed-dial--is-active) .v-speed-dial__list { - pointer-events: none; -} -.theme--light.v-text-field > .v-input__control > .v-input__slot:before { - border-color: rgba(0, 0, 0, 0.42); -} -.theme--light.v-text-field:not(.v-input--has-state):hover - > .v-input__control - > .v-input__slot:before { - border-color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-text-field.v-input--is-disabled .v-input__slot:before { - -o-border-image: repeating-linear-gradient( - 90deg, - rgba(0, 0, 0, 0.38) 0, - rgba(0, 0, 0, 0.38) 2px, - transparent 0, - transparent 4px - ) - 1 repeat; - border-image: repeating-linear-gradient( - 90deg, - rgba(0, 0, 0, 0.38) 0, - rgba(0, 0, 0, 0.38) 2px, - transparent 0, - transparent 4px - ) - 1 repeat; -} -.theme--light.v-text-field--filled > .v-input__control > .v-input__slot { - background: rgba(0, 0, 0, 0.06); -} -.theme--light.v-text-field--filled:not(.v-input--is-focused):not(.v-input--has-state) - > .v-input__control - > .v-input__slot:hover { - background: rgba(0, 0, 0, 0.12); -} -.theme--light.v-text-field--solo > .v-input__control > .v-input__slot { - background: #fff; -} -.theme--light.v-text-field--solo-inverted > .v-input__control > .v-input__slot { - background: rgba(0, 0, 0, 0.06); -} -.theme--light.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot { - background: #424242; -} -.theme--light.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input { - color: #fff; -} -.theme--light.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input::-moz-placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--light.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input:-ms-input-placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--light.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input::placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--light.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - .v-label { - color: hsla(0, 0%, 100%, 0.7); -} -.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state) - > .v-input__control - > .v-input__slot - fieldset { - color: rgba(0, 0, 0, 0.38); -} -.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state):not(.v-input--is-disabled) - > .v-input__control - > .v-input__slot:hover - fieldset { - color: rgba(0, 0, 0, 0.86); -} -.theme--light.v-text-field--outlined:not(.v-input--is-focused).v-input--is-disabled - > .v-input__control - > .v-input__slot - fieldset { - color: rgba(0, 0, 0, 0.26); -} -.theme--dark.v-text-field > .v-input__control > .v-input__slot:before { - border-color: hsla(0, 0%, 100%, 0.7); -} -.theme--dark.v-text-field:not(.v-input--has-state):hover - > .v-input__control - > .v-input__slot:before { - border-color: #fff; -} -.theme--dark.v-text-field.v-input--is-disabled .v-input__slot:before { - -o-border-image: repeating-linear-gradient( - 90deg, - hsla(0, 0%, 100%, 0.5) 0, - hsla(0, 0%, 100%, 0.5) 2px, - transparent 0, - transparent 4px - ) - 1 repeat; - border-image: repeating-linear-gradient( - 90deg, - hsla(0, 0%, 100%, 0.5) 0, - hsla(0, 0%, 100%, 0.5) 2px, - transparent 0, - transparent 4px - ) - 1 repeat; -} -.theme--dark.v-text-field--filled > .v-input__control > .v-input__slot { - background: hsla(0, 0%, 100%, 0.08); -} -.theme--dark.v-text-field--filled:not(.v-input--is-focused):not(.v-input--has-state) - > .v-input__control - > .v-input__slot:hover { - background: hsla(0, 0%, 100%, 0.16); -} -.theme--dark.v-text-field--solo > .v-input__control > .v-input__slot { - background: #1e1e1e; -} -.theme--dark.v-text-field--solo-inverted > .v-input__control > .v-input__slot { - background: hsla(0, 0%, 100%, 0.16); -} -.theme--dark.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot { - background: #fff; -} -.theme--dark.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input { - color: rgba(0, 0, 0, 0.87); -} -.theme--dark.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input::-moz-placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input:-ms-input-placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - input::placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-text-field--solo-inverted.v-input--is-focused - > .v-input__control - > .v-input__slot - .v-label { - color: rgba(0, 0, 0, 0.6); -} -.theme--dark.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state) - > .v-input__control - > .v-input__slot - fieldset { - color: hsla(0, 0%, 100%, 0.24); -} -.theme--dark.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state):not(.v-input--is-disabled) - > .v-input__control - > .v-input__slot:hover - fieldset { - color: #fff; -} -.theme--dark.v-text-field--outlined:not(.v-input--is-focused).v-input--is-disabled - > .v-input__control - > .v-input__slot - fieldset { - color: hsla(0, 0%, 100%, 0.16); -} -.v-text-field { - padding-top: 12px; - margin-top: 4px; -} -.v-text-field input { - flex: 1 1 auto; - line-height: 20px; - padding: 8px 0 8px; - max-width: 100%; - min-width: 0; - width: 100%; -} -.v-text-field .v-input__control, -.v-text-field .v-input__slot, -.v-text-field fieldset { - border-radius: inherit; -} -.v-text-field.v-input--has-state - .v-input__control - > .v-text-field__details - > .v-counter, -.v-text-field.v-input--is-disabled - .v-input__control - > .v-text-field__details - > .v-counter, -.v-text-field.v-input--is-disabled - .v-input__control - > .v-text-field__details - > .v-messages, -.v-text-field .v-input__control, -.v-text-field fieldset { - color: inherit; -} -.v-text-field.v-input--dense { - padding-top: 0; -} -.v-text-field.v-input--dense:not(.v-text-field--outlined) input { - padding: 4px 0 2px; -} -.v-text-field.v-input--dense[type="text"]::-ms-clear { - display: none; -} -.v-text-field.v-input--dense .v-input__append-inner, -.v-text-field.v-input--dense .v-input__prepend-inner { - margin-top: 0; -} -.v-text-field.v-input--dense:not(.v-text-field--enclosed):not(.v-text-field--full-width) - .v-input__append-inner - .v-input__icon - > .v-icon, -.v-text-field.v-input--dense:not(.v-text-field--enclosed):not(.v-text-field--full-width) - .v-input__prepend-inner - .v-input__icon - > .v-icon { - margin-top: 8px; -} -.v-text-field .v-input__append-inner, -.v-text-field .v-input__prepend-inner { - align-self: flex-start; - display: inline-flex; - margin-top: 4px; - line-height: 1; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-application--is-ltr .v-text-field .v-input__prepend-inner { - margin-right: auto; - padding-right: 4px; -} -.v-application--is-ltr .v-text-field .v-input__append-inner, -.v-application--is-rtl .v-text-field .v-input__prepend-inner { - margin-left: auto; - padding-left: 4px; -} -.v-application--is-rtl .v-text-field .v-input__append-inner { - margin-right: auto; - padding-right: 4px; -} -.v-text-field .v-counter { - white-space: nowrap; -} -.v-application--is-ltr .v-text-field .v-counter { - margin-left: 8px; -} -.v-application--is-rtl .v-text-field .v-counter { - margin-right: 8px; -} -.v-text-field .v-label { - max-width: 90%; - overflow: hidden; - text-overflow: ellipsis; - top: 6px; - white-space: nowrap; - pointer-events: none; -} -.v-application--is-ltr .v-text-field .v-label { - transform-origin: top left; -} -.v-application--is-rtl .v-text-field .v-label { - transform-origin: top right; -} -.v-text-field .v-label--active { - max-width: 133%; - transform: translateY(-18px) scale(0.75); -} -.v-text-field > .v-input__control > .v-input__slot { - cursor: text; - transition: background 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-text-field > .v-input__control > .v-input__slot:after, -.v-text-field > .v-input__control > .v-input__slot:before { - bottom: -1px; - content: ""; - left: 0; - position: absolute; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); - width: 100%; -} -.v-text-field > .v-input__control > .v-input__slot:before { - border-color: inherit; - border-style: solid; - border-width: thin 0 0 0; -} -.v-text-field > .v-input__control > .v-input__slot:after { - background-color: currentColor; - border-color: currentColor; - border-style: solid; - border-width: thin 0 thin 0; - transform: scaleX(0); -} -.v-text-field__details { - display: flex; - flex: 1 0 auto; - max-width: 100%; - min-height: 14px; - overflow: hidden; -} -.v-text-field__prefix, -.v-text-field__suffix { - align-self: center; - cursor: default; - transition: color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); - white-space: nowrap; -} -.v-application--is-ltr .v-text-field__prefix { - text-align: right; - padding-right: 4px; -} -.v-application--is-rtl .v-text-field__prefix { - text-align: left; - padding-left: 4px; -} -.v-text-field__suffix { - white-space: nowrap; -} -.v-application--is-ltr .v-text-field__suffix { - padding-left: 4px; -} -.v-application--is-rtl .v-text-field__suffix { - padding-right: 4px; -} -.v-application--is-ltr .v-text-field--reverse .v-text-field__prefix { - text-align: left; - padding-right: 0; - padding-left: 4px; -} -.v-application--is-rtl .v-text-field--reverse .v-text-field__prefix { - text-align: right; - padding-right: 4px; - padding-left: 0; -} -.v-application--is-ltr .v-text-field--reverse .v-text-field__suffix { - padding-left: 0; - padding-right: 4px; -} -.v-application--is-rtl .v-text-field--reverse .v-text-field__suffix { - padding-left: 4px; - padding-right: 0; -} -.v-text-field > .v-input__control > .v-input__slot > .v-text-field__slot { - display: flex; - flex: 1 1 auto; - position: relative; -} -.v-text-field:not(.v-text-field--is-booted) .v-label, -.v-text-field:not(.v-text-field--is-booted) legend { - transition: none; -} -.v-text-field--filled, -.v-text-field--full-width, -.v-text-field--outlined { - position: relative; -} -.v-text-field--filled > .v-input__control > .v-input__slot, -.v-text-field--full-width > .v-input__control > .v-input__slot, -.v-text-field--outlined > .v-input__control > .v-input__slot { - align-items: stretch; - min-height: 56px; -} -.v-text-field--filled.v-input--dense > .v-input__control > .v-input__slot, -.v-text-field--full-width.v-input--dense > .v-input__control > .v-input__slot, -.v-text-field--outlined.v-input--dense > .v-input__control > .v-input__slot { - min-height: 52px; -} -.v-text-field--filled.v-input--dense.v-text-field--outlined.v-text-field--filled - > .v-input__control - > .v-input__slot, -.v-text-field--filled.v-input--dense.v-text-field--outlined - > .v-input__control - > .v-input__slot, -.v-text-field--filled.v-input--dense.v-text-field--single-line - > .v-input__control - > .v-input__slot, -.v-text-field--full-width.v-input--dense.v-text-field--outlined.v-text-field--filled - > .v-input__control - > .v-input__slot, -.v-text-field--full-width.v-input--dense.v-text-field--outlined - > .v-input__control - > .v-input__slot, -.v-text-field--full-width.v-input--dense.v-text-field--single-line - > .v-input__control - > .v-input__slot, -.v-text-field--outlined.v-input--dense.v-text-field--outlined.v-text-field--filled - > .v-input__control - > .v-input__slot, -.v-text-field--outlined.v-input--dense.v-text-field--outlined - > .v-input__control - > .v-input__slot, -.v-text-field--outlined.v-input--dense.v-text-field--single-line - > .v-input__control - > .v-input__slot { - min-height: 40px; -} -.v-text-field--outlined { - border-radius: 4px; -} -.v-text-field--enclosed .v-input__append-inner, -.v-text-field--enclosed .v-input__append-outer, -.v-text-field--enclosed .v-input__prepend-inner, -.v-text-field--enclosed .v-input__prepend-outer, -.v-text-field--full-width .v-input__append-inner, -.v-text-field--full-width .v-input__append-outer, -.v-text-field--full-width .v-input__prepend-inner, -.v-text-field--full-width .v-input__prepend-outer { - margin-top: 17px; -} -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) - .v-input__append-inner, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) - .v-input__append-outer, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) - .v-input__prepend-inner, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) - .v-input__prepend-outer, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) - .v-input__append-inner, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) - .v-input__append-outer, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) - .v-input__prepend-inner, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) - .v-input__prepend-outer { - margin-top: 14px; -} -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__append-inner, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__append-outer, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__prepend-inner, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__prepend-outer, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__append-inner, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__append-outer, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__prepend-inner, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line - .v-input__prepend-outer { - margin-top: 9px; -} -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__append-inner, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__append-outer, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__prepend-inner, -.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__prepend-outer, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__append-inner, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__append-outer, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__prepend-inner, -.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined - .v-input__prepend-outer { - margin-top: 8px; -} -.v-text-field--filled .v-label, -.v-text-field--full-width .v-label { - top: 18px; -} -.v-text-field--filled .v-label--active, -.v-text-field--full-width .v-label--active { - transform: translateY(-6px) scale(0.75); -} -.v-text-field--filled.v-input--dense .v-label, -.v-text-field--full-width.v-input--dense .v-label { - top: 17px; -} -.v-text-field--filled.v-input--dense .v-label--active, -.v-text-field--full-width.v-input--dense .v-label--active { - transform: translateY(-10px) scale(0.75); -} -.v-text-field--filled.v-input--dense.v-text-field--single-line .v-label, -.v-text-field--full-width.v-input--dense.v-text-field--single-line .v-label { - top: 11px; -} -.v-text-field--filled { - border-radius: 4px 4px 0 0; -} -.v-text-field--filled:not(.v-text-field--single-line) input { - margin-top: 22px; -} -.v-text-field--filled.v-input--dense:not(.v-text-field--single-line).v-text-field--outlined - input { - margin-top: 0; -} -.v-text-field--filled .v-text-field__prefix, -.v-text-field--filled .v-text-field__suffix { - max-height: 32px; - margin-top: 20px; -} -.v-text-field--full-width { - border-radius: 0; -} -.v-text-field--outlined .v-text-field__slot, -.v-text-field--single-line .v-text-field__slot { - align-items: center; -} -.v-text-field.v-text-field--enclosed { - margin: 0; - padding: 0; -} -.v-text-field.v-text-field--enclosed.v-text-field--single-line - .v-text-field__prefix, -.v-text-field.v-text-field--enclosed.v-text-field--single-line - .v-text-field__suffix { - margin-top: 0; -} -.v-text-field.v-text-field--enclosed:not(.v-text-field--filled) - .v-progress-linear__background { - display: none; -} -.v-text-field.v-text-field--enclosed .v-text-field__details, -.v-text-field.v-text-field--enclosed:not(.v-text-field--rounded) - > .v-input__control - > .v-input__slot { - padding: 0 12px; -} -.v-text-field.v-text-field--enclosed .v-text-field__details { - margin-bottom: 8px; -} -.v-application--is-ltr .v-text-field--reverse input { - text-align: right; -} -.v-application--is-rtl .v-text-field--reverse input { - text-align: left; -} -.v-application--is-ltr .v-text-field--reverse .v-label { - transform-origin: top right; -} -.v-application--is-rtl .v-text-field--reverse .v-label { - transform-origin: top left; -} -.v-text-field--reverse .v-text-field__slot, -.v-text-field--reverse > .v-input__control > .v-input__slot { - flex-direction: row-reverse; -} -.v-text-field--outlined > .v-input__control > .v-input__slot:after, -.v-text-field--outlined > .v-input__control > .v-input__slot:before, -.v-text-field--rounded > .v-input__control > .v-input__slot:after, -.v-text-field--rounded > .v-input__control > .v-input__slot:before, -.v-text-field--solo > .v-input__control > .v-input__slot:after, -.v-text-field--solo > .v-input__control > .v-input__slot:before { - display: none; -} -.v-text-field--outlined, -.v-text-field--solo { - border-radius: 4px; -} -.v-text-field--outlined { - margin-bottom: 16px; - transition: border 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-text-field--outlined .v-label { - top: 18px; -} -.v-text-field--outlined .v-label--active { - transform: translateY(-24px) scale(0.75); -} -.v-text-field--outlined.v-input--dense .v-label { - top: 10px; -} -.v-text-field--outlined.v-input--dense .v-label--active { - transform: translateY(-16px) scale(0.75); -} -.v-text-field--outlined fieldset { - border-collapse: collapse; - border-color: currentColor; - border-style: solid; - border-width: 1px; - bottom: 0; - left: 0; - pointer-events: none; - position: absolute; - right: 0; - top: -5px; - transition-duration: 0.3s; - transition-property: color, border-width; - transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1); -} -.v-application--is-ltr .v-text-field--outlined fieldset { - padding-left: 8px; -} -.v-application--is-ltr .v-text-field--outlined.v-text-field--reverse fieldset, -.v-application--is-rtl .v-text-field--outlined fieldset { - padding-right: 8px; -} -.v-application--is-rtl .v-text-field--outlined.v-text-field--reverse fieldset { - padding-left: 8px; -} -.v-text-field--outlined legend { - line-height: 11px; - padding: 0; - transition: width 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-application--is-ltr .v-text-field--outlined legend { - text-align: left; -} -.v-application--is-ltr .v-text-field--outlined.v-text-field--reverse legend, -.v-application--is-rtl .v-text-field--outlined legend { - text-align: right; -} -.v-application--is-rtl .v-text-field--outlined.v-text-field--reverse legend { - text-align: left; -} -.v-application--is-ltr .v-text-field--outlined.v-text-field--rounded legend { - margin-left: 12px; -} -.v-application--is-rtl .v-text-field--outlined.v-text-field--rounded legend { - margin-right: 12px; -} -.v-text-field--outlined > .v-input__control > .v-input__slot { - background: transparent; -} -.v-text-field--outlined .v-text-field__prefix { - max-height: 32px; -} -.v-text-field--outlined .v-input__append-outer, -.v-text-field--outlined .v-input__prepend-outer { - margin-top: 18px; -} -.v-text-field--outlined.v-input--has-state fieldset, -.v-text-field--outlined.v-input--is-focused fieldset { - border: 2px solid currentColor; -} -.v-text-field--rounded { - border-radius: 28px; -} -.v-text-field--rounded > .v-input__control > .v-input__slot { - padding: 0 24px; -} -.v-text-field--shaped { - border-radius: 16px 16px 0 0; -} -.v-text-field.v-text-field--solo .v-label { - top: calc(50% - 9px); -} -.v-text-field.v-text-field--solo .v-input__control { - min-height: 48px; - padding: 0; -} -.v-text-field.v-text-field--solo .v-input__control input { - caret-color: auto; -} -.v-text-field.v-text-field--solo.v-input--dense > .v-input__control { - min-height: 38px; -} -.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat) - > .v-input__control - > .v-input__slot { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), - 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} -.v-text-field.v-text-field--solo .v-input__append-inner, -.v-text-field.v-text-field--solo .v-input__prepend-inner { - align-self: center; - margin-top: 0; -} -.v-text-field.v-text-field--solo .v-input__append-outer, -.v-text-field.v-text-field--solo .v-input__prepend-outer { - margin-top: 12px; -} -.v-text-field.v-text-field--solo.v-input--dense .v-input__append-outer, -.v-text-field.v-text-field--solo.v-input--dense .v-input__prepend-outer { - margin-top: 7px; -} -.v-text-field.v-input--is-focused > .v-input__control > .v-input__slot:after { - transform: scaleX(1); -} -.v-text-field.v-input--has-state > .v-input__control > .v-input__slot:before { - border-color: currentColor; -} -.theme--light.v-input, -.theme--light.v-input input, -.theme--light.v-input textarea { - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-input input::-moz-placeholder, -.theme--light.v-input textarea::-moz-placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--light.v-input input:-ms-input-placeholder, -.theme--light.v-input textarea:-ms-input-placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--light.v-input input::placeholder, -.theme--light.v-input textarea::placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--light.v-input--is-disabled, -.theme--light.v-input--is-disabled input, -.theme--light.v-input--is-disabled textarea { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-input, -.theme--dark.v-input input, -.theme--dark.v-input textarea { - color: #fff; -} -.theme--dark.v-input input::-moz-placeholder, -.theme--dark.v-input textarea::-moz-placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--dark.v-input input:-ms-input-placeholder, -.theme--dark.v-input textarea:-ms-input-placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--dark.v-input input::placeholder, -.theme--dark.v-input textarea::placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--dark.v-input--is-disabled, -.theme--dark.v-input--is-disabled input, -.theme--dark.v-input--is-disabled textarea { - color: hsla(0, 0%, 100%, 0.5); -} -.v-input { - align-items: flex-start; - display: flex; - flex: 1 1 auto; - font-size: 16px; - letter-spacing: normal; - max-width: 100%; - text-align: left; -} -.v-input .v-progress-linear { - top: calc(100% - 1px); - left: 0; -} -.v-input input { - max-height: 32px; -} -.v-input input:invalid, -.v-input textarea:invalid { - box-shadow: none; -} -.v-input input:active, -.v-input input:focus, -.v-input textarea:active, -.v-input textarea:focus { - outline: none; -} -.v-input .v-label { - height: 20px; - line-height: 20px; - letter-spacing: normal; -} -.v-input__append-outer, -.v-input__prepend-outer { - display: inline-flex; - margin-bottom: 4px; - margin-top: 4px; - line-height: 1; -} -.v-input__append-outer .v-icon, -.v-input__prepend-outer .v-icon { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-application--is-ltr .v-input__append-outer { - margin-left: 9px; -} -.v-application--is-ltr .v-input__prepend-outer, -.v-application--is-rtl .v-input__append-outer { - margin-right: 9px; -} -.v-application--is-rtl .v-input__prepend-outer { - margin-left: 9px; -} -.v-input__control { - display: flex; - flex-direction: column; - height: auto; - flex-grow: 1; - flex-wrap: wrap; - min-width: 0; - width: 100%; -} -.v-input__icon { - align-items: center; - display: inline-flex; - height: 24px; - flex: 1 0 auto; - justify-content: center; - min-width: 24px; - width: 24px; -} -.v-input__icon--clear { - border-radius: 50%; -} -.v-input__icon--clear .v-icon--disabled { - visibility: hidden; -} -.v-input__slot { - align-items: center; - color: inherit; - display: flex; - margin-bottom: 8px; - min-height: inherit; - position: relative; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); - width: 100%; -} -.v-input--dense > .v-input__control > .v-input__slot { - margin-bottom: 4px; -} -.v-input--is-disabled:not(.v-input--is-readonly) { - pointer-events: none; -} -.v-input--is-loading > .v-input__control > .v-input__slot:after, -.v-input--is-loading > .v-input__control > .v-input__slot:before { - display: none; -} -.v-input--hide-details > .v-input__control > .v-input__slot { - margin-bottom: 0; -} -.v-input--has-state.error--text .v-label { - -webkit-animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1); - animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.theme--light.v-label { - color: rgba(0, 0, 0, 0.6); -} -.theme--light.v-label--is-disabled { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-label { - color: hsla(0, 0%, 100%, 0.7); -} -.theme--dark.v-label--is-disabled { - color: hsla(0, 0%, 100%, 0.5); -} -.v-label { - font-size: 16px; - line-height: 1; - min-height: 8px; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.theme--light.v-messages { - color: rgba(0, 0, 0, 0.6); -} -.theme--dark.v-messages { - color: hsla(0, 0%, 100%, 0.7); -} -.v-messages { - flex: 1 1 auto; - font-size: 12px; - min-height: 14px; - min-width: 1px; - position: relative; -} -.v-application--is-ltr .v-messages { - text-align: left; -} -.v-application--is-rtl .v-messages { - text-align: right; -} -.v-messages__message { - line-height: 12px; - word-break: break-word; - overflow-wrap: break-word; - word-wrap: break-word; - -webkit-hyphens: auto; - -ms-hyphens: auto; - hyphens: auto; -} -.theme--light.v-counter { - color: rgba(0, 0, 0, 0.6); -} -.theme--dark.v-counter { - color: hsla(0, 0%, 100%, 0.7); -} -.v-counter { - flex: 0 1 auto; - font-size: 12px; - min-height: 12px; - line-height: 12px; -} -.theme--light.v-application { - background: #fff; - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-application .text--primary { - color: rgba(0, 0, 0, 0.87) !important; -} -.theme--light.v-application .text--secondary { - color: rgba(0, 0, 0, 0.6) !important; -} -.theme--light.v-application .text--disabled { - color: rgba(0, 0, 0, 0.38) !important; -} -.theme--dark.v-application { - background: #121212; - color: #fff; -} -.theme--dark.v-application .text--primary { - color: #fff !important; -} -.theme--dark.v-application .text--secondary { - color: hsla(0, 0%, 100%, 0.7) !important; -} -.theme--dark.v-application .text--disabled { - color: hsla(0, 0%, 100%, 0.5) !important; -} -.v-application { - display: flex; -} -.v-application a { - cursor: pointer; -} -.v-application--is-rtl { - direction: rtl; -} -.v-application--wrap { - flex: 1 1 auto; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - display: flex; - flex-direction: column; - min-height: 100vh; - max-width: 100%; - position: relative; -} -@-moz-document url-prefix() { - @media print { - .v-application, - .v-application--wrap { - display: block; - } - } -} -.theme--light.v-app-bar.v-toolbar.v-sheet { - background-color: #f5f5f5; -} -.theme--dark.v-app-bar.v-toolbar.v-sheet { - background-color: #272727; -} -.v-sheet.v-app-bar.v-toolbar { - border-radius: 0; -} -.v-sheet.v-app-bar.v-toolbar:not(.v-sheet--outlined) { - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), - 0 1px 10px 0 rgba(0, 0, 0, 0.12); -} -.v-sheet.v-app-bar.v-toolbar.v-sheet--shaped { - border-radius: 24px 0; -} -.v-app-bar:not([data-booted="true"]) { - transition: none !important; -} -.v-app-bar.v-app-bar--fixed { - position: fixed; - top: 0; - z-index: 5; -} -.v-app-bar.v-app-bar--hide-shadow { - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), - 0 0 0 0 rgba(0, 0, 0, 0.12) !important; -} -.v-app-bar--fade-img-on-scroll .v-toolbar__image .v-image__image { - transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); -} -.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll - .v-toolbar__content { - will-change: height; -} -.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll .v-toolbar__image { - will-change: opacity; -} -.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--collapse-on-scroll - .v-toolbar__extension { - display: none; -} -.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--is-scrolled - .v-toolbar__title { - padding-top: 9px; -} -.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--is-scrolled:not(.v-app-bar--bottom) - .v-toolbar__title { - padding-bottom: 9px; -} -.v-app-bar.v-app-bar--shrink-on-scroll .v-toolbar__title { - font-size: inherit; -} -.theme--light.v-toolbar.v-sheet { - background-color: #fff; -} -.theme--dark.v-toolbar.v-sheet { - background-color: #272727; -} -.v-sheet.v-toolbar { - border-radius: 0; -} -.v-sheet.v-toolbar:not(.v-sheet--outlined) { - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), - 0 1px 10px 0 rgba(0, 0, 0, 0.12); -} -.v-sheet.v-toolbar.v-sheet--shaped { - border-radius: 24px 0; -} -.v-toolbar { - contain: layout; - display: block; - flex: 1 1 auto; - max-width: 100%; - transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), - background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), - left 0.2s cubic-bezier(0.4, 0, 0.2, 1), - right 0.2s cubic-bezier(0.4, 0, 0.2, 1), - box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), - max-width 0.25s cubic-bezier(0.4, 0, 0.2, 1), - width 0.25s cubic-bezier(0.4, 0, 0.2, 1); - position: relative; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), - 0 1px 10px 0 rgba(0, 0, 0, 0.12); -} -.v-toolbar .v-input { - padding-top: 0; - margin-top: 0; -} -.v-toolbar__content, -.v-toolbar__extension { - padding: 4px 16px; -} -.v-toolbar__content .v-btn.v-btn--icon.v-size--default, -.v-toolbar__extension .v-btn.v-btn--icon.v-size--default { - height: 48px; - width: 48px; -} -.v-application--is-ltr .v-toolbar__content > .v-btn.v-btn--icon:first-child, -.v-application--is-ltr .v-toolbar__extension > .v-btn.v-btn--icon:first-child { - margin-left: -12px; -} -.v-application--is-rtl .v-toolbar__content > .v-btn.v-btn--icon:first-child, -.v-application--is-rtl .v-toolbar__extension > .v-btn.v-btn--icon:first-child { - margin-right: -12px; -} -.v-application--is-ltr - .v-toolbar__content - > .v-btn.v-btn--icon:first-child - + .v-toolbar__title, -.v-application--is-ltr - .v-toolbar__extension - > .v-btn.v-btn--icon:first-child - + .v-toolbar__title { - padding-left: 20px; -} -.v-application--is-rtl - .v-toolbar__content - > .v-btn.v-btn--icon:first-child - + .v-toolbar__title, -.v-application--is-rtl - .v-toolbar__extension - > .v-btn.v-btn--icon:first-child - + .v-toolbar__title { - padding-right: 20px; -} -.v-application--is-ltr .v-toolbar__content > .v-btn.v-btn--icon:last-child, -.v-application--is-ltr .v-toolbar__extension > .v-btn.v-btn--icon:last-child { - margin-right: -12px; -} -.v-application--is-rtl .v-toolbar__content > .v-btn.v-btn--icon:last-child, -.v-application--is-rtl .v-toolbar__extension > .v-btn.v-btn--icon:last-child { - margin-left: -12px; -} -.v-toolbar__content > .v-tabs, -.v-toolbar__extension > .v-tabs { - height: inherit; - margin-top: -4px; - margin-bottom: -4px; -} -.v-toolbar__content > .v-tabs > .v-slide-group.v-tabs-bar, -.v-toolbar__extension > .v-tabs > .v-slide-group.v-tabs-bar { - background-color: inherit; - height: inherit; -} -.v-toolbar__content > .v-tabs:first-child, -.v-toolbar__extension > .v-tabs:first-child { - margin-left: -16px; -} -.v-toolbar__content > .v-tabs:last-child, -.v-toolbar__extension > .v-tabs:last-child { - margin-right: -16px; -} -.v-toolbar__content, -.v-toolbar__extension { - align-items: center; - display: flex; - position: relative; - z-index: 0; -} -.v-toolbar__image { - position: absolute; - top: 0; - bottom: 0; - width: 100%; - z-index: 0; - contain: strict; -} -.v-toolbar__image, -.v-toolbar__image .v-image { - border-radius: inherit; -} -.v-toolbar__items { - display: flex; - height: inherit; -} -.v-toolbar__items > .v-btn { - border-radius: 0; - height: 100% !important; - max-height: none; -} -.v-toolbar__title { - font-size: 1.25rem; - line-height: 1.5; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.v-toolbar.v-toolbar--absolute { - position: absolute; - top: 0; - z-index: 1; -} -.v-toolbar.v-toolbar--bottom { - top: auto; - bottom: 0; -} -.v-toolbar.v-toolbar--collapse .v-toolbar__title { - white-space: nowrap; -} -.v-toolbar.v-toolbar--collapsed { - max-width: 112px; - overflow: hidden; -} -.v-application--is-ltr .v-toolbar.v-toolbar--collapsed { - border-bottom-right-radius: 24px; -} -.v-application--is-rtl .v-toolbar.v-toolbar--collapsed { - border-bottom-left-radius: 24px; -} -.v-toolbar.v-toolbar--collapsed .v-toolbar__extension, -.v-toolbar.v-toolbar--collapsed .v-toolbar__title { - display: none; -} -.v-toolbar--dense .v-toolbar__content, -.v-toolbar--dense .v-toolbar__extension { - padding-top: 0; - padding-bottom: 0; -} -.v-toolbar--flat { - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), - 0 0 0 0 rgba(0, 0, 0, 0.12) !important; -} -.v-toolbar--floating { - display: inline-flex; -} -.v-toolbar--prominent .v-toolbar__content { - align-items: flex-start; -} -.v-toolbar--prominent .v-toolbar__title { - font-size: 1.5rem; - padding-top: 6px; -} -.v-toolbar--prominent:not(.v-toolbar--bottom) .v-toolbar__title { - align-self: flex-end; - padding-bottom: 6px; - padding-top: 0; -} -.theme--light.v-image { - color: rgba(0, 0, 0, 0.87); -} -.theme--dark.v-image { - color: #fff; -} -.v-image { - z-index: 0; -} -.v-image__image, -.v-image__placeholder { - z-index: -1; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} -.v-image__image { - background-repeat: no-repeat; -} -.v-image__image--preload { - filter: blur(2px); -} -.v-image__image--contain { - background-size: contain; -} -.v-image__image--cover { - background-size: cover; -} -.v-responsive { - position: relative; - overflow: hidden; - flex: 1 0 auto; - max-width: 100%; - display: flex; -} -.v-responsive__content { - flex: 1 0 0px; - max-width: 100%; -} -.v-application--is-ltr .v-responsive__sizer ~ .v-responsive__content { - margin-left: -100%; -} -.v-application--is-rtl .v-responsive__sizer ~ .v-responsive__content { - margin-right: -100%; -} -.v-responsive__sizer { - transition: padding-bottom 0.2s cubic-bezier(0.25, 0.8, 0.5, 1); - flex: 1 0 0px; -} -.container { - width: 100%; - padding: 12px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 960px) { - .container { - max-width: 900px; - } -} -@media (min-width: 1264px) { - .container { - max-width: 1185px; - } -} -@media (min-width: 1904px) { - .container { - max-width: 1785px; - } -} -.container--fluid { - max-width: 100%; -} -.row { - display: flex; - flex-wrap: wrap; - flex: 1 1 auto; - margin-right: -12px; - margin-left: -12px; -} -.row--dense { - margin-right: -4px; - margin-left: -4px; -} -.row--dense > .col, -.row--dense > [class*="col-"] { - padding: 4px; -} -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding: 0; -} -.col, -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12, -.col-auto, -.col-lg, -.col-lg-1, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg-auto, -.col-md, -.col-md-1, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md-auto, -.col-sm, -.col-sm-1, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm-auto, -.col-xl, -.col-xl-1, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl-auto { - width: 100%; - padding: 12px; -} -.col { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; -} -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; -} -.col-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; -} -.col-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; -} -.col-3 { - flex: 0 0 25%; - max-width: 25%; -} -.col-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; -} -.col-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; -} -.col-6 { - flex: 0 0 50%; - max-width: 50%; -} -.col-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; -} -.col-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; -} -.col-9 { - flex: 0 0 75%; - max-width: 75%; -} -.col-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; -} -.col-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; -} -.col-12 { - flex: 0 0 100%; - max-width: 100%; -} -.v-application--is-ltr .offset-1 { - margin-left: 8.3333333333%; -} -.v-application--is-rtl .offset-1 { - margin-right: 8.3333333333%; -} -.v-application--is-ltr .offset-2 { - margin-left: 16.6666666667%; -} -.v-application--is-rtl .offset-2 { - margin-right: 16.6666666667%; -} -.v-application--is-ltr .offset-3 { - margin-left: 25%; -} -.v-application--is-rtl .offset-3 { - margin-right: 25%; -} -.v-application--is-ltr .offset-4 { - margin-left: 33.3333333333%; -} -.v-application--is-rtl .offset-4 { - margin-right: 33.3333333333%; -} -.v-application--is-ltr .offset-5 { - margin-left: 41.6666666667%; -} -.v-application--is-rtl .offset-5 { - margin-right: 41.6666666667%; -} -.v-application--is-ltr .offset-6 { - margin-left: 50%; -} -.v-application--is-rtl .offset-6 { - margin-right: 50%; -} -.v-application--is-ltr .offset-7 { - margin-left: 58.3333333333%; -} -.v-application--is-rtl .offset-7 { - margin-right: 58.3333333333%; -} -.v-application--is-ltr .offset-8 { - margin-left: 66.6666666667%; -} -.v-application--is-rtl .offset-8 { - margin-right: 66.6666666667%; -} -.v-application--is-ltr .offset-9 { - margin-left: 75%; -} -.v-application--is-rtl .offset-9 { - margin-right: 75%; -} -.v-application--is-ltr .offset-10 { - margin-left: 83.3333333333%; -} -.v-application--is-rtl .offset-10 { - margin-right: 83.3333333333%; -} -.v-application--is-ltr .offset-11 { - margin-left: 91.6666666667%; -} -.v-application--is-rtl .offset-11 { - margin-right: 91.6666666667%; -} -@media (min-width: 600px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - .col-sm-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - .col-sm-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - .col-sm-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - .col-sm-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; - } - .v-application--is-ltr .offset-sm-0 { - margin-left: 0; - } - .v-application--is-rtl .offset-sm-0 { - margin-right: 0; - } - .v-application--is-ltr .offset-sm-1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .offset-sm-1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .offset-sm-2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .offset-sm-2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .offset-sm-3 { - margin-left: 25%; - } - .v-application--is-rtl .offset-sm-3 { - margin-right: 25%; - } - .v-application--is-ltr .offset-sm-4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .offset-sm-4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .offset-sm-5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .offset-sm-5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .offset-sm-6 { - margin-left: 50%; - } - .v-application--is-rtl .offset-sm-6 { - margin-right: 50%; - } - .v-application--is-ltr .offset-sm-7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .offset-sm-7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .offset-sm-8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .offset-sm-8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .offset-sm-9 { - margin-left: 75%; - } - .v-application--is-rtl .offset-sm-9 { - margin-right: 75%; - } - .v-application--is-ltr .offset-sm-10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .offset-sm-10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .offset-sm-11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .offset-sm-11 { - margin-right: 91.6666666667%; - } -} -@media (min-width: 960px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - .col-md-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - .col-md-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - .col-md-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - .col-md-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; - } - .v-application--is-ltr .offset-md-0 { - margin-left: 0; - } - .v-application--is-rtl .offset-md-0 { - margin-right: 0; - } - .v-application--is-ltr .offset-md-1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .offset-md-1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .offset-md-2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .offset-md-2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .offset-md-3 { - margin-left: 25%; - } - .v-application--is-rtl .offset-md-3 { - margin-right: 25%; - } - .v-application--is-ltr .offset-md-4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .offset-md-4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .offset-md-5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .offset-md-5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .offset-md-6 { - margin-left: 50%; - } - .v-application--is-rtl .offset-md-6 { - margin-right: 50%; - } - .v-application--is-ltr .offset-md-7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .offset-md-7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .offset-md-8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .offset-md-8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .offset-md-9 { - margin-left: 75%; - } - .v-application--is-rtl .offset-md-9 { - margin-right: 75%; - } - .v-application--is-ltr .offset-md-10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .offset-md-10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .offset-md-11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .offset-md-11 { - margin-right: 91.6666666667%; - } -} -@media (min-width: 1264px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - .col-lg-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - .col-lg-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - .col-lg-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - .col-lg-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; - } - .v-application--is-ltr .offset-lg-0 { - margin-left: 0; - } - .v-application--is-rtl .offset-lg-0 { - margin-right: 0; - } - .v-application--is-ltr .offset-lg-1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .offset-lg-1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .offset-lg-2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .offset-lg-2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .offset-lg-3 { - margin-left: 25%; - } - .v-application--is-rtl .offset-lg-3 { - margin-right: 25%; - } - .v-application--is-ltr .offset-lg-4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .offset-lg-4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .offset-lg-5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .offset-lg-5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .offset-lg-6 { - margin-left: 50%; - } - .v-application--is-rtl .offset-lg-6 { - margin-right: 50%; - } - .v-application--is-ltr .offset-lg-7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .offset-lg-7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .offset-lg-8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .offset-lg-8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .offset-lg-9 { - margin-left: 75%; - } - .v-application--is-rtl .offset-lg-9 { - margin-right: 75%; - } - .v-application--is-ltr .offset-lg-10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .offset-lg-10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .offset-lg-11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .offset-lg-11 { - margin-right: 91.6666666667%; - } -} -@media (min-width: 1904px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - .col-xl-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - .col-xl-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - .col-xl-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - .col-xl-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; - } - .v-application--is-ltr .offset-xl-0 { - margin-left: 0; - } - .v-application--is-rtl .offset-xl-0 { - margin-right: 0; - } - .v-application--is-ltr .offset-xl-1 { - margin-left: 8.3333333333%; - } - .v-application--is-rtl .offset-xl-1 { - margin-right: 8.3333333333%; - } - .v-application--is-ltr .offset-xl-2 { - margin-left: 16.6666666667%; - } - .v-application--is-rtl .offset-xl-2 { - margin-right: 16.6666666667%; - } - .v-application--is-ltr .offset-xl-3 { - margin-left: 25%; - } - .v-application--is-rtl .offset-xl-3 { - margin-right: 25%; - } - .v-application--is-ltr .offset-xl-4 { - margin-left: 33.3333333333%; - } - .v-application--is-rtl .offset-xl-4 { - margin-right: 33.3333333333%; - } - .v-application--is-ltr .offset-xl-5 { - margin-left: 41.6666666667%; - } - .v-application--is-rtl .offset-xl-5 { - margin-right: 41.6666666667%; - } - .v-application--is-ltr .offset-xl-6 { - margin-left: 50%; - } - .v-application--is-rtl .offset-xl-6 { - margin-right: 50%; - } - .v-application--is-ltr .offset-xl-7 { - margin-left: 58.3333333333%; - } - .v-application--is-rtl .offset-xl-7 { - margin-right: 58.3333333333%; - } - .v-application--is-ltr .offset-xl-8 { - margin-left: 66.6666666667%; - } - .v-application--is-rtl .offset-xl-8 { - margin-right: 66.6666666667%; - } - .v-application--is-ltr .offset-xl-9 { - margin-left: 75%; - } - .v-application--is-rtl .offset-xl-9 { - margin-right: 75%; - } - .v-application--is-ltr .offset-xl-10 { - margin-left: 83.3333333333%; - } - .v-application--is-rtl .offset-xl-10 { - margin-right: 83.3333333333%; - } - .v-application--is-ltr .offset-xl-11 { - margin-left: 91.6666666667%; - } - .v-application--is-rtl .offset-xl-11 { - margin-right: 91.6666666667%; - } -} -.v-main { - display: flex; - flex: 1 0 auto; - max-width: 100%; - transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); -} -.v-main:not([data-booted="true"]) { - transition: none !important; -} -.v-main__wrap { - flex: 1 1 auto; - max-width: 100%; - position: relative; -} -@-moz-document url-prefix() { - @media print { - .v-main { - display: block; - } - } -} -.v-input--checkbox.v-input--indeterminate.v-input--is-disabled { - opacity: 0.6; -} -.theme--light.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) - .v-icon { - color: rgba(0, 0, 0, 0.26) !important; -} -.theme--dark.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) - .v-icon { - color: hsla(0, 0%, 100%, 0.3) !important; -} -.v-input--selection-controls { - margin-top: 16px; - padding-top: 4px; -} -.v-input--selection-controls > .v-input__append-outer, -.v-input--selection-controls > .v-input__prepend-outer { - margin-top: 0; - margin-bottom: 0; -} -.v-input--selection-controls:not(.v-input--hide-details) > .v-input__slot { - margin-bottom: 12px; -} -.v-input--selection-controls .v-input__slot, -.v-input--selection-controls .v-radio { - cursor: pointer; -} -.v-input--selection-controls .v-input__slot > .v-label, -.v-input--selection-controls .v-radio > .v-label { - align-items: center; - display: inline-flex; - flex: 1 1 auto; - height: auto; -} -.v-input--selection-controls__input { - color: inherit; - display: inline-flex; - flex: 0 0 auto; - height: 24px; - position: relative; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); - transition-property: transform; - width: 24px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-input--selection-controls__input .v-icon { - width: 100%; -} -.v-application--is-ltr .v-input--selection-controls__input { - margin-right: 8px; -} -.v-application--is-rtl .v-input--selection-controls__input { - margin-left: 8px; -} -.v-input--selection-controls__input input[role="checkbox"], -.v-input--selection-controls__input input[role="radio"], -.v-input--selection-controls__input input[role="switch"] { - position: absolute; - opacity: 0; - width: 100%; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-input--selection-controls__input + .v-label { - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-input--selection-controls__ripple { - border-radius: 50%; - cursor: pointer; - height: 34px; - position: absolute; - transition: inherit; - width: 34px; - left: -12px; - top: calc(50% - 24px); - margin: 7px; -} -.v-input--selection-controls__ripple:before { - border-radius: inherit; - bottom: 0; - content: ""; - position: absolute; - opacity: 0.2; - left: 0; - right: 0; - top: 0; - transform-origin: center center; - transform: scale(0.2); - transition: inherit; -} -.v-input--selection-controls__ripple > .v-ripple__container { - transform: scale(1.2); -} -.v-input--selection-controls.v-input--dense - .v-input--selection-controls__ripple { - width: 28px; - height: 28px; - left: -9px; -} -.v-input--selection-controls.v-input--dense:not(.v-input--switch) - .v-input--selection-controls__ripple { - top: calc(50% - 21px); -} -.v-input--selection-controls.v-input { - flex: 0 1 auto; -} -.v-input--selection-controls.v-input--is-focused - .v-input--selection-controls__ripple:before, -.v-input--selection-controls - .v-radio--is-focused - .v-input--selection-controls__ripple:before { - background: currentColor; - transform: scale(1.2); -} -.v-input--selection-controls - .v-input--selection-controls__input:hover - .v-input--selection-controls__ripple:before { - background: currentColor; - transform: scale(1.2); - transition: none; -} -.v-chip:not(.v-chip--outlined).accent, -.v-chip:not(.v-chip--outlined).error, -.v-chip:not(.v-chip--outlined).info, -.v-chip:not(.v-chip--outlined).primary, -.v-chip:not(.v-chip--outlined).secondary, -.v-chip:not(.v-chip--outlined).success, -.v-chip:not(.v-chip--outlined).warning { - color: #fff; -} -.theme--light.v-chip { - border-color: rgba(0, 0, 0, 0.12); - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-chip:not(.v-chip--active) { - background: #e0e0e0; -} -.theme--light.v-chip:hover:before { - opacity: 0.04; -} -.theme--light.v-chip--active:before, -.theme--light.v-chip--active:hover:before, -.theme--light.v-chip:focus:before { - opacity: 0.12; -} -.theme--light.v-chip--active:focus:before { - opacity: 0.16; -} -.theme--dark.v-chip { - border-color: hsla(0, 0%, 100%, 0.12); - color: #fff; -} -.theme--dark.v-chip:not(.v-chip--active) { - background: #555; -} -.theme--dark.v-chip:hover:before { - opacity: 0.08; -} -.theme--dark.v-chip--active:before, -.theme--dark.v-chip--active:hover:before, -.theme--dark.v-chip:focus:before { - opacity: 0.24; -} -.theme--dark.v-chip--active:focus:before { - opacity: 0.32; -} -.v-chip { - align-items: center; - cursor: default; - display: inline-flex; - line-height: 20px; - max-width: 100%; - outline: none; - overflow: hidden; - padding: 0 12px; - position: relative; - text-decoration: none; - transition-duration: 0.28s; - transition-property: box-shadow, opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - vertical-align: middle; - white-space: nowrap; -} -.v-chip:before { - background-color: currentColor; - bottom: 0; - border-radius: inherit; - content: ""; - left: 0; - opacity: 0; - position: absolute; - pointer-events: none; - right: 0; - top: 0; -} -.v-chip .v-avatar { - height: 24px !important; - min-width: 24px !important; - width: 24px !important; -} -.v-chip .v-icon { - font-size: 24px; -} -.v-application--is-ltr .v-chip .v-avatar--left, -.v-application--is-ltr .v-chip .v-icon--left { - margin-left: -6px; - margin-right: 6px; -} -.v-application--is-ltr .v-chip .v-avatar--right, -.v-application--is-ltr .v-chip .v-icon--right, -.v-application--is-rtl .v-chip .v-avatar--left, -.v-application--is-rtl .v-chip .v-icon--left { - margin-left: 6px; - margin-right: -6px; -} -.v-application--is-rtl .v-chip .v-avatar--right, -.v-application--is-rtl .v-chip .v-icon--right { - margin-left: -6px; - margin-right: 6px; -} -.v-chip:not(.v-chip--no-color) .v-icon { - color: inherit; -} -.v-chip .v-chip__close.v-icon { - font-size: 18px; - max-height: 18px; - max-width: 18px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-application--is-ltr .v-chip .v-chip__close.v-icon.v-icon--right { - margin-right: -4px; -} -.v-application--is-rtl .v-chip .v-chip__close.v-icon.v-icon--right { - margin-left: -4px; -} -.v-chip .v-chip__close.v-icon:active, -.v-chip .v-chip__close.v-icon:focus, -.v-chip .v-chip__close.v-icon:hover { - opacity: 0.72; -} -.v-chip .v-chip__content { - align-items: center; - display: inline-flex; - height: 100%; - max-width: 100%; -} -.v-chip--active .v-icon { - color: inherit; -} -.v-chip--link:before { - transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-chip--link:focus:before { - opacity: 0.32; -} -.v-chip--clickable { - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-chip--clickable:active { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), - 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} -.v-chip--disabled { - opacity: 0.4; - pointer-events: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-chip__filter { - max-width: 24px; -} -.v-chip__filter.v-icon { - color: inherit; -} -.v-chip__filter.expand-x-transition-enter, -.v-chip__filter.expand-x-transition-leave-active { - margin: 0; -} -.v-chip--pill .v-chip__filter { - margin-right: 0 16px 0 0; -} -.v-chip--pill .v-avatar { - height: 32px !important; - width: 32px !important; -} -.v-application--is-ltr .v-chip--pill .v-avatar--left { - margin-left: -12px; -} -.v-application--is-ltr .v-chip--pill .v-avatar--right, -.v-application--is-rtl .v-chip--pill .v-avatar--left { - margin-right: -12px; -} -.v-application--is-rtl .v-chip--pill .v-avatar--right { - margin-left: -12px; -} -.v-chip--label { - border-radius: 4px !important; -} -.v-chip.v-chip--outlined { - border-width: thin; - border-style: solid; -} -.v-chip.v-chip--outlined.v-chip--active:before { - opacity: 0.08; -} -.v-chip.v-chip--outlined .v-icon { - color: inherit; -} -.v-chip.v-chip--outlined.v-chip.v-chip { - background-color: transparent !important; -} -.v-chip.v-chip--selected { - background: transparent; -} -.v-chip.v-chip--selected:after { - opacity: 0.28; -} -.v-chip.v-size--x-small { - border-radius: 8px; - font-size: 10px; - height: 16px; -} -.v-chip.v-size--small { - border-radius: 12px; - font-size: 12px; - height: 24px; -} -.v-chip.v-size--default { - border-radius: 16px; - font-size: 14px; - height: 32px; -} -.v-chip.v-size--large { - border-radius: 27px; - font-size: 16px; - height: 54px; -} -.v-chip.v-size--x-large { - border-radius: 33px; - font-size: 18px; - height: 66px; -} -.v-autocomplete.v-input > .v-input__control > .v-input__slot { - cursor: text; -} -.v-autocomplete input { - align-self: center; -} -.v-autocomplete.v-select.v-input--is-focused input { - min-width: 64px; -} -.v-autocomplete:not(.v-input--is-focused).v-select--chips input { - max-height: 0; - padding: 0; -} -.v-autocomplete--is-selecting-index input { - opacity: 0; -} -.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line):not(.v-text-field--outlined) - .v-select__slot - > input { - margin-top: 24px; -} -.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line):not(.v-text-field--outlined).v-input--dense - .v-select__slot - > input { - margin-top: 20px; -} -.v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input { - pointer-events: inherit; -} -.v-autocomplete__content.v-menu__content, -.v-autocomplete__content.v-menu__content .v-card { - border-radius: 0; -} -.theme--light.v-select .v-select__selection--comma { - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-select .v-select__selection--disabled { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-select .v-select__selection--comma, -.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused - .v-select__selection--comma { - color: #fff; -} -.theme--dark.v-select .v-select__selection--disabled { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused - .v-select__selection--comma { - color: rgba(0, 0, 0, 0.87); -} -.v-select { - position: relative; -} -.v-select:not(.v-select--is-multi).v-text-field--single-line - .v-select__selections { - flex-wrap: nowrap; -} -.v-select > .v-input__control > .v-input__slot { - cursor: pointer; -} -.v-select .v-chip { - flex: 0 1 auto; - margin: 4px; -} -.v-select .v-chip--selected:after { - opacity: 0.22; -} -.v-select .fade-transition-leave-active { - position: absolute; - left: 0; -} -.v-select.v-input--is-dirty ::-moz-placeholder { - color: transparent !important; -} -.v-select.v-input--is-dirty :-ms-input-placeholder { - color: transparent !important; -} -.v-select.v-input--is-dirty ::placeholder { - color: transparent !important; -} -.v-select:not(.v-input--is-dirty):not(.v-input--is-focused) - .v-text-field__prefix { - line-height: 20px; - top: 7px; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) - .v-select__selections { - padding-top: 20px; -} -.v-select.v-text-field--outlined:not(.v-text-field--single-line) - .v-select__selections { - padding: 8px 0; -} -.v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense - .v-select__selections { - padding: 4px 0; -} -.v-select.v-text-field input { - flex: 1 1; - margin-top: 0; - min-width: 0; - pointer-events: none; - position: relative; -} -.v-select.v-select--is-menu-active .v-input__icon--append .v-icon { - transform: rotate(180deg); -} -.v-select.v-select--chips input { - margin: 0; -} -.v-select.v-select--chips .v-select__selections { - min-height: 42px; -} -.v-select.v-select--chips.v-input--dense .v-select__selections { - min-height: 40px; -} -.v-select.v-select--chips .v-chip--select.v-chip--active:before { - opacity: 0.2; -} -.v-select.v-select--chips.v-select--chips--small .v-select__selections { - min-height: 26px; -} -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box - .v-select__selections, -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed - .v-select__selections { - min-height: 68px; -} -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense - .v-select__selections, -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense - .v-select__selections { - min-height: 40px; -} -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small - .v-select__selections, -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small - .v-select__selections { - min-height: 26px; -} -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense - .v-select__selections, -.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense - .v-select__selections { - min-height: 38px; -} -.v-select.v-text-field--reverse .v-select__selections, -.v-select.v-text-field--reverse .v-select__slot { - flex-direction: row-reverse; -} -.v-select__selections { - align-items: center; - display: flex; - flex: 1 1; - flex-wrap: wrap; - line-height: 18px; - max-width: 100%; - min-width: 0; -} -.v-select__selection { - max-width: 90%; -} -.v-select__selection--comma { - margin: 7px 4px 7px 0; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.v-select.v-input--dense .v-select__selection--comma { - margin: 5px 4px 3px 0; -} -.v-select.v-input--dense .v-chip { - margin: 0 4px 0 4px; -} -.v-select__slot { - position: relative; - align-items: center; - display: flex; - max-width: 100%; - min-width: 0; - width: 100%; -} -.v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) - .v-select__slot - > input { - align-self: flex-end; -} -.theme--light.v-list-item--disabled { - color: rgba(0, 0, 0, 0.38); -} -.theme--light.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) { - color: rgba(0, 0, 0, 0.87) !important; -} -.theme--light.v-list-item .v-list-item__mask { - color: rgba(0, 0, 0, 0.38); - background: #eee; -} -.theme--light.v-list-item .v-list-item__action-text, -.theme--light.v-list-item .v-list-item__subtitle { - color: rgba(0, 0, 0, 0.6); -} -.theme--light.v-list-item:hover:before { - opacity: 0.04; -} -.theme--light.v-list-item--active:before, -.theme--light.v-list-item--active:hover:before, -.theme--light.v-list-item:focus:before { - opacity: 0.12; -} -.theme--light.v-list-item--active:focus:before, -.theme--light.v-list-item.v-list-item--highlighted:before { - opacity: 0.16; -} -.theme--dark.v-list-item--disabled { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--dark.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) { - color: #fff !important; -} -.theme--dark.v-list-item .v-list-item__mask { - color: hsla(0, 0%, 100%, 0.5); - background: #494949; -} -.theme--dark.v-list-item .v-list-item__action-text, -.theme--dark.v-list-item .v-list-item__subtitle { - color: hsla(0, 0%, 100%, 0.7); -} -.theme--dark.v-list-item:hover:before { - opacity: 0.08; -} -.theme--dark.v-list-item--active:before, -.theme--dark.v-list-item--active:hover:before, -.theme--dark.v-list-item:focus:before { - opacity: 0.24; -} -.theme--dark.v-list-item--active:focus:before, -.theme--dark.v-list-item.v-list-item--highlighted:before { - opacity: 0.32; -} -.v-list-item { - align-items: center; - display: flex; - flex: 1 1 100%; - letter-spacing: normal; - min-height: 48px; - outline: none; - padding: 0 16px; - position: relative; - text-decoration: none; -} -.v-list-item--disabled { - pointer-events: none; -} -.v-list-item--selectable { - -webkit-user-select: auto; - -moz-user-select: auto; - -ms-user-select: auto; - user-select: auto; -} -.v-list-item:after { - content: ""; - min-height: inherit; - font-size: 0; -} -.v-list-item__action { - align-self: center; - margin: 12px 0; -} -.v-list-item__action .v-input, -.v-list-item__action .v-input--selection-controls__input, -.v-list-item__action .v-input__control, -.v-list-item__action .v-input__slot { - margin: 0 !important; -} -.v-list-item__action .v-input { - padding: 0; -} -.v-list-item__action .v-input .v-messages { - display: none; -} -.v-list-item__action-text { - font-size: 0.75rem; -} -.v-list-item__avatar { - align-self: center; - justify-content: flex-start; -} -.v-list-item__avatar, -.v-list-item__avatar.v-list-item__avatar--horizontal { - margin-bottom: 8px; - margin-top: 8px; -} -.v-application--is-ltr - .v-list-item__avatar.v-list-item__avatar--horizontal:first-child { - margin-left: -16px; -} -.v-application--is-rtl - .v-list-item__avatar.v-list-item__avatar--horizontal:first-child { - margin-right: -16px; -} -.v-application--is-ltr - .v-list-item__avatar.v-list-item__avatar--horizontal:last-child { - margin-left: -16px; -} -.v-application--is-rtl - .v-list-item__avatar.v-list-item__avatar--horizontal:last-child { - margin-right: -16px; -} -.v-list-item__content { - align-items: center; - align-self: center; - display: flex; - flex-wrap: wrap; - flex: 1 1; - overflow: hidden; - padding: 12px 0; -} -.v-list-item__content > * { - line-height: 1.1; - flex: 1 0 100%; -} -.v-list-item__content > :not(:last-child) { - margin-bottom: 2px; -} -.v-list-item__icon { - align-self: flex-start; - margin: 16px 0; -} -.v-application--is-ltr .v-list-item__action:last-of-type:not(:only-child), -.v-application--is-ltr .v-list-item__avatar:last-of-type:not(:only-child), -.v-application--is-ltr .v-list-item__icon:last-of-type:not(:only-child) { - margin-left: 16px; -} -.v-application--is-ltr .v-list-item__avatar:first-child, -.v-application--is-rtl .v-list-item__action:last-of-type:not(:only-child), -.v-application--is-rtl .v-list-item__avatar:last-of-type:not(:only-child), -.v-application--is-rtl .v-list-item__icon:last-of-type:not(:only-child) { - margin-right: 16px; -} -.v-application--is-rtl .v-list-item__avatar:first-child { - margin-left: 16px; -} -.v-application--is-ltr .v-list-item__action:first-child, -.v-application--is-ltr .v-list-item__icon:first-child { - margin-right: 32px; -} -.v-application--is-rtl .v-list-item__action:first-child, -.v-application--is-rtl .v-list-item__icon:first-child { - margin-left: 32px; -} -.v-list-item__action, -.v-list-item__avatar, -.v-list-item__icon { - display: inline-flex; - min-width: 24px; -} -.v-list-item .v-list-item__subtitle, -.v-list-item .v-list-item__title { - line-height: 1.2; -} -.v-list-item__subtitle, -.v-list-item__title { - flex: 1 1 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.v-list-item__title { - align-self: center; - font-size: 1rem; -} -.v-list-item__title > .v-badge { - margin-top: 16px; -} -.v-list-item__subtitle { - font-size: 0.875rem; -} -.v-list--dense .v-list-item, -.v-list-item--dense { - min-height: 40px; -} -.v-list--dense .v-list-item .v-list-item__icon, -.v-list-item--dense .v-list-item__icon { - height: 24px; - margin-top: 8px; - margin-bottom: 8px; -} -.v-list--dense .v-list-item .v-list-item__content, -.v-list-item--dense .v-list-item__content { - padding: 8px 0; -} -.v-list--dense .v-list-item .v-list-item__subtitle, -.v-list--dense .v-list-item .v-list-item__title, -.v-list-item--dense .v-list-item__subtitle, -.v-list-item--dense .v-list-item__title { - font-size: 0.8125rem; - font-weight: 500; - line-height: 1rem; -} -.v-list--dense .v-list-item.v-list-item--two-line, -.v-list-item--dense.v-list-item--two-line { - min-height: 60px; -} -.v-list--dense .v-list-item.v-list-item--three-line, -.v-list-item--dense.v-list-item--three-line { - min-height: 76px; -} -.v-list-item--link { - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.v-list-item--link:before { - background-color: currentColor; - bottom: 0; - content: ""; - left: 0; - opacity: 0; - pointer-events: none; - position: absolute; - right: 0; - top: 0; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-list .v-list-item--active, -.v-list .v-list-item--active .v-icon { - color: inherit; -} -.v-list-item__action--stack { - align-items: flex-end; - align-self: stretch; - justify-content: space-between; - white-space: nowrap; - flex-direction: column; -} -.v-list--three-line - .v-list-item - .v-list-item__avatar:not(.v-list-item__avatar--horizontal), -.v-list--three-line .v-list-item .v-list-item__icon, -.v-list--two-line - .v-list-item - .v-list-item__avatar:not(.v-list-item__avatar--horizontal), -.v-list--two-line .v-list-item .v-list-item__icon, -.v-list-item--three-line - .v-list-item__avatar:not(.v-list-item__avatar--horizontal), -.v-list-item--three-line .v-list-item__icon, -.v-list-item--two-line - .v-list-item__avatar:not(.v-list-item__avatar--horizontal), -.v-list-item--two-line .v-list-item__icon { - margin-bottom: 16px; - margin-top: 16px; -} -.v-list--two-line .v-list-item, -.v-list-item--two-line { - min-height: 64px; -} -.v-list--two-line .v-list-item .v-list-item__icon, -.v-list-item--two-line .v-list-item__icon { - margin-bottom: 32px; -} -.v-list--three-line .v-list-item, -.v-list-item--three-line { - min-height: 88px; -} -.v-list--three-line .v-list-item .v-list-item__action, -.v-list--three-line .v-list-item .v-list-item__avatar, -.v-list-item--three-line .v-list-item__action, -.v-list-item--three-line .v-list-item__avatar { - align-self: flex-start; - margin-top: 16px; - margin-bottom: 16px; -} -.v-list--three-line .v-list-item .v-list-item__content, -.v-list-item--three-line .v-list-item__content { - align-self: stretch; -} -.v-list--three-line .v-list-item .v-list-item__subtitle, -.v-list-item--three-line .v-list-item__subtitle { - white-space: normal; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical; - display: -webkit-box; -} -.v-simple-checkbox { - align-self: center; - line-height: normal; - position: relative; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; -} -.v-simple-checkbox--disabled { - cursor: default; -} -.theme--light.v-subheader { - color: rgba(0, 0, 0, 0.6); -} -.theme--dark.v-subheader { - color: hsla(0, 0%, 100%, 0.7); -} -.v-subheader { - align-items: center; - display: flex; - height: 48px; - font-size: 0.875rem; - font-weight: 400; - padding: 0 16px 0 16px; -} -.v-subheader--inset { - margin-left: 56px; -} -.v-list.accent > .v-list-item, -.v-list.error > .v-list-item, -.v-list.info > .v-list-item, -.v-list.primary > .v-list-item, -.v-list.secondary > .v-list-item, -.v-list.success > .v-list-item, -.v-list.warning > .v-list-item { - color: #fff; -} -.theme--light.v-list { - background: #fff; - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-list .v-list--disabled { - color: rgba(0, 0, 0, 0.38); -} -.theme--light.v-list .v-list-group--active:after, -.theme--light.v-list .v-list-group--active:before { - background: rgba(0, 0, 0, 0.12); -} -.theme--dark.v-list { - background: #1e1e1e; - color: #fff; -} -.theme--dark.v-list .v-list--disabled { - color: hsla(0, 0%, 100%, 0.5); -} -.theme--dark.v-list .v-list-group--active:after, -.theme--dark.v-list .v-list-group--active:before { - background: hsla(0, 0%, 100%, 0.12); -} -.v-sheet.v-list { - border-radius: 0; -} -.v-sheet.v-list:not(.v-sheet--outlined) { - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), - 0 0 0 0 rgba(0, 0, 0, 0.12); -} -.v-sheet.v-list.v-sheet--shaped { - border-radius: 0; -} -.v-list { - display: block; - padding: 8px 0; - position: static; - transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); - will-change: box-shadow; -} -.v-list--disabled { - pointer-events: none; -} -.v-list--flat .v-list-item:before { - display: none; -} -.v-list--dense .v-subheader { - font-size: 0.75rem; - height: 40px; - padding: 0 8px; -} -.v-list--nav .v-list-item:not(:last-child):not(:only-child), -.v-list--rounded .v-list-item:not(:last-child):not(:only-child) { - margin-bottom: 8px; -} -.v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child), -.v-list--nav .v-list-item--dense:not(:last-child):not(:only-child), -.v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child), -.v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child) { - margin-bottom: 4px; -} -.v-list--nav { - padding-left: 8px; - padding-right: 8px; -} -.v-list--nav .v-list-item { - padding: 0 8px; -} -.v-list--nav .v-list-item, -.v-list--nav .v-list-item:before { - border-radius: 4px; -} -.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item, -.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item:before, -.v-application--is-ltr - .v-list.v-sheet--shaped - .v-list-item - > .v-ripple__container { - border-bottom-right-radius: 32px !important; - border-top-right-radius: 32px !important; -} -.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item, -.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item:before, -.v-application--is-rtl - .v-list.v-sheet--shaped - .v-list-item - > .v-ripple__container { - border-bottom-left-radius: 32px !important; - border-top-left-radius: 32px !important; -} -.v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item, -.v-application--is-ltr - .v-list.v-sheet--shaped.v-list--two-line - .v-list-item:before, -.v-application--is-ltr - .v-list.v-sheet--shaped.v-list--two-line - .v-list-item - > .v-ripple__container { - border-bottom-right-radius: 42.6666666667px !important; - border-top-right-radius: 42.6666666667px !important; -} -.v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item, -.v-application--is-rtl - .v-list.v-sheet--shaped.v-list--two-line - .v-list-item:before, -.v-application--is-rtl - .v-list.v-sheet--shaped.v-list--two-line - .v-list-item - > .v-ripple__container { - border-bottom-left-radius: 42.6666666667px !important; - border-top-left-radius: 42.6666666667px !important; -} -.v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item, -.v-application--is-ltr - .v-list.v-sheet--shaped.v-list--three-line - .v-list-item:before, -.v-application--is-ltr - .v-list.v-sheet--shaped.v-list--three-line - .v-list-item - > .v-ripple__container { - border-bottom-right-radius: 58.6666666667px !important; - border-top-right-radius: 58.6666666667px !important; -} -.v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item, -.v-application--is-rtl - .v-list.v-sheet--shaped.v-list--three-line - .v-list-item:before, -.v-application--is-rtl - .v-list.v-sheet--shaped.v-list--three-line - .v-list-item - > .v-ripple__container { - border-bottom-left-radius: 58.6666666667px !important; - border-top-left-radius: 58.6666666667px !important; -} -.v-application--is-ltr .v-list.v-sheet--shaped { - padding-right: 8px; -} -.v-application--is-rtl .v-list.v-sheet--shaped { - padding-left: 8px; -} -.v-list--rounded { - padding: 8px; -} -.v-list--rounded .v-list-item, -.v-list--rounded .v-list-item:before, -.v-list--rounded .v-list-item > .v-ripple__container { - border-radius: 32px !important; -} -.v-list--rounded.v-list--two-line .v-list-item, -.v-list--rounded.v-list--two-line .v-list-item:before, -.v-list--rounded.v-list--two-line .v-list-item > .v-ripple__container { - border-radius: 42.6666666667px !important; -} -.v-list--rounded.v-list--three-line .v-list-item, -.v-list--rounded.v-list--three-line .v-list-item:before, -.v-list--rounded.v-list--three-line .v-list-item > .v-ripple__container { - border-radius: 58.6666666667px !important; -} -.v-list--subheader { - padding-top: 0; -} -.v-list-group - .v-list-group__header - .v-list-item__icon.v-list-group__header__append-icon { - align-self: center; - margin: 0; - min-width: 48px; - justify-content: flex-end; -} -.v-list-group--sub-group { - align-items: center; - display: flex; - flex-wrap: wrap; -} -.v-list-group__header.v-list-item--active:not(:hover):not(:focus):before { - opacity: 0; -} -.v-list-group__items { - flex: 1 1 auto; -} -.v-list-group__items .v-list-group__items, -.v-list-group__items .v-list-item { - overflow: hidden; -} -.v-list-group--active - > .v-list-group__header.v-list-group__header--sub-group - > .v-list-group__header__prepend-icon - .v-icon, -.v-list-group--active - > .v-list-group__header - > .v-list-group__header__append-icon - .v-icon { - transform: rotate(-180deg); -} -.v-list-group--active - > .v-list-group__header - .v-list-group__header__prepend-icon - .v-icon, -.v-list-group--active > .v-list-group__header .v-list-item, -.v-list-group--active > .v-list-group__header .v-list-item__content { - color: inherit; -} -.v-application--is-ltr - .v-list-group--sub-group - .v-list-item__action:first-child, -.v-application--is-ltr - .v-list-group--sub-group - .v-list-item__avatar:first-child, -.v-application--is-ltr .v-list-group--sub-group .v-list-item__icon:first-child { - margin-right: 16px; -} -.v-application--is-rtl - .v-list-group--sub-group - .v-list-item__action:first-child, -.v-application--is-rtl - .v-list-group--sub-group - .v-list-item__avatar:first-child, -.v-application--is-rtl .v-list-group--sub-group .v-list-item__icon:first-child { - margin-left: 16px; -} -.v-application--is-ltr .v-list-group--sub-group .v-list-group__header { - padding-left: 32px; -} -.v-application--is-rtl .v-list-group--sub-group .v-list-group__header { - padding-right: 32px; -} -.v-application--is-ltr - .v-list-group--sub-group - .v-list-group__items - .v-list-item { - padding-left: 40px; -} -.v-application--is-rtl - .v-list-group--sub-group - .v-list-group__items - .v-list-item { - padding-right: 40px; -} -.v-list-group--sub-group.v-list-group--active - .v-list-item__icon.v-list-group__header__prepend-icon - .v-icon { - transform: rotate(-180deg); -} -.v-application--is-ltr - .v-list-group--no-action - > .v-list-group__items - > .v-list-item { - padding-left: 72px; -} -.v-application--is-rtl - .v-list-group--no-action - > .v-list-group__items - > .v-list-item { - padding-right: 72px; -} -.v-application--is-ltr - .v-list-group--no-action.v-list-group--sub-group - > .v-list-group__items - > .v-list-item { - padding-left: 88px; -} -.v-application--is-rtl - .v-list-group--no-action.v-list-group--sub-group - > .v-list-group__items - > .v-list-item { - padding-right: 88px; -} -.v-application--is-ltr - .v-list--dense - .v-list-group--sub-group - .v-list-group__header { - padding-left: 24px; -} -.v-application--is-rtl - .v-list--dense - .v-list-group--sub-group - .v-list-group__header { - padding-right: 24px; -} -.v-application--is-ltr - .v-list--dense.v-list--nav - .v-list-group--no-action - > .v-list-group__items - > .v-list-item { - padding-left: 64px; -} -.v-application--is-rtl - .v-list--dense.v-list--nav - .v-list-group--no-action - > .v-list-group__items - > .v-list-item { - padding-right: 64px; -} -.v-application--is-ltr - .v-list--dense.v-list--nav - .v-list-group--no-action.v-list-group--sub-group - > .v-list-group__items - > .v-list-item { - padding-left: 80px; -} -.v-application--is-rtl - .v-list--dense.v-list--nav - .v-list-group--no-action.v-list-group--sub-group - > .v-list-group__items - > .v-list-item { - padding-right: 80px; -} -.v-avatar { - align-items: center; - border-radius: 50%; - display: inline-flex; - justify-content: center; - line-height: normal; - position: relative; - text-align: center; - vertical-align: middle; - overflow: hidden; -} -.v-avatar .v-icon, -.v-avatar .v-image, -.v-avatar .v-responsive__content, -.v-avatar img, -.v-avatar svg { - border-radius: inherit; - display: inline-flex; - height: inherit; - width: inherit; -} -.v-list-item-group .v-list-item--active { - color: inherit; -} -.v-item-group { - flex: 0 1 auto; - position: relative; - max-width: 100%; - transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); -} -.v-menu { - display: none; -} -.v-menu--attached { - display: inline; -} -.v-menu__content { - position: absolute; - display: inline-block; - max-width: 80%; - overflow-y: auto; - overflow-x: hidden; - contain: content; - will-change: transform; - box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), - 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); - border-radius: 4px; -} -.v-menu__content--active { - pointer-events: none; -} -.v-menu__content--auto .v-list-item { - transition-property: transform, opacity; - transition-duration: 0.3s; - transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1); -} -.v-menu__content--fixed { - position: fixed; -} -.v-menu__content > .card { - contain: content; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} -.v-menu > .v-menu__content { - max-width: none; -} -.v-menu-transition-enter .v-list-item { - min-width: 0; - pointer-events: none; -} -.v-menu-transition-enter-to .v-list-item { - transition-delay: 0.1s; -} -.v-menu-transition-leave-active, -.v-menu-transition-leave-to { - pointer-events: none; -} -.v-menu-transition-enter, -.v-menu-transition-leave-to { - opacity: 0; -} -.v-menu-transition-enter-active, -.v-menu-transition-leave-active { - transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); -} -.v-menu-transition-enter.v-menu__content--auto { - transition: none !important; -} -.v-menu-transition-enter.v-menu__content--auto .v-list-item { - opacity: 0; - transform: translateY(-15px); -} -.v-menu-transition-enter.v-menu__content--auto .v-list-item--active { - opacity: 1; - transform: none !important; - pointer-events: auto; -} -.v-textarea textarea { - align-self: stretch; - flex: 1 1 auto; - line-height: 1.75rem; - max-width: 100%; - min-height: 32px; - outline: none; - padding: 0; - width: 100%; -} -.v-textarea .v-text-field__prefix, -.v-textarea .v-text-field__suffix { - padding-top: 2px; - align-self: start; -} -.v-textarea.v-text-field--box .v-text-field__prefix, -.v-textarea.v-text-field--box textarea, -.v-textarea.v-text-field--enclosed .v-text-field__prefix, -.v-textarea.v-text-field--enclosed textarea { - margin-top: 24px; -} -.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) - .v-text-field__prefix, -.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) - .v-text-field__suffix, -.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) - textarea, -.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) - .v-text-field__prefix, -.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) - .v-text-field__suffix, -.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) - textarea, -.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) - .v-text-field__prefix, -.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) - .v-text-field__suffix, -.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) - textarea, -.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) - .v-text-field__prefix, -.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) - .v-text-field__suffix, -.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) - textarea { - margin-top: 10px; -} -.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) - .v-label, -.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) - .v-label, -.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) - .v-label, -.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) - .v-label { - top: 18px; -} -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense - .v-text-field__prefix, -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense - .v-text-field__suffix, -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense textarea, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense - .v-text-field__prefix, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense - .v-text-field__suffix, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense textarea, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - .v-text-field__prefix, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - .v-text-field__suffix, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - textarea, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - .v-text-field__prefix, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - .v-text-field__suffix, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - textarea { - margin-top: 6px; -} -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense - .v-input__append-inner, -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense - .v-input__append-outer, -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense - .v-input__prepend-inner, -.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense - .v-input__prepend-outer, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense - .v-input__append-inner, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense - .v-input__append-outer, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense - .v-input__prepend-inner, -.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense - .v-input__prepend-outer, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - .v-input__append-inner, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - .v-input__append-outer, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - .v-input__prepend-inner, -.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense - .v-input__prepend-outer, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - .v-input__append-inner, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - .v-input__append-outer, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - .v-input__prepend-inner, -.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense - .v-input__prepend-outer { - align-self: flex-start; - margin-top: 8px; -} -.v-textarea.v-text-field--solo { - align-items: flex-start; -} -.v-textarea.v-text-field--solo .v-input__append-inner, -.v-textarea.v-text-field--solo .v-input__append-outer, -.v-textarea.v-text-field--solo .v-input__prepend-inner, -.v-textarea.v-text-field--solo .v-input__prepend-outer { - align-self: flex-start; - margin-top: 12px; -} -.v-application--is-ltr .v-textarea.v-text-field--solo .v-input__append-inner { - padding-left: 12px; -} -.v-application--is-rtl .v-textarea.v-text-field--solo .v-input__append-inner { - padding-right: 12px; -} -.v-textarea--auto-grow textarea { - overflow: hidden; -} -.v-textarea--no-resize textarea { - resize: none; -} -.v-textarea.v-text-field--enclosed .v-text-field__slot { - align-self: stretch; -} -.v-application--is-ltr .v-textarea.v-text-field--enclosed .v-text-field__slot { - margin-right: -12px; -} -.v-application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot { - margin-left: -12px; -} -.v-application--is-ltr - .v-textarea.v-text-field--enclosed - .v-text-field__slot - textarea { - padding-right: 12px; -} -.v-application--is-rtl - .v-textarea.v-text-field--enclosed - .v-text-field__slot - textarea { - padding-left: 12px; -} -.theme--light.v-file-input .v-file-input__text { - color: rgba(0, 0, 0, 0.87); -} -.theme--light.v-file-input .v-file-input__text--placeholder { - color: rgba(0, 0, 0, 0.6); -} -.theme--light.v-file-input.v-input--is-disabled .v-file-input__text, -.theme--light.v-file-input.v-input--is-disabled - .v-file-input__text - .v-file-input__text--placeholder { - color: rgba(0, 0, 0, 0.38); -} -.theme--dark.v-file-input .v-file-input__text { - color: #fff; -} -.theme--dark.v-file-input .v-file-input__text--placeholder { - color: hsla(0, 0%, 100%, 0.7); -} -.theme--dark.v-file-input.v-input--is-disabled .v-file-input__text, -.theme--dark.v-file-input.v-input--is-disabled - .v-file-input__text - .v-file-input__text--placeholder { - color: hsla(0, 0%, 100%, 0.5); -} -.v-file-input input[type="file"] { - left: 0; - opacity: 0; - pointer-events: none; - position: absolute; - max-width: 0; - width: 0; -} -.v-file-input .v-file-input__text { - align-items: center; - align-self: stretch; - display: flex; - flex-wrap: wrap; - width: 100%; -} -.v-file-input .v-file-input__text.v-file-input__text--chips { - flex-wrap: wrap; -} -.v-file-input .v-file-input__text .v-chip { - margin: 4px; -} -.v-file-input .v-text-field__slot { - min-height: 32px; -} -.v-file-input.v-input--dense .v-text-field__slot { - min-height: 26px; -} -.v-file-input.v-text-field--filled:not(.v-text-field--single-line) - .v-file-input__text { - padding-top: 22px; -} -.v-file-input.v-text-field--outlined .v-text-field__slot { - padding: 6px 0; -} -.v-file-input.v-text-field--outlined.v-input--dense .v-text-field__slot { - padding: 3px 0; -} diff --git a/mealie/web/favicon.ico b/mealie/web/favicon.ico deleted file mode 100644 index df36fcfb7258..000000000000 Binary files a/mealie/web/favicon.ico and /dev/null differ diff --git a/mealie/web/index.html b/mealie/web/index.html deleted file mode 100644 index 91d2f3d113c8..000000000000 --- a/mealie/web/index.html +++ /dev/null @@ -1 +0,0 @@ -frontend
\ No newline at end of file diff --git a/mealie/web/js/app.b457c0af.js b/mealie/web/js/app.b457c0af.js deleted file mode 100644 index d96aad303832..000000000000 --- a/mealie/web/js/app.b457c0af.js +++ /dev/null @@ -1,1873 +0,0 @@ -(function (e) { - function t(t) { - for ( - var n, s, c = t[0], o = t[1], l = t[2], d = 0, p = []; - d < c.length; - d++ - ) - (s = c[d]), - Object.prototype.hasOwnProperty.call(i, s) && i[s] && p.push(i[s][0]), - (i[s] = 0); - for (n in o) Object.prototype.hasOwnProperty.call(o, n) && (e[n] = o[n]); - u && u(t); - while (p.length) p.shift()(); - return r.push.apply(r, l || []), a(); - } - function a() { - for (var e, t = 0; t < r.length; t++) { - for (var a = r[t], n = !0, c = 1; c < a.length; c++) { - var o = a[c]; - 0 !== i[o] && (n = !1); - } - n && (r.splice(t--, 1), (e = s((s.s = a[0])))); - } - return e; - } - var n = {}, - i = { app: 0 }, - r = []; - function s(t) { - if (n[t]) return n[t].exports; - var a = (n[t] = { i: t, l: !1, exports: {} }); - return e[t].call(a.exports, a, a.exports, s), (a.l = !0), a.exports; - } - (s.m = e), - (s.c = n), - (s.d = function (e, t, a) { - s.o(e, t) || Object.defineProperty(e, t, { enumerable: !0, get: a }); - }), - (s.r = function (e) { - "undefined" !== typeof Symbol && - Symbol.toStringTag && - Object.defineProperty(e, Symbol.toStringTag, { value: "Module" }), - Object.defineProperty(e, "__esModule", { value: !0 }); - }), - (s.t = function (e, t) { - if ((1 & t && (e = s(e)), 8 & t)) return e; - if (4 & t && "object" === typeof e && e && e.__esModule) return e; - var a = Object.create(null); - if ( - (s.r(a), - Object.defineProperty(a, "default", { enumerable: !0, value: e }), - 2 & t && "string" != typeof e) - ) - for (var n in e) - s.d( - a, - n, - function (t) { - return e[t]; - }.bind(null, n) - ); - return a; - }), - (s.n = function (e) { - var t = - e && e.__esModule - ? function () { - return e["default"]; - } - : function () { - return e; - }; - return s.d(t, "a", t), t; - }), - (s.o = function (e, t) { - return Object.prototype.hasOwnProperty.call(e, t); - }), - (s.p = "/static/"); - var c = (window["webpackJsonp"] = window["webpackJsonp"] || []), - o = c.push.bind(c); - (c.push = t), (c = c.slice()); - for (var l = 0; l < c.length; l++) t(c[l]); - var u = o; - r.push([0, "chunk-vendors"]), a(); -})({ - 0: function (e, t, a) { - e.exports = a("56d7"); - }, - "0d48": function (e, t, a) { - "use strict"; - a("1e26"); - }, - "1e26": function (e, t, a) {}, - "56d7": function (e, t, a) { - "use strict"; - a.r(t); - a("4de4"), a("fb6a"), a("e260"), a("e6cf"), a("cca6"), a("a79d"); - var n = a("2b0e"), - i = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "v-app", - [ - a( - "v-app-bar", - { - attrs: { - dense: "", - app: "", - color: "primary darken-3", - dark: "", - }, - }, - [ - a("router-link", { attrs: { to: "/" } }), - a( - "div", - { staticClass: "d-flex align-center" }, - [ - a( - "v-icon", - { - attrs: { size: "40" }, - on: { - click: function (t) { - return e.$router.push("/"); - }, - }, - }, - [e._v(" mdi-food-variant")] - ), - ], - 1 - ), - a( - "div", - { staticClass: "pl-2" }, - [ - a( - "v-toolbar-title", - { - on: { - click: function (t) { - return e.$router.push("/"); - }, - }, - }, - [e._v("Mealie")] - ), - ], - 1 - ), - a("v-spacer"), - ], - 1 - ), - a( - "v-main", - [a("v-container", [a("AddRecipe"), a("router-view")], 1)], - 1 - ), - ], - 1 - ); - }, - r = [], - s = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "div", - { staticClass: "text-center" }, - [ - a( - "v-dialog", - { - attrs: { width: "650" }, - model: { - value: e.addRecipe, - callback: function (t) { - e.addRecipe = t; - }, - expression: "addRecipe", - }, - }, - [ - a( - "v-card", - { attrs: { loading: e.processing } }, - [ - a("v-card-title", { staticClass: "headline" }, [ - e._v(" From URL "), - ]), - a( - "v-card-text", - [ - a( - "v-form", - [ - a("v-text-field", { - attrs: { label: "Recipe URL" }, - model: { - value: e.recipeURL, - callback: function (t) { - e.recipeURL = t; - }, - expression: "recipeURL", - }, - }), - ], - 1 - ), - ], - 1 - ), - a("v-divider"), - a( - "v-card-actions", - [ - a("v-spacer"), - a( - "v-btn", - { - attrs: { color: "primary", text: "" }, - on: { click: e.createRecipe }, - }, - [e._v(" Submit ")] - ), - ], - 1 - ), - ], - 1 - ), - ], - 1 - ), - a( - "v-speed-dial", - { - attrs: { - fixed: "", - right: "", - bottom: "", - "open-on-hover": "", - }, - scopedSlots: e._u([ - { - key: "activator", - fn: function () { - return [ - a( - "v-btn", - { - attrs: { - color: "primary darken-2", - dark: "", - fab: "", - }, - on: { click: e.navCreate }, - model: { - value: e.fab, - callback: function (t) { - e.fab = t; - }, - expression: "fab", - }, - }, - [a("v-icon", [e._v(" mdi-plus ")])], - 1 - ), - ]; - }, - proxy: !0, - }, - ]), - model: { - value: e.fab, - callback: function (t) { - e.fab = t; - }, - expression: "fab", - }, - }, - [ - a( - "v-btn", - { - attrs: { fab: "", dark: "", small: "", color: "green" }, - on: { - click: function (t) { - e.addRecipe = !0; - }, - }, - }, - [a("v-icon", [e._v("mdi-link")])], - 1 - ), - ], - 1 - ), - ], - 1 - ); - }, - c = [], - o = (a("96cf"), a("1da1")), - l = a("bc3a"), - u = a.n(l), - d = "/api/recipe/create-url/", - p = { - data: function () { - return { fab: !1, addRecipe: !1, recipeURL: "", processing: !1 }; - }, - methods: { - createRecipe: function () { - var e = this; - return Object(o["a"])( - regeneratorRuntime.mark(function t() { - var a, n, i; - return regeneratorRuntime.wrap(function (t) { - while (1) - switch ((t.prev = t.next)) { - case 0: - return ( - (e.processing = !0), - (a = { url: e.recipeURL }), - (t.next = 4), - u.a.post(d, a) - ); - case 4: - (n = t.sent), - (i = n.data), - (e.addRecipe = !1), - (e.processing = !1), - e.$store.commit("setRenderRecipes", !0), - e.$router.push("/recipe/".concat(i)); - case 10: - case "end": - return t.stop(); - } - }, t); - }) - )(); - }, - navCreate: function () { - this.$router.push("/new"); - }, - }, - }, - v = p, - f = a("2877"), - m = a("6544"), - h = a.n(m), - g = a("8336"), - b = a("b0af"), - _ = a("99d9"), - x = a("169a"), - R = a("ce7e"), - k = a("4bd4"), - C = a("132d"), - V = a("2fa4"), - w = a("c73b"), - y = a("8654"), - S = Object(f["a"])(v, s, c, !1, null, null, null), - j = S.exports; - h()(S, { - VBtn: g["a"], - VCard: b["a"], - VCardActions: _["a"], - VCardText: _["b"], - VCardTitle: _["c"], - VDialog: x["a"], - VDivider: R["a"], - VForm: k["a"], - VIcon: C["a"], - VSpacer: V["a"], - VSpeedDial: w["a"], - VTextField: y["a"], - }); - var I = { - name: "App", - components: { AddRecipe: j }, - data: function () { - return {}; - }, - computed: { - showRecipe: function () { - return this.$store.getters.getShowRecipe; - }, - }, - }, - D = I, - $ = a("7496"), - O = a("40dc"), - E = a("a523"), - A = a("f6c4"), - T = a("2a7f"), - U = Object(f["a"])(D, i, r, !1, null, null, null), - F = U.exports; - h()(U, { - VApp: $["a"], - VAppBar: O["a"], - VContainer: E["a"], - VIcon: C["a"], - VMain: A["a"], - VSpacer: V["a"], - VToolbarTitle: T["a"], - }); - var L = a("f309"); - n["a"].use(L["a"]); - var M = new L["a"]({}), - N = a("2f62"); - n["a"].use(N["a"]); - var P = new N["a"].Store({ - state: { - renderRecipes: !1, - showRecipe: !1, - activeRecipe: "String", - saveRecipe: !1, - }, - mutations: { - setRenderRecipes: function (e, t) { - e.renderRecipes = t; - }, - setShowRecipe: function (e, t) { - e.showRecipe = t; - }, - setSaveRecipe: function (e, t) { - (e.saveRecipe = t), console.log(e.saveRecipe); - }, - setActiveRecipe: function (e, t) { - e.activeRecipe = t; - }, - }, - getters: { - getRenderRecipes: function (e) { - return e.renderRecipes; - }, - getShowRecipe: function (e) { - return e.showRecipe; - }, - getActiveRecipe: function (e) { - return e.activeRecipe; - }, - getSaveRecipe: function (e) { - return e.saveRecipe; - }, - }, - }), - B = a("8c4f"), - J = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "div", - [ - a("h2", [e._v("Meal Plan")]), - a("v-divider"), - a("h2", [e._v("Recently Added")]), - a("v-divider"), - a("AllRecipes"), - ], - 1 - ); - }, - H = [], - K = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "v-row", - e._l(e.recipes, function (t) { - return a( - "v-col", - { key: t.name, attrs: { cols: "3" } }, - [ - a("v-hover", { - attrs: { "open-delay": 50 }, - scopedSlots: e._u( - [ - { - key: "default", - fn: function (n) { - var i = n.hover; - return [ - a( - "v-card", - { - staticClass: "card-container", - class: { "on-hover": i }, - attrs: { elevation: i ? 12 : 2, height: "400" }, - on: { - click: function (a) { - return e.moreInfo(t.slug); - }, - }, - }, - [ - a("v-img", { - attrs: { - height: "200", - src: e.getImage(t.image), - }, - }), - a("v-card-title", [e._v(e._s(t.name))]), - a("v-card-text", [ - e._v( - " " + - e._s( - e._f("truncate")( - t.description, - 125, - "..." - ) - ) + - " " - ), - ]), - ], - 1 - ), - ]; - }, - }, - ], - null, - !0 - ), - }), - ], - 1 - ); - }), - 1 - ); - }, - q = [], - Y = { - data: function () { - return { recipes: [] }; - }, - mounted: function () { - this.getRecipes(); - }, - computed: { - reRender: function () { - return this.$store.getters.getRenderRecipes; - }, - }, - watch: { - reRender: function () { - this.getRecipes(); - }, - }, - methods: { - getRecipes: function () { - var e = this; - return Object(o["a"])( - regeneratorRuntime.mark(function t() { - var a, n, i; - return regeneratorRuntime.wrap(function (t) { - while (1) - switch ((t.prev = t.next)) { - case 0: - return ( - (a = { - keys: [ - "name", - "slug", - "image", - "description", - "dateAdded", - ], - }), - (t.next = 3), - u.a.post("/api/all-recipes", a) - ); - case 3: - (n = t.sent), - (i = n.data), - i.sort(function (e, t) { - return e.dateAdded > t.dateAdded ? -1 : 1; - }), - (e.recipes = i), - e.$store.commit("setRenderRecipes", !1); - case 8: - case "end": - return t.stop(); - } - }, t); - }) - )(); - }, - getImage: function (e) { - var t = "/api/recipe/image/".concat(e); - return t; - }, - moreInfo: function (e) { - this.$router.push("recipe/".concat(e)); - }, - }, - }, - z = Y, - G = a("62ad"), - Q = a("ce87"), - W = a("adda"), - X = a("0fd9"), - Z = Object(f["a"])(z, K, q, !1, null, "18bea6e4", null), - ee = Z.exports; - h()(Z, { - VCard: b["a"], - VCardText: _["b"], - VCardTitle: _["c"], - VCol: G["a"], - VHover: Q["a"], - VImg: W["a"], - VRow: X["a"], - }); - var te = { - components: { AllRecipes: ee }, - mounted: function () { - console.log("http://localhost:8000"); - }, - }, - ae = te, - ne = Object(f["a"])(ae, J, H, !1, null, null, null), - ie = ne.exports; - h()(ne, { VDivider: R["a"] }); - var re = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "v-card", - [ - a("v-img", { - attrs: { - "max-height": "400", - src: e.getImage(e.recipeDetails.image), - }, - }), - a("v-toolbar", { - staticClass: "card-btn", - attrs: { flat: "", height: "0", "extension-height": "0" }, - scopedSlots: e._u([ - { - key: "extension", - fn: function () { - return [ - a("v-col"), - e.showIcons - ? a( - "div", - [ - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - dark: "", - small: "", - color: "red", - }, - on: { click: e.deleteRecipe }, - }, - [a("v-icon", [e._v("mdi-delete")])], - 1 - ), - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - dark: "", - small: "", - color: "green", - }, - on: { click: e.saveRecipe }, - }, - [a("v-icon", [e._v("mdi-content-save")])], - 1 - ), - a( - "v-btn", - { - staticClass: "mr-5", - attrs: { - fab: "", - dark: "", - small: "", - color: "secondary", - }, - on: { - click: function (t) { - e.jsonEditor = !0; - }, - }, - }, - [a("v-icon", [e._v("mdi-code-braces")])], - 1 - ), - ], - 1 - ) - : e._e(), - a( - "v-btn", - { - attrs: { - color: "primary", - fab: "", - dark: "", - small: "", - }, - on: { click: e.showForm }, - }, - [a("v-icon", [e._v("mdi-square-edit-outline")])], - 1 - ), - ]; - }, - proxy: !0, - }, - ]), - }), - e.form - ? e.showJsonEditor - ? a("VJsoneditor", { - staticClass: "mt-10", - attrs: { height: "1500px", options: e.jsonEditorOptions }, - model: { - value: e.recipeDetails, - callback: function (t) { - e.recipeDetails = t; - }, - expression: "recipeDetails", - }, - }) - : a("EditRecipe", { - model: { - value: e.recipeDetails, - callback: function (t) { - e.recipeDetails = t; - }, - expression: "recipeDetails", - }, - }) - : a("ViewRecipe", { - attrs: { - name: e.recipeDetails.name, - ingredients: e.recipeDetails.recipeIngredient, - description: e.recipeDetails.description, - instructions: e.recipeDetails.recipeInstructions, - tags: e.recipeDetails.tags, - categories: e.recipeDetails.categories, - notes: e.recipeDetails.notes, - }, - }), - ], - 1 - ); - }, - se = [], - ce = a("bcb2"), - oe = a.n(ce), - le = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "div", - [ - a("v-card-title", { staticClass: "headline" }, [ - e._v(" " + e._s(e.name) + " "), - ]), - a( - "v-card-text", - [ - e._v(" " + e._s(e.description) + " "), - a("div", { staticClass: "my-2" }), - a( - "v-row", - [ - a( - "v-col", - { attrs: { cols: "4" } }, - [ - a("h2", { staticClass: "mb-4" }, [e._v("Ingredients")]), - e._l(e.ingredients, function (e) { - return a( - "div", - { key: e }, - [ - a("v-checkbox", { - staticClass: "ingredients", - attrs: { "hide-details": "", label: e }, - }), - ], - 1 - ); - }), - e.categories[0] - ? a( - "div", - [ - a("h2", { staticClass: "mt-4" }, [ - e._v("Categories"), - ]), - e._l(e.categories, function (t) { - return a( - "v-chip", - { - key: t, - staticClass: "ma-1", - attrs: { color: "primary", dark: "" }, - }, - [e._v(" " + e._s(t) + " ")] - ); - }), - ], - 2 - ) - : e._e(), - e.tags[0] - ? a( - "div", - [ - a("h2", { staticClass: "mt-4" }, [ - e._v("Tags"), - ]), - e._l(e.tags, function (t) { - return a( - "v-chip", - { - key: t, - staticClass: "ma-1", - attrs: { color: "primary", dark: "" }, - }, - [e._v(" " + e._s(t) + " ")] - ); - }), - ], - 2 - ) - : e._e(), - e.notes[0] - ? a("h2", { staticClass: "my-4" }, [e._v("Notes")]) - : e._e(), - e._l(e.notes, function (t, n) { - return a( - "v-card", - { key: n, staticClass: "mt-1" }, - [ - a("v-card-title", [e._v(" " + e._s(t.title))]), - a("v-card-text", [ - e._v(" " + e._s(t.text) + " "), - ]), - ], - 1 - ); - }), - ], - 2 - ), - a("v-divider", { attrs: { vertical: !0 } }), - a( - "v-col", - [ - a("h2", { staticClass: "mb-4" }, [ - e._v("Instructions"), - ]), - e._l(e.instructions, function (t, n) { - return a( - "div", - { key: t.text }, - [ - a("v-hover", { - scopedSlots: e._u( - [ - { - key: "default", - fn: function (i) { - var r = i.hover; - return [ - a( - "v-card", - { - staticClass: "ma-1", - class: [ - { "on-hover": r }, - e.isDisabled(n), - ], - attrs: { elevation: r ? 12 : 2 }, - on: { - click: function (t) { - return e.toggleDisabled(n); - }, - }, - }, - [ - a("v-card-title", [ - e._v("Step: " + e._s(n + 1)), - ]), - a("v-card-text", [ - e._v(e._s(t.text)), - ]), - ], - 1 - ), - ]; - }, - }, - ], - null, - !0 - ), - }), - ], - 1 - ); - }), - ], - 2 - ), - ], - 1 - ), - ], - 1 - ), - ], - 1 - ); - }, - ue = [], - de = - (a("caad"), - a("c975"), - a("a434"), - a("2532"), - { - props: { - name: String, - description: String, - ingredients: Array, - instructions: Array, - categories: Array, - tags: Array, - notes: Array, - }, - data: function () { - return { disabledSteps: [] }; - }, - methods: { - toggleDisabled: function (e) { - if (this.disabledSteps.includes(e)) { - var t = this.disabledSteps.indexOf(e); - -1 !== t && this.disabledSteps.splice(t, 1); - } else this.disabledSteps.push(e); - }, - isDisabled: function (e) { - return this.disabledSteps.includes(e) ? "disabled-card" : void 0; - }, - }, - }), - pe = de, - ve = a("ac7c"), - fe = a("cc20"), - me = Object(f["a"])(pe, le, ue, !1, null, null, null), - he = me.exports; - h()(me, { - VCard: b["a"], - VCardText: _["b"], - VCardTitle: _["c"], - VCheckbox: ve["a"], - VChip: fe["a"], - VCol: G["a"], - VDivider: R["a"], - VHover: Q["a"], - VRow: X["a"], - }); - var ge = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "div", - [ - a( - "v-card-text", - [ - a("v-text-field", { - staticClass: "my-3", - attrs: { label: "Recipe Name" }, - model: { - value: e.value.name, - callback: function (t) { - e.$set(e.value, "name", t); - }, - expression: "value.name", - }, - }), - a("v-textarea", { - attrs: { height: "100", label: "Description" }, - model: { - value: e.value.description, - callback: function (t) { - e.$set(e.value, "description", t); - }, - expression: "value.description", - }, - }), - a("div", { staticClass: "my-2" }), - a( - "v-row", - [ - a( - "v-col", - { attrs: { cols: "4" } }, - [ - a("h2", { staticClass: "mb-4" }, [e._v("Ingredients")]), - e._l(e.value.recipeIngredient, function (t, n) { - return a( - "div", - { key: e.generateKey("ingredient", n) }, - [ - a( - "v-row", - { attrs: { align: "center" } }, - [ - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - "x-small": "", - color: "red", - elevation: "1", - }, - on: { - click: function (t) { - return e.removeIngredient(n); - }, - }, - }, - [ - a( - "v-icon", - { attrs: { color: "white" } }, - [e._v("mdi-delete")] - ), - ], - 1 - ), - a("v-text-field", { - attrs: { label: "Ingredient" }, - model: { - value: e.value.recipeIngredient[n], - callback: function (t) { - e.$set(e.value.recipeIngredient, n, t); - }, - expression: - "value.recipeIngredient[index]", - }, - }), - ], - 1 - ), - ], - 1 - ); - }), - a( - "v-btn", - { - attrs: { - color: "primary", - fab: "", - dark: "", - small: "", - }, - on: { click: e.addIngredient }, - }, - [a("v-icon", [e._v("mdi-plus")])], - 1 - ), - a("h2", { staticClass: "mt-6" }, [e._v("Categories")]), - a("v-combobox", { - attrs: { - dense: "", - multiple: "", - chips: "", - "item-color": "primary", - "deletable-chips": "", - }, - scopedSlots: e._u([ - { - key: "selection", - fn: function (t) { - return [ - a( - "v-chip", - { - attrs: { - "input-value": t.selected, - close: "", - color: "primary", - dark: "", - }, - }, - [e._v(" " + e._s(t.item) + " ")] - ), - ]; - }, - }, - ]), - model: { - value: e.value.categories, - callback: function (t) { - e.$set(e.value, "categories", t); - }, - expression: "value.categories", - }, - }), - a("h2", { staticClass: "mt-4" }, [e._v("Tags")]), - a("v-combobox", { - attrs: { - dense: "", - multiple: "", - chips: "", - "deletable-chips": "", - }, - scopedSlots: e._u([ - { - key: "selection", - fn: function (t) { - return [ - a( - "v-chip", - { - attrs: { - "input-value": t.selected, - close: "", - color: "primary", - dark: "", - }, - }, - [e._v(" " + e._s(t.item) + " ")] - ), - ]; - }, - }, - ]), - model: { - value: e.value.tags, - callback: function (t) { - e.$set(e.value, "tags", t); - }, - expression: "value.tags", - }, - }), - a("h2", { staticClass: "my-4" }, [e._v("Notes")]), - e._l(e.value.notes, function (t, n) { - return a( - "v-card", - { - key: e.generateKey("note", n), - staticClass: "mt-1", - }, - [ - a( - "v-card-text", - [ - a( - "v-row", - { attrs: { align: "center" } }, - [ - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - "x-small": "", - color: "red", - elevation: "1", - }, - on: { - click: function (t) { - return e.removeNote(n); - }, - }, - }, - [ - a( - "v-icon", - { attrs: { color: "white" } }, - [e._v("mdi-delete")] - ), - ], - 1 - ), - a("v-text-field", { - attrs: { label: "Title" }, - model: { - value: e.value.notes[n]["title"], - callback: function (t) { - e.$set( - e.value.notes[n], - "title", - t - ); - }, - expression: - "value.notes[index]['title']", - }, - }), - ], - 1 - ), - a("v-textarea", { - attrs: { label: "Note" }, - model: { - value: e.value.notes[n]["text"], - callback: function (t) { - e.$set(e.value.notes[n], "text", t); - }, - expression: "value.notes[index]['text']", - }, - }), - ], - 1 - ), - ], - 1 - ); - }), - a( - "v-btn", - { - staticClass: "mt-1", - attrs: { - color: "primary", - fab: "", - dark: "", - small: "", - }, - on: { click: e.addNote }, - }, - [a("v-icon", [e._v("mdi-plus")])], - 1 - ), - ], - 2 - ), - a("v-divider", { attrs: { vertical: !0 } }), - a( - "v-col", - [ - a("h2", { staticClass: "mb-4" }, [ - e._v("Instructions"), - ]), - e._l(e.value.recipeInstructions, function (t, n) { - return a( - "div", - { key: n }, - [ - a("v-hover", { - scopedSlots: e._u( - [ - { - key: "default", - fn: function (t) { - var i = t.hover; - return [ - a( - "v-card", - { - staticClass: "ma-1", - class: [{ "on-hover": i }], - attrs: { elevation: i ? 12 : 2 }, - }, - [ - a( - "v-card-title", - [ - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - "x-small": "", - color: "red", - elevation: "1", - }, - on: { - click: function (t) { - return e.removeStep( - n - ); - }, - }, - }, - [ - a( - "v-icon", - { - attrs: { - color: "white", - }, - }, - [e._v("mdi-delete")] - ), - ], - 1 - ), - e._v("Step: " + e._s(n + 1)), - ], - 1 - ), - a( - "v-card-text", - [ - a("v-textarea", { - key: e.generateKey( - "instructions", - n - ), - attrs: { dense: "" }, - model: { - value: - e.value - .recipeInstructions[ - n - ]["text"], - callback: function (t) { - e.$set( - e.value - .recipeInstructions[ - n - ], - "text", - t - ); - }, - expression: - "value.recipeInstructions[index]['text']", - }, - }), - ], - 1 - ), - ], - 1 - ), - ]; - }, - }, - ], - null, - !0 - ), - }), - ], - 1 - ); - }), - a( - "v-btn", - { - attrs: { - color: "primary", - fab: "", - dark: "", - small: "", - }, - on: { click: e.addStep }, - }, - [a("v-icon", [e._v("mdi-plus")])], - 1 - ), - ], - 2 - ), - ], - 1 - ), - ], - 1 - ), - ], - 1 - ); - }, - be = [], - _e = - (a("99af"), - { - props: { value: Object }, - data: function () { - return { - content: this.value, - disabledSteps: [], - description: String, - ingredients: Array, - instructions: Array, - categories: Array, - tags: Array, - }; - }, - methods: { - toggleDisabled: function (e) { - if (this.disabledSteps.includes(e)) { - var t = this.disabledSteps.indexOf(e); - -1 !== t && this.disabledSteps.splice(t, 1); - } else this.disabledSteps.push(e); - }, - isDisabled: function (e) { - return this.disabledSteps.includes(e) ? "disabled-card" : void 0; - }, - generateKey: function (e, t) { - var a = "".concat(e, "-").concat(t); - return a; - }, - deleteRecipe: function () { - this.$emit("delete"); - }, - addIngredient: function () { - var e = this.value.recipeIngredient; - e.push(""); - }, - removeIngredient: function (e) { - this.value.recipeIngredient.splice(e, 1); - }, - addStep: function () { - var e = this.value.recipeInstructions; - e.push({ text: "" }); - }, - removeStep: function (e) { - this.value.recipeInstructions.splice(e, 1); - }, - addNote: function () { - var e = this.value.notes; - e.push({ text: "" }); - }, - removeNote: function (e) { - this.value.notes.splice(e, 1); - }, - }, - }), - xe = _e, - Re = (a("c619"), a("2b5d")), - ke = a("a844"), - Ce = Object(f["a"])(xe, ge, be, !1, null, null, null), - Ve = Ce.exports; - h()(Ce, { - VBtn: g["a"], - VCard: b["a"], - VCardText: _["b"], - VCardTitle: _["c"], - VChip: fe["a"], - VCol: G["a"], - VCombobox: Re["a"], - VDivider: R["a"], - VHover: Q["a"], - VIcon: C["a"], - VRow: X["a"], - VTextField: y["a"], - VTextarea: ke["a"], - }); - var we = "/api/recipe/", - ye = { - components: { VJsoneditor: oe.a, ViewRecipe: he, EditRecipe: Ve }, - data: function () { - return { - UrlName: this.$route.params.recipe, - form: !1, - jsonEditor: !1, - jsonEditorOptions: { mode: "code", search: !1, mainMenuBar: !1 }, - recipeDetails: { - name: "", - description: "", - image: "", - recipeYield: "", - recipeIngredient: [], - recipeInstructions: [], - slug: "", - filePath: "", - url: "", - tags: [], - categories: [], - dateAdded: "", - notes: [], - }, - }; - }, - mounted: function () { - this.getRecipeDetails(); - }, - computed: { - showRecipe: function () { - return this.$store.getters.getShowRecipe; - }, - showIcons: function () { - return this.form; - }, - showJsonEditor: function () { - return !!((!0 === this.form) & (!0 === this.jsonEditor)); - }, - }, - methods: { - getRecipeDetails: function () { - var e = this; - return Object(o["a"])( - regeneratorRuntime.mark(function t() { - var a, n; - return regeneratorRuntime.wrap(function (t) { - while (1) - switch ((t.prev = t.next)) { - case 0: - return (a = we + e.UrlName), (t.next = 3), u.a.get(a); - case 3: - (n = t.sent), (e.recipeDetails = n.data), (e.form = !1); - case 6: - case "end": - return t.stop(); - } - }, t); - }) - )(); - }, - getImage: function (e) { - if (0 != e) { - var t = "/api/recipe/image/".concat(e); - return t; - } - }, - close: function () { - this.$store.commit("setShowRecipe", !1); - }, - deleteRecipe: function () { - var e = "/api/recipe/".concat(this.recipeDetails.slug, "/delete"); - u.a.delete(e), (this.form = !1), this.$router.push("/"); - }, - saveRecipe: function () { - var e = this.recipeDetails.slug, - t = "/api/recipe/".concat(e, "/update"); - u.a.post(t, this.recipeDetails), - this.$store.commit("setSaveRecipe", !1), - (this.form = !1); - }, - showForm: function () { - (this.form = !0), (this.jsonEditor = !1); - }, - }, - }, - Se = ye, - je = (a("0d48"), a("71d9")), - Ie = Object(f["a"])(Se, re, se, !1, null, null, null), - De = Ie.exports; - h()(Ie, { - VBtn: g["a"], - VCard: b["a"], - VCol: G["a"], - VIcon: C["a"], - VImg: W["a"], - VToolbar: je["a"], - }); - var $e = function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a( - "v-card", - [ - e.image - ? a("v-img", { attrs: { height: "400", src: e.image } }) - : a("br"), - a("ButtonRow", { - on: { - json: function (t) { - e.jsonEditor = !0; - }, - editor: function (t) { - e.jsonEditor = !1; - }, - save: e.createRecipe, - }, - }), - a( - "v-row", - [ - a("v-col", { attrs: { cols: "3" } }), - a( - "v-col", - [ - a("v-file-input", { - attrs: { label: "Image File", "truncate-length": "30" }, - on: { change: e.onFileChange }, - model: { - value: e.fileObject, - callback: function (t) { - e.fileObject = t; - }, - expression: "fileObject", - }, - }), - ], - 1 - ), - a("v-col", { attrs: { cols: "3" } }), - ], - 1 - ), - e.jsonEditor - ? a("VJsoneditor", { - attrs: { height: "1500px", options: e.jsonEditorOptions }, - model: { - value: e.recipeDetails, - callback: function (t) { - e.recipeDetails = t; - }, - expression: "recipeDetails", - }, - }) - : a("EditRecipe", { - model: { - value: e.recipeDetails, - callback: function (t) { - e.recipeDetails = t; - }, - expression: "recipeDetails", - }, - }), - ], - 1 - ); - }, - Oe = [], - Ee = - (a("d3b7"), - a("3ca3"), - a("ddb0"), - a("2b3d"), - function () { - var e = this, - t = e.$createElement, - a = e._self._c || t; - return a("v-toolbar", { - staticClass: "card-btn", - attrs: { flat: "", height: "0", "extension-height": "0" }, - scopedSlots: e._u([ - { - key: "extension", - fn: function () { - return [ - a("v-col"), - e.open - ? a( - "div", - [ - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - dark: "", - small: "", - color: "red", - }, - on: { click: e.deleteRecipe }, - }, - [a("v-icon", [e._v("mdi-delete")])], - 1 - ), - a( - "v-btn", - { - staticClass: "mr-2", - attrs: { - fab: "", - dark: "", - small: "", - color: "green", - }, - on: { click: e.save }, - }, - [a("v-icon", [e._v("mdi-content-save")])], - 1 - ), - a( - "v-btn", - { - staticClass: "mr-5", - attrs: { - fab: "", - dark: "", - small: "", - color: "secondary", - }, - on: { click: e.json }, - }, - [a("v-icon", [e._v("mdi-code-braces")])], - 1 - ), - ], - 1 - ) - : e._e(), - a( - "v-btn", - { - attrs: { - color: "primary", - fab: "", - dark: "", - small: "", - }, - on: { click: e.editor }, - }, - [a("v-icon", [e._v("mdi-square-edit-outline")])], - 1 - ), - ]; - }, - proxy: !0, - }, - ]), - }); - }), - Ae = [], - Te = { - props: { open: { default: !0 } }, - methods: { - editor: function () { - this.$emit("editor"); - }, - save: function () { - this.$emit("save"); - }, - deleteRecipe: function () { - this.$emit("delete"); - }, - json: function () { - this.$emit("json"); - }, - }, - }, - Ue = Te, - Fe = Object(f["a"])(Ue, Ee, Ae, !1, null, null, null), - Le = Fe.exports; - h()(Fe, { VBtn: g["a"], VCol: G["a"], VIcon: C["a"], VToolbar: je["a"] }); - var Me = "/api/recipe/create/", - Ne = { - components: { VJsoneditor: oe.a, EditRecipe: Ve, ButtonRow: Le }, - data: function () { - return { - fileObject: null, - image: null, - jsonEditor: !1, - jsonEditorOptions: { mode: "code", search: !1, mainMenuBar: !1 }, - recipeDetails: { - name: "", - description: "", - image: "", - recipeYield: "", - recipeIngredient: [], - recipeInstructions: [], - slug: "", - filePath: "", - tags: [], - categories: [], - dateAdded: "", - notes: [], - }, - }; - }, - watch: { - image: function () { - console.log(this.image); - }, - }, - methods: { - onFileChange: function () { - this.image = URL.createObjectURL(this.fileObject); - }, - createRecipe: function () { - var e = this; - return Object(o["a"])( - regeneratorRuntime.mark(function t() { - var a; - return regeneratorRuntime.wrap(function (t) { - while (1) - switch ((t.prev = t.next)) { - case 0: - return ( - console.log(e.recipeDetails), - (t.next = 3), - u.a.post(Me, e.recipeDetails) - ); - case 3: - (a = t.sent), - e.$router.push("/recipe/".concat(a.data)), - console.log(a); - case 6: - case "end": - return t.stop(); - } - }, t); - }) - )(); - }, - }, - }, - Pe = Ne, - Be = (a("eb65"), a("23a7")), - Je = Object(f["a"])(Pe, $e, Oe, !1, null, null, null), - He = Je.exports; - h()(Je, { - VCard: b["a"], - VCol: G["a"], - VFileInput: Be["a"], - VImg: W["a"], - VRow: X["a"], - }); - var Ke = [ - { path: "/", component: ie }, - { path: "/mealie", component: ie }, - { path: "/recipe/:recipe", component: De }, - { path: "/new/", component: He }, - ]; - (n["a"].config.productionTip = !1), n["a"].use(B["a"]); - var qe = new B["a"]({ routes: Ke, mode: "history" }); - new n["a"]({ - vuetify: M, - store: P, - router: qe, - render: function (e) { - return e(F); - }, - }).$mount("#app"); - var Ye = function (e, t, a) { - a = a || "..."; - var n = document.createElement("div"); - n.innerHTML = e; - var i = n.textContent; - return i.length > t ? i.slice(0, t) + a : i; - }; - n["a"].filter("truncate", Ye); - }, - "7b75": function (e, t, a) {}, - "8c85": function (e, t, a) {}, - c619: function (e, t, a) { - "use strict"; - a("8c85"); - }, - eb65: function (e, t, a) { - "use strict"; - a("7b75"); - }, -}); -//# sourceMappingURL=app.b457c0af.js.map diff --git a/mealie/web/js/app.b457c0af.js.map b/mealie/web/js/app.b457c0af.js.map deleted file mode 100644 index c0f1482708e9..000000000000 --- a/mealie/web/js/app.b457c0af.js.map +++ /dev/null @@ -1,356 +0,0 @@ -{ - "version": 3, - "sources": [ - "webpack:///webpack/bootstrap", - "webpack:///./src/components/Recipe.vue?b8d5", - "webpack:///./src/App.vue?a9d8", - "webpack:///./src/components/AddRecipe.vue?31c7", - "webpack:///src/components/AddRecipe.vue", - "webpack:///./src/components/AddRecipe.vue?5963", - "webpack:///./src/components/AddRecipe.vue", - "webpack:///src/App.vue", - "webpack:///./src/App.vue?3359", - "webpack:///./src/App.vue", - "webpack:///./src/plugins/vuetify.js", - "webpack:///./src/store/store.js", - "webpack:///./src/components/Home.vue?696d", - "webpack:///./src/components/AllRecipes.vue?ec29", - "webpack:///src/components/AllRecipes.vue", - "webpack:///./src/components/AllRecipes.vue?7f2b", - "webpack:///./src/components/AllRecipes.vue", - "webpack:///src/components/Home.vue", - "webpack:///./src/components/Home.vue?aea6", - "webpack:///./src/components/Home.vue", - "webpack:///./src/components/Recipe.vue?ee65", - "webpack:///./src/components/RecipeEditor/ViewRecipe.vue?9419", - "webpack:///src/components/RecipeEditor/ViewRecipe.vue", - "webpack:///./src/components/RecipeEditor/ViewRecipe.vue?742b", - "webpack:///./src/components/RecipeEditor/ViewRecipe.vue", - "webpack:///./src/components/RecipeEditor/EditRecipe.vue?c0e2", - "webpack:///src/components/RecipeEditor/EditRecipe.vue", - "webpack:///./src/components/RecipeEditor/EditRecipe.vue?1e72", - "webpack:///./src/components/RecipeEditor/EditRecipe.vue?272b", - "webpack:///src/components/Recipe.vue", - "webpack:///./src/components/Recipe.vue?b7fc", - "webpack:///./src/components/Recipe.vue?c555", - "webpack:///./src/components/NewRecipe.vue?5480", - "webpack:///./src/components/UI/ButtonRow.vue?5789", - "webpack:///src/components/UI/ButtonRow.vue", - "webpack:///./src/components/UI/ButtonRow.vue?61d2", - "webpack:///./src/components/UI/ButtonRow.vue", - "webpack:///src/components/NewRecipe.vue", - "webpack:///./src/components/NewRecipe.vue?8d45", - "webpack:///./src/components/NewRecipe.vue?d35b", - "webpack:///./src/routes.js", - "webpack:///./src/main.js", - "webpack:///./src/components/RecipeEditor/EditRecipe.vue?dbc9", - "webpack:///./src/components/NewRecipe.vue?358d" - ], - "names": [ - "webpackJsonpCallback", - "data", - "moduleId", - "chunkId", - "chunkIds", - "moreModules", - "executeModules", - "i", - "resolves", - "length", - "Object", - "prototype", - "hasOwnProperty", - "call", - "installedChunks", - "push", - "modules", - "parentJsonpFunction", - "shift", - "deferredModules", - "apply", - "checkDeferredModules", - "result", - "deferredModule", - "fulfilled", - "j", - "depId", - "splice", - "__webpack_require__", - "s", - "installedModules", - "exports", - "module", - "l", - "m", - "c", - "d", - "name", - "getter", - "o", - "defineProperty", - "enumerable", - "get", - "r", - "Symbol", - "toStringTag", - "value", - "t", - "mode", - "__esModule", - "ns", - "create", - "key", - "bind", - "n", - "object", - "property", - "p", - "jsonpArray", - "window", - "oldJsonpFunction", - "slice", - "_vm", - "this", - "_h", - "$createElement", - "_c", - "_self", - "attrs", - "staticClass", - "on", - "$event", - "$router", - "_v", - "staticRenderFns", - "model", - "callback", - "$$v", - "addRecipe", - "expression", - "processing", - "recipeURL", - "createRecipe", - "scopedSlots", - "_u", - "fn", - "navCreate", - "fab", - "proxy", - "methods", - "component", - "VBtn", - "VCard", - "VCardActions", - "VCardText", - "VCardTitle", - "VDialog", - "VDivider", - "VForm", - "VIcon", - "VSpacer", - "VSpeedDial", - "VTextField", - "components", - "AddRecipe", - "computed", - "showRecipe", - "$store", - "getters", - "getShowRecipe", - "VApp", - "VAppBar", - "VContainer", - "VMain", - "VToolbarTitle", - "VToolbar", - "Vue", - "use", - "Vuetify", - "Vuex", - "Store", - "state", - "renderRecipes", - "activeRecipe", - "saveRecipe", - "mutations", - "setRenderRecipes", - "payload", - "setShowRecipe", - "setSaveRecipe", - "console", - "log", - "setActiveRecipe", - "getRenderRecipes", - "getActiveRecipe", - "getSaveRecipe", - "_l", - "recipe", - "ref", - "hover", - "class", - "moreInfo", - "slug", - "getImage", - "image", - "_s", - "_f", - "description", - "mounted", - "getRecipes", - "reRender", - "watch", - "image_url", - "VCol", - "VHover", - "VImg", - "VRow", - "AllRecipes", - "recipeDetails", - "deleteRecipe", - "jsonEditor", - "_e", - "showForm", - "form", - "jsonEditorOptions", - "recipeIngredient", - "recipeInstructions", - "tags", - "categories", - "notes", - "ingredient", - "category", - "tag", - "note", - "index", - "title", - "text", - "step", - "isDisabled", - "toggleDisabled", - "props", - "String", - "ingredients", - "Array", - "instructions", - "disabledSteps", - "includes", - "stepIndex", - "VCheckbox", - "VChip", - "$set", - "generateKey", - "removeIngredient", - "addIngredient", - "selected", - "item", - "removeNote", - "addNote", - "removeStep", - "addStep", - "content", - "uniqueKey", - "$emit", - "list", - "VCombobox", - "VTextarea", - "VJsoneditor", - "ViewRecipe", - "EditRecipe", - "UrlName", - "$route", - "params", - "search", - "mainMenuBar", - "recipeYield", - "filePath", - "url", - "dateAdded", - "getRecipeDetails", - "showIcons", - "showJsonEditor", - "close", - "commit", - "onFileChange", - "fileObject", - "save", - "json", - "editor", - "open", - "default", - "ButtonRow", - "URL", - "createObjectURL", - "VFileInput", - "routes", - "path", - "Home", - "Recipe", - "NewRecipe", - "config", - "productionTip", - "VueRouter", - "router", - "vuetify", - "store", - "render", - "h", - "App", - "$mount", - "filter", - "clamp", - "node", - "document", - "createElement", - "innerHTML", - "textContent" - ], - "mappings": "aACE,SAASA,EAAqBC,GAQ7B,IAPA,IAMIC,EAAUC,EANVC,EAAWH,EAAK,GAChBI,EAAcJ,EAAK,GACnBK,EAAiBL,EAAK,GAIHM,EAAI,EAAGC,EAAW,GACpCD,EAAIH,EAASK,OAAQF,IACzBJ,EAAUC,EAASG,GAChBG,OAAOC,UAAUC,eAAeC,KAAKC,EAAiBX,IAAYW,EAAgBX,IACpFK,EAASO,KAAKD,EAAgBX,GAAS,IAExCW,EAAgBX,GAAW,EAE5B,IAAID,KAAYG,EACZK,OAAOC,UAAUC,eAAeC,KAAKR,EAAaH,KACpDc,EAAQd,GAAYG,EAAYH,IAG/Be,GAAqBA,EAAoBhB,GAE5C,MAAMO,EAASC,OACdD,EAASU,OAATV,GAOD,OAHAW,EAAgBJ,KAAKK,MAAMD,EAAiBb,GAAkB,IAGvDe,IAER,SAASA,IAER,IADA,IAAIC,EACIf,EAAI,EAAGA,EAAIY,EAAgBV,OAAQF,IAAK,CAG/C,IAFA,IAAIgB,EAAiBJ,EAAgBZ,GACjCiB,GAAY,EACRC,EAAI,EAAGA,EAAIF,EAAed,OAAQgB,IAAK,CAC9C,IAAIC,EAAQH,EAAeE,GACG,IAA3BX,EAAgBY,KAAcF,GAAY,GAE3CA,IACFL,EAAgBQ,OAAOpB,IAAK,GAC5Be,EAASM,EAAoBA,EAAoBC,EAAIN,EAAe,KAItE,OAAOD,EAIR,IAAIQ,EAAmB,GAKnBhB,EAAkB,CACrB,IAAO,GAGJK,EAAkB,GAGtB,SAASS,EAAoB1B,GAG5B,GAAG4B,EAAiB5B,GACnB,OAAO4B,EAAiB5B,GAAU6B,QAGnC,IAAIC,EAASF,EAAiB5B,GAAY,CACzCK,EAAGL,EACH+B,GAAG,EACHF,QAAS,IAUV,OANAf,EAAQd,GAAUW,KAAKmB,EAAOD,QAASC,EAAQA,EAAOD,QAASH,GAG/DI,EAAOC,GAAI,EAGJD,EAAOD,QAKfH,EAAoBM,EAAIlB,EAGxBY,EAAoBO,EAAIL,EAGxBF,EAAoBQ,EAAI,SAASL,EAASM,EAAMC,GAC3CV,EAAoBW,EAAER,EAASM,IAClC3B,OAAO8B,eAAeT,EAASM,EAAM,CAAEI,YAAY,EAAMC,IAAKJ,KAKhEV,EAAoBe,EAAI,SAASZ,GACX,qBAAXa,QAA0BA,OAAOC,aAC1CnC,OAAO8B,eAAeT,EAASa,OAAOC,YAAa,CAAEC,MAAO,WAE7DpC,OAAO8B,eAAeT,EAAS,aAAc,CAAEe,OAAO,KAQvDlB,EAAoBmB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQlB,EAAoBkB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,kBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKxC,OAAOyC,OAAO,MAGvB,GAFAvB,EAAoBe,EAAEO,GACtBxC,OAAO8B,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOlB,EAAoBQ,EAAEc,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRtB,EAAoB0B,EAAI,SAAStB,GAChC,IAAIM,EAASN,GAAUA,EAAOiB,WAC7B,WAAwB,OAAOjB,EAAO,YACtC,WAA8B,OAAOA,GAEtC,OADAJ,EAAoBQ,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRV,EAAoBW,EAAI,SAASgB,EAAQC,GAAY,OAAO9C,OAAOC,UAAUC,eAAeC,KAAK0C,EAAQC,IAGzG5B,EAAoB6B,EAAI,WAExB,IAAIC,EAAaC,OAAO,gBAAkBA,OAAO,iBAAmB,GAChEC,EAAmBF,EAAW3C,KAAKsC,KAAKK,GAC5CA,EAAW3C,KAAOf,EAClB0D,EAAaA,EAAWG,QACxB,IAAI,IAAItD,EAAI,EAAGA,EAAImD,EAAWjD,OAAQF,IAAKP,EAAqB0D,EAAWnD,IAC3E,IAAIU,EAAsB2C,EAI1BzC,EAAgBJ,KAAK,CAAC,EAAE,kBAEjBM,K,6ECvJT,W,gJCAI,EAAS,WAAa,IAAIyC,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,QAAQ,CAACA,EAAG,YAAY,CAACE,MAAM,CAAC,MAAQ,GAAG,IAAM,GAAG,MAAQ,kBAAkB,KAAO,KAAK,CAACF,EAAG,cAAc,CAACE,MAAM,CAAC,GAAK,OAAOF,EAAG,MAAM,CAACG,YAAY,uBAAuB,CAACH,EAAG,SAAS,CAACE,MAAM,CAAC,KAAO,MAAME,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAIU,QAAQzD,KAAK,QAAQ,CAAC+C,EAAIW,GAAG,wBAAwB,GAAGP,EAAG,MAAM,CAACG,YAAY,QAAQ,CAACH,EAAG,kBAAkB,CAACI,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAIU,QAAQzD,KAAK,QAAQ,CAAC+C,EAAIW,GAAG,aAAa,GAAGP,EAAG,aAAa,GAAGA,EAAG,SAAS,CAACA,EAAG,cAAc,CAACA,EAAG,aAAaA,EAAG,gBAAgB,IAAI,IAAI,IACrnBQ,EAAkB,GCDlB,EAAS,WAAa,IAAIZ,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAACG,YAAY,eAAe,CAACH,EAAG,WAAW,CAACE,MAAM,CAAC,MAAQ,OAAOO,MAAM,CAAC7B,MAAOgB,EAAa,UAAEc,SAAS,SAAUC,GAAMf,EAAIgB,UAAUD,GAAKE,WAAW,cAAc,CAACb,EAAG,SAAS,CAACE,MAAM,CAAC,QAAUN,EAAIkB,aAAa,CAACd,EAAG,eAAe,CAACG,YAAY,YAAY,CAACP,EAAIW,GAAG,gBAAgBP,EAAG,cAAc,CAACA,EAAG,SAAS,CAACA,EAAG,eAAe,CAACE,MAAM,CAAC,MAAQ,cAAcO,MAAM,CAAC7B,MAAOgB,EAAa,UAAEc,SAAS,SAAUC,GAAMf,EAAImB,UAAUJ,GAAKE,WAAW,gBAAgB,IAAI,GAAGb,EAAG,aAAaA,EAAG,iBAAiB,CAACA,EAAG,YAAYA,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,UAAU,KAAO,IAAIE,GAAG,CAAC,MAAQR,EAAIoB,eAAe,CAACpB,EAAIW,GAAG,eAAe,IAAI,IAAI,GAAGP,EAAG,eAAe,CAACE,MAAM,CAAC,MAAQ,GAAG,MAAQ,GAAG,OAAS,GAAG,gBAAgB,IAAIe,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,YAAYiC,GAAG,WAAW,MAAO,CAACnB,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,kBAAkB,KAAO,GAAG,IAAM,IAAIE,GAAG,CAAC,MAAQR,EAAIwB,WAAWX,MAAM,CAAC7B,MAAOgB,EAAO,IAAEc,SAAS,SAAUC,GAAMf,EAAIyB,IAAIV,GAAKE,WAAW,QAAQ,CAACb,EAAG,SAAS,CAACJ,EAAIW,GAAG,iBAAiB,KAAKe,OAAM,KAAQb,MAAM,CAAC7B,MAAOgB,EAAO,IAAEc,SAAS,SAAUC,GAAMf,EAAIyB,IAAIV,GAAKE,WAAW,QAAQ,CAACb,EAAG,QAAQ,CAACE,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,SAASE,GAAG,CAAC,MAAQ,SAASC,GAAQT,EAAIgB,WAAY,KAAQ,CAACZ,EAAG,SAAS,CAACJ,EAAIW,GAAG,eAAe,IAAI,IAAI,IACh0C,EAAkB,G,6CCwCtB,4BAEA,GACExE,KADF,WAEI,MAAO,CACLsF,KAAK,EACLT,WAAW,EACXG,UAAW,GACXD,YAAY,IAGhBS,QAAS,CACP,aADJ,WACA,yKACA,gBACA,oBAFA,SAGA,cAHA,OAGA,EAHA,OAIA,SACA,eACA,gBACA,uCACA,qCARA,+CAUIH,UAXJ,WAYMvB,KAAKS,QAAQzD,KAAK,WChE2T,I,yJCO/U2E,EAAY,eACd,EACA,EACA,GACA,EACA,KACA,KACA,MAIa,EAAAA,EAAiB,QAgBhC,IAAkBA,EAAW,CAACC,OAAA,KAAKC,QAAA,KAAMC,aAAA,OAAaC,UAAA,OAAUC,WAAA,OAAWC,UAAA,KAAQC,WAAA,KAASC,QAAA,KAAMC,QAAA,KAAMC,UAAA,KAAQC,aAAA,KAAWC,aAAA,OCT3H,OACEjE,KAAM,MAENkE,WAAY,CAEVC,UAAJ,GAIEvG,KAAM,WAAR,UAEEwG,SAAU,CACRC,WADJ,WAEM,OAAO3C,KAAK4C,OAAOC,QAAQC,iBCtC6R,I,4DCO1T,EAAY,eACd,EACA,EACAnC,GACA,EACA,KACA,KACA,MAIa,IAAiB,QAWhC,IAAkB,EAAW,CAACoC,OAAA,KAAKC,UAAA,KAAQC,aAAA,KAAWb,QAAA,KAAMc,QAAA,KAAMb,UAAA,KAAQc,cAAAC,EAAA,O,gBC1B1EC,OAAIC,IAAIC,QAEO,UAAIA,OAAQ,I,YCF3BF,OAAIC,IAAIE,QAEO,UAAIA,OAAKC,MAAM,CAC5BC,MAAO,CACLC,eAAe,EACfhB,YAAY,EACZiB,aAAc,SACdC,YAAY,GAEdC,UAAW,CACTC,iBADS,SACQL,EAAOM,GACtBN,EAAMC,cAAgBK,GAExBC,cAJS,SAIKP,EAAOM,GACnBN,EAAMf,WAAaqB,GAErBE,cAPS,SAOKR,EAAOM,GACnBN,EAAMG,WAAaG,EACnBG,QAAQC,IAAIV,EAAMG,aAEpBQ,gBAXS,SAWOX,EAAOM,GACrBN,EAAME,aAAeI,IAGzBnB,QAAS,CACPyB,iBAAkB,SAACZ,GAAD,OAAWA,EAAMC,eACnCb,cAAe,SAACY,GAAD,OAAWA,EAAMf,YAChC4B,gBAAiB,SAACb,GAAD,OAAWA,EAAME,cAClCY,cAAe,SAACd,GAAD,OAAWA,EAAMG,e,YC/BhC,EAAS,WAAa,IAAI9D,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAACA,EAAG,KAAK,CAACJ,EAAIW,GAAG,eAAeP,EAAG,aAAaA,EAAG,KAAK,CAACJ,EAAIW,GAAG,oBAAoBP,EAAG,aAAaA,EAAG,eAAe,IAC3N,EAAkB,GCDlB,EAAS,WAAa,IAAIJ,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,QAAQJ,EAAI0E,GAAI1E,EAAW,SAAE,SAAS2E,GAAQ,OAAOvE,EAAG,QAAQ,CAACd,IAAIqF,EAAOpG,KAAK+B,MAAM,CAAC,KAAO,MAAM,CAACF,EAAG,UAAU,CAACE,MAAM,CAAC,aAAa,IAAIe,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,UAAUiC,GAAG,SAASqD,GAC9R,IAAIC,EAAQD,EAAIC,MAChB,MAAO,CAACzE,EAAG,SAAS,CAACG,YAAY,iBAAiBuE,MAAM,CAAE,WAAYD,GAAQvE,MAAM,CAAC,UAAYuE,EAAQ,GAAK,EAAE,OAAS,OAAOrE,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAI+E,SAASJ,EAAOK,SAAS,CAAC5E,EAAG,QAAQ,CAACE,MAAM,CAAC,OAAS,MAAM,IAAMN,EAAIiF,SAASN,EAAOO,UAAU9E,EAAG,eAAe,CAACJ,EAAIW,GAAGX,EAAImF,GAAGR,EAAOpG,SAAS6B,EAAG,cAAc,CAACJ,EAAIW,GAAG,IAAIX,EAAImF,GAAGnF,EAAIoF,GAAG,WAAPpF,CAAmB2E,EAAOU,YAAY,IAAK,QAAQ,QAAQ,OAAO,MAAK,MAAS,MAAK,IAC9a,EAAkB,GCsBtB,GACElJ,KAAM,WAAR,OACA,aAEEmJ,QAJF,WAKIrF,KAAKsF,cAEP5C,SAAU,CACR6C,SADJ,WAEM,OAAOvF,KAAK4C,OAAOC,QAAQyB,mBAG/BkB,MAAO,CACLD,SAAU,WACRvF,KAAKsF,eAGT5D,QAAS,CACP,WADJ,WACA,yKACA,GACA,wDAFA,SAIA,+BAJA,OAIA,EAJA,OAKA,SACA,6DACA,YACA,uCARA,8CAUIsD,SAXJ,SAWA,GACM,IAAN,iCACM,OAAOS,GAETX,SAfJ,SAeA,GACM9E,KAAKS,QAAQzD,KAAK,UAAxB,cC1DoV,I,gDCOhV,EAAY,eACd,EACA,EACA,GACA,EACA,KACA,WACA,MAIa,KAAiB,QAWhC,IAAkB,EAAW,CAAC6E,QAAA,KAAME,UAAA,OAAUC,WAAA,OAAW0D,OAAA,KAAKC,SAAA,KAAOC,OAAA,KAAKC,OAAA,OCf1E,QACErD,WAAY,CACVsD,WAAJ,IAEET,QAJF,WAKIlB,QAAQC,IAAI,2BCnB8T,MCO1U,GAAY,eACd,GACA,EACA,GACA,EACA,KACA,KACA,MAIa,MAAiB,QAKhC,IAAkB,GAAW,CAAClC,WAAA,OCvB9B,IAAI,GAAS,WAAa,IAAInC,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,SAAS,CAACA,EAAG,QAAQ,CAACE,MAAM,CAAC,aAAa,MAAM,IAAMN,EAAIiF,SAASjF,EAAIgG,cAAcd,UAAU9E,EAAG,YAAY,CAACG,YAAY,WAAWD,MAAM,CAAC,KAAO,GAAG,OAAS,IAAI,mBAAmB,KAAKe,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,YAAYiC,GAAG,WAAW,MAAO,CAACnB,EAAG,SAAUJ,EAAa,UAAEI,EAAG,MAAM,CAACA,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,OAAOE,GAAG,CAAC,MAAQR,EAAIiG,eAAe,CAAC7F,EAAG,SAAS,CAACJ,EAAIW,GAAG,iBAAiB,GAAGP,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,SAASE,GAAG,CAAC,MAAQR,EAAI8D,aAAa,CAAC1D,EAAG,SAAS,CAACJ,EAAIW,GAAG,uBAAuB,GAAGP,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,aAAaE,GAAG,CAAC,MAAQ,SAASC,GAAQT,EAAIkG,YAAa,KAAQ,CAAC9F,EAAG,SAAS,CAACJ,EAAIW,GAAG,sBAAsB,IAAI,GAAGX,EAAImG,KAAK/F,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,SAAS,IAAM,GAAG,KAAO,GAAG,MAAQ,IAAIE,GAAG,CAAC,MAAQR,EAAIoG,WAAW,CAAChG,EAAG,SAAS,CAACJ,EAAIW,GAAG,8BAA8B,KAAKe,OAAM,OAAY1B,EAAIqG,KAAyTrG,EAAkB,eAAEI,EAAG,cAAc,CAACG,YAAY,QAAQD,MAAM,CAAC,OAAS,SAAS,QAAUN,EAAIsG,mBAAmBzF,MAAM,CAAC7B,MAAOgB,EAAiB,cAAEc,SAAS,SAAUC,GAAMf,EAAIgG,cAAcjF,GAAKE,WAAW,mBAAmBb,EAAG,aAAa,CAACS,MAAM,CAAC7B,MAAOgB,EAAiB,cAAEc,SAAS,SAAUC,GAAMf,EAAIgG,cAAcjF,GAAKE,WAAW,mBAAnoBb,EAAG,aAAa,CAACE,MAAM,CAAC,KAAON,EAAIgG,cAAczH,KAAK,YAAcyB,EAAIgG,cAAcO,iBAAiB,YAAcvG,EAAIgG,cAAcX,YAAY,aAAerF,EAAIgG,cAAcQ,mBAAmB,KAAOxG,EAAIgG,cAAcS,KAAK,WAAazG,EAAIgG,cAAcU,WAAW,MAAQ1G,EAAIgG,cAAcW,UAA8W,IAC3sD,GAAkB,G,wBCDlB,GAAS,WAAa,IAAI3G,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAACA,EAAG,eAAe,CAACG,YAAY,YAAY,CAACP,EAAIW,GAAG,IAAIX,EAAImF,GAAGnF,EAAIzB,MAAM,OAAO6B,EAAG,cAAc,CAACJ,EAAIW,GAAG,IAAIX,EAAImF,GAAGnF,EAAIqF,aAAa,KAAKjF,EAAG,MAAM,CAACG,YAAY,SAASH,EAAG,QAAQ,CAACA,EAAG,QAAQ,CAACE,MAAM,CAAC,KAAO,MAAM,CAACF,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,iBAAiBX,EAAI0E,GAAI1E,EAAe,aAAE,SAAS4G,GAAY,OAAOxG,EAAG,MAAM,CAACd,IAAIsH,GAAY,CAACxG,EAAG,aAAa,CAACG,YAAY,cAAcD,MAAM,CAAC,eAAe,GAAG,MAAQsG,MAAe,MAAM5G,EAAI0G,WAAW,GAAItG,EAAG,MAAM,CAACA,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,gBAAgBX,EAAI0E,GAAI1E,EAAc,YAAE,SAAS6G,GAAU,OAAOzG,EAAG,SAAS,CAACd,IAAIuH,EAAStG,YAAY,OAAOD,MAAM,CAAC,MAAQ,SAAS,KAAO,KAAK,CAACN,EAAIW,GAAG,IAAIX,EAAImF,GAAG0B,GAAU,WAAU,GAAG7G,EAAImG,KAAMnG,EAAIyG,KAAK,GAAIrG,EAAG,MAAM,CAACA,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,UAAUX,EAAI0E,GAAI1E,EAAQ,MAAE,SAAS8G,GAAK,OAAO1G,EAAG,SAAS,CAACd,IAAIwH,EAAIvG,YAAY,OAAOD,MAAM,CAAC,MAAQ,SAAS,KAAO,KAAK,CAACN,EAAIW,GAAG,IAAIX,EAAImF,GAAG2B,GAAK,WAAU,GAAG9G,EAAImG,KAAMnG,EAAI2G,MAAM,GAAIvG,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,WAAWX,EAAImG,KAAKnG,EAAI0E,GAAI1E,EAAS,OAAE,SAAS+G,EAAKC,GAAO,OAAO5G,EAAG,SAAS,CAACd,IAAI0H,EAAMzG,YAAY,QAAQ,CAACH,EAAG,eAAe,CAACJ,EAAIW,GAAG,IAAIX,EAAImF,GAAG4B,EAAKE,UAAU7G,EAAG,cAAc,CAACJ,EAAIW,GAAG,IAAIX,EAAImF,GAAG4B,EAAKG,MAAM,QAAQ,OAAM,GAAG9G,EAAG,YAAY,CAACE,MAAM,CAAC,UAAW,KAAQF,EAAG,QAAQ,CAACA,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,kBAAkBX,EAAI0E,GAAI1E,EAAgB,cAAE,SAASmH,EAAKH,GAAO,OAAO5G,EAAG,MAAM,CAACd,IAAI6H,EAAKD,MAAM,CAAC9G,EAAG,UAAU,CAACiB,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,UAAUiC,GAAG,SAASqD,GACviD,IAAIC,EAAQD,EAAIC,MAChB,MAAO,CAACzE,EAAG,SAAS,CAACG,YAAY,OAAOuE,MAAM,CAAC,CAAE,WAAYD,GAAS7E,EAAIoH,WAAWJ,IAAQ1G,MAAM,CAAC,UAAYuE,EAAQ,GAAK,GAAGrE,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAIqH,eAAeL,MAAU,CAAC5G,EAAG,eAAe,CAACJ,EAAIW,GAAG,SAASX,EAAImF,GAAG6B,EAAQ,MAAM5G,EAAG,cAAc,CAACJ,EAAIW,GAAGX,EAAImF,GAAGgC,EAAKD,UAAU,OAAO,MAAK,MAAS,OAAM,IAAI,IAAI,IAAI,IAC5U,GAAkB,GCwEtB,I,wCAAA,CACEI,MAAO,CACL/I,KAAMgJ,OACNlC,YAAakC,OACbC,YAAaC,MACbC,aAAcD,MACdf,WAAYe,MACZhB,KAAMgB,MACNd,MAAOc,OAETtL,KAVF,WAWI,MAAO,CACLwL,cAAe,KAGnBhG,QAAS,CACP0F,eADJ,SACA,GACM,GAAIpH,KAAK0H,cAAcC,SAASC,GAAY,CAC1C,IAAR,iCACuB,IAAXb,GACF/G,KAAK0H,cAAc9J,OAAOmJ,EAAO,QAGnC/G,KAAK0H,cAAc1K,KAAK4K,IAG5BT,WAXJ,SAWA,GACM,OAAInH,KAAK0H,cAAcC,SAASC,GACvB,qBAEP,MCzG2V,M,0BCO/V,GAAY,eACd,GACA,GACA,IACA,EACA,KACA,KACA,MAIa,MAAiB,QAahC,IAAkB,GAAW,CAAC/F,QAAA,KAAME,UAAA,OAAUC,WAAA,OAAW6F,aAAA,KAAUC,SAAA,KAAMpC,OAAA,KAAKxD,WAAA,KAASyD,SAAA,KAAOE,OAAA,OC/B9F,IAAI,GAAS,WAAa,IAAI9F,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,MAAM,CAACA,EAAG,cAAc,CAACA,EAAG,eAAe,CAACG,YAAY,OAAOD,MAAM,CAAC,MAAQ,eAAeO,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAU,KAAE8B,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAO,OAAQ+B,IAAME,WAAW,gBAAgBb,EAAG,aAAa,CAACE,MAAM,CAAC,OAAS,MAAM,MAAQ,eAAeO,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAiB,YAAE8B,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAO,cAAe+B,IAAME,WAAW,uBAAuBb,EAAG,MAAM,CAACG,YAAY,SAASH,EAAG,QAAQ,CAACA,EAAG,QAAQ,CAACE,MAAM,CAAC,KAAO,MAAM,CAACF,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,iBAAiBX,EAAI0E,GAAI1E,EAAIhB,MAAsB,kBAAE,SAAS4H,EAAWI,GAAO,OAAO5G,EAAG,MAAM,CAACd,IAAIU,EAAIiI,YAAY,aAAcjB,IAAQ,CAAC5G,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,WAAW,CAACF,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,UAAU,GAAG,MAAQ,MAAM,UAAY,KAAKE,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAIkI,iBAAiBlB,MAAU,CAAC5G,EAAG,SAAS,CAACE,MAAM,CAAC,MAAQ,UAAU,CAACN,EAAIW,GAAG,iBAAiB,GAAGP,EAAG,eAAe,CAACE,MAAM,CAAC,MAAQ,cAAcO,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAMuH,iBAAiBS,GAAQlG,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAMuH,iBAAkBS,EAAOjG,IAAME,WAAW,oCAAoC,IAAI,MAAKb,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,SAAS,IAAM,GAAG,KAAO,GAAG,MAAQ,IAAIE,GAAG,CAAC,MAAQR,EAAImI,gBAAgB,CAAC/H,EAAG,SAAS,CAACJ,EAAIW,GAAG,eAAe,GAAGP,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,gBAAgBP,EAAG,aAAa,CAACE,MAAM,CAAC,MAAQ,GAAG,SAAW,GAAG,MAAQ,GAAG,aAAa,SAAS,kBAAkB,IAAIe,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,YAAYiC,GAAG,SAASpF,GAAM,MAAO,CAACiE,EAAG,SAAS,CAACE,MAAM,CAAC,cAAcnE,EAAKiM,SAAS,MAAQ,GAAG,MAAQ,SAAS,KAAO,KAAK,CAACpI,EAAIW,GAAG,IAAIX,EAAImF,GAAGhJ,EAAKkM,MAAM,YAAYxH,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAgB,WAAE8B,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAO,aAAc+B,IAAME,WAAW,sBAAsBb,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,UAAUP,EAAG,aAAa,CAACE,MAAM,CAAC,MAAQ,GAAG,SAAW,GAAG,MAAQ,GAAG,kBAAkB,IAAIe,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,YAAYiC,GAAG,SAASpF,GAAM,MAAO,CAACiE,EAAG,SAAS,CAACE,MAAM,CAAC,cAAcnE,EAAKiM,SAAS,MAAQ,GAAG,MAAQ,SAAS,KAAO,KAAK,CAACpI,EAAIW,GAAG,IAAIX,EAAImF,GAAGhJ,EAAKkM,MAAM,YAAYxH,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAU,KAAE8B,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAO,OAAQ+B,IAAME,WAAW,gBAAgBb,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,WAAWX,EAAI0E,GAAI1E,EAAIhB,MAAW,OAAE,SAAS+H,EAAKC,GAAO,OAAO5G,EAAG,SAAS,CAACd,IAAIU,EAAIiI,YAAY,OAAQjB,GAAOzG,YAAY,QAAQ,CAACH,EAAG,cAAc,CAACA,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,WAAW,CAACF,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,UAAU,GAAG,MAAQ,MAAM,UAAY,KAAKE,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAIsI,WAAWtB,MAAU,CAAC5G,EAAG,SAAS,CAACE,MAAM,CAAC,MAAQ,UAAU,CAACN,EAAIW,GAAG,iBAAiB,GAAGP,EAAG,eAAe,CAACE,MAAM,CAAC,MAAQ,SAASO,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAM2H,MAAMK,GAAO,SAAUlG,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAM2H,MAAMK,GAAQ,QAASjG,IAAME,WAAW,kCAAkC,GAAGb,EAAG,aAAa,CAACE,MAAM,CAAC,MAAQ,QAAQO,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAM2H,MAAMK,GAAO,QAASlG,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAM2H,MAAMK,GAAQ,OAAQjG,IAAME,WAAW,iCAAiC,IAAI,MAAKb,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,MAAQ,SAAS,IAAM,GAAG,KAAO,GAAG,MAAQ,IAAIE,GAAG,CAAC,MAAQR,EAAIuI,UAAU,CAACnI,EAAG,SAAS,CAACJ,EAAIW,GAAG,eAAe,IAAI,GAAGP,EAAG,YAAY,CAACE,MAAM,CAAC,UAAW,KAAQF,EAAG,QAAQ,CAACA,EAAG,KAAK,CAACG,YAAY,QAAQ,CAACP,EAAIW,GAAG,kBAAkBX,EAAI0E,GAAI1E,EAAIhB,MAAwB,oBAAE,SAASmI,EAAKH,GAAO,OAAO5G,EAAG,MAAM,CAACd,IAAI0H,GAAO,CAAC5G,EAAG,UAAU,CAACiB,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,UAAUiC,GAAG,SAASqD,GACzgH,IAAIC,EAAQD,EAAIC,MAChB,MAAO,CAACzE,EAAG,SAAS,CAACG,YAAY,OAAOuE,MAAM,CAAC,CAAE,WAAYD,IAASvE,MAAM,CAAC,UAAYuE,EAAQ,GAAK,IAAI,CAACzE,EAAG,eAAe,CAACA,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,UAAU,GAAG,MAAQ,MAAM,UAAY,KAAKE,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOT,EAAIwI,WAAWxB,MAAU,CAAC5G,EAAG,SAAS,CAACE,MAAM,CAAC,MAAQ,UAAU,CAACN,EAAIW,GAAG,iBAAiB,GAAGX,EAAIW,GAAG,SAASX,EAAImF,GAAG6B,EAAQ,KAAK,GAAG5G,EAAG,cAAc,CAACA,EAAG,aAAa,CAACd,IAAIU,EAAIiI,YAAY,eAAgBjB,GAAO1G,MAAM,CAAC,MAAQ,IAAIO,MAAM,CAAC7B,MAAOgB,EAAIhB,MAAMwH,mBAAmBQ,GAAO,QAASlG,SAAS,SAAUC,GAAMf,EAAIgI,KAAKhI,EAAIhB,MAAMwH,mBAAmBQ,GAAQ,OAAQjG,IAAME,WAAW,8CAA8C,IAAI,OAAO,MAAK,MAAS,MAAKb,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,SAAS,IAAM,GAAG,KAAO,GAAG,MAAQ,IAAIE,GAAG,CAAC,MAAQR,EAAIyI,UAAU,CAACrI,EAAG,SAAS,CAACJ,EAAIW,GAAG,eAAe,IAAI,IAAI,IAAI,IAAI,IACr1B,GAAkB,GCqJtB,I,UAAA,CACE2G,MAAO,CACLtI,MAAOpC,QAETT,KAJF,WAKI,MAAO,CACLuM,QAASzI,KAAKjB,MACd2I,cAAe,GACftC,YAAakC,OACbC,YAAaC,MACbC,aAAcD,MACdf,WAAYe,MACZhB,KAAMgB,QAGV9F,QAAS,CACP0F,eADJ,SACA,GACM,GAAIpH,KAAK0H,cAAcC,SAASC,GAAY,CAC1C,IAAR,iCACuB,IAAXb,GACF/G,KAAK0H,cAAc9J,OAAOmJ,EAAO,QAGnC/G,KAAK0H,cAAc1K,KAAK4K,IAG5BT,WAXJ,SAWA,GACM,OAAInH,KAAK0H,cAAcC,SAASC,GACvB,qBAEP,GAGJI,YAlBJ,SAkBA,KACM,IAAN,6BACM,OAAOU,GAET1C,aAtBJ,WAuBMhG,KAAK2I,MAAM,WAGbT,cA1BJ,WA2BM,IAAN,8BACMU,EAAK5L,KAAK,KAGZiL,iBA/BJ,SA+BA,GACMjI,KAAKjB,MAAMuH,iBAAiB1I,OAAOmJ,EAAO,IAG5CyB,QAnCJ,WAoCM,IAAN,gCACMI,EAAK5L,KAAK,CAAhB,WAEIuL,WAvCJ,SAuCA,GACMvI,KAAKjB,MAAMwH,mBAAmB3I,OAAOmJ,EAAO,IAG9CuB,QA3CJ,WA4CM,IAAN,mBACMM,EAAK5L,KAAK,CAAhB,WAEIqL,WA/CJ,SA+CA,GACMrI,KAAKjB,MAAM2H,MAAM9I,OAAOmJ,EAAO,OCvN8T,M,sCCQ/V,GAAY,eACd,GACA,GACA,IACA,EACA,KACA,KACA,MAIa,MAAiB,QAiBhC,IAAkB,GAAW,CAACnF,OAAA,KAAKC,QAAA,KAAME,UAAA,OAAUC,WAAA,OAAW8F,SAAA,KAAMpC,OAAA,KAAKmD,aAAA,KAAU3G,WAAA,KAASyD,SAAA,KAAOvD,QAAA,KAAMyD,OAAA,KAAKtD,aAAA,KAAWuG,aAAA,OCoBzH,sBAEA,IACEtG,WAAY,CACVuG,YAAJ,KACIC,WAAJ,GACIC,WAAJ,IAEE/M,KANF,WAOI,MAAO,CACLgN,QAASlJ,KAAKmJ,OAAOC,OAAO1E,OAC5B0B,MAAM,EACNH,YAAY,EACZI,kBAAmB,CACjBpH,KAAM,OACNoK,QAAQ,EACRC,aAAa,GAGfvD,cAAe,CACbzH,KAAM,GACN8G,YAAa,GACbH,MAAO,GACPsE,YAAa,GACbjD,iBAAkB,GAClBC,mBAAoB,GACpBxB,KAAM,GACNyE,SAAU,GACVC,IAAK,GACLjD,KAAM,GACNC,WAAY,GACZiD,UAAW,GACXhD,MAAO,MAIbrB,QAlCF,WAmCIrF,KAAK2J,oBAGPjH,SAAU,CACRC,WADJ,WAEM,OAAO3C,KAAK4C,OAAOC,QAAQC,eAE7B8G,UAJJ,WAKM,OAAO5J,KAAKoG,MAEdyD,eAPJ,WAQM,UAAN,IAAU,KAAV,6BAQEnI,QAAS,CACP,iBADJ,WACA,uKACA,eADA,SAEA,WAFA,OAEA,EAFA,OAGA,uBACA,UAJA,8CAMIsD,SAPJ,SAOA,GACM,GAAa,GAATC,EAAgB,CAClB,IAAR,iCACQ,OAAOQ,IAGXqE,MAbJ,WAcM9J,KAAK4C,OAAOmH,OAAO,iBAAiB,IAEtC/D,aAhBJ,WAiBM,IAAN,2DACM,EAAN,YACMhG,KAAKoG,MAAO,EACZpG,KAAKS,QAAQzD,KAAK,MAEpB6G,WAtBJ,WAuBM,IAAN,0BACA,qCAEM,EAAN,6BACM7D,KAAK4C,OAAOmH,OAAO,iBAAiB,GACpC/J,KAAKoG,MAAO,GAEdD,SA9BJ,WA+BMnG,KAAKoG,MAAO,EACZpG,KAAKiG,YAAa,KChJwT,M,yBCQ5U,GAAY,eACd,GACA,GACA,IACA,EACA,KACA,KACA,MAIa,MAAiB,QAUhC,IAAkB,GAAW,CAACrE,OAAA,KAAKC,QAAA,KAAM6D,OAAA,KAAKtD,QAAA,KAAMwD,OAAA,KAAKxC,SAAA,UC7BzD,IAAI,GAAS,WAAa,IAAIrD,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,SAAS,CAAEJ,EAAS,MAAEI,EAAG,QAAQ,CAACE,MAAM,CAAC,OAAS,MAAM,IAAMN,EAAIkF,SAAS9E,EAAG,MAAMA,EAAG,YAAY,CAACI,GAAG,CAAC,KAAO,SAASC,GAAQT,EAAIkG,YAAa,GAAM,OAAS,SAASzF,GAAQT,EAAIkG,YAAa,GAAO,KAAOlG,EAAIoB,gBAAgBhB,EAAG,QAAQ,CAACA,EAAG,QAAQ,CAACE,MAAM,CAAC,KAAO,OAAOF,EAAG,QAAQ,CAACA,EAAG,eAAe,CAACE,MAAM,CAAC,MAAQ,aAAa,kBAAkB,MAAME,GAAG,CAAC,OAASR,EAAIiK,cAAcpJ,MAAM,CAAC7B,MAAOgB,EAAc,WAAEc,SAAS,SAAUC,GAAMf,EAAIkK,WAAWnJ,GAAKE,WAAW,iBAAiB,GAAGb,EAAG,QAAQ,CAACE,MAAM,CAAC,KAAO,QAAQ,GAAIN,EAAc,WAAEI,EAAG,cAAc,CAACE,MAAM,CAAC,OAAS,SAAS,QAAUN,EAAIsG,mBAAmBzF,MAAM,CAAC7B,MAAOgB,EAAiB,cAAEc,SAAS,SAAUC,GAAMf,EAAIgG,cAAcjF,GAAKE,WAAW,mBAAmBb,EAAG,aAAa,CAACS,MAAM,CAAC7B,MAAOgB,EAAiB,cAAEc,SAAS,SAAUC,GAAMf,EAAIgG,cAAcjF,GAAKE,WAAW,oBAAoB,IAC97B,GAAkB,GCDlB,I,wCAAS,WAAa,IAAIjB,EAAIC,KAASC,EAAGF,EAAIG,eAAmBC,EAAGJ,EAAIK,MAAMD,IAAIF,EAAG,OAAOE,EAAG,YAAY,CAACG,YAAY,WAAWD,MAAM,CAAC,KAAO,GAAG,OAAS,IAAI,mBAAmB,KAAKe,YAAYrB,EAAIsB,GAAG,CAAC,CAAChC,IAAI,YAAYiC,GAAG,WAAW,MAAO,CAACnB,EAAG,SAAUJ,EAAQ,KAAEI,EAAG,MAAM,CAACA,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,OAAOE,GAAG,CAAC,MAAQR,EAAIiG,eAAe,CAAC7F,EAAG,SAAS,CAACJ,EAAIW,GAAG,iBAAiB,GAAGP,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,SAASE,GAAG,CAAC,MAAQR,EAAImK,OAAO,CAAC/J,EAAG,SAAS,CAACJ,EAAIW,GAAG,uBAAuB,GAAGP,EAAG,QAAQ,CAACG,YAAY,OAAOD,MAAM,CAAC,IAAM,GAAG,KAAO,GAAG,MAAQ,GAAG,MAAQ,aAAaE,GAAG,CAAC,MAAQR,EAAIoK,OAAO,CAAChK,EAAG,SAAS,CAACJ,EAAIW,GAAG,sBAAsB,IAAI,GAAGX,EAAImG,KAAK/F,EAAG,QAAQ,CAACE,MAAM,CAAC,MAAQ,SAAS,IAAM,GAAG,KAAO,GAAG,MAAQ,IAAIE,GAAG,CAAC,MAAQR,EAAIqK,SAAS,CAACjK,EAAG,SAAS,CAACJ,EAAIW,GAAG,8BAA8B,KAAKe,OAAM,SACh5B,GAAkB,GCsBtB,IACE4F,MAAO,CACLgD,KAAM,CACJC,SAAS,IAGb5I,QAAS,CACP0I,OADJ,WAEMpK,KAAK2I,MAAM,WAEbuB,KAJJ,WAKMlK,KAAK2I,MAAM,SAEb3C,aAPJ,WAQMhG,KAAK2I,MAAM,WAEbwB,KAVJ,WAWMnK,KAAK2I,MAAM,WCxCiV,MCO9V,GAAY,eACd,GACA,GACA,IACA,EACA,KACA,KACA,MAIa,MAAiB,QAQhC,IAAkB,GAAW,CAAC/G,OAAA,KAAK8D,OAAA,KAAKtD,QAAA,KAAMgB,SAAA,UCW9C,6BAKA,IACEZ,WAAY,CACVuG,YAAJ,KACIE,WAAJ,GACIsB,UAAJ,IAEErO,KANF,WAOI,MAAO,CACL+N,WAAY,KACZhF,MAAO,KACPgB,YAAY,EACZI,kBAAmB,CACjBpH,KAAM,OACNoK,QAAQ,EACRC,aAAa,GAEfvD,cAAe,CACbzH,KAAM,GACN8G,YAAa,GACbH,MAAO,GACPsE,YAAa,GACbjD,iBAAkB,GAClBC,mBAAoB,GACpBxB,KAAM,GACNyE,SAAU,GACVhD,KAAM,GACNC,WAAY,GACZiD,UAAW,GACXhD,MAAO,MAKblB,MAAO,CACLP,MADJ,WAEMd,QAAQC,IAAIpE,KAAKiF,SAIrBvD,QAAS,CACPsI,aADJ,WAEMhK,KAAKiF,MAAQuF,IAAIC,gBAAgBzK,KAAKiK,aAExC,aAJJ,WAIA,qKACA,6BADA,SAEA,6BAFA,OAEA,EAFA,OAGA,0CACA,eAJA,gDCrFmV,M,yBCQ/U,GAAY,eACd,GACA,GACA,IACA,EACA,KACA,KACA,MAIa,MAAiB,QAShC,IAAkB,GAAW,CAACpI,QAAA,KAAM6D,OAAA,KAAKgF,cAAA,KAAW9E,OAAA,KAAKC,OAAA,OCxBlD,IAAM8E,GAAS,CACpB,CAAEC,KAAM,IAAKjJ,UAAWkJ,IACxB,CAAED,KAAM,UAAWjJ,UAAWkJ,IAC9B,CAAED,KAAM,kBAAmBjJ,UAAWmJ,IACtC,CAAEF,KAAM,QAASjJ,UAAWoJ,KCD9B1H,OAAI2H,OAAOC,eAAgB,EAC3B5H,OAAIC,IAAI4H,QAER,IAAMC,GAAS,IAAID,OAAU,CAC3BP,UACA1L,KAA8C,YAGhD,IAAIoE,OAAI,CACN+H,UACAC,QACAF,UACAG,OAAQ,SAACC,GAAD,OAAOA,EAAEC,MAChBC,OAAO,QAEV,IAAIC,GAAS,SAASzE,EAAMvK,EAAQiP,GAClCA,EAAQA,GAAS,MACjB,IAAIC,EAAOC,SAASC,cAAc,OAClCF,EAAKG,UAAY9E,EACjB,IAAIwB,EAAUmD,EAAKI,YACnB,OAAOvD,EAAQ/L,OAASA,EAAS+L,EAAQ3I,MAAM,EAAGpD,GAAUiP,EAAQlD,GAGtEpF,OAAIqI,OAAO,WAAYA,K,oFC9BvB,W,kCCAA", - "file": "js/app.b457c0af.js", - "sourcesContent": [ - " \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/static/\";\n\n \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n", - "export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Recipe.vue?vue&type=style&index=0&lang=css&\"", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-app',[_c('v-app-bar',{attrs:{\"dense\":\"\",\"app\":\"\",\"color\":\"primary darken-3\",\"dark\":\"\"}},[_c('router-link',{attrs:{\"to\":\"/\"}}),_c('div',{staticClass:\"d-flex align-center\"},[_c('v-icon',{attrs:{\"size\":\"40\"},on:{\"click\":function($event){return _vm.$router.push('/')}}},[_vm._v(\" mdi-food-variant\")])],1),_c('div',{staticClass:\"pl-2\"},[_c('v-toolbar-title',{on:{\"click\":function($event){return _vm.$router.push('/')}}},[_vm._v(\"Mealie\")])],1),_c('v-spacer')],1),_c('v-main',[_c('v-container',[_c('AddRecipe'),_c('router-view')],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"text-center\"},[_c('v-dialog',{attrs:{\"width\":\"650\"},model:{value:(_vm.addRecipe),callback:function ($$v) {_vm.addRecipe=$$v},expression:\"addRecipe\"}},[_c('v-card',{attrs:{\"loading\":_vm.processing}},[_c('v-card-title',{staticClass:\"headline\"},[_vm._v(\" From URL \")]),_c('v-card-text',[_c('v-form',[_c('v-text-field',{attrs:{\"label\":\"Recipe URL\"},model:{value:(_vm.recipeURL),callback:function ($$v) {_vm.recipeURL=$$v},expression:\"recipeURL\"}})],1)],1),_c('v-divider'),_c('v-card-actions',[_c('v-spacer'),_c('v-btn',{attrs:{\"color\":\"primary\",\"text\":\"\"},on:{\"click\":_vm.createRecipe}},[_vm._v(\" Submit \")])],1)],1)],1),_c('v-speed-dial',{attrs:{\"fixed\":\"\",\"right\":\"\",\"bottom\":\"\",\"open-on-hover\":\"\"},scopedSlots:_vm._u([{key:\"activator\",fn:function(){return [_c('v-btn',{attrs:{\"color\":\"primary darken-2\",\"dark\":\"\",\"fab\":\"\"},on:{\"click\":_vm.navCreate},model:{value:(_vm.fab),callback:function ($$v) {_vm.fab=$$v},expression:\"fab\"}},[_c('v-icon',[_vm._v(\" mdi-plus \")])],1)]},proxy:true}]),model:{value:(_vm.fab),callback:function ($$v) {_vm.fab=$$v},expression:\"fab\"}},[_c('v-btn',{attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"green\"},on:{\"click\":function($event){_vm.addRecipe = true}}},[_c('v-icon',[_vm._v(\"mdi-link\")])],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "\n\n\n\n", - "import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AddRecipe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AddRecipe.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./AddRecipe.vue?vue&type=template&id=a8a1c6ec&\"\nimport script from \"./AddRecipe.vue?vue&type=script&lang=js&\"\nexport * from \"./AddRecipe.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardActions } from 'vuetify/lib/components/VCard';\nimport { VCardText } from 'vuetify/lib/components/VCard';\nimport { VCardTitle } from 'vuetify/lib/components/VCard';\nimport { VDialog } from 'vuetify/lib/components/VDialog';\nimport { VDivider } from 'vuetify/lib/components/VDivider';\nimport { VForm } from 'vuetify/lib/components/VForm';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VSpacer } from 'vuetify/lib/components/VGrid';\nimport { VSpeedDial } from 'vuetify/lib/components/VSpeedDial';\nimport { VTextField } from 'vuetify/lib/components/VTextField';\ninstallComponents(component, {VBtn,VCard,VCardActions,VCardText,VCardTitle,VDialog,VDivider,VForm,VIcon,VSpacer,VSpeedDial,VTextField})\n", - "\n\n\n", - "import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=034dec74&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VApp } from 'vuetify/lib/components/VApp';\nimport { VAppBar } from 'vuetify/lib/components/VAppBar';\nimport { VContainer } from 'vuetify/lib/components/VGrid';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VMain } from 'vuetify/lib/components/VMain';\nimport { VSpacer } from 'vuetify/lib/components/VGrid';\nimport { VToolbarTitle } from 'vuetify/lib/components/VToolbar';\ninstallComponents(component, {VApp,VAppBar,VContainer,VIcon,VMain,VSpacer,VToolbarTitle})\n", - "import Vue from 'vue';\nimport Vuetify from 'vuetify/lib';\n\nVue.use(Vuetify);\n\nexport default new Vuetify({\n});\n", - "import Vue from \"vue\";\nimport Vuex from \"vuex\";\n\nVue.use(Vuex);\n\nexport default new Vuex.Store({\n state: {\n renderRecipes: false,\n showRecipe: false,\n activeRecipe: \"String\",\n saveRecipe: false,\n },\n mutations: {\n setRenderRecipes(state, payload) {\n state.renderRecipes = payload;\n },\n setShowRecipe(state, payload) {\n state.showRecipe = payload;\n },\n setSaveRecipe(state, payload) {\n state.saveRecipe = payload;\n console.log(state.saveRecipe);\n },\n setActiveRecipe(state, payload) {\n state.activeRecipe = payload;\n },\n },\n getters: {\n getRenderRecipes: (state) => state.renderRecipes,\n getShowRecipe: (state) => state.showRecipe,\n getActiveRecipe: (state) => state.activeRecipe,\n getSaveRecipe: (state) => state.saveRecipe,\n },\n});\n", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('h2',[_vm._v(\"Meal Plan\")]),_c('v-divider'),_c('h2',[_vm._v(\"Recently Added\")]),_c('v-divider'),_c('AllRecipes')],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-row',_vm._l((_vm.recipes),function(recipe){return _c('v-col',{key:recipe.name,attrs:{\"cols\":\"3\"}},[_c('v-hover',{attrs:{\"open-delay\":50},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar hover = ref.hover;\nreturn [_c('v-card',{staticClass:\"card-container\",class:{ 'on-hover': hover },attrs:{\"elevation\":hover ? 12 : 2,\"height\":\"400\"},on:{\"click\":function($event){return _vm.moreInfo(recipe.slug)}}},[_c('v-img',{attrs:{\"height\":\"200\",\"src\":_vm.getImage(recipe.image)}}),_c('v-card-title',[_vm._v(_vm._s(recipe.name))]),_c('v-card-text',[_vm._v(\" \"+_vm._s(_vm._f(\"truncate\")(recipe.description,125, \"...\"))+\" \")])],1)]}}],null,true)})],1)}),1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "\n\n\n\n\n", - "import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AllRecipes.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AllRecipes.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./AllRecipes.vue?vue&type=template&id=18bea6e4&scoped=true&\"\nimport script from \"./AllRecipes.vue?vue&type=script&lang=js&\"\nexport * from \"./AllRecipes.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"18bea6e4\",\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardText } from 'vuetify/lib/components/VCard';\nimport { VCardTitle } from 'vuetify/lib/components/VCard';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VHover } from 'vuetify/lib/components/VHover';\nimport { VImg } from 'vuetify/lib/components/VImg';\nimport { VRow } from 'vuetify/lib/components/VGrid';\ninstallComponents(component, {VCard,VCardText,VCardTitle,VCol,VHover,VImg,VRow})\n", - "\n\n\n\n", - "import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./Home.vue?vue&type=template&id=94e1d54c&\"\nimport script from \"./Home.vue?vue&type=script&lang=js&\"\nexport * from \"./Home.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VDivider } from 'vuetify/lib/components/VDivider';\ninstallComponents(component, {VDivider})\n", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-card',[_c('v-img',{attrs:{\"max-height\":\"400\",\"src\":_vm.getImage(_vm.recipeDetails.image)}}),_c('v-toolbar',{staticClass:\"card-btn\",attrs:{\"flat\":\"\",\"height\":\"0\",\"extension-height\":\"0\"},scopedSlots:_vm._u([{key:\"extension\",fn:function(){return [_c('v-col'),(_vm.showIcons)?_c('div',[_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"red\"},on:{\"click\":_vm.deleteRecipe}},[_c('v-icon',[_vm._v(\"mdi-delete\")])],1),_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"green\"},on:{\"click\":_vm.saveRecipe}},[_c('v-icon',[_vm._v(\"mdi-content-save\")])],1),_c('v-btn',{staticClass:\"mr-5\",attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"secondary\"},on:{\"click\":function($event){_vm.jsonEditor = true}}},[_c('v-icon',[_vm._v(\"mdi-code-braces\")])],1)],1):_vm._e(),_c('v-btn',{attrs:{\"color\":\"primary\",\"fab\":\"\",\"dark\":\"\",\"small\":\"\"},on:{\"click\":_vm.showForm}},[_c('v-icon',[_vm._v(\"mdi-square-edit-outline\")])],1)]},proxy:true}])}),(!_vm.form)?_c('ViewRecipe',{attrs:{\"name\":_vm.recipeDetails.name,\"ingredients\":_vm.recipeDetails.recipeIngredient,\"description\":_vm.recipeDetails.description,\"instructions\":_vm.recipeDetails.recipeInstructions,\"tags\":_vm.recipeDetails.tags,\"categories\":_vm.recipeDetails.categories,\"notes\":_vm.recipeDetails.notes}}):(_vm.showJsonEditor)?_c('VJsoneditor',{staticClass:\"mt-10\",attrs:{\"height\":\"1500px\",\"options\":_vm.jsonEditorOptions},model:{value:(_vm.recipeDetails),callback:function ($$v) {_vm.recipeDetails=$$v},expression:\"recipeDetails\"}}):_c('EditRecipe',{model:{value:(_vm.recipeDetails),callback:function ($$v) {_vm.recipeDetails=$$v},expression:\"recipeDetails\"}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('v-card-title',{staticClass:\"headline\"},[_vm._v(\" \"+_vm._s(_vm.name)+\" \")]),_c('v-card-text',[_vm._v(\" \"+_vm._s(_vm.description)+\" \"),_c('div',{staticClass:\"my-2\"}),_c('v-row',[_c('v-col',{attrs:{\"cols\":\"4\"}},[_c('h2',{staticClass:\"mb-4\"},[_vm._v(\"Ingredients\")]),_vm._l((_vm.ingredients),function(ingredient){return _c('div',{key:ingredient},[_c('v-checkbox',{staticClass:\"ingredients\",attrs:{\"hide-details\":\"\",\"label\":ingredient}})],1)}),(_vm.categories[0])?_c('div',[_c('h2',{staticClass:\"mt-4\"},[_vm._v(\"Categories\")]),_vm._l((_vm.categories),function(category){return _c('v-chip',{key:category,staticClass:\"ma-1\",attrs:{\"color\":\"primary\",\"dark\":\"\"}},[_vm._v(\" \"+_vm._s(category)+\" \")])})],2):_vm._e(),(_vm.tags[0])?_c('div',[_c('h2',{staticClass:\"mt-4\"},[_vm._v(\"Tags\")]),_vm._l((_vm.tags),function(tag){return _c('v-chip',{key:tag,staticClass:\"ma-1\",attrs:{\"color\":\"primary\",\"dark\":\"\"}},[_vm._v(\" \"+_vm._s(tag)+\" \")])})],2):_vm._e(),(_vm.notes[0])?_c('h2',{staticClass:\"my-4\"},[_vm._v(\"Notes\")]):_vm._e(),_vm._l((_vm.notes),function(note,index){return _c('v-card',{key:index,staticClass:\"mt-1\"},[_c('v-card-title',[_vm._v(\" \"+_vm._s(note.title))]),_c('v-card-text',[_vm._v(\" \"+_vm._s(note.text)+\" \")])],1)})],2),_c('v-divider',{attrs:{\"vertical\":true}}),_c('v-col',[_c('h2',{staticClass:\"mb-4\"},[_vm._v(\"Instructions\")]),_vm._l((_vm.instructions),function(step,index){return _c('div',{key:step.text},[_c('v-hover',{scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar hover = ref.hover;\nreturn [_c('v-card',{staticClass:\"ma-1\",class:[{ 'on-hover': hover }, _vm.isDisabled(index)],attrs:{\"elevation\":hover ? 12 : 2},on:{\"click\":function($event){return _vm.toggleDisabled(index)}}},[_c('v-card-title',[_vm._v(\"Step: \"+_vm._s(index + 1))]),_c('v-card-text',[_vm._v(_vm._s(step.text))])],1)]}}],null,true)})],1)})],2)],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "\n\n\n\n", - "import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ViewRecipe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ViewRecipe.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./ViewRecipe.vue?vue&type=template&id=49a765ac&\"\nimport script from \"./ViewRecipe.vue?vue&type=script&lang=js&\"\nexport * from \"./ViewRecipe.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardText } from 'vuetify/lib/components/VCard';\nimport { VCardTitle } from 'vuetify/lib/components/VCard';\nimport { VCheckbox } from 'vuetify/lib/components/VCheckbox';\nimport { VChip } from 'vuetify/lib/components/VChip';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VDivider } from 'vuetify/lib/components/VDivider';\nimport { VHover } from 'vuetify/lib/components/VHover';\nimport { VRow } from 'vuetify/lib/components/VGrid';\ninstallComponents(component, {VCard,VCardText,VCardTitle,VCheckbox,VChip,VCol,VDivider,VHover,VRow})\n", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('v-card-text',[_c('v-text-field',{staticClass:\"my-3\",attrs:{\"label\":\"Recipe Name\"},model:{value:(_vm.value.name),callback:function ($$v) {_vm.$set(_vm.value, \"name\", $$v)},expression:\"value.name\"}}),_c('v-textarea',{attrs:{\"height\":\"100\",\"label\":\"Description\"},model:{value:(_vm.value.description),callback:function ($$v) {_vm.$set(_vm.value, \"description\", $$v)},expression:\"value.description\"}}),_c('div',{staticClass:\"my-2\"}),_c('v-row',[_c('v-col',{attrs:{\"cols\":\"4\"}},[_c('h2',{staticClass:\"mb-4\"},[_vm._v(\"Ingredients\")]),_vm._l((_vm.value.recipeIngredient),function(ingredient,index){return _c('div',{key:_vm.generateKey('ingredient', index)},[_c('v-row',{attrs:{\"align\":\"center\"}},[_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"x-small\":\"\",\"color\":\"red\",\"elevation\":\"1\"},on:{\"click\":function($event){return _vm.removeIngredient(index)}}},[_c('v-icon',{attrs:{\"color\":\"white\"}},[_vm._v(\"mdi-delete\")])],1),_c('v-text-field',{attrs:{\"label\":\"Ingredient\"},model:{value:(_vm.value.recipeIngredient[index]),callback:function ($$v) {_vm.$set(_vm.value.recipeIngredient, index, $$v)},expression:\"value.recipeIngredient[index]\"}})],1)],1)}),_c('v-btn',{attrs:{\"color\":\"primary\",\"fab\":\"\",\"dark\":\"\",\"small\":\"\"},on:{\"click\":_vm.addIngredient}},[_c('v-icon',[_vm._v(\"mdi-plus\")])],1),_c('h2',{staticClass:\"mt-6\"},[_vm._v(\"Categories\")]),_c('v-combobox',{attrs:{\"dense\":\"\",\"multiple\":\"\",\"chips\":\"\",\"item-color\":\"primary\",\"deletable-chips\":\"\"},scopedSlots:_vm._u([{key:\"selection\",fn:function(data){return [_c('v-chip',{attrs:{\"input-value\":data.selected,\"close\":\"\",\"color\":\"primary\",\"dark\":\"\"}},[_vm._v(\" \"+_vm._s(data.item)+\" \")])]}}]),model:{value:(_vm.value.categories),callback:function ($$v) {_vm.$set(_vm.value, \"categories\", $$v)},expression:\"value.categories\"}}),_c('h2',{staticClass:\"mt-4\"},[_vm._v(\"Tags\")]),_c('v-combobox',{attrs:{\"dense\":\"\",\"multiple\":\"\",\"chips\":\"\",\"deletable-chips\":\"\"},scopedSlots:_vm._u([{key:\"selection\",fn:function(data){return [_c('v-chip',{attrs:{\"input-value\":data.selected,\"close\":\"\",\"color\":\"primary\",\"dark\":\"\"}},[_vm._v(\" \"+_vm._s(data.item)+\" \")])]}}]),model:{value:(_vm.value.tags),callback:function ($$v) {_vm.$set(_vm.value, \"tags\", $$v)},expression:\"value.tags\"}}),_c('h2',{staticClass:\"my-4\"},[_vm._v(\"Notes\")]),_vm._l((_vm.value.notes),function(note,index){return _c('v-card',{key:_vm.generateKey('note', index),staticClass:\"mt-1\"},[_c('v-card-text',[_c('v-row',{attrs:{\"align\":\"center\"}},[_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"x-small\":\"\",\"color\":\"red\",\"elevation\":\"1\"},on:{\"click\":function($event){return _vm.removeNote(index)}}},[_c('v-icon',{attrs:{\"color\":\"white\"}},[_vm._v(\"mdi-delete\")])],1),_c('v-text-field',{attrs:{\"label\":\"Title\"},model:{value:(_vm.value.notes[index]['title']),callback:function ($$v) {_vm.$set(_vm.value.notes[index], 'title', $$v)},expression:\"value.notes[index]['title']\"}})],1),_c('v-textarea',{attrs:{\"label\":\"Note\"},model:{value:(_vm.value.notes[index]['text']),callback:function ($$v) {_vm.$set(_vm.value.notes[index], 'text', $$v)},expression:\"value.notes[index]['text']\"}})],1)],1)}),_c('v-btn',{staticClass:\"mt-1\",attrs:{\"color\":\"primary\",\"fab\":\"\",\"dark\":\"\",\"small\":\"\"},on:{\"click\":_vm.addNote}},[_c('v-icon',[_vm._v(\"mdi-plus\")])],1)],2),_c('v-divider',{attrs:{\"vertical\":true}}),_c('v-col',[_c('h2',{staticClass:\"mb-4\"},[_vm._v(\"Instructions\")]),_vm._l((_vm.value.recipeInstructions),function(step,index){return _c('div',{key:index},[_c('v-hover',{scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar hover = ref.hover;\nreturn [_c('v-card',{staticClass:\"ma-1\",class:[{ 'on-hover': hover }],attrs:{\"elevation\":hover ? 12 : 2}},[_c('v-card-title',[_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"x-small\":\"\",\"color\":\"red\",\"elevation\":\"1\"},on:{\"click\":function($event){return _vm.removeStep(index)}}},[_c('v-icon',{attrs:{\"color\":\"white\"}},[_vm._v(\"mdi-delete\")])],1),_vm._v(\"Step: \"+_vm._s(index + 1))],1),_c('v-card-text',[_c('v-textarea',{key:_vm.generateKey('instructions', index),attrs:{\"dense\":\"\"},model:{value:(_vm.value.recipeInstructions[index]['text']),callback:function ($$v) {_vm.$set(_vm.value.recipeInstructions[index], 'text', $$v)},expression:\"value.recipeInstructions[index]['text']\"}})],1)],1)]}}],null,true)})],1)}),_c('v-btn',{attrs:{\"color\":\"primary\",\"fab\":\"\",\"dark\":\"\",\"small\":\"\"},on:{\"click\":_vm.addStep}},[_c('v-icon',[_vm._v(\"mdi-plus\")])],1)],2)],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "\n\n\n\n", - "import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./EditRecipe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./EditRecipe.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./EditRecipe.vue?vue&type=template&id=57a9bb11&\"\nimport script from \"./EditRecipe.vue?vue&type=script&lang=js&\"\nexport * from \"./EditRecipe.vue?vue&type=script&lang=js&\"\nimport style0 from \"./EditRecipe.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardText } from 'vuetify/lib/components/VCard';\nimport { VCardTitle } from 'vuetify/lib/components/VCard';\nimport { VChip } from 'vuetify/lib/components/VChip';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VCombobox } from 'vuetify/lib/components/VCombobox';\nimport { VDivider } from 'vuetify/lib/components/VDivider';\nimport { VHover } from 'vuetify/lib/components/VHover';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VRow } from 'vuetify/lib/components/VGrid';\nimport { VTextField } from 'vuetify/lib/components/VTextField';\nimport { VTextarea } from 'vuetify/lib/components/VTextarea';\ninstallComponents(component, {VBtn,VCard,VCardText,VCardTitle,VChip,VCol,VCombobox,VDivider,VHover,VIcon,VRow,VTextField,VTextarea})\n", - "\n\n\n\n", - "import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Recipe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Recipe.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./Recipe.vue?vue&type=template&id=d0338436&\"\nimport script from \"./Recipe.vue?vue&type=script&lang=js&\"\nexport * from \"./Recipe.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Recipe.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VImg } from 'vuetify/lib/components/VImg';\nimport { VToolbar } from 'vuetify/lib/components/VToolbar';\ninstallComponents(component, {VBtn,VCard,VCol,VIcon,VImg,VToolbar})\n", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-card',[(_vm.image)?_c('v-img',{attrs:{\"height\":\"400\",\"src\":_vm.image}}):_c('br'),_c('ButtonRow',{on:{\"json\":function($event){_vm.jsonEditor = true},\"editor\":function($event){_vm.jsonEditor = false},\"save\":_vm.createRecipe}}),_c('v-row',[_c('v-col',{attrs:{\"cols\":\"3\"}}),_c('v-col',[_c('v-file-input',{attrs:{\"label\":\"Image File\",\"truncate-length\":\"30\"},on:{\"change\":_vm.onFileChange},model:{value:(_vm.fileObject),callback:function ($$v) {_vm.fileObject=$$v},expression:\"fileObject\"}})],1),_c('v-col',{attrs:{\"cols\":\"3\"}})],1),(_vm.jsonEditor)?_c('VJsoneditor',{attrs:{\"height\":\"1500px\",\"options\":_vm.jsonEditorOptions},model:{value:(_vm.recipeDetails),callback:function ($$v) {_vm.recipeDetails=$$v},expression:\"recipeDetails\"}}):_c('EditRecipe',{model:{value:(_vm.recipeDetails),callback:function ($$v) {_vm.recipeDetails=$$v},expression:\"recipeDetails\"}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-toolbar',{staticClass:\"card-btn\",attrs:{\"flat\":\"\",\"height\":\"0\",\"extension-height\":\"0\"},scopedSlots:_vm._u([{key:\"extension\",fn:function(){return [_c('v-col'),(_vm.open)?_c('div',[_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"red\"},on:{\"click\":_vm.deleteRecipe}},[_c('v-icon',[_vm._v(\"mdi-delete\")])],1),_c('v-btn',{staticClass:\"mr-2\",attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"green\"},on:{\"click\":_vm.save}},[_c('v-icon',[_vm._v(\"mdi-content-save\")])],1),_c('v-btn',{staticClass:\"mr-5\",attrs:{\"fab\":\"\",\"dark\":\"\",\"small\":\"\",\"color\":\"secondary\"},on:{\"click\":_vm.json}},[_c('v-icon',[_vm._v(\"mdi-code-braces\")])],1)],1):_vm._e(),_c('v-btn',{attrs:{\"color\":\"primary\",\"fab\":\"\",\"dark\":\"\",\"small\":\"\"},on:{\"click\":_vm.editor}},[_c('v-icon',[_vm._v(\"mdi-square-edit-outline\")])],1)]},proxy:true}])})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }", - "\n\n\n\n", - "import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ButtonRow.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ButtonRow.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./ButtonRow.vue?vue&type=template&id=356b1237&\"\nimport script from \"./ButtonRow.vue?vue&type=script&lang=js&\"\nexport * from \"./ButtonRow.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VToolbar } from 'vuetify/lib/components/VToolbar';\ninstallComponents(component, {VBtn,VCol,VIcon,VToolbar})\n", - "\n\n\n\n", - "import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NewRecipe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NewRecipe.vue?vue&type=script&lang=js&\"", - "import { render, staticRenderFns } from \"./NewRecipe.vue?vue&type=template&id=4bb91a6c&\"\nimport script from \"./NewRecipe.vue?vue&type=script&lang=js&\"\nexport * from \"./NewRecipe.vue?vue&type=script&lang=js&\"\nimport style0 from \"./NewRecipe.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VFileInput } from 'vuetify/lib/components/VFileInput';\nimport { VImg } from 'vuetify/lib/components/VImg';\nimport { VRow } from 'vuetify/lib/components/VGrid';\ninstallComponents(component, {VCard,VCol,VFileInput,VImg,VRow})\n", - "import Home from \"./components/Home\";\nimport Recipe from \"./components/Recipe\";\nimport NewRecipe from \"./components/NewRecipe\";\n\nexport const routes = [\n { path: \"/\", component: Home },\n { path: \"/mealie\", component: Home },\n { path: \"/recipe/:recipe\", component: Recipe },\n { path: \"/new/\", component: NewRecipe },\n];\n", - "import Vue from \"vue\";\nimport App from \"./App.vue\";\nimport vuetify from \"./plugins/vuetify\";\nimport store from \"./store/store\";\nimport VueRouter from \"vue-router\";\nimport { routes } from \"./routes\";\n\nVue.config.productionTip = false;\nVue.use(VueRouter);\n\nconst router = new VueRouter({\n routes,\n mode: process.env.NODE_ENV === \"production\" ? \"history\" : \"hash\",\n});\n\nnew Vue({\n vuetify,\n store,\n router,\n render: (h) => h(App),\n}).$mount(\"#app\");\n\nvar filter = function(text, length, clamp) {\n clamp = clamp || \"...\";\n var node = document.createElement(\"div\");\n node.innerHTML = text;\n var content = node.textContent;\n return content.length > length ? content.slice(0, length) + clamp : content;\n};\n\nVue.filter(\"truncate\", filter);\n", - "export * from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./EditRecipe.vue?vue&type=style&index=0&lang=css&\"", - "export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NewRecipe.vue?vue&type=style&index=0&lang=css&\"" - ], - "sourceRoot": "" -} \ No newline at end of file diff --git a/mealie/web/js/chunk-vendors.a435ad20.js b/mealie/web/js/chunk-vendors.a435ad20.js deleted file mode 100644 index 5d1850561c43..000000000000 --- a/mealie/web/js/chunk-vendors.a435ad20.js +++ /dev/null @@ -1,50 +0,0 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{"00ee":function(e,t,i){var n=i("b622"),r=n("toStringTag"),o={};o[r]="z",e.exports="[object z]"===String(o)},"0366":function(e,t,i){var n=i("1c0b");e.exports=function(e,t,i){if(n(e),void 0===t)return e;switch(i){case 0:return function(){return e.call(t)};case 1:return function(i){return e.call(t,i)};case 2:return function(i,n){return e.call(t,i,n)};case 3:return function(i,n,r){return e.call(t,i,n,r)}}return function(){return e.apply(t,arguments)}}},"0481":function(e,t,i){"use strict";var n=i("23e7"),r=i("a2bf"),o=i("7b0b"),s=i("50c4"),a=i("a691"),l=i("65f0");n({target:"Array",proto:!0},{flat:function(){var e=arguments.length?arguments[0]:void 0,t=o(this),i=s(t.length),n=l(t,0);return n.length=r(n,t,t,i,0,void 0===e?1:a(e)),n}})},"0538":function(e,t,i){"use strict";var n=i("1c0b"),r=i("861d"),o=[].slice,s={},a=function(e,t,i){if(!(t in s)){for(var n=[],r=0;r0&&void 0!==arguments[0]?arguments[0]:[],i=arguments.length,n=new Array(i>1?i-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:"top center 0",i=arguments.length>2?arguments[2]:void 0;return{name:e,functional:!0,props:{group:{type:Boolean,default:!1},hideOnLeave:{type:Boolean,default:!1},leaveAbsolute:{type:Boolean,default:!1},mode:{type:String,default:i},origin:{type:String,default:t}},render:function(t,i){var o="transition".concat(i.props.group?"-group":""),s={props:{name:e,mode:i.props.mode},on:{beforeEnter:function(e){e.style.transformOrigin=i.props.origin,e.style.webkitTransformOrigin=i.props.origin}}};return i.props.leaveAbsolute&&(s.on.leave=r(s.on.leave,(function(e){return e.style.position="absolute"}))),i.props.hideOnLeave&&(s.on.leave=r(s.on.leave,(function(e){return e.style.display="none"}))),t(o,Object(n["a"])(i.data,s),i.children)}}}function s(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"in-out";return{name:e,functional:!0,props:{mode:{type:String,default:i}},render:function(i,r){return i("transition",Object(n["a"])(r.data,{props:{name:e},on:t}),r.children)}}}var a=i("ade3"),l=i("80d2"),c=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=t?"width":"height",n="offset".concat(Object(l["x"])(i));return{beforeEnter:function(e){e._parent=e.parentNode,e._initialStyle=Object(a["a"])({transition:e.style.transition,overflow:e.style.overflow},i,e.style[i])},enter:function(t){var r=t._initialStyle;t.style.setProperty("transition","none","important"),t.style.overflow="hidden";var o="".concat(t[n],"px");t.style[i]="0",t.offsetHeight,t.style.transition=r.transition,e&&t._parent&&t._parent.classList.add(e),requestAnimationFrame((function(){t.style[i]=o}))},afterEnter:o,enterCancelled:o,leave:function(e){e._initialStyle=Object(a["a"])({transition:"",overflow:e.style.overflow},i,e.style[i]),e.style.overflow="hidden",e.style[i]="".concat(e[n],"px"),e.offsetHeight,requestAnimationFrame((function(){return e.style[i]="0"}))},afterLeave:r,leaveCancelled:r};function r(t){e&&t._parent&&t._parent.classList.remove(e),o(t)}function o(e){var t=e._initialStyle[i];e.style.overflow=e._initialStyle.overflow,null!=t&&(e.style[i]=t),delete e._initialStyle}},u=(o("carousel-transition"),o("carousel-reverse-transition"),o("tab-transition"),o("tab-reverse-transition"),o("menu-transition"),o("fab-transition","center center","out-in"),o("dialog-transition"),o("dialog-bottom-transition"),o("fade-transition")),h=(o("scale-transition"),o("scroll-x-transition"),o("scroll-x-reverse-transition"),o("scroll-y-transition"),o("scroll-y-reverse-transition"),o("slide-x-transition")),d=(o("slide-x-reverse-transition"),o("slide-y-transition"),o("slide-y-reverse-transition"),s("expand-transition",c())),g=s("expand-x-transition",c("",!0))},"07ac":function(e,t,i){var n=i("23e7"),r=i("6f53").values;n({target:"Object",stat:!0},{values:function(e){return r(e)}})},"0a06":function(e,t,i){"use strict";var n=i("c532"),r=i("30b5"),o=i("f6b4"),s=i("5270"),a=i("4a7b");function l(e){this.defaults=e,this.interceptors={request:new o,response:new o}}l.prototype.request=function(e){"string"===typeof e?(e=arguments[1]||{},e.url=arguments[0]):e=e||{},e=a(this.defaults,e),e.method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=[s,void 0],i=Promise.resolve(e);this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));while(t.length)i=i.then(t.shift(),t.shift());return i},l.prototype.getUri=function(e){return e=a(this.defaults,e),r(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},n.forEach(["delete","get","head","options"],(function(e){l.prototype[e]=function(t,i){return this.request(a(i||{},{method:e,url:t,data:(i||{}).data}))}})),n.forEach(["post","put","patch"],(function(e){l.prototype[e]=function(t,i,n){return this.request(a(n||{},{method:e,url:t,data:i}))}})),e.exports=l},"0bc6":function(e,t,i){},"0cfb":function(e,t,i){var n=i("83ab"),r=i("d039"),o=i("cc12");e.exports=!n&&!r((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},"0d3b":function(e,t,i){var n=i("d039"),r=i("b622"),o=i("c430"),s=r("iterator");e.exports=!n((function(){var e=new URL("b?a=1&b=2&c=3","http://a"),t=e.searchParams,i="";return e.pathname="c%20d",t.forEach((function(e,n){t["delete"]("b"),i+=n+e})),o&&!e.toJSON||!t.sort||"http://a/c%20d?a=1&c=3"!==e.href||"3"!==t.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!t[s]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==i||"x"!==new URL("http://x",void 0).host}))},"0df6":function(e,t,i){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},"0fd9":function(e,t,i){"use strict";i("99af"),i("4160"),i("caad"),i("13d5"),i("4ec9"),i("b64b"),i("d3b7"),i("ac1f"),i("2532"),i("3ca3"),i("5319"),i("159b"),i("ddb0");var n=i("ade3"),r=i("5530"),o=(i("4b85"),i("2b0e")),s=i("d9f7"),a=i("80d2"),l=["sm","md","lg","xl"],c=["start","end","center"];function u(e,t){return l.reduce((function(i,n){return i[e+Object(a["x"])(n)]=t(),i}),{})}var h=function(e){return[].concat(c,["baseline","stretch"]).includes(e)},d=u("align",(function(){return{type:String,default:null,validator:h}})),g=function(e){return[].concat(c,["space-between","space-around"]).includes(e)},p=u("justify",(function(){return{type:String,default:null,validator:g}})),f=function(e){return[].concat(c,["space-between","space-around","stretch"]).includes(e)},m=u("alignContent",(function(){return{type:String,default:null,validator:f}})),v={align:Object.keys(d),justify:Object.keys(p),alignContent:Object.keys(m)},C={align:"align",justify:"justify",alignContent:"align-content"};function b(e,t,i){var n=C[e];if(null!=i){if(t){var r=t.replace(e,"");n+="-".concat(r)}return n+="-".concat(i),n.toLowerCase()}}var I=new Map;t["a"]=o["a"].extend({name:"v-row",functional:!0,props:Object(r["a"])(Object(r["a"])(Object(r["a"])({tag:{type:String,default:"div"},dense:Boolean,noGutters:Boolean,align:{type:String,default:null,validator:h}},d),{},{justify:{type:String,default:null,validator:g}},p),{},{alignContent:{type:String,default:null,validator:f}},m),render:function(e,t){var i=t.props,r=t.data,o=t.children,a="";for(var l in i)a+=String(i[l]);var c=I.get(a);return c||function(){var e,t;for(t in c=[],v)v[t].forEach((function(e){var n=i[e],r=b(t,e,n);r&&c.push(r)}));c.push((e={"no-gutters":i.noGutters,"row--dense":i.dense},Object(n["a"])(e,"align-".concat(i.align),i.align),Object(n["a"])(e,"justify-".concat(i.justify),i.justify),Object(n["a"])(e,"align-content-".concat(i.alignContent),i.alignContent),e)),I.set(a,c)}(),e(i.tag,Object(s["a"])(r,{staticClass:"row",class:c}),o)}})},"10d2":function(e,t,i){"use strict";var n=i("8dd9");t["a"]=n["a"]},1148:function(e,t,i){"use strict";var n=i("a691"),r=i("1d80");e.exports="".repeat||function(e){var t=String(r(this)),i="",o=n(e);if(o<0||o==1/0)throw RangeError("Wrong number of repetitions");for(;o>0;(o>>>=1)&&(t+=t))1&o&&(i+=t);return i}},1276:function(e,t,i){"use strict";var n=i("d784"),r=i("44e7"),o=i("825a"),s=i("1d80"),a=i("4840"),l=i("8aa5"),c=i("50c4"),u=i("14c3"),h=i("9263"),d=i("d039"),g=[].push,p=Math.min,f=4294967295,m=!d((function(){return!RegExp(f,"y")}));n("split",2,(function(e,t,i){var n;return n="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(e,i){var n=String(s(this)),o=void 0===i?f:i>>>0;if(0===o)return[];if(void 0===e)return[n];if(!r(e))return t.call(n,e,o);var a,l,c,u=[],d=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),p=0,m=new RegExp(e.source,d+"g");while(a=h.call(m,n)){if(l=m.lastIndex,l>p&&(u.push(n.slice(p,a.index)),a.length>1&&a.index=o))break;m.lastIndex===a.index&&m.lastIndex++}return p===n.length?!c&&m.test("")||u.push(""):u.push(n.slice(p)),u.length>o?u.slice(0,o):u}:"0".split(void 0,0).length?function(e,i){return void 0===e&&0===i?[]:t.call(this,e,i)}:t,[function(t,i){var r=s(this),o=void 0==t?void 0:t[e];return void 0!==o?o.call(t,r,i):n.call(String(r),t,i)},function(e,r){var s=i(n,e,this,r,n!==t);if(s.done)return s.value;var h=o(e),d=String(this),g=a(h,RegExp),v=h.unicode,C=(h.ignoreCase?"i":"")+(h.multiline?"m":"")+(h.unicode?"u":"")+(m?"y":"g"),b=new g(m?h:"^(?:"+h.source+")",C),I=void 0===r?f:r>>>0;if(0===I)return[];if(0===d.length)return null===u(b,d)?[d]:[];var y=0,A=0,w=[];while(A4}(function(e){e["xSmall"]="12px",e["small"]="16px",e["default"]="24px",e["medium"]="28px",e["large"]="36px",e["xLarge"]="40px"})(n||(n={}));var p=Object(h["a"])(o["a"],s["a"],a["a"],l["a"]).extend({name:"v-icon",props:{dense:Boolean,disabled:Boolean,left:Boolean,right:Boolean,size:[Number,String],tag:{type:String,required:!1,default:"i"}},computed:{medium:function(){return!1},hasClickListener:function(){return Boolean(this.listeners$.click||this.listeners$["!click"])}},methods:{getIcon:function(){var e="";return this.$slots.default&&(e=this.$slots.default[0].text.trim()),Object(c["w"])(this,e)},getSize:function(){var e={xSmall:this.xSmall,small:this.small,medium:this.medium,large:this.large,xLarge:this.xLarge},t=Object(c["t"])(e).find((function(t){return e[t]}));return t&&n[t]||Object(c["f"])(this.size)},getDefaultData:function(){return{staticClass:"v-icon notranslate",class:{"v-icon--disabled":this.disabled,"v-icon--left":this.left,"v-icon--link":this.hasClickListener,"v-icon--right":this.right,"v-icon--dense":this.dense},attrs:Object(r["a"])({"aria-hidden":!this.hasClickListener,disabled:this.hasClickListener&&this.disabled,type:this.hasClickListener?"button":void 0},this.attrs$),on:this.listeners$}},getSvgWrapperData:function(){var e=this.getSize(),t=Object(r["a"])(Object(r["a"])({},this.getDefaultData()),{},{style:e?{fontSize:e,height:e,width:e}:void 0});return this.applyColors(t),t},applyColors:function(e){e.class=Object(r["a"])(Object(r["a"])({},e.class),this.themeClasses),this.setTextColor(this.color,e)},renderFontIcon:function(e,t){var i=[],n=this.getDefaultData(),r="material-icons",o=e.indexOf("-"),s=o<=-1;s?i.push(e):(r=e.slice(0,o),d(r)&&(r="")),n.class[r]=!0,n.class[e]=!s;var a=this.getSize();return a&&(n.style={fontSize:a}),this.applyColors(n),t(this.hasClickListener?"button":this.tag,n,i)},renderSvgIcon:function(e,t){var i={class:"v-icon__svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":!0}},n=this.getSize();return n&&(i.style={fontSize:n,height:n,width:n}),t(this.hasClickListener?"button":"span",this.getSvgWrapperData(),[t("svg",i,[t("path",{attrs:{d:e}})])])},renderSvgIconComponent:function(e,t){var i={class:{"v-icon__component":!0}},n=this.getSize();n&&(i.style={fontSize:n,height:n,width:n}),this.applyColors(i);var r=e.component;return i.props=e.props,i.nativeOn=i.on,t(this.hasClickListener?"button":"span",this.getSvgWrapperData(),[t(r,i)])}},render:function(e){var t=this.getIcon();return"string"===typeof t?g(t)?this.renderSvgIcon(t,e):this.renderFontIcon(t,e):this.renderSvgIconComponent(t,e)}});t["a"]=u["a"].extend({name:"v-icon",$_wrapperFor:p,functional:!0,render:function(e,t){var i=t.data,n=t.children,r="";return i.domProps&&(r=i.domProps.textContent||i.domProps.innerHTML||r,delete i.domProps.textContent,delete i.domProps.innerHTML),e(p,i,r?[r]:n)}})},"13d5":function(e,t,i){"use strict";var n=i("23e7"),r=i("d58f").left,o=i("a640"),s=i("ae40"),a=i("2d00"),l=i("605d"),c=o("reduce"),u=s("reduce",{1:0}),h=!l&&a>79&&a<83;n({target:"Array",proto:!0,forced:!c||!u||h},{reduce:function(e){return r(this,e,arguments.length,arguments.length>1?arguments[1]:void 0)}})},"14c3":function(e,t,i){var n=i("c6b6"),r=i("9263");e.exports=function(e,t){var i=e.exec;if("function"===typeof i){var o=i.call(e,t);if("object"!==typeof o)throw TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==n(e))throw TypeError("RegExp#exec called on incompatible receiver");return r.call(e,t)}},"159b":function(e,t,i){var n=i("da84"),r=i("fdbc"),o=i("17c2"),s=i("9112");for(var a in r){var l=n[a],c=l&&l.prototype;if(c&&c.forEach!==o)try{s(c,"forEach",o)}catch(u){c.forEach=o}}},"166a":function(e,t,i){},1681:function(e,t,i){},"169a":function(e,t,i){"use strict";i("7db0"),i("caad"),i("45fc"),i("a9e3"),i("2532"),i("498a");var n=i("5530"),r=i("2909"),o=i("ade3"),s=(i("368e"),i("480e")),a=i("4ad4"),l=i("b848"),c=i("75eb"),u=(i("3c93"),i("a9ad")),h=i("7560"),d=i("f2e7"),g=i("58df"),p=Object(g["a"])(u["a"],h["a"],d["a"]).extend({name:"v-overlay",props:{absolute:Boolean,color:{type:String,default:"#212121"},dark:{type:Boolean,default:!0},opacity:{type:[Number,String],default:.46},value:{default:!0},zIndex:{type:[Number,String],default:5}},computed:{__scrim:function(){var e=this.setBackgroundColor(this.color,{staticClass:"v-overlay__scrim",style:{opacity:this.computedOpacity}});return this.$createElement("div",e)},classes:function(){return Object(n["a"])({"v-overlay--absolute":this.absolute,"v-overlay--active":this.isActive},this.themeClasses)},computedOpacity:function(){return Number(this.isActive?this.opacity:0)},styles:function(){return{zIndex:this.zIndex}}},methods:{genContent:function(){return this.$createElement("div",{staticClass:"v-overlay__content"},this.$slots.default)}},render:function(e){var t=[this.__scrim];return this.isActive&&t.push(this.genContent()),e("div",{staticClass:"v-overlay",class:this.classes,style:this.styles},t)}}),f=p,m=i("80d2"),v=i("2b0e"),C=v["a"].extend().extend({name:"overlayable",props:{hideOverlay:Boolean,overlayColor:String,overlayOpacity:[Number,String]},data:function(){return{animationFrame:0,overlay:null}},watch:{hideOverlay:function(e){this.isActive&&(e?this.removeOverlay():this.genOverlay())}},beforeDestroy:function(){this.removeOverlay()},methods:{createOverlay:function(){var e=new f({propsData:{absolute:this.absolute,value:!1,color:this.overlayColor,opacity:this.overlayOpacity}});e.$mount();var t=this.absolute?this.$el.parentNode:document.querySelector("[data-app]");t&&t.insertBefore(e.$el,t.firstChild),this.overlay=e},genOverlay:function(){var e=this;if(this.hideScroll(),!this.hideOverlay)return this.overlay||this.createOverlay(),this.animationFrame=requestAnimationFrame((function(){e.overlay&&(void 0!==e.activeZIndex?e.overlay.zIndex=String(e.activeZIndex-1):e.$el&&(e.overlay.zIndex=Object(m["p"])(e.$el)),e.overlay.value=!0)})),!0},removeOverlay:function(){var e=this,t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.overlay&&(Object(m["a"])(this.overlay.$el,"transitionend",(function(){e.overlay&&e.overlay.$el&&e.overlay.$el.parentNode&&!e.overlay.value&&(e.overlay.$el.parentNode.removeChild(e.overlay.$el),e.overlay.$destroy(),e.overlay=null)})),cancelAnimationFrame(this.animationFrame),this.overlay.value=!1),t&&this.showScroll()},scrollListener:function(e){if("keydown"===e.type){if(["INPUT","TEXTAREA","SELECT"].includes(e.target.tagName)||e.target.isContentEditable)return;var t=[m["s"].up,m["s"].pageup],i=[m["s"].down,m["s"].pagedown];if(t.includes(e.keyCode))e.deltaY=-1;else{if(!i.includes(e.keyCode))return;e.deltaY=1}}(e.target===this.overlay||"keydown"!==e.type&&e.target===document.body||this.checkPath(e))&&e.preventDefault()},hasScrollbar:function(e){if(!e||e.nodeType!==Node.ELEMENT_NODE)return!1;var t=window.getComputedStyle(e);return["auto","scroll"].includes(t.overflowY)&&e.scrollHeight>e.clientHeight},shouldScroll:function(e,t){return 0===e.scrollTop&&t<0||e.scrollTop+e.clientHeight===e.scrollHeight&&t>0},isInside:function(e,t){return e===t||null!==e&&e!==document.body&&this.isInside(e.parentNode,t)},checkPath:function(e){var t=e.path||this.composedPath(e),i=e.deltaY;if("keydown"===e.type&&t[0]===document.body){var n=this.$refs.dialog,r=window.getSelection().anchorNode;return!(n&&this.hasScrollbar(n)&&this.isInside(r,n))||this.shouldScroll(n,i)}for(var o=0;o=this.getMaxZIndex()},hideScroll:function(){this.fullscreen?document.documentElement.classList.add("overflow-y-hidden"):C.options.methods.hideScroll.call(this)},show:function(){var e=this;!this.fullscreen&&!this.hideOverlay&&this.genOverlay(),this.$nextTick((function(){e.$nextTick((function(){e.previousActiveElement=document.activeElement,e.$refs.content.focus(),e.bind()}))}))},bind:function(){window.addEventListener("focusin",this.onFocusin)},unbind:function(){window.removeEventListener("focusin",this.onFocusin)},onClickOutside:function(e){this.$emit("click:outside",e),this.persistent?this.noClickAnimation||this.animateClick():this.isActive=!1},onKeydown:function(e){if(e.keyCode===m["s"].esc&&!this.getOpenDependents().length)if(this.persistent)this.noClickAnimation||this.animateClick();else{this.isActive=!1;var t=this.getActivator();this.$nextTick((function(){return t&&t.focus()}))}this.$emit("keydown",e)},onFocusin:function(e){if(e&&this.retainFocus){var t=e.target;if(t&&![document,this.$refs.content].includes(t)&&!this.$refs.content.contains(t)&&this.activeZIndex>=this.getMaxZIndex()&&!this.getOpenDependentElements().some((function(e){return e.contains(t)}))){var i=this.$refs.content.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'),n=Object(r["a"])(i).find((function(e){return!e.hasAttribute("disabled")}));n&&n.focus()}}},genContent:function(){var e=this;return this.showLazyContent((function(){return[e.$createElement(s["a"],{props:{root:!0,light:e.light,dark:e.dark}},[e.$createElement("div",{class:e.contentClasses,attrs:Object(n["a"])({role:"document",tabindex:e.isActive?0:void 0},e.getScopeIdAttrs()),on:{keydown:e.onKeydown},style:{zIndex:e.activeZIndex},ref:"content"},[e.genTransition()])])]}))},genTransition:function(){var e=this.genInnerContent();return this.transition?this.$createElement("transition",{props:{name:this.transition,origin:this.origin,appear:!0}},[e]):e},genInnerContent:function(){var e={class:this.classes,ref:"dialog",directives:[{name:"click-outside",value:{handler:this.onClickOutside,closeConditional:this.closeConditional,include:this.getOpenDependentElements}},{name:"show",value:this.isActive}],style:{transformOrigin:this.origin}};return this.fullscreen||(e.style=Object(n["a"])(Object(n["a"])({},e.style),{},{maxWidth:"none"===this.maxWidth?void 0:Object(m["f"])(this.maxWidth),width:"auto"===this.width?void 0:Object(m["f"])(this.width)})),this.$createElement("div",e,this.getContentSlot())}},render:function(e){return e("div",{staticClass:"v-dialog__container",class:{"v-dialog__container--attached":""===this.attach||!0===this.attach||"attach"===this.attach},attrs:{role:"dialog"}},[this.genActivator(),this.genContent()])}})},"16b7":function(e,t,i){"use strict";i("a9e3");var n=i("2b0e");t["a"]=n["a"].extend().extend({name:"delayable",props:{openDelay:{type:[Number,String],default:0},closeDelay:{type:[Number,String],default:0}},data:function(){return{openTimeout:void 0,closeTimeout:void 0}},methods:{clearDelay:function(){clearTimeout(this.openTimeout),clearTimeout(this.closeTimeout)},runDelay:function(e,t){var i=this;this.clearDelay();var n=parseInt(this["".concat(e,"Delay")],10);this["".concat(e,"Timeout")]=setTimeout(t||function(){i.isActive={open:!0,close:!1}[e]},n)}}})},"17c2":function(e,t,i){"use strict";var n=i("b727").forEach,r=i("a640"),o=i("ae40"),s=r("forEach"),a=o("forEach");e.exports=s&&a?[].forEach:function(e){return n(this,e,arguments.length>1?arguments[1]:void 0)}},"18a5":function(e,t,i){"use strict";var n=i("23e7"),r=i("857a"),o=i("af03");n({target:"String",proto:!0,forced:o("anchor")},{anchor:function(e){return r(this,"a","name",e)}})},"19aa":function(e,t){e.exports=function(e,t,i){if(!(e instanceof t))throw TypeError("Incorrect "+(i?i+" ":"")+"invocation");return e}},"1b2c":function(e,t,i){},"1be4":function(e,t,i){var n=i("d066");e.exports=n("document","documentElement")},"1c0b":function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},"1c7e":function(e,t,i){var n=i("b622"),r=n("iterator"),o=!1;try{var s=0,a={next:function(){return{done:!!s++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(l){}e.exports=function(e,t){if(!t&&!o)return!1;var i=!1;try{var n={};n[r]=function(){return{next:function(){return{done:i=!0}}}},e(n)}catch(l){}return i}},"1c87":function(e,t,i){"use strict";i("99af"),i("ac1f"),i("5319"),i("498a"),i("9911");var n=i("ade3"),r=i("5530"),o=i("2b0e"),s=i("5607"),a=i("80d2");t["a"]=o["a"].extend({name:"routable",directives:{Ripple:s["a"]},props:{activeClass:String,append:Boolean,disabled:Boolean,exact:{type:Boolean,default:void 0},exactActiveClass:String,link:Boolean,href:[String,Object],to:[String,Object],nuxt:Boolean,replace:Boolean,ripple:{type:[Boolean,Object],default:null},tag:String,target:String},data:function(){return{isActive:!1,proxyClass:""}},computed:{classes:function(){var e={};return this.to||(this.activeClass&&(e[this.activeClass]=this.isActive),this.proxyClass&&(e[this.proxyClass]=this.isActive)),e},computedRipple:function(){var e;return null!=(e=this.ripple)?e:!this.disabled&&this.isClickable},isClickable:function(){return!this.disabled&&Boolean(this.isLink||this.$listeners.click||this.$listeners["!click"]||this.$attrs.tabindex)},isLink:function(){return this.to||this.href||this.link},styles:function(){return{}}},watch:{$route:"onRouteChange"},methods:{click:function(e){this.$emit("click",e)},generateRouteLink:function(){var e,t,i=this.exact,o=(e={attrs:{tabindex:"tabindex"in this.$attrs?this.$attrs.tabindex:void 0},class:this.classes,style:this.styles,props:{},directives:[{name:"ripple",value:this.computedRipple}]},Object(n["a"])(e,this.to?"nativeOn":"on",Object(r["a"])(Object(r["a"])({},this.$listeners),{},{click:this.click})),Object(n["a"])(e,"ref","link"),e);if("undefined"===typeof this.exact&&(i="/"===this.to||this.to===Object(this.to)&&"/"===this.to.path),this.to){var s=this.activeClass,a=this.exactActiveClass||s;this.proxyClass&&(s="".concat(s," ").concat(this.proxyClass).trim(),a="".concat(a," ").concat(this.proxyClass).trim()),t=this.nuxt?"nuxt-link":"router-link",Object.assign(o.props,{to:this.to,exact:i,activeClass:s,exactActiveClass:a,append:this.append,replace:this.replace})}else t=(this.href?"a":this.tag)||"div","a"===t&&this.href&&(o.attrs.href=this.href);return this.target&&(o.attrs.target=this.target),{tag:t,data:o}},onRouteChange:function(){var e=this;if(this.to&&this.$refs.link&&this.$route){var t="".concat(this.activeClass," ").concat(this.proxyClass||"").trim(),i="_vnode.data.class.".concat(t);this.$nextTick((function(){Object(a["l"])(e.$refs.link,i)&&e.toggle()}))}},toggle:function(){}}})},"1cdc":function(e,t,i){var n=i("342f");e.exports=/(iphone|ipod|ipad).*applewebkit/i.test(n)},"1d2b":function(e,t,i){"use strict";e.exports=function(e,t){return function(){for(var i=new Array(arguments.length),n=0;n=51||!n((function(){var t=[],i=t.constructor={};return i[s]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},"20f6":function(e,t,i){},"21be":function(e,t,i){"use strict";i("99af"),i("caad"),i("2532");var n=i("2909"),r=i("2b0e"),o=i("80d2");t["a"]=r["a"].extend().extend({name:"stackable",data:function(){return{stackElement:null,stackExclude:null,stackMinZIndex:0,isActive:!1}},computed:{activeZIndex:function(){if("undefined"===typeof window)return 0;var e=this.stackElement||this.$refs.content,t=this.isActive?this.getMaxZIndex(this.stackExclude||[e])+2:Object(o["p"])(e);return null==t?t:parseInt(t)}},methods:{getMaxZIndex:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=this.$el,i=[this.stackMinZIndex,Object(o["p"])(t)],r=[].concat(Object(n["a"])(document.getElementsByClassName("v-menu__content--active")),Object(n["a"])(document.getElementsByClassName("v-dialog__content--active"))),s=0;sd;d++)if(p=w(e[d]),p&&p instanceof c)return p;return new c(!1)}u=h.call(e)}f=u.next;while(!(m=f.call(u)).done){try{p=w(m.value)}catch(x){throw l(u),x}if("object"==typeof p&&p&&p instanceof c)return p}return new c(!1)}},"23a7":function(e,t,i){"use strict";i("99af"),i("a623"),i("4160"),i("caad"),i("d81d"),i("13d5"),i("fb6a"),i("a434"),i("b0c0"),i("a9e3"),i("159b");var n=i("2909"),r=i("5530"),o=i("53ca"),s=(i("5803"),i("2677")),a=i("cc20"),l=i("80d2"),c=i("d9bd"),u=i("d9f7");t["a"]=s["a"].extend({name:"v-file-input",model:{prop:"value",event:"change"},props:{chips:Boolean,clearable:{type:Boolean,default:!0},counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},hideInput:Boolean,placeholder:String,prependIcon:{type:String,default:"$file"},readonly:{type:Boolean,default:!1},showSize:{type:[Boolean,Number],default:!1,validator:function(e){return"boolean"===typeof e||[1e3,1024].includes(e)}},smallChips:Boolean,truncateLength:{type:[Number,String],default:22},type:{type:String,default:"file"},value:{default:void 0,validator:function(e){return Object(l["y"])(e).every((function(e){return null!=e&&"object"===Object(o["a"])(e)}))}}},computed:{classes:function(){return Object(r["a"])(Object(r["a"])({},s["a"].options.computed.classes.call(this)),{},{"v-file-input":!0})},computedCounterValue:function(){var e=this.isMultiple&&this.lazyValue?this.lazyValue.length:this.lazyValue instanceof File?1:0;if(!this.showSize)return this.$vuetify.lang.t(this.counterString,e);var t=this.internalArrayValue.reduce((function(e,t){var i=t.size,n=void 0===i?0:i;return e+n}),0);return this.$vuetify.lang.t(this.counterSizeString,e,Object(l["q"])(t,1024===this.base))},internalArrayValue:function(){return Object(l["y"])(this.internalValue)},internalValue:{get:function(){return this.lazyValue},set:function(e){this.lazyValue=e,this.$emit("change",this.lazyValue)}},isDirty:function(){return this.internalArrayValue.length>0},isLabelActive:function(){return this.isDirty},isMultiple:function(){return this.$attrs.hasOwnProperty("multiple")},text:function(){var e=this;return this.isDirty?this.internalArrayValue.map((function(t){var i=t.name,n=void 0===i?"":i,r=t.size,o=void 0===r?0:r,s=e.truncateText(n);return e.showSize?"".concat(s," (").concat(Object(l["q"])(o,1024===e.base),")"):s})):[this.placeholder]},base:function(){return"boolean"!==typeof this.showSize?this.showSize:void 0},hasChips:function(){return this.chips||this.smallChips}},watch:{readonly:{handler:function(e){!0===e&&Object(c["b"])("readonly is not supported on ",this)},immediate:!0},value:function(e){var t=this.isMultiple?e:e?[e]:[];Object(l["h"])(t,this.$refs.input.files)||(this.$refs.input.value="")}},methods:{clearableCallback:function(){this.internalValue=this.isMultiple?[]:void 0,this.$refs.input.value=""},genChips:function(){var e=this;return this.isDirty?this.text.map((function(t,i){return e.$createElement(a["a"],{props:{small:e.smallChips},on:{"click:close":function(){var t=e.internalValue;t.splice(i,1),e.internalValue=t}}},[t])})):[]},genControl:function(){var e=s["a"].options.methods.genControl.call(this);return this.hideInput&&(e.data.style=Object(u["b"])(e.data.style,{display:"none"})),e},genInput:function(){var e=s["a"].options.methods.genInput.call(this);return delete e.data.domProps.value,delete e.data.on.input,e.data.on.change=this.onInput,[this.genSelections(),e]},genPrependSlot:function(){var e=this;if(!this.prependIcon)return null;var t=this.genIcon("prepend",(function(){e.$refs.input.click()}));return this.genSlot("prepend","outer",[t])},genSelectionText:function(){var e=this.text.length;return e<2?this.text:this.showSize&&!this.counter?[this.computedCounterValue]:[this.$vuetify.lang.t(this.counterString,e)]},genSelections:function(){var e=this,t=[];return this.isDirty&&this.$scopedSlots.selection?this.internalArrayValue.forEach((function(i,n){e.$scopedSlots.selection&&t.push(e.$scopedSlots.selection({text:e.text[n],file:i,index:n}))})):t.push(this.hasChips&&this.isDirty?this.genChips():this.genSelectionText()),this.$createElement("div",{staticClass:"v-file-input__text",class:{"v-file-input__text--placeholder":this.placeholder&&!this.isDirty,"v-file-input__text--chips":this.hasChips&&!this.$scopedSlots.selection}},t)},genTextFieldSlot:function(){var e=this,t=s["a"].options.methods.genTextFieldSlot.call(this);return t.data.on=Object(r["a"])(Object(r["a"])({},t.data.on||{}),{},{click:function(){return e.$refs.input.click()}}),t},onInput:function(e){var t=Object(n["a"])(e.target.files||[]);this.internalValue=this.isMultiple?t:t[0],this.initialValue=this.internalValue},onKeyDown:function(e){this.$emit("keydown",e)},truncateText:function(e){if(e.length=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};n.forEach(["delete","get","head"],(function(e){l.headers[e]={}})),n.forEach(["post","put","patch"],(function(e){l.headers[e]=n.merge(o)})),e.exports=l}).call(this,i("4362"))},"24b2":function(e,t,i){"use strict";i("a9e3");var n=i("80d2"),r=i("2b0e");t["a"]=r["a"].extend({name:"measurable",props:{height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},computed:{measurableStyles:function(){var e={},t=Object(n["f"])(this.height),i=Object(n["f"])(this.minHeight),r=Object(n["f"])(this.minWidth),o=Object(n["f"])(this.maxHeight),s=Object(n["f"])(this.maxWidth),a=Object(n["f"])(this.width);return t&&(e.height=t),i&&(e.minHeight=i),r&&(e.minWidth=r),o&&(e.maxHeight=o),s&&(e.maxWidth=s),a&&(e.width=a),e}}})},2532:function(e,t,i){"use strict";var n=i("23e7"),r=i("5a34"),o=i("1d80"),s=i("ab13");n({target:"String",proto:!0,forced:!s("includes")},{includes:function(e){return!!~String(o(this)).indexOf(r(e),arguments.length>1?arguments[1]:void 0)}})},"25a8":function(e,t,i){},"25f0":function(e,t,i){"use strict";var n=i("6eeb"),r=i("825a"),o=i("d039"),s=i("ad6d"),a="toString",l=RegExp.prototype,c=l[a],u=o((function(){return"/a/b"!=c.call({source:"a",flags:"b"})})),h=c.name!=a;(u||h)&&n(RegExp.prototype,a,(function(){var e=r(this),t=String(e.source),i=e.flags,n=String(void 0===i&&e instanceof RegExp&&!("flags"in l)?s.call(e):i);return"/"+t+"/"+n}),{unsafe:!0})},2626:function(e,t,i){"use strict";var n=i("d066"),r=i("9bf2"),o=i("b622"),s=i("83ab"),a=o("species");e.exports=function(e){var t=n(e),i=r.f;s&&t&&!t[a]&&i(t,a,{configurable:!0,get:function(){return this}})}},2677:function(e,t,i){"use strict";var n=i("8654");t["a"]=n["a"]},2877:function(e,t,i){"use strict";function n(e,t,i,n,r,o,s,a){var l,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=i,c._compiled=!0),n&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),s?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},c._ssrRegister=l):r&&(l=a?function(){r.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var h=c.beforeCreate;c.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:c}}i.d(t,"a",(function(){return n}))},2909:function(e,t,i){"use strict";i.d(t,"a",(function(){return l}));var n=i("6b75");function r(e){if(Array.isArray(e))return Object(n["a"])(e)}i("a4d3"),i("e01a"),i("d28b"),i("a630"),i("d3b7"),i("3ca3"),i("ddb0");function o(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}var s=i("06c5");function a(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function l(e){return r(e)||o(e)||Object(s["a"])(e)||a()}},"297c":function(e,t,i){"use strict";i("a9e3");var n=i("2b0e"),r=(i("c7cd"),i("5530")),o=i("ade3"),s=(i("6ece"),i("0789")),a=i("a9ad"),l=i("fe6c"),c=i("a452"),u=i("7560"),h=i("80d2"),d=i("58df"),g=Object(d["a"])(a["a"],Object(l["b"])(["absolute","fixed","top","bottom"]),c["a"],u["a"]),p=g.extend({name:"v-progress-linear",props:{active:{type:Boolean,default:!0},backgroundColor:{type:String,default:null},backgroundOpacity:{type:[Number,String],default:null},bufferValue:{type:[Number,String],default:100},color:{type:String,default:"primary"},height:{type:[Number,String],default:4},indeterminate:Boolean,query:Boolean,reverse:Boolean,rounded:Boolean,stream:Boolean,striped:Boolean,value:{type:[Number,String],default:0}},data:function(){return{internalLazyValue:this.value||0}},computed:{__cachedBackground:function(){return this.$createElement("div",this.setBackgroundColor(this.backgroundColor||this.color,{staticClass:"v-progress-linear__background",style:this.backgroundStyle}))},__cachedBar:function(){return this.$createElement(this.computedTransition,[this.__cachedBarType])},__cachedBarType:function(){return this.indeterminate?this.__cachedIndeterminate:this.__cachedDeterminate},__cachedBuffer:function(){return this.$createElement("div",{staticClass:"v-progress-linear__buffer",style:this.styles})},__cachedDeterminate:function(){return this.$createElement("div",this.setBackgroundColor(this.color,{staticClass:"v-progress-linear__determinate",style:{width:Object(h["f"])(this.normalizedValue,"%")}}))},__cachedIndeterminate:function(){return this.$createElement("div",{staticClass:"v-progress-linear__indeterminate",class:{"v-progress-linear__indeterminate--active":this.active}},[this.genProgressBar("long"),this.genProgressBar("short")])},__cachedStream:function(){return this.stream?this.$createElement("div",this.setTextColor(this.color,{staticClass:"v-progress-linear__stream",style:{width:Object(h["f"])(100-this.normalizedBuffer,"%")}})):null},backgroundStyle:function(){var e,t=null==this.backgroundOpacity?this.backgroundColor?1:.3:parseFloat(this.backgroundOpacity);return e={opacity:t},Object(o["a"])(e,this.isReversed?"right":"left",Object(h["f"])(this.normalizedValue,"%")),Object(o["a"])(e,"width",Object(h["f"])(this.normalizedBuffer-this.normalizedValue,"%")),e},classes:function(){return Object(r["a"])({"v-progress-linear--absolute":this.absolute,"v-progress-linear--fixed":this.fixed,"v-progress-linear--query":this.query,"v-progress-linear--reactive":this.reactive,"v-progress-linear--reverse":this.isReversed,"v-progress-linear--rounded":this.rounded,"v-progress-linear--striped":this.striped},this.themeClasses)},computedTransition:function(){return this.indeterminate?s["c"]:s["d"]},isReversed:function(){return this.$vuetify.rtl!==this.reverse},normalizedBuffer:function(){return this.normalize(this.bufferValue)},normalizedValue:function(){return this.normalize(this.internalLazyValue)},reactive:function(){return Boolean(this.$listeners.change)},styles:function(){var e={};return this.active||(e.height=0),this.indeterminate||100===parseFloat(this.normalizedBuffer)||(e.width=Object(h["f"])(this.normalizedBuffer,"%")),e}},methods:{genContent:function(){var e=Object(h["n"])(this,"default",{value:this.internalLazyValue});return e?this.$createElement("div",{staticClass:"v-progress-linear__content"},e):null},genListeners:function(){var e=this.$listeners;return this.reactive&&(e.click=this.onClick),e},genProgressBar:function(e){return this.$createElement("div",this.setBackgroundColor(this.color,{staticClass:"v-progress-linear__indeterminate",class:Object(o["a"])({},e,!0)}))},onClick:function(e){if(this.reactive){var t=this.$el.getBoundingClientRect(),i=t.width;this.internalValue=e.offsetX/i*100}},normalize:function(e){return e<0?0:e>100?100:parseFloat(e)}},render:function(e){var t={staticClass:"v-progress-linear",attrs:{role:"progressbar","aria-valuemin":0,"aria-valuemax":this.normalizedBuffer,"aria-valuenow":this.indeterminate?void 0:this.normalizedValue},class:this.classes,style:{bottom:this.bottom?0:void 0,height:this.active?Object(h["f"])(this.height):0,top:this.top?0:void 0},on:this.genListeners()};return e("div",t,[this.__cachedStream,this.__cachedBackground,this.__cachedBuffer,this.__cachedBar,this.genContent()])}}),f=p;t["a"]=n["a"].extend().extend({name:"loadable",props:{loading:{type:[Boolean,String],default:!1},loaderHeight:{type:[Number,String],default:2}},methods:{genProgress:function(){return!1===this.loading?null:this.$slots.progress||this.$createElement(f,{props:{absolute:!0,color:!0===this.loading||""===this.loading?this.color||"primary":this.loading,height:this.loaderHeight,indeterminate:!0}})}}})},"2a62":function(e,t,i){var n=i("825a");e.exports=function(e){var t=e["return"];if(void 0!==t)return n(t.call(e)).value}},"2a7f":function(e,t,i){"use strict";i.d(t,"a",(function(){return o}));var n=i("71d9"),r=i("80d2"),o=Object(r["g"])("v-toolbar__title"),s=Object(r["g"])("v-toolbar__items");n["a"]},"2b0e":function(e,t,i){"use strict";(function(e){ -/*! - * Vue.js v2.6.12 - * (c) 2014-2020 Evan You - * Released under the MIT License. - */ -var i=Object.freeze({});function n(e){return void 0===e||null===e}function r(e){return void 0!==e&&null!==e}function o(e){return!0===e}function s(e){return!1===e}function a(e){return"string"===typeof e||"number"===typeof e||"symbol"===typeof e||"boolean"===typeof e}function l(e){return null!==e&&"object"===typeof e}var c=Object.prototype.toString;function u(e){return"[object Object]"===c.call(e)}function h(e){return"[object RegExp]"===c.call(e)}function d(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function g(e){return r(e)&&"function"===typeof e.then&&"function"===typeof e.catch}function p(e){return null==e?"":Array.isArray(e)||u(e)&&e.toString===c?JSON.stringify(e,null,2):String(e)}function f(e){var t=parseFloat(e);return isNaN(t)?e:t}function m(e,t){for(var i=Object.create(null),n=e.split(","),r=0;r-1)return e.splice(i,1)}}var b=Object.prototype.hasOwnProperty;function I(e,t){return b.call(e,t)}function y(e){var t=Object.create(null);return function(i){var n=t[i];return n||(t[i]=e(i))}}var A=/-(\w)/g,w=y((function(e){return e.replace(A,(function(e,t){return t?t.toUpperCase():""}))})),x=y((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),S=/\B([A-Z])/g,k=y((function(e){return e.replace(S,"-$1").toLowerCase()}));function T(e,t){function i(i){var n=arguments.length;return n?n>1?e.apply(t,arguments):e.call(t,i):e.call(t)}return i._length=e.length,i}function j(e,t){return e.bind(t)}var O=Function.prototype.bind?j:T;function M(e,t){t=t||0;var i=e.length-t,n=new Array(i);while(i--)n[i]=e[i+t];return n}function E(e,t){for(var i in t)e[i]=t[i];return e}function L(e){for(var t={},i=0;i0,ie=q&&q.indexOf("edge/")>0,ne=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===Q),re=(q&&/chrome\/\d+/.test(q),q&&/phantomjs/.test(q),q&&q.match(/firefox\/(\d+)/)),oe={}.watch,se=!1;if(J)try{var ae={};Object.defineProperty(ae,"passive",{get:function(){se=!0}}),window.addEventListener("test-passive",null,ae)}catch(ws){}var le=function(){return void 0===Y&&(Y=!J&&!U&&"undefined"!==typeof e&&(e["process"]&&"server"===e["process"].env.VUE_ENV)),Y},ce=J&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ue(e){return"function"===typeof e&&/native code/.test(e.toString())}var he,de="undefined"!==typeof Symbol&&ue(Symbol)&&"undefined"!==typeof Reflect&&ue(Reflect.ownKeys);he="undefined"!==typeof Set&&ue(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var ge=N,pe=0,fe=function(){this.id=pe++,this.subs=[]};fe.prototype.addSub=function(e){this.subs.push(e)},fe.prototype.removeSub=function(e){C(this.subs,e)},fe.prototype.depend=function(){fe.target&&fe.target.addDep(this)},fe.prototype.notify=function(){var e=this.subs.slice();for(var t=0,i=e.length;t-1)if(o&&!I(r,"default"))s=!1;else if(""===s||s===k(e)){var l=et(String,r.type);(l<0||a0&&(s=Tt(s,(t||"")+"_"+i),kt(s[0])&&kt(c)&&(u[l]=Ae(c.text+s[0].text),s.shift()),u.push.apply(u,s)):a(s)?kt(c)?u[l]=Ae(c.text+s):""!==s&&u.push(Ae(s)):kt(s)&&kt(c)?u[l]=Ae(c.text+s.text):(o(e._isVList)&&r(s.tag)&&n(s.key)&&r(t)&&(s.key="__vlist"+t+"_"+i+"__"),u.push(s)));return u}function jt(e){var t=e.$options.provide;t&&(e._provided="function"===typeof t?t.call(e):t)}function Ot(e){var t=Mt(e.$options.inject,e);t&&(Oe(!1),Object.keys(t).forEach((function(i){Re(e,i,t[i])})),Oe(!0))}function Mt(e,t){if(e){for(var i=Object.create(null),n=de?Reflect.ownKeys(e):Object.keys(e),r=0;r0,s=e?!!e.$stable:!o,a=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(s&&n&&n!==i&&a===n.$key&&!o&&!n.$hasNormal)return n;for(var l in r={},e)e[l]&&"$"!==l[0]&&(r[l]=Rt(t,l,e[l]))}else r={};for(var c in t)c in r||(r[c]=_t(t,c));return e&&Object.isExtensible(e)&&(e._normalized=r),V(r,"$stable",s),V(r,"$key",a),V(r,"$hasNormal",o),r}function Rt(e,t,i){var n=function(){var e=arguments.length?i.apply(null,arguments):i({});return e=e&&"object"===typeof e&&!Array.isArray(e)?[e]:St(e),e&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return i.proxy&&Object.defineProperty(e,t,{get:n,enumerable:!0,configurable:!0}),n}function _t(e,t){return function(){return e[t]}}function $t(e,t){var i,n,o,s,a;if(Array.isArray(e)||"string"===typeof e)for(i=new Array(e.length),n=0,o=e.length;n1?M(i):i;for(var n=M(arguments,1),r='event handler for "'+e+'"',o=0,s=i.length;odocument.createEvent("Event").timeStamp&&(Ki=function(){return Yi.now()})}function Xi(){var e,t;for(Fi=Ki(),Pi=!0,Bi.sort((function(e,t){return e.id-t.id})),zi=0;zizi&&Bi[i].id>e.id)i--;Bi.splice(i+1,0,e)}else Bi.push(e);Hi||(Hi=!0,pt(Xi))}}var en=0,tn=function(e,t,i,n,r){this.vm=e,r&&(e._watcher=this),e._watchers.push(this),n?(this.deep=!!n.deep,this.user=!!n.user,this.lazy=!!n.lazy,this.sync=!!n.sync,this.before=n.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=i,this.id=++en,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new he,this.newDepIds=new he,this.expression="","function"===typeof t?this.getter=t:(this.getter=K(t),this.getter||(this.getter=N)),this.value=this.lazy?void 0:this.get()};tn.prototype.get=function(){var e;ve(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(ws){if(!this.user)throw ws;tt(ws,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&mt(e),Ce(),this.cleanupDeps()}return e},tn.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},tn.prototype.cleanupDeps=function(){var e=this.deps.length;while(e--){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var i=this.depIds;this.depIds=this.newDepIds,this.newDepIds=i,this.newDepIds.clear(),i=this.deps,this.deps=this.newDeps,this.newDeps=i,this.newDeps.length=0},tn.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():qi(this)},tn.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||l(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(ws){tt(ws,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},tn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},tn.prototype.depend=function(){var e=this.deps.length;while(e--)this.deps[e].depend()},tn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||C(this.vm._watchers,this);var e=this.deps.length;while(e--)this.deps[e].removeSub(this);this.active=!1}};var nn={enumerable:!0,configurable:!0,get:N,set:N};function rn(e,t,i){nn.get=function(){return this[t][i]},nn.set=function(e){this[t][i]=e},Object.defineProperty(e,i,nn)}function on(e){e._watchers=[];var t=e.$options;t.props&&sn(e,t.props),t.methods&&pn(e,t.methods),t.data?an(e):Ne(e._data={},!0),t.computed&&un(e,t.computed),t.watch&&t.watch!==oe&&fn(e,t.watch)}function sn(e,t){var i=e.$options.propsData||{},n=e._props={},r=e.$options._propKeys=[],o=!e.$parent;o||Oe(!1);var s=function(o){r.push(o);var s=Je(o,t,i,e);Re(n,o,s),o in e||rn(e,"_props",o)};for(var a in t)s(a);Oe(!0)}function an(e){var t=e.$options.data;t=e._data="function"===typeof t?ln(t,e):t||{},u(t)||(t={});var i=Object.keys(t),n=e.$options.props,r=(e.$options.methods,i.length);while(r--){var o=i[r];0,n&&I(n,o)||z(o)||rn(e,"_data",o)}Ne(t,!0)}function ln(e,t){ve();try{return e.call(t,t)}catch(ws){return tt(ws,t,"data()"),{}}finally{Ce()}}var cn={lazy:!0};function un(e,t){var i=e._computedWatchers=Object.create(null),n=le();for(var r in t){var o=t[r],s="function"===typeof o?o:o.get;0,n||(i[r]=new tn(e,s||N,N,cn)),r in e||hn(e,r,o)}}function hn(e,t,i){var n=!le();"function"===typeof i?(nn.get=n?dn(t):gn(i),nn.set=N):(nn.get=i.get?n&&!1!==i.cache?dn(t):gn(i.get):N,nn.set=i.set||N),Object.defineProperty(e,t,nn)}function dn(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),fe.target&&t.depend(),t.value}}function gn(e){return function(){return e.call(this,this)}}function pn(e,t){e.$options.props;for(var i in t)e[i]="function"!==typeof t[i]?N:O(t[i],e)}function fn(e,t){for(var i in t){var n=t[i];if(Array.isArray(n))for(var r=0;r-1)return this;var i=M(arguments,1);return i.unshift(this),"function"===typeof e.install?e.install.apply(e,i):"function"===typeof e&&e.apply(null,i),t.push(e),this}}function Sn(e){e.mixin=function(e){return this.options=Ye(this.options,e),this}}function kn(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var i=this,n=i.cid,r=e._Ctor||(e._Ctor={});if(r[n])return r[n];var o=e.name||i.options.name;var s=function(e){this._init(e)};return s.prototype=Object.create(i.prototype),s.prototype.constructor=s,s.cid=t++,s.options=Ye(i.options,e),s["super"]=i,s.options.props&&Tn(s),s.options.computed&&jn(s),s.extend=i.extend,s.mixin=i.mixin,s.use=i.use,W.forEach((function(e){s[e]=i[e]})),o&&(s.options.components[o]=s),s.superOptions=i.options,s.extendOptions=e,s.sealedOptions=E({},s.options),r[n]=s,s}}function Tn(e){var t=e.options.props;for(var i in t)rn(e.prototype,"_props",i)}function jn(e){var t=e.options.computed;for(var i in t)hn(e.prototype,i,t[i])}function On(e){W.forEach((function(t){e[t]=function(e,i){return i?("component"===t&&u(i)&&(i.name=i.name||e,i=this.options._base.extend(i)),"directive"===t&&"function"===typeof i&&(i={bind:i,update:i}),this.options[t+"s"][e]=i,i):this.options[t+"s"][e]}}))}function Mn(e){return e&&(e.Ctor.options.name||e.tag)}function En(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"===typeof e?e.split(",").indexOf(t)>-1:!!h(e)&&e.test(t)}function Ln(e,t){var i=e.cache,n=e.keys,r=e._vnode;for(var o in i){var s=i[o];if(s){var a=Mn(s.componentOptions);a&&!t(a)&&Nn(i,o,n,r)}}}function Nn(e,t,i,n){var r=e[t];!r||n&&r.tag===n.tag||r.componentInstance.$destroy(),e[t]=null,C(i,t)}bn(wn),vn(wn),ji(wn),Li(wn),vi(wn);var Rn=[String,RegExp,Array],_n={name:"keep-alive",abstract:!0,props:{include:Rn,exclude:Rn,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)Nn(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch("include",(function(t){Ln(e,(function(e){return En(t,e)}))})),this.$watch("exclude",(function(t){Ln(e,(function(e){return!En(t,e)}))}))},render:function(){var e=this.$slots.default,t=Ai(e),i=t&&t.componentOptions;if(i){var n=Mn(i),r=this,o=r.include,s=r.exclude;if(o&&(!n||!En(o,n))||s&&n&&En(s,n))return t;var a=this,l=a.cache,c=a.keys,u=null==t.key?i.Ctor.cid+(i.tag?"::"+i.tag:""):t.key;l[u]?(t.componentInstance=l[u].componentInstance,C(c,u),c.push(u)):(l[u]=t,c.push(u),this.max&&c.length>parseInt(this.max)&&Nn(l,c[0],c,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}},$n={KeepAlive:_n};function Dn(e){var t={get:function(){return H}};Object.defineProperty(e,"config",t),e.util={warn:ge,extend:E,mergeOptions:Ye,defineReactive:Re},e.set=_e,e.delete=$e,e.nextTick=pt,e.observable=function(e){return Ne(e),e},e.options=Object.create(null),W.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,E(e.options.components,$n),xn(e),Sn(e),kn(e),On(e)}Dn(wn),Object.defineProperty(wn.prototype,"$isServer",{get:le}),Object.defineProperty(wn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(wn,"FunctionalRenderContext",{value:Ut}),wn.version="2.6.12";var Zn=m("style,class"),Bn=m("input,textarea,option,select,progress"),Wn=function(e,t,i){return"value"===i&&Bn(e)&&"button"!==t||"selected"===i&&"option"===e||"checked"===i&&"input"===e||"muted"===i&&"video"===e},Gn=m("contenteditable,draggable,spellcheck"),Hn=m("events,caret,typing,plaintext-only"),Pn=function(e,t){return Yn(t)||"false"===t?"false":"contenteditable"===e&&Hn(t)?t:"true"},zn=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Vn="http://www.w3.org/1999/xlink",Fn=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Kn=function(e){return Fn(e)?e.slice(6,e.length):""},Yn=function(e){return null==e||!1===e};function Xn(e){var t=e.data,i=e,n=e;while(r(n.componentInstance))n=n.componentInstance._vnode,n&&n.data&&(t=Jn(n.data,t));while(r(i=i.parent))i&&i.data&&(t=Jn(t,i.data));return Un(t.staticClass,t.class)}function Jn(e,t){return{staticClass:Qn(e.staticClass,t.staticClass),class:r(e.class)?[e.class,t.class]:t.class}}function Un(e,t){return r(e)||r(t)?Qn(e,qn(t)):""}function Qn(e,t){return e?t?e+" "+t:e:t||""}function qn(e){return Array.isArray(e)?er(e):l(e)?tr(e):"string"===typeof e?e:""}function er(e){for(var t,i="",n=0,o=e.length;n-1?ar[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:ar[e]=/HTMLUnknownElement/.test(t.toString())}var cr=m("text,number,password,search,email,tel,url");function ur(e){if("string"===typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}function hr(e,t){var i=document.createElement(e);return"select"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&i.setAttribute("multiple","multiple"),i}function dr(e,t){return document.createElementNS(ir[e],t)}function gr(e){return document.createTextNode(e)}function pr(e){return document.createComment(e)}function fr(e,t,i){e.insertBefore(t,i)}function mr(e,t){e.removeChild(t)}function vr(e,t){e.appendChild(t)}function Cr(e){return e.parentNode}function br(e){return e.nextSibling}function Ir(e){return e.tagName}function yr(e,t){e.textContent=t}function Ar(e,t){e.setAttribute(t,"")}var wr=Object.freeze({createElement:hr,createElementNS:dr,createTextNode:gr,createComment:pr,insertBefore:fr,removeChild:mr,appendChild:vr,parentNode:Cr,nextSibling:br,tagName:Ir,setTextContent:yr,setStyleScope:Ar}),xr={create:function(e,t){Sr(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Sr(e,!0),Sr(t))},destroy:function(e){Sr(e,!0)}};function Sr(e,t){var i=e.data.ref;if(r(i)){var n=e.context,o=e.componentInstance||e.elm,s=n.$refs;t?Array.isArray(s[i])?C(s[i],o):s[i]===o&&(s[i]=void 0):e.data.refInFor?Array.isArray(s[i])?s[i].indexOf(o)<0&&s[i].push(o):s[i]=[o]:s[i]=o}}var kr=new be("",{},[]),Tr=["create","activate","update","remove","destroy"];function jr(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&r(e.data)===r(t.data)&&Or(e,t)||o(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&n(t.asyncFactory.error))}function Or(e,t){if("input"!==e.tag)return!0;var i,n=r(i=e.data)&&r(i=i.attrs)&&i.type,o=r(i=t.data)&&r(i=i.attrs)&&i.type;return n===o||cr(n)&&cr(o)}function Mr(e,t,i){var n,o,s={};for(n=t;n<=i;++n)o=e[n].key,r(o)&&(s[o]=n);return s}function Er(e){var t,i,s={},l=e.modules,c=e.nodeOps;for(t=0;tf?(h=n(i[C+1])?null:i[C+1].elm,w(e,h,i,p,C,o)):p>C&&S(t,d,f)}function j(e,t,i,n){for(var o=i;o-1?Hr(e,t,i):zn(t)?Yn(i)?e.removeAttribute(t):(i="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,i)):Gn(t)?e.setAttribute(t,Pn(t,i)):Fn(t)?Yn(i)?e.removeAttributeNS(Vn,Kn(t)):e.setAttributeNS(Vn,t,i):Hr(e,t,i)}function Hr(e,t,i){if(Yn(i))e.removeAttribute(t);else{if(ee&&!te&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==i&&!e.__ieph){var n=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",n)};e.addEventListener("input",n),e.__ieph=!0}e.setAttribute(t,i)}}var Pr={create:Wr,update:Wr};function zr(e,t){var i=t.elm,o=t.data,s=e.data;if(!(n(o.staticClass)&&n(o.class)&&(n(s)||n(s.staticClass)&&n(s.class)))){var a=Xn(t),l=i._transitionClasses;r(l)&&(a=Qn(a,qn(l))),a!==i._prevClass&&(i.setAttribute("class",a),i._prevClass=a)}}var Vr,Fr={create:zr,update:zr},Kr="__r",Yr="__c";function Xr(e){if(r(e[Kr])){var t=ee?"change":"input";e[t]=[].concat(e[Kr],e[t]||[]),delete e[Kr]}r(e[Yr])&&(e.change=[].concat(e[Yr],e.change||[]),delete e[Yr])}function Jr(e,t,i){var n=Vr;return function r(){var o=t.apply(null,arguments);null!==o&&qr(e,r,i,n)}}var Ur=st&&!(re&&Number(re[1])<=53);function Qr(e,t,i,n){if(Ur){var r=Fi,o=t;t=o._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=r||e.timeStamp<=0||e.target.ownerDocument!==document)return o.apply(this,arguments)}}Vr.addEventListener(e,t,se?{capture:i,passive:n}:i)}function qr(e,t,i,n){(n||Vr).removeEventListener(e,t._wrapper||t,i)}function eo(e,t){if(!n(e.data.on)||!n(t.data.on)){var i=t.data.on||{},r=e.data.on||{};Vr=t.elm,Xr(i),It(i,r,Qr,qr,Jr,t.context),Vr=void 0}}var to,io={create:eo,update:eo};function no(e,t){if(!n(e.data.domProps)||!n(t.data.domProps)){var i,o,s=t.elm,a=e.data.domProps||{},l=t.data.domProps||{};for(i in r(l.__ob__)&&(l=t.data.domProps=E({},l)),a)i in l||(s[i]="");for(i in l){if(o=l[i],"textContent"===i||"innerHTML"===i){if(t.children&&(t.children.length=0),o===a[i])continue;1===s.childNodes.length&&s.removeChild(s.childNodes[0])}if("value"===i&&"PROGRESS"!==s.tagName){s._value=o;var c=n(o)?"":String(o);ro(s,c)&&(s.value=c)}else if("innerHTML"===i&&rr(s.tagName)&&n(s.innerHTML)){to=to||document.createElement("div"),to.innerHTML=""+o+"";var u=to.firstChild;while(s.firstChild)s.removeChild(s.firstChild);while(u.firstChild)s.appendChild(u.firstChild)}else if(o!==a[i])try{s[i]=o}catch(ws){}}}}function ro(e,t){return!e.composing&&("OPTION"===e.tagName||oo(e,t)||so(e,t))}function oo(e,t){var i=!0;try{i=document.activeElement!==e}catch(ws){}return i&&e.value!==t}function so(e,t){var i=e.value,n=e._vModifiers;if(r(n)){if(n.number)return f(i)!==f(t);if(n.trim)return i.trim()!==t.trim()}return i!==t}var ao={create:no,update:no},lo=y((function(e){var t={},i=/;(?![^(]*\))/g,n=/:(.+)/;return e.split(i).forEach((function(e){if(e){var i=e.split(n);i.length>1&&(t[i[0].trim()]=i[1].trim())}})),t}));function co(e){var t=uo(e.style);return e.staticStyle?E(e.staticStyle,t):t}function uo(e){return Array.isArray(e)?L(e):"string"===typeof e?lo(e):e}function ho(e,t){var i,n={};if(t){var r=e;while(r.componentInstance)r=r.componentInstance._vnode,r&&r.data&&(i=co(r.data))&&E(n,i)}(i=co(e.data))&&E(n,i);var o=e;while(o=o.parent)o.data&&(i=co(o.data))&&E(n,i);return n}var go,po=/^--/,fo=/\s*!important$/,mo=function(e,t,i){if(po.test(t))e.style.setProperty(t,i);else if(fo.test(i))e.style.setProperty(k(t),i.replace(fo,""),"important");else{var n=Co(t);if(Array.isArray(i))for(var r=0,o=i.length;r-1?t.split(yo).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var i=" "+(e.getAttribute("class")||"")+" ";i.indexOf(" "+t+" ")<0&&e.setAttribute("class",(i+t).trim())}}function wo(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(yo).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{var i=" "+(e.getAttribute("class")||"")+" ",n=" "+t+" ";while(i.indexOf(n)>=0)i=i.replace(n," ");i=i.trim(),i?e.setAttribute("class",i):e.removeAttribute("class")}}function xo(e){if(e){if("object"===typeof e){var t={};return!1!==e.css&&E(t,So(e.name||"v")),E(t,e),t}return"string"===typeof e?So(e):void 0}}var So=y((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),ko=J&&!te,To="transition",jo="animation",Oo="transition",Mo="transitionend",Eo="animation",Lo="animationend";ko&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Oo="WebkitTransition",Mo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Eo="WebkitAnimation",Lo="webkitAnimationEnd"));var No=J?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function Ro(e){No((function(){No(e)}))}function _o(e,t){var i=e._transitionClasses||(e._transitionClasses=[]);i.indexOf(t)<0&&(i.push(t),Ao(e,t))}function $o(e,t){e._transitionClasses&&C(e._transitionClasses,t),wo(e,t)}function Do(e,t,i){var n=Bo(e,t),r=n.type,o=n.timeout,s=n.propCount;if(!r)return i();var a=r===To?Mo:Lo,l=0,c=function(){e.removeEventListener(a,u),i()},u=function(t){t.target===e&&++l>=s&&c()};setTimeout((function(){l0&&(i=To,u=s,h=o.length):t===jo?c>0&&(i=jo,u=c,h=l.length):(u=Math.max(s,c),i=u>0?s>c?To:jo:null,h=i?i===To?o.length:l.length:0);var d=i===To&&Zo.test(n[Oo+"Property"]);return{type:i,timeout:u,propCount:h,hasTransform:d}}function Wo(e,t){while(e.length1}function Fo(e,t){!0!==t.data.show&&Ho(t)}var Ko=J?{create:Fo,activate:Fo,remove:function(e,t){!0!==e.data.show?Po(e,t):t()}}:{},Yo=[Pr,Fr,io,ao,Io,Ko],Xo=Yo.concat(Br),Jo=Er({nodeOps:wr,modules:Xo});te&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&rs(e,"input")}));var Uo={inserted:function(e,t,i,n){"select"===i.tag?(n.elm&&!n.elm._vOptions?yt(i,"postpatch",(function(){Uo.componentUpdated(e,t,i)})):Qo(e,t,i.context),e._vOptions=[].map.call(e.options,ts)):("textarea"===i.tag||cr(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",is),e.addEventListener("compositionend",ns),e.addEventListener("change",ns),te&&(e.vmodel=!0)))},componentUpdated:function(e,t,i){if("select"===i.tag){Qo(e,t,i.context);var n=e._vOptions,r=e._vOptions=[].map.call(e.options,ts);if(r.some((function(e,t){return!$(e,n[t])}))){var o=e.multiple?t.value.some((function(e){return es(e,r)})):t.value!==t.oldValue&&es(t.value,r);o&&rs(e,"change")}}}};function Qo(e,t,i){qo(e,t,i),(ee||ie)&&setTimeout((function(){qo(e,t,i)}),0)}function qo(e,t,i){var n=t.value,r=e.multiple;if(!r||Array.isArray(n)){for(var o,s,a=0,l=e.options.length;a-1,s.selected!==o&&(s.selected=o);else if($(ts(s),n))return void(e.selectedIndex!==a&&(e.selectedIndex=a));r||(e.selectedIndex=-1)}}function es(e,t){return t.every((function(t){return!$(t,e)}))}function ts(e){return"_value"in e?e._value:e.value}function is(e){e.target.composing=!0}function ns(e){e.target.composing&&(e.target.composing=!1,rs(e.target,"input"))}function rs(e,t){var i=document.createEvent("HTMLEvents");i.initEvent(t,!0,!0),e.dispatchEvent(i)}function os(e){return!e.componentInstance||e.data&&e.data.transition?e:os(e.componentInstance._vnode)}var ss={bind:function(e,t,i){var n=t.value;i=os(i);var r=i.data&&i.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;n&&r?(i.data.show=!0,Ho(i,(function(){e.style.display=o}))):e.style.display=n?o:"none"},update:function(e,t,i){var n=t.value,r=t.oldValue;if(!n!==!r){i=os(i);var o=i.data&&i.data.transition;o?(i.data.show=!0,n?Ho(i,(function(){e.style.display=e.__vOriginalDisplay})):Po(i,(function(){e.style.display="none"}))):e.style.display=n?e.__vOriginalDisplay:"none"}},unbind:function(e,t,i,n,r){r||(e.style.display=e.__vOriginalDisplay)}},as={model:Uo,show:ss},ls={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function cs(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?cs(Ai(t.children)):e}function us(e){var t={},i=e.$options;for(var n in i.propsData)t[n]=e[n];var r=i._parentListeners;for(var o in r)t[w(o)]=r[o];return t}function hs(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function ds(e){while(e=e.parent)if(e.data.transition)return!0}function gs(e,t){return t.key===e.key&&t.tag===e.tag}var ps=function(e){return e.tag||yi(e)},fs=function(e){return"show"===e.name},ms={name:"transition",props:ls,abstract:!0,render:function(e){var t=this,i=this.$slots.default;if(i&&(i=i.filter(ps),i.length)){0;var n=this.mode;0;var r=i[0];if(ds(this.$vnode))return r;var o=cs(r);if(!o)return r;if(this._leaving)return hs(e,r);var s="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?s+"comment":s+o.tag:a(o.key)?0===String(o.key).indexOf(s)?o.key:s+o.key:o.key;var l=(o.data||(o.data={})).transition=us(this),c=this._vnode,u=cs(c);if(o.data.directives&&o.data.directives.some(fs)&&(o.data.show=!0),u&&u.data&&!gs(o,u)&&!yi(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var h=u.data.transition=E({},l);if("out-in"===n)return this._leaving=!0,yt(h,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),hs(e,r);if("in-out"===n){if(yi(o))return c;var d,g=function(){d()};yt(l,"afterEnter",g),yt(l,"enterCancelled",g),yt(h,"delayLeave",(function(e){d=e}))}}return r}}},vs=E({tag:String,moveClass:String},ls);delete vs.mode;var Cs={props:vs,beforeMount:function(){var e=this,t=this._update;this._update=function(i,n){var r=Mi(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,r(),t.call(e,i,n)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",i=Object.create(null),n=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],s=us(this),a=0;a4)return e;for(i=[],n=0;n1&&"0"==r.charAt(0)&&(o=N.test(r)?16:8,r=r.slice(8==o?1:2)),""===r)s=0;else{if(!(10==o?_:8==o?R:$).test(r))return e;s=parseInt(r,o)}i.push(s)}for(n=0;n=S(256,5-t))return null}else if(s>255)return null;for(a=i.pop(),n=0;n6)return;n=0;while(d()){if(r=null,n>0){if(!("."==d()&&n<4))return;h++}if(!L.test(d()))return;while(L.test(d())){if(o=parseInt(d(),10),null===r)r=o;else{if(0==r)return;r=10*r+o}if(r>255)return;h++}l[c]=256*l[c]+r,n++,2!=n&&4!=n||c++}if(4!=n)return;break}if(":"==d()){if(h++,!d())return}else if(d())return;l[c++]=t}else{if(null!==u)return;h++,c++,u=c}}if(null!==u){s=c-u,c=7;while(0!=c&&s>0)a=l[c],l[c--]=l[u+s-1],l[u+--s]=a}else if(8!=c)return;return l},z=function(e){for(var t=null,i=1,n=null,r=0,o=0;o<8;o++)0!==e[o]?(r>i&&(t=n,i=r),n=null,r=0):(null===n&&(n=o),++r);return r>i&&(t=n,i=r),t},V=function(e){var t,i,n,r;if("number"==typeof e){for(t=[],i=0;i<4;i++)t.unshift(e%256),e=x(e/256);return t.join(".")}if("object"==typeof e){for(t="",n=z(e),i=0;i<8;i++)r&&0===e[i]||(r&&(r=!1),n===i?(t+=i?":":"::",r=!0):(t+=e[i].toString(16),i<7&&(t+=":")));return"["+t+"]"}return e},F={},K=d({},F,{" ":1,'"':1,"<":1,">":1,"`":1}),Y=d({},K,{"#":1,"?":1,"{":1,"}":1}),X=d({},Y,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),J=function(e,t){var i=p(e,0);return i>32&&i<127&&!h(t,e)?e:encodeURIComponent(e)},U={ftp:21,file:null,http:80,https:443,ws:80,wss:443},Q=function(e){return h(U,e.scheme)},q=function(e){return""!=e.username||""!=e.password},ee=function(e){return!e.host||e.cannotBeABaseURL||"file"==e.scheme},te=function(e,t){var i;return 2==e.length&&M.test(e.charAt(0))&&(":"==(i=e.charAt(1))||!t&&"|"==i)},ie=function(e){var t;return e.length>1&&te(e.slice(0,2))&&(2==e.length||"/"===(t=e.charAt(2))||"\\"===t||"?"===t||"#"===t)},ne=function(e){var t=e.path,i=t.length;!i||"file"==e.scheme&&1==i&&te(t[0],!0)||t.pop()},re=function(e){return"."===e||"%2e"===e.toLowerCase()},oe=function(e){return e=e.toLowerCase(),".."===e||"%2e."===e||".%2e"===e||"%2e%2e"===e},se={},ae={},le={},ce={},ue={},he={},de={},ge={},pe={},fe={},me={},ve={},Ce={},be={},Ie={},ye={},Ae={},we={},xe={},Se={},ke={},Te=function(e,t,i,r){var o,s,a,l,c=i||se,u=0,d="",p=!1,f=!1,m=!1;i||(e.scheme="",e.username="",e.password="",e.host=null,e.port=null,e.path=[],e.query=null,e.fragment=null,e.cannotBeABaseURL=!1,t=t.replace(B,"")),t=t.replace(W,""),o=g(t);while(u<=o.length){switch(s=o[u],c){case se:if(!s||!M.test(s)){if(i)return T;c=le;continue}d+=s.toLowerCase(),c=ae;break;case ae:if(s&&(E.test(s)||"+"==s||"-"==s||"."==s))d+=s.toLowerCase();else{if(":"!=s){if(i)return T;d="",c=le,u=0;continue}if(i&&(Q(e)!=h(U,d)||"file"==d&&(q(e)||null!==e.port)||"file"==e.scheme&&!e.host))return;if(e.scheme=d,i)return void(Q(e)&&U[e.scheme]==e.port&&(e.port=null));d="","file"==e.scheme?c=be:Q(e)&&r&&r.scheme==e.scheme?c=ce:Q(e)?c=ge:"/"==o[u+1]?(c=ue,u++):(e.cannotBeABaseURL=!0,e.path.push(""),c=xe)}break;case le:if(!r||r.cannotBeABaseURL&&"#"!=s)return T;if(r.cannotBeABaseURL&&"#"==s){e.scheme=r.scheme,e.path=r.path.slice(),e.query=r.query,e.fragment="",e.cannotBeABaseURL=!0,c=ke;break}c="file"==r.scheme?be:he;continue;case ce:if("/"!=s||"/"!=o[u+1]){c=he;continue}c=pe,u++;break;case ue:if("/"==s){c=fe;break}c=we;continue;case he:if(e.scheme=r.scheme,s==n)e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.query=r.query;else if("/"==s||"\\"==s&&Q(e))c=de;else if("?"==s)e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.query="",c=Se;else{if("#"!=s){e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.path.pop(),c=we;continue}e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.query=r.query,e.fragment="",c=ke}break;case de:if(!Q(e)||"/"!=s&&"\\"!=s){if("/"!=s){e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,c=we;continue}c=fe}else c=pe;break;case ge:if(c=pe,"/"!=s||"/"!=d.charAt(u+1))continue;u++;break;case pe:if("/"!=s&&"\\"!=s){c=fe;continue}break;case fe:if("@"==s){p&&(d="%40"+d),p=!0,a=g(d);for(var v=0;v65535)return O;e.port=Q(e)&&I===U[e.scheme]?null:I,d=""}if(i)return;c=Ae;continue}return O}d+=s;break;case be:if(e.scheme="file","/"==s||"\\"==s)c=Ie;else{if(!r||"file"!=r.scheme){c=we;continue}if(s==n)e.host=r.host,e.path=r.path.slice(),e.query=r.query;else if("?"==s)e.host=r.host,e.path=r.path.slice(),e.query="",c=Se;else{if("#"!=s){ie(o.slice(u).join(""))||(e.host=r.host,e.path=r.path.slice(),ne(e)),c=we;continue}e.host=r.host,e.path=r.path.slice(),e.query=r.query,e.fragment="",c=ke}}break;case Ie:if("/"==s||"\\"==s){c=ye;break}r&&"file"==r.scheme&&!ie(o.slice(u).join(""))&&(te(r.path[0],!0)?e.path.push(r.path[0]):e.host=r.host),c=we;continue;case ye:if(s==n||"/"==s||"\\"==s||"?"==s||"#"==s){if(!i&&te(d))c=we;else if(""==d){if(e.host="",i)return;c=Ae}else{if(l=G(e,d),l)return l;if("localhost"==e.host&&(e.host=""),i)return;d="",c=Ae}continue}d+=s;break;case Ae:if(Q(e)){if(c=we,"/"!=s&&"\\"!=s)continue}else if(i||"?"!=s)if(i||"#"!=s){if(s!=n&&(c=we,"/"!=s))continue}else e.fragment="",c=ke;else e.query="",c=Se;break;case we:if(s==n||"/"==s||"\\"==s&&Q(e)||!i&&("?"==s||"#"==s)){if(oe(d)?(ne(e),"/"==s||"\\"==s&&Q(e)||e.path.push("")):re(d)?"/"==s||"\\"==s&&Q(e)||e.path.push(""):("file"==e.scheme&&!e.path.length&&te(d)&&(e.host&&(e.host=""),d=d.charAt(0)+":"),e.path.push(d)),d="","file"==e.scheme&&(s==n||"?"==s||"#"==s))while(e.path.length>1&&""===e.path[0])e.path.shift();"?"==s?(e.query="",c=Se):"#"==s&&(e.fragment="",c=ke)}else d+=J(s,Y);break;case xe:"?"==s?(e.query="",c=Se):"#"==s?(e.fragment="",c=ke):s!=n&&(e.path[0]+=J(s,F));break;case Se:i||"#"!=s?s!=n&&("'"==s&&Q(e)?e.query+="%27":e.query+="#"==s?"%23":J(s,F)):(e.fragment="",c=ke);break;case ke:s!=n&&(e.fragment+=J(s,K));break}u++}},je=function(e){var t,i,n=u(this,je,"URL"),r=arguments.length>1?arguments[1]:void 0,s=String(e),a=A(n,{type:"URL"});if(void 0!==r)if(r instanceof je)t=w(r);else if(i=Te(t={},String(r)),i)throw TypeError(i);if(i=Te(a,s,null,t),i)throw TypeError(i);var l=a.searchParams=new I,c=y(l);c.updateSearchParams(a.query),c.updateURL=function(){a.query=String(l)||null},o||(n.href=Me.call(n),n.origin=Ee.call(n),n.protocol=Le.call(n),n.username=Ne.call(n),n.password=Re.call(n),n.host=_e.call(n),n.hostname=$e.call(n),n.port=De.call(n),n.pathname=Ze.call(n),n.search=Be.call(n),n.searchParams=We.call(n),n.hash=Ge.call(n))},Oe=je.prototype,Me=function(){var e=w(this),t=e.scheme,i=e.username,n=e.password,r=e.host,o=e.port,s=e.path,a=e.query,l=e.fragment,c=t+":";return null!==r?(c+="//",q(e)&&(c+=i+(n?":"+n:"")+"@"),c+=V(r),null!==o&&(c+=":"+o)):"file"==t&&(c+="//"),c+=e.cannotBeABaseURL?s[0]:s.length?"/"+s.join("/"):"",null!==a&&(c+="?"+a),null!==l&&(c+="#"+l),c},Ee=function(){var e=w(this),t=e.scheme,i=e.port;if("blob"==t)try{return new URL(t.path[0]).origin}catch(n){return"null"}return"file"!=t&&Q(e)?t+"://"+V(e.host)+(null!==i?":"+i:""):"null"},Le=function(){return w(this).scheme+":"},Ne=function(){return w(this).username},Re=function(){return w(this).password},_e=function(){var e=w(this),t=e.host,i=e.port;return null===t?"":null===i?V(t):V(t)+":"+i},$e=function(){var e=w(this).host;return null===e?"":V(e)},De=function(){var e=w(this).port;return null===e?"":String(e)},Ze=function(){var e=w(this),t=e.path;return e.cannotBeABaseURL?t[0]:t.length?"/"+t.join("/"):""},Be=function(){var e=w(this).query;return e?"?"+e:""},We=function(){return w(this).searchParams},Ge=function(){var e=w(this).fragment;return e?"#"+e:""},He=function(e,t){return{get:e,set:t,configurable:!0,enumerable:!0}};if(o&&l(Oe,{href:He(Me,(function(e){var t=w(this),i=String(e),n=Te(t,i);if(n)throw TypeError(n);y(t.searchParams).updateSearchParams(t.query)})),origin:He(Ee),protocol:He(Le,(function(e){var t=w(this);Te(t,String(e)+":",se)})),username:He(Ne,(function(e){var t=w(this),i=g(String(e));if(!ee(t)){t.username="";for(var n=0;n0?Math.max(e-i,0):Math.max(e,12),e+this.getOffsetLeft()},calcYOverflow:function(e){var t=this.getInnerHeight(),i=this.pageYOffset+t,n=this.dimensions.activator,r=this.dimensions.content.height,o=e+r,s=ir?e=this.pageYOffset+(n.top-r):s&&!this.allowOverflow?e=i-r-12:e-1})))},styles:function(){return{maxHeight:this.calculatedMaxHeight,minWidth:this.calculatedMinWidth,maxWidth:this.calculatedMaxWidth,top:this.calculatedTop,left:this.calculatedLeft,transformOrigin:this.origin,zIndex:this.zIndex||this.activeZIndex}}},watch:{isActive:function(e){e||(this.listIndex=-1)},isContentActive:function(e){this.hasJustFocused=e},listIndex:function(e,t){if(e in this.tiles){var i=this.tiles[e];i.classList.add("v-list-item--highlighted"),this.$refs.content.scrollTop=i.offsetTop-i.clientHeight}t in this.tiles&&this.tiles[t].classList.remove("v-list-item--highlighted")}},created:function(){this.$attrs.hasOwnProperty("full-width")&&Object(S["d"])("full-width",this)},mounted:function(){this.isActive&&this.callActivate()},methods:{activate:function(){var e=this;this.updateDimensions(),requestAnimationFrame((function(){e.startTransition().then((function(){e.$refs.content&&(e.calculatedTopAuto=e.calcTopAuto(),e.auto&&(e.$refs.content.scrollTop=e.calcScrollPosition()))}))}))},calcScrollPosition:function(){var e=this.$refs.content,t=e.querySelector(".v-list-item--active"),i=e.scrollHeight-e.offsetHeight;return t?Math.min(i,Math.max(0,t.offsetTop-e.offsetHeight/2+t.offsetHeight/2)):e.scrollTop},calcLeftAuto:function(){return parseInt(this.dimensions.activator.left-2*this.defaultOffset)},calcTopAuto:function(){var e=this.$refs.content,t=e.querySelector(".v-list-item--active");if(t||(this.selectedIndex=null),this.offsetY||!t)return this.computedTop;this.selectedIndex=Array.from(this.tiles).indexOf(t);var i=t.offsetTop-this.calcScrollPosition(),n=e.querySelector(".v-list-item").offsetTop;return this.computedTop-i-n-1},changeListIndex:function(e){if(this.getTiles(),this.isActive&&this.hasClickableTiles)if(e.keyCode!==m["s"].tab){if(e.keyCode===m["s"].down)this.nextTile();else if(e.keyCode===m["s"].up)this.prevTile();else{if(e.keyCode!==m["s"].enter||-1===this.listIndex)return;this.tiles[this.listIndex].click()}e.preventDefault()}else this.isActive=!1},closeConditional:function(e){var t=e.target;return this.isActive&&!this._isDestroyed&&this.closeOnClick&&!this.$refs.content.contains(t)},genActivatorAttributes:function(){var e=c["a"].options.methods.genActivatorAttributes.call(this);return this.activeTile&&this.activeTile.id?Object(n["a"])(Object(n["a"])({},e),{},{"aria-activedescendant":this.activeTile.id}):e},genActivatorListeners:function(){var e=C.options.methods.genActivatorListeners.call(this);return this.disableKeys||(e.keydown=this.onKeyDown),e},genTransition:function(){var e=this.genContent();return this.transition?this.$createElement("transition",{props:{name:this.transition}},[e]):e},genDirectives:function(){var e=this,t=[{name:"show",value:this.isContentActive}];return!this.openOnHover&&this.closeOnClick&&t.push({name:"click-outside",value:{handler:function(){e.isActive=!1},closeConditional:this.closeConditional,include:function(){return[e.$el].concat(Object(a["a"])(e.getOpenDependentElements()))}}}),t},genContent:function(){var e=this,t={attrs:Object(n["a"])(Object(n["a"])({},this.getScopeIdAttrs()),{},{role:"role"in this.$attrs?this.$attrs.role:"menu"}),staticClass:"v-menu__content",class:Object(n["a"])(Object(n["a"])(Object(n["a"])({},this.rootThemeClasses),this.roundedClasses),{},Object(o["a"])({"v-menu__content--auto":this.auto,"v-menu__content--fixed":this.activatorFixed,menuable__content__active:this.isActive},this.contentClass.trim(),!0)),style:this.styles,directives:this.genDirectives(),ref:"content",on:{click:function(t){var i=t.target;i.getAttribute("disabled")||e.closeOnContentClick&&(e.isActive=!1)},keydown:this.onKeyDown}};return this.$listeners.scroll&&(t.on=t.on||{},t.on.scroll=this.$listeners.scroll),!this.disabled&&this.openOnHover&&(t.on=t.on||{},t.on.mouseenter=this.mouseEnterHandler),this.openOnHover&&(t.on=t.on||{},t.on.mouseleave=this.mouseLeaveHandler),this.$createElement("div",t,this.getContentSlot())},getTiles:function(){this.$refs.content&&(this.tiles=Array.from(this.$refs.content.querySelectorAll(".v-list-item")))},mouseEnterHandler:function(){var e=this;this.runDelay("open",(function(){e.hasJustFocused||(e.hasJustFocused=!0)}))},mouseLeaveHandler:function(e){var t=this;this.runDelay("close",(function(){t.$refs.content.contains(e.relatedTarget)||requestAnimationFrame((function(){t.isActive=!1,t.callDeactivate()}))}))},nextTile:function(){var e=this.tiles[this.listIndex+1];if(!e){if(!this.tiles.length)return;return this.listIndex=-1,void this.nextTile()}this.listIndex++,-1===e.tabIndex&&this.nextTile()},prevTile:function(){var e=this.tiles[this.listIndex-1];if(!e){if(!this.tiles.length)return;return this.listIndex=this.tiles.length,void this.prevTile()}this.listIndex--,-1===e.tabIndex&&this.prevTile()},onKeyDown:function(e){var t=this;if(e.keyCode===m["s"].esc){setTimeout((function(){t.isActive=!1}));var i=this.getActivator();this.$nextTick((function(){return i&&i.focus()}))}else!this.isActive&&[m["s"].up,m["s"].down].includes(e.keyCode)&&(this.isActive=!0);this.$nextTick((function(){return t.changeListIndex(e)}))},onResize:function(){this.isActive&&(this.$refs.content.offsetWidth,this.updateDimensions(),clearTimeout(this.resizeTimeout),this.resizeTimeout=window.setTimeout(this.updateDimensions,100))}},render:function(e){var t=this,i={staticClass:"v-menu",class:{"v-menu--attached":""===this.attach||!0===this.attach||"attach"===this.attach},directives:[{arg:"500",name:"resize",value:this.onResize}]};return e("div",i,[!this.activator&&this.genActivator(),this.showLazyContent((function(){return[t.$createElement(l["a"],{props:{root:!0,light:t.light,dark:t.dark}},[t.genTransition()])]}))])}}),j=T,O=(i("a15b"),i("b64b"),i("4160"),i("159b"),i("cf36"),i("5607")),M=i("2b0e"),E=i("132d"),L=i("a9ad"),N=i("d9f7"),R=M["a"].extend({name:"v-simple-checkbox",functional:!0,directives:{ripple:O["a"]},props:Object(n["a"])(Object(n["a"])(Object(n["a"])({},L["a"].options.props),A["a"].options.props),{},{disabled:Boolean,ripple:{type:Boolean,default:!0},value:Boolean,indeterminate:Boolean,indeterminateIcon:{type:String,default:"$checkboxIndeterminate"},onIcon:{type:String,default:"$checkboxOn"},offIcon:{type:String,default:"$checkboxOff"}}),render:function(e,t){var i=t.props,n=t.data,r=(t.listeners,[]);if(i.ripple&&!i.disabled){var o=e("div",L["a"].options.methods.setTextColor(i.color,{staticClass:"v-input--selection-controls__ripple",directives:[{name:"ripple",value:{center:!0}}]}));r.push(o)}var s=i.offIcon;i.indeterminate?s=i.indeterminateIcon:i.value&&(s=i.onIcon),r.push(e(E["a"],L["a"].options.methods.setTextColor(i.value&&i.color,{props:{disabled:i.disabled,dark:i.dark,light:i.light}}),s));var a={"v-simple-checkbox":!0,"v-simple-checkbox--disabled":i.disabled};return e("div",Object(N["a"])(n,{class:a,on:{click:function(e){e.stopPropagation(),n.on&&n.on.input&&!i.disabled&&Object(m["y"])(n.on.input).forEach((function(e){return e(!i.value)}))}}}),r)}}),_=i("b810"),$=(i("0bc6"),Object(f["a"])(A["a"]).extend({name:"v-subheader",props:{inset:Boolean},render:function(e){return e("div",{staticClass:"v-subheader",class:Object(n["a"])({"v-subheader--inset":this.inset},this.themeClasses),attrs:this.$attrs,on:this.$listeners},this.$slots.default)}})),D=$,Z=(i("61d2"),i("1c87")),B=i("4e82"),W=Object(f["a"])(L["a"],Z["a"],A["a"],Object(B["a"])("listItemGroup"),Object(y["b"])("inputValue")),G=W.extend().extend({name:"v-list-item",directives:{Ripple:O["a"]},inject:{isInGroup:{default:!1},isInList:{default:!1},isInMenu:{default:!1},isInNav:{default:!1}},inheritAttrs:!1,props:{activeClass:{type:String,default:function(){return this.listItemGroup?this.listItemGroup.activeClass:""}},dense:Boolean,inactive:Boolean,link:Boolean,selectable:{type:Boolean},tag:{type:String,default:"div"},threeLine:Boolean,twoLine:Boolean,value:null},data:function(){return{proxyClass:"v-list-item--active"}},computed:{classes:function(){return Object(n["a"])(Object(n["a"])({"v-list-item":!0},Z["a"].options.computed.classes.call(this)),{},{"v-list-item--dense":this.dense,"v-list-item--disabled":this.disabled,"v-list-item--link":this.isClickable&&!this.inactive,"v-list-item--selectable":this.selectable,"v-list-item--three-line":this.threeLine,"v-list-item--two-line":this.twoLine},this.themeClasses)},isClickable:function(){return Boolean(Z["a"].options.computed.isClickable.call(this)||this.listItemGroup)}},created:function(){this.$attrs.hasOwnProperty("avatar")&&Object(S["d"])("avatar",this)},methods:{click:function(e){e.detail&&this.$el.blur(),this.$emit("click",e),this.to||this.toggle()},genAttrs:function(){var e=Object(n["a"])({"aria-disabled":!!this.disabled||void 0,tabindex:this.isClickable&&!this.disabled?0:-1},this.$attrs);return this.$attrs.hasOwnProperty("role")||this.isInNav||(this.isInGroup?(e.role="listitem",e["aria-selected"]=String(this.isActive)):this.isInMenu?(e.role=this.isClickable?"menuitem":void 0,e.id=e.id||"list-item-".concat(this._uid)):this.isInList&&(e.role="listitem")),e}},render:function(e){var t=this,i=this.generateRouteLink(),r=i.tag,o=i.data;o.attrs=Object(n["a"])(Object(n["a"])({},o.attrs),this.genAttrs()),o[this.to?"nativeOn":"on"]=Object(n["a"])(Object(n["a"])({},o[this.to?"nativeOn":"on"]),{},{keydown:function(e){e.keyCode===m["s"].enter&&t.click(e),t.$emit("keydown",e)}}),this.inactive&&(r="div"),this.inactive&&this.to&&(o.on=o.nativeOn,delete o.nativeOn);var s=this.$scopedSlots.default?this.$scopedSlots.default({active:this.isActive,toggle:this.toggle}):this.$slots.default;return e(r,this.setTextColor(this.color,o),s)}}),H=M["a"].extend({name:"v-list-item-action",functional:!0,render:function(e,t){var i=t.data,n=t.children,r=void 0===n?[]:n;i.staticClass=i.staticClass?"v-list-item__action ".concat(i.staticClass):"v-list-item__action";var o=r.filter((function(e){return!1===e.isComment&&" "!==e.text}));return o.length>1&&(i.staticClass+=" v-list-item__action--stack"),e("div",i,r)}}),P=(i("0481"),i("4069"),i("3ad0"),i("8dd9")),z=P["a"].extend().extend({name:"v-list",provide:function(){return{isInList:!0,list:this}},inject:{isInMenu:{default:!1},isInNav:{default:!1}},props:{dense:Boolean,disabled:Boolean,expand:Boolean,flat:Boolean,nav:Boolean,rounded:Boolean,subheader:Boolean,threeLine:Boolean,twoLine:Boolean},data:function(){return{groups:[]}},computed:{classes:function(){return Object(n["a"])(Object(n["a"])({},P["a"].options.computed.classes.call(this)),{},{"v-list--dense":this.dense,"v-list--disabled":this.disabled,"v-list--flat":this.flat,"v-list--nav":this.nav,"v-list--rounded":this.rounded,"v-list--subheader":this.subheader,"v-list--two-line":this.twoLine,"v-list--three-line":this.threeLine})}},methods:{register:function(e){this.groups.push(e)},unregister:function(e){var t=this.groups.findIndex((function(t){return t._uid===e._uid}));t>-1&&this.groups.splice(t,1)},listClick:function(e){if(!this.expand){var t,i=Object(r["a"])(this.groups);try{for(i.s();!(t=i.n()).done;){var n=t.value;n.toggle(e)}}catch(o){i.e(o)}finally{i.f()}}}},render:function(e){var t={staticClass:"v-list",class:this.classes,style:this.styles,attrs:Object(n["a"])({role:this.isInNav||this.isInMenu?void 0:"list"},this.attrs$)};return e(this.tag,this.setBackgroundColor(this.color,t),[this.$slots.default])}}),V=(i("466d"),i("db42"),i("9d26")),F=M["a"].extend({name:"v-list-item-icon",functional:!0,render:function(e,t){var i=t.data,n=t.children;return i.staticClass="v-list-item__icon ".concat(i.staticClass||"").trim(),e("div",i,n)}}),K=i("7e2b"),Y=i("9d65"),X=i("3206"),J=i("0789"),U=Object(f["a"])(K["a"],Y["a"],L["a"],Object(X["a"])("list"),y["a"]),Q=(U.extend().extend({name:"v-list-group",directives:{ripple:O["a"]},props:{activeClass:{type:String,default:""},appendIcon:{type:String,default:"$expand"},color:{type:String,default:"primary"},disabled:Boolean,group:String,noAction:Boolean,prependIcon:String,ripple:{type:[Boolean,Object],default:!0},subGroup:Boolean},computed:{classes:function(){return{"v-list-group--active":this.isActive,"v-list-group--disabled":this.disabled,"v-list-group--no-action":this.noAction,"v-list-group--sub-group":this.subGroup}}},watch:{isActive:function(e){!this.subGroup&&e&&this.list&&this.list.listClick(this._uid)},$route:"onRouteChange"},created:function(){this.list&&this.list.register(this),this.group&&this.$route&&null==this.value&&(this.isActive=this.matchRoute(this.$route.path))},beforeDestroy:function(){this.list&&this.list.unregister(this)},methods:{click:function(e){var t=this;this.disabled||(this.isBooted=!0,this.$emit("click",e),this.$nextTick((function(){return t.isActive=!t.isActive})))},genIcon:function(e){return this.$createElement(V["a"],e)},genAppendIcon:function(){var e=!this.subGroup&&this.appendIcon;return e||this.$slots.appendIcon?this.$createElement(F,{staticClass:"v-list-group__header__append-icon"},[this.$slots.appendIcon||this.genIcon(e)]):null},genHeader:function(){return this.$createElement(G,{staticClass:"v-list-group__header",attrs:{"aria-expanded":String(this.isActive),role:"button"},class:Object(o["a"])({},this.activeClass,this.isActive),props:{inputValue:this.isActive},directives:[{name:"ripple",value:this.ripple}],on:Object(n["a"])(Object(n["a"])({},this.listeners$),{},{click:this.click})},[this.genPrependIcon(),this.$slots.activator,this.genAppendIcon()])},genItems:function(){var e=this;return this.showLazyContent((function(){return[e.$createElement("div",{staticClass:"v-list-group__items",directives:[{name:"show",value:e.isActive}]},Object(m["n"])(e))]}))},genPrependIcon:function(){var e=this.subGroup&&null==this.prependIcon?"$subgroup":this.prependIcon;return e||this.$slots.prependIcon?this.$createElement(F,{staticClass:"v-list-group__header__prepend-icon"},[this.$slots.prependIcon||this.genIcon(e)]):null},onRouteChange:function(e){if(this.group){var t=this.matchRoute(e.path);t&&this.isActive!==t&&this.list&&this.list.listClick(this._uid),this.isActive=t}},toggle:function(e){var t=this,i=this._uid===e;i&&(this.isBooted=!0),this.$nextTick((function(){return t.isActive=i}))},matchRoute:function(e){return null!==e.match(this.group)}},render:function(e){return e("div",this.setTextColor(this.isActive&&this.color,{staticClass:"v-list-group",class:this.classes}),[this.genHeader(),e(J["a"],this.genItems())])}}),i("899c"),i("166a"),i("a452")),q=Object(f["a"])(Q["a"],A["a"]).extend({name:"base-item-group",props:{activeClass:{type:String,default:"v-item--active"},mandatory:Boolean,max:{type:[Number,String],default:null},multiple:Boolean},data:function(){return{internalLazyValue:void 0!==this.value?this.value:this.multiple?[]:void 0,items:[]}},computed:{classes:function(){return Object(n["a"])({"v-item-group":!0},this.themeClasses)},selectedIndex:function(){return this.selectedItem&&this.items.indexOf(this.selectedItem)||-1},selectedItem:function(){if(!this.multiple)return this.selectedItems[0]},selectedItems:function(){var e=this;return this.items.filter((function(t,i){return e.toggleMethod(e.getValue(t,i))}))},selectedValues:function(){return null==this.internalValue?[]:Array.isArray(this.internalValue)?this.internalValue:[this.internalValue]},toggleMethod:function(){var e=this;if(!this.multiple)return function(t){return e.internalValue===t};var t=this.internalValue;return Array.isArray(t)?function(e){return t.includes(e)}:function(){return!1}}},watch:{internalValue:"updateItemsState",items:"updateItemsState"},created:function(){this.multiple&&!Array.isArray(this.internalValue)&&Object(S["c"])("Model must be bound to an array if the multiple property is true.",this)},methods:{genData:function(){return{class:this.classes}},getValue:function(e,t){return null==e.value||""===e.value?t:e.value},onClick:function(e){this.updateInternalValue(this.getValue(e,this.items.indexOf(e)))},register:function(e){var t=this,i=this.items.push(e)-1;e.$on("change",(function(){return t.onClick(e)})),this.mandatory&&!this.selectedValues.length&&this.updateMandatory(),this.updateItem(e,i)},unregister:function(e){if(!this._isDestroyed){var t=this.items.indexOf(e),i=this.getValue(e,t);this.items.splice(t,1);var n=this.selectedValues.indexOf(i);if(!(n<0)){if(!this.mandatory)return this.updateInternalValue(i);this.multiple&&Array.isArray(this.internalValue)?this.internalValue=this.internalValue.filter((function(e){return e!==i})):this.internalValue=void 0,this.selectedItems.length||this.updateMandatory(!0)}}},updateItem:function(e,t){var i=this.getValue(e,t);e.isActive=this.toggleMethod(i)},updateItemsState:function(){var e=this;this.$nextTick((function(){if(e.mandatory&&!e.selectedItems.length)return e.updateMandatory();e.items.forEach(e.updateItem)}))},updateInternalValue:function(e){this.multiple?this.updateMultiple(e):this.updateSingle(e)},updateMandatory:function(e){if(this.items.length){var t=this.items.slice();e&&t.reverse();var i=t.find((function(e){return!e.disabled}));if(i){var n=this.items.indexOf(i);this.updateInternalValue(this.getValue(i,n))}}},updateMultiple:function(e){var t=Array.isArray(this.internalValue)?this.internalValue:[],i=t.slice(),n=i.findIndex((function(t){return t===e}));this.mandatory&&n>-1&&i.length-1<1||null!=this.max&&n<0&&i.length+1>this.max||(n>-1?i.splice(n,1):i.push(e),this.internalValue=i)},updateSingle:function(e){var t=e===this.internalValue;this.mandatory&&t||(this.internalValue=t?void 0:e)}},render:function(e){return e("div",this.genData(),this.$slots.default)}}),ee=(q.extend({name:"v-item-group",provide:function(){return{itemGroup:this}}}),Object(f["a"])(q,L["a"]).extend({name:"v-list-item-group",provide:function(){return{isInGroup:!0,listItemGroup:this}},computed:{classes:function(){return Object(n["a"])(Object(n["a"])({},q.options.computed.classes.call(this)),{},{"v-list-item-group":!0})}},methods:{genData:function(){return this.setTextColor(this.color,Object(n["a"])(Object(n["a"])({},q.options.methods.genData.call(this)),{},{attrs:{role:"listbox"}}))}}}),i("3408"),i("24b2")),te=Object(f["a"])(L["a"],ee["a"],I["a"]).extend({name:"v-avatar",props:{left:Boolean,right:Boolean,size:{type:[Number,String],default:48}},computed:{classes:function(){return Object(n["a"])({"v-avatar--left":this.left,"v-avatar--right":this.right},this.roundedClasses)},styles:function(){return Object(n["a"])({height:Object(m["f"])(this.size),minWidth:Object(m["f"])(this.size),width:Object(m["f"])(this.size)},this.measurableStyles)}},render:function(e){var t={staticClass:"v-avatar",class:this.classes,style:this.styles,on:this.$listeners};return e("div",this.setBackgroundColor(this.color,t),this.$slots.default)}}),ie=te,ne=(ie.extend({name:"v-list-item-avatar",props:{horizontal:Boolean,size:{type:[Number,String],default:40}},computed:{classes:function(){return Object(n["a"])(Object(n["a"])({"v-list-item__avatar--horizontal":this.horizontal},ie.options.computed.classes.call(this)),{},{"v-avatar--tile":this.tile||this.horizontal})}},render:function(e){var t=ie.options.render.call(this,e);return t.data=t.data||{},t.data.staticClass+=" v-list-item__avatar",t}}),Object(m["g"])("v-list-item__action-text","span"),Object(m["g"])("v-list-item__content","div")),re=Object(m["g"])("v-list-item__title","div"),oe=(Object(m["g"])("v-list-item__subtitle","div"),Object(f["a"])(L["a"],A["a"]).extend({name:"v-select-list",directives:{ripple:O["a"]},props:{action:Boolean,dense:Boolean,hideSelected:Boolean,items:{type:Array,default:function(){return[]}},itemDisabled:{type:[String,Array,Function],default:"disabled"},itemText:{type:[String,Array,Function],default:"text"},itemValue:{type:[String,Array,Function],default:"value"},noDataText:String,noFilter:Boolean,searchInput:null,selectedItems:{type:Array,default:function(){return[]}}},computed:{parsedItems:function(){var e=this;return this.selectedItems.map((function(t){return e.getValue(t)}))},tileActiveClass:function(){return Object.keys(this.setTextColor(this.color).class||{}).join(" ")},staticNoDataTile:function(){var e={attrs:{role:void 0},on:{mousedown:function(e){return e.preventDefault()}}};return this.$createElement(G,e,[this.genTileContent(this.noDataText)])}},methods:{genAction:function(e,t){var i=this;return this.$createElement(H,[this.$createElement(R,{props:{color:this.color,value:t},on:{input:function(){return i.$emit("select",e)}}})])},genDivider:function(e){return this.$createElement(_["a"],{props:e})},genFilteredText:function(e){if(e=e||"",!this.searchInput||this.noFilter)return Object(m["i"])(e);var t=this.getMaskedCharacters(e),i=t.start,n=t.middle,r=t.end;return"".concat(Object(m["i"])(i)).concat(this.genHighlight(n)).concat(Object(m["i"])(r))},genHeader:function(e){return this.$createElement(D,{props:e},e.header)},genHighlight:function(e){return''.concat(Object(m["i"])(e),"")},getMaskedCharacters:function(e){var t=(this.searchInput||"").toString().toLocaleLowerCase(),i=e.toLocaleLowerCase().indexOf(t);if(i<0)return{start:e,middle:"",end:""};var n=e.slice(0,i),r=e.slice(i,i+t.length),o=e.slice(i+t.length);return{start:n,middle:r,end:o}},genTile:function(e){var t=this,i=e.item,r=e.index,o=e.disabled,s=void 0===o?null:o,a=e.value,l=void 0!==a&&a;l||(l=this.hasItem(i)),i===Object(i)&&(s=null!==s?s:this.getDisabled(i));var c={attrs:{"aria-selected":String(l),id:"list-item-".concat(this._uid,"-").concat(r),role:"option"},on:{mousedown:function(e){e.preventDefault()},click:function(){return s||t.$emit("select",i)}},props:{activeClass:this.tileActiveClass,disabled:s,ripple:!0,inputValue:l}};if(!this.$scopedSlots.item)return this.$createElement(G,c,[this.action&&!this.hideSelected&&this.items.length>0?this.genAction(i,l):null,this.genTileContent(i,r)]);var u=this,h=this.$scopedSlots.item({parent:u,item:i,attrs:Object(n["a"])(Object(n["a"])({},c.attrs),c.props),on:c.on});return this.needsTile(h)?this.$createElement(G,c,h):h},genTileContent:function(e){var t=this.genFilteredText(this.getText(e));return this.$createElement(ne,[this.$createElement(re,{domProps:{innerHTML:t}})])},hasItem:function(e){return this.parsedItems.indexOf(this.getValue(e))>-1},needsTile:function(e){return 1!==e.length||null==e[0].componentOptions||"v-list-item"!==e[0].componentOptions.Ctor.options.name},getDisabled:function(e){return Boolean(Object(m["m"])(e,this.itemDisabled,!1))},getText:function(e){return String(Object(m["m"])(e,this.itemText,e))},getValue:function(e){return Object(m["m"])(e,this.itemValue,this.getText(e))}},render:function(){for(var e=[],t=this.items.length,i=0;i0},listData:function(){var e=this.$vnode&&this.$vnode.context.$options._scopeId,t=e?Object(o["a"])({},e,!0):{};return{attrs:Object(n["a"])(Object(n["a"])({},t),{},{id:this.computedOwns}),props:{action:this.multiple,color:this.itemColor,dense:this.dense,hideSelected:this.hideSelected,items:this.virtualizedItems,itemDisabled:this.itemDisabled,itemText:this.itemText,itemValue:this.itemValue,noDataText:this.$vuetify.lang.t(this.noDataText),selectedItems:this.selectedItems},on:{select:this.selectItem},scopedSlots:{item:this.$scopedSlots.item}}},staticList:function(){return(this.$slots["no-data"]||this.$slots["prepend-item"]||this.$slots["append-item"])&&Object(S["b"])("assert: staticList should not be called if slots are used"),this.$createElement(oe,this.listData)},virtualizedItems:function(){return this.$_menuProps.auto?this.computedItems:this.computedItems.slice(0,this.lastItem)},menuCanShow:function(){return!0},$_menuProps:function(){var e="string"===typeof this.menuProps?this.menuProps.split(","):this.menuProps;return Array.isArray(e)&&(e=e.reduce((function(e,t){return e[t.trim()]=!0,e}),{})),Object(n["a"])(Object(n["a"])({},ue),{},{eager:this.eager,value:this.menuCanShow&&this.isMenuActive,nudgeBottom:e.offsetY?1:0},e)}},watch:{internalValue:function(e){this.initialValue=e,this.setSelectedItems()},isMenuActive:function(e){var t=this;window.setTimeout((function(){return t.onMenuActiveChange(e)}))},items:{immediate:!0,handler:function(e){var t=this;this.cacheItems&&this.$nextTick((function(){t.cachedItems=t.filterDuplicates(t.cachedItems.concat(e))})),this.setSelectedItems()}}},methods:{blur:function(e){ae["a"].options.methods.blur.call(this,e),this.isMenuActive=!1,this.isFocused=!1,this.selectedIndex=-1},activateMenu:function(){this.isInteractive&&!this.isMenuActive&&(this.isMenuActive=!0)},clearableCallback:function(){var e=this;this.setValue(this.multiple?[]:void 0),this.setMenuIndex(-1),this.$nextTick((function(){return e.$refs.input&&e.$refs.input.focus()})),this.openOnClear&&(this.isMenuActive=!0)},closeConditional:function(e){return!this.isMenuActive||!this._isDestroyed&&(!this.getContent()||!this.getContent().contains(e.target))&&this.$el&&!this.$el.contains(e.target)&&e.target!==this.$el},filterDuplicates:function(e){for(var t=new Map,i=0;ii&&(this.keyboardLookupPrefix=""),this.keyboardLookupPrefix+=e.key.toLowerCase(),this.keyboardLookupLastTime=n;var r=this.allItems.findIndex((function(e){var i=(t.getText(e)||"").toString();return i.toLowerCase().startsWith(t.keyboardLookupPrefix)})),o=this.allItems[r];-1!==r&&(this.lastItem=Math.max(this.lastItem,r+5),this.setValue(this.returnObject?o:this.getValue(o)),this.$nextTick((function(){return t.$refs.menu.getTiles()})),setTimeout((function(){return t.setMenuIndex(r)})))}},onKeyDown:function(e){var t=this;if(!this.isReadonly||e.keyCode===m["s"].tab){var i=e.keyCode,n=this.$refs.menu;if([m["s"].enter,m["s"].space].includes(i)&&this.activateMenu(),this.$emit("keydown",e),n)return this.isMenuActive&&i!==m["s"].tab&&this.$nextTick((function(){n.changeListIndex(e),t.$emit("update:list-index",n.listIndex)})),!this.isMenuActive&&[m["s"].up,m["s"].down].includes(i)?this.onUpDown(e):i===m["s"].esc?this.onEscDown(e):i===m["s"].tab?this.onTabDown(e):i===m["s"].space?this.onSpaceDown(e):void 0}},onMenuActiveChange:function(e){if(!(this.multiple&&!e||this.getMenuIndex()>-1)){var t=this.$refs.menu;if(t&&this.isDirty)for(var i=0;ithis.computedItems.length)return;var t=this.getContent().scrollHeight-(this.getContent().scrollTop+this.getContent().clientHeight)<200;t&&(this.lastItem+=20)}else requestAnimationFrame((function(){return e.getContent().scrollTop=0}))},onSpaceDown:function(e){e.preventDefault()},onTabDown:function(e){var t=this.$refs.menu;if(t){var i=t.activeTile;!this.multiple&&i&&this.isMenuActive?(e.preventDefault(),e.stopPropagation(),i.click()):this.blur(e)}},onUpDown:function(e){var t=this.$refs.menu;if(t){if(e.preventDefault(),this.multiple)return this.activateMenu();var i=e.keyCode;t.isBooted=!0,window.requestAnimationFrame((function(){t.getTiles(),m["s"].up===i?t.prevTile():t.nextTile(),t.activeTile&&t.activeTile.click()}))}},selectItem:function(e){var t=this;if(this.multiple){var i=(this.internalValue||[]).slice(),n=this.findExistingIndex(e);if(-1!==n?i.splice(n,1):i.push(e),this.setValue(i.map((function(e){return t.returnObject?e:t.getValue(e)}))),this.$nextTick((function(){t.$refs.menu&&t.$refs.menu.updateDimensions()})),!this.multiple)return;var r=this.getMenuIndex();if(this.setMenuIndex(-1),this.hideSelected)return;this.$nextTick((function(){return t.setMenuIndex(r)}))}else this.setValue(this.returnObject?e:this.getValue(e)),this.isMenuActive=!1},setMenuIndex:function(e){this.$refs.menu&&(this.$refs.menu.listIndex=e)},setSelectedItems:function(){var e,t=this,i=[],n=this.multiple&&Array.isArray(this.internalValue)?this.internalValue:[this.internalValue],o=Object(r["a"])(n);try{var s=function(){var n=e.value,r=t.allItems.findIndex((function(e){return t.valueComparator(t.getValue(e),t.getValue(n))}));r>-1&&i.push(t.allItems[r])};for(o.s();!(e=o.n()).done;)s()}catch(a){o.e(a)}finally{o.f()}this.selectedItems=i},setValue:function(e){var t=this.internalValue;this.internalValue=e,e!==t&&this.$emit("change",e)},isAppendInner:function(e){var t=this.$refs["append-inner"];return t&&(t===e||t.contains(e))}}}),ge=(i("45fc"),Object(n["a"])(Object(n["a"])({},ue),{},{offsetY:!0,offsetOverflow:!0,transition:!1})),pe=de.extend({name:"v-autocomplete",props:{allowOverflow:{type:Boolean,default:!0},autoSelectFirst:{type:Boolean,default:!1},filter:{type:Function,default:function(e,t,i){return i.toLocaleLowerCase().indexOf(t.toLocaleLowerCase())>-1}},hideNoData:Boolean,menuProps:{type:de.options.props.menuProps.type,default:function(){return ge}},noFilter:Boolean,searchInput:{type:String,default:void 0}},data:function(){return{lazySearch:this.searchInput}},computed:{classes:function(){return Object(n["a"])(Object(n["a"])({},de.options.computed.classes.call(this)),{},{"v-autocomplete":!0,"v-autocomplete--is-selecting-index":this.selectedIndex>-1})},computedItems:function(){return this.filteredItems},selectedValues:function(){var e=this;return this.selectedItems.map((function(t){return e.getValue(t)}))},hasDisplayedItems:function(){var e=this;return this.hideSelected?this.filteredItems.some((function(t){return!e.hasItem(t)})):this.filteredItems.length>0},currentRange:function(){return null==this.selectedItem?0:String(this.getText(this.selectedItem)).length},filteredItems:function(){var e=this;return!this.isSearching||this.noFilter||null==this.internalSearch?this.allItems:this.allItems.filter((function(t){var i=Object(m["m"])(t,e.itemText),n=null!=i?String(i):"";return e.filter(t,String(e.internalSearch),n)}))},internalSearch:{get:function(){return this.lazySearch},set:function(e){this.lazySearch=e,this.$emit("update:search-input",e)}},isAnyValueAllowed:function(){return!1},isDirty:function(){return this.searchIsDirty||this.selectedItems.length>0},isSearching:function(){return this.multiple&&this.searchIsDirty||this.searchIsDirty&&this.internalSearch!==this.getText(this.selectedItem)},menuCanShow:function(){return!!this.isFocused&&(this.hasDisplayedItems||!this.hideNoData)},$_menuProps:function(){var e=de.options.computed.$_menuProps.call(this);return e.contentClass="v-autocomplete__content ".concat(e.contentClass||"").trim(),Object(n["a"])(Object(n["a"])({},ge),e)},searchIsDirty:function(){return null!=this.internalSearch},selectedItem:function(){var e=this;return this.multiple?null:this.selectedItems.find((function(t){return e.valueComparator(e.getValue(t),e.getValue(e.internalValue))}))},listData:function(){var e=de.options.computed.listData.call(this);return e.props=Object(n["a"])(Object(n["a"])({},e.props),{},{items:this.virtualizedItems,noFilter:this.noFilter||!this.isSearching||!this.filteredItems.length,searchInput:this.internalSearch}),e}},watch:{filteredItems:"onFilteredItemsChanged",internalValue:"setSearch",isFocused:function(e){e?(document.addEventListener("copy",this.onCopy),this.$refs.input&&this.$refs.input.select()):(document.removeEventListener("copy",this.onCopy),this.updateSelf())},isMenuActive:function(e){!e&&this.hasSlot&&(this.lazySearch=void 0)},items:function(e,t){t&&t.length||!this.hideNoData||!this.isFocused||this.isMenuActive||!e.length||this.activateMenu()},searchInput:function(e){this.lazySearch=e},internalSearch:"onInternalSearchChanged",itemText:"updateSelf"},created:function(){this.setSearch()},destroyed:function(){document.removeEventListener("copy",this.onCopy)},methods:{onFilteredItemsChanged:function(e,t){var i=this;e!==t&&(this.setMenuIndex(-1),this.$nextTick((function(){i.internalSearch&&(1===e.length||i.autoSelectFirst)&&(i.$refs.menu.getTiles(),i.setMenuIndex(0))})))},onInternalSearchChanged:function(){this.updateMenuDimensions()},updateMenuDimensions:function(){this.isMenuActive&&this.$refs.menu&&this.$refs.menu.updateDimensions()},changeSelectedIndex:function(e){this.searchIsDirty||(this.multiple&&e===m["s"].left?-1===this.selectedIndex?this.selectedIndex=this.selectedItems.length-1:this.selectedIndex--:this.multiple&&e===m["s"].right?this.selectedIndex>=this.selectedItems.length-1?this.selectedIndex=-1:this.selectedIndex++:e!==m["s"].backspace&&e!==m["s"].delete||this.deleteCurrentItem())},deleteCurrentItem:function(){var e=this.selectedIndex,t=this.selectedItems[e];if(this.isInteractive&&!this.getDisabled(t)){var i=this.selectedItems.length-1;if(-1!==this.selectedIndex||0===i){var n=this.selectedItems.length,r=e!==n-1?e:e-1,o=this.selectedItems[r];o?this.selectItem(t):this.setValue(this.multiple?[]:void 0),this.selectedIndex=r}else this.selectedIndex=i}},clearableCallback:function(){this.internalSearch=void 0,de.options.methods.clearableCallback.call(this)},genInput:function(){var e=ae["a"].options.methods.genInput.call(this);return e.data=Object(N["a"])(e.data,{attrs:{"aria-activedescendant":Object(m["l"])(this.$refs.menu,"activeTile.id"),autocomplete:Object(m["l"])(e.data,"attrs.autocomplete","off")},domProps:{value:this.internalSearch}}),e},genInputSlot:function(){var e=de.options.methods.genInputSlot.call(this);return e.data.attrs.role="combobox",e},genSelections:function(){return this.hasSlot||this.multiple?de.options.methods.genSelections.call(this):[]},onClick:function(e){this.isInteractive&&(this.selectedIndex>-1?this.selectedIndex=-1:this.onFocus(),this.isAppendInner(e.target)||this.activateMenu())},onInput:function(e){if(!(this.selectedIndex>-1)&&e.target){var t=e.target,i=t.value;t.value&&this.activateMenu(),this.internalSearch=i,this.badInput=t.validity&&t.validity.badInput}},onKeyDown:function(e){var t=e.keyCode;de.options.methods.onKeyDown.call(this,e),this.changeSelectedIndex(t)},onSpaceDown:function(e){},onTabDown:function(e){de.options.methods.onTabDown.call(this,e),this.updateSelf()},onUpDown:function(e){e.preventDefault(),this.activateMenu()},selectItem:function(e){de.options.methods.selectItem.call(this,e),this.setSearch()},setSelectedItems:function(){de.options.methods.setSelectedItems.call(this),this.isFocused||this.setSearch()},setSearch:function(){var e=this;this.$nextTick((function(){e.multiple&&e.internalSearch&&e.isMenuActive||(e.internalSearch=!e.selectedItems.length||e.multiple||e.hasSlot?null:e.getText(e.selectedItem))}))},updateSelf:function(){(this.searchIsDirty||this.internalValue)&&(this.valueComparator(this.internalSearch,this.getValue(this.internalValue))||this.setSearch())},hasItem:function(e){return this.selectedValues.indexOf(this.getValue(e))>-1},onCopy:function(e){var t,i;if(-1!==this.selectedIndex){var n=this.selectedItems[this.selectedIndex],r=this.getText(n);null==(t=e.clipboardData)||t.setData("text/plain",r),null==(i=e.clipboardData)||i.setData("text/vnd.vuetify.autocomplete.item+plain",r),e.preventDefault()}}}});t["a"]=pe.extend({name:"v-combobox",props:{delimiters:{type:Array,default:function(){return[]}},returnObject:{type:Boolean,default:!0}},data:function(){return{editingIndex:-1}},computed:{computedCounterValue:function(){return this.multiple?this.selectedItems.length:(this.internalSearch||"").toString().length},hasSlot:function(){return de.options.computed.hasSlot.call(this)||this.multiple},isAnyValueAllowed:function(){return!0},menuCanShow:function(){return!!this.isFocused&&(this.hasDisplayedItems||!!this.$slots["no-data"]&&!this.hideNoData)}},methods:{onInternalSearchChanged:function(e){if(e&&this.multiple&&this.delimiters.length){var t=this.delimiters.find((function(t){return e.endsWith(t)}));null!=t&&(this.internalSearch=e.slice(0,e.length-t.length),this.updateTags())}this.updateMenuDimensions()},genInput:function(){var e=pe.options.methods.genInput.call(this);return delete e.data.attrs.name,e.data.on.paste=this.onPaste,e},genChipSelection:function(e,t){var i=this,r=de.options.methods.genChipSelection.call(this,e,t);return this.multiple&&(r.componentOptions.listeners=Object(n["a"])(Object(n["a"])({},r.componentOptions.listeners),{},{dblclick:function(){i.editingIndex=t,i.internalSearch=i.getText(e),i.selectedIndex=-1}})),r},onChipInput:function(e){de.options.methods.onChipInput.call(this,e),this.editingIndex=-1},onEnterDown:function(e){e.preventDefault(),this.getMenuIndex()>-1||this.$nextTick(this.updateSelf)},onFilteredItemsChanged:function(e,t){this.autoSelectFirst&&pe.options.methods.onFilteredItemsChanged.call(this,e,t)},onKeyDown:function(e){var t=e.keyCode;de.options.methods.onKeyDown.call(this,e),this.multiple&&t===m["s"].left&&0===this.$refs.input.selectionStart?this.updateSelf():t===m["s"].enter&&this.onEnterDown(e),this.changeSelectedIndex(t)},onTabDown:function(e){if(this.multiple&&this.internalSearch&&-1===this.getMenuIndex())return e.preventDefault(),e.stopPropagation(),this.updateTags();pe.options.methods.onTabDown.call(this,e)},selectItem:function(e){this.editingIndex>-1?this.updateEditing():pe.options.methods.selectItem.call(this,e)},setSelectedItems:function(){null==this.internalValue||""===this.internalValue?this.selectedItems=[]:this.selectedItems=this.multiple?this.internalValue:[this.internalValue]},setValue:function(e){var t;de.options.methods.setValue.call(this,null!=(t=e)?t:this.internalSearch)},updateEditing:function(){var e=this.internalValue.slice();e[this.editingIndex]=this.internalSearch,this.setValue(e),this.editingIndex=-1},updateCombobox:function(){if(this.searchIsDirty){this.internalSearch!==this.getText(this.internalValue)&&this.setValue();var e=Boolean(this.$scopedSlots.selection)||this.hasChips;e&&(this.internalSearch=void 0)}},updateSelf:function(){this.multiple?this.updateTags():this.updateCombobox()},updateTags:function(){var e=this.getMenuIndex();if(!(e<0)||this.searchIsDirty){if(this.editingIndex>-1)return this.updateEditing();var t=this.selectedItems.indexOf(this.internalSearch);if(t>-1){var i=this.internalValue.slice();i.splice(t,1),this.setValue(i)}if(e>-1)return this.internalSearch=null;this.selectItem(this.internalSearch),this.internalSearch=null}},onPaste:function(e){var t;if(this.multiple&&!this.searchIsDirty){var i=null==(t=e.clipboardData)?void 0:t.getData("text/vnd.vuetify.autocomplete.item+plain");i&&-1===this.findExistingIndex(i)&&(e.preventDefault(),de.options.methods.selectItem.call(this,i))}}}})},"2bfd":function(e,t,i){},"2ca0":function(e,t,i){"use strict";var n=i("23e7"),r=i("06cf").f,o=i("50c4"),s=i("5a34"),a=i("1d80"),l=i("ab13"),c=i("c430"),u="".startsWith,h=Math.min,d=l("startsWith"),g=!c&&!d&&!!function(){var e=r(String.prototype,"startsWith");return e&&!e.writable}();n({target:"String",proto:!0,forced:!g&&!d},{startsWith:function(e){var t=String(a(this));s(e);var i=o(h(arguments.length>1?arguments[1]:void 0,t.length)),n=String(e);return u?u.call(t,n,i):t.slice(i,i+n.length)===n}})},"2cf4":function(e,t,i){var n,r,o,s=i("da84"),a=i("d039"),l=i("0366"),c=i("1be4"),u=i("cc12"),h=i("1cdc"),d=i("605d"),g=s.location,p=s.setImmediate,f=s.clearImmediate,m=s.process,v=s.MessageChannel,C=s.Dispatch,b=0,I={},y="onreadystatechange",A=function(e){if(I.hasOwnProperty(e)){var t=I[e];delete I[e],t()}},w=function(e){return function(){A(e)}},x=function(e){A(e.data)},S=function(e){s.postMessage(e+"",g.protocol+"//"+g.host)};p&&f||(p=function(e){var t=[],i=1;while(arguments.length>i)t.push(arguments[i++]);return I[++b]=function(){("function"==typeof e?e:Function(e)).apply(void 0,t)},n(b),b},f=function(e){delete I[e]},d?n=function(e){m.nextTick(w(e))}:C&&C.now?n=function(e){C.now(w(e))}:v&&!h?(r=new v,o=r.port2,r.port1.onmessage=x,n=l(o.postMessage,o,1)):s.addEventListener&&"function"==typeof postMessage&&!s.importScripts&&g&&"file:"!==g.protocol&&!a(S)?(n=S,s.addEventListener("message",x,!1)):n=y in u("script")?function(e){c.appendChild(u("script"))[y]=function(){c.removeChild(this),A(e)}}:function(e){setTimeout(w(e),0)}),e.exports={set:p,clear:f}},"2d00":function(e,t,i){var n,r,o=i("da84"),s=i("342f"),a=o.process,l=a&&a.versions,c=l&&l.v8;c?(n=c.split("."),r=n[0]+n[1]):s&&(n=s.match(/Edge\/(\d+)/),(!n||n[1]>=74)&&(n=s.match(/Chrome\/(\d+)/),n&&(r=n[1]))),e.exports=r&&+r},"2d83":function(e,t,i){"use strict";var n=i("387f");e.exports=function(e,t,i,r,o){var s=new Error(e);return n(s,t,i,r,o)}},"2e67":function(e,t,i){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},"2f62":function(e,t,i){"use strict";(function(e){ -/*! - * vuex v3.6.0 - * (c) 2020 Evan You - * @license MIT - */ -function i(e){var t=Number(e.version.split(".")[0]);if(t>=2)e.mixin({beforeCreate:n});else{var i=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[n].concat(e.init):n,i.call(this,e)}}function n(){var e=this.$options;e.store?this.$store="function"===typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}var n="undefined"!==typeof window?window:"undefined"!==typeof e?e:{},r=n.__VUE_DEVTOOLS_GLOBAL_HOOK__;function o(e){r&&(e._devtoolHook=r,r.emit("vuex:init",e),r.on("vuex:travel-to-state",(function(t){e.replaceState(t)})),e.subscribe((function(e,t){r.emit("vuex:mutation",e,t)}),{prepend:!0}),e.subscribeAction((function(e,t){r.emit("vuex:action",e,t)}),{prepend:!0}))}function s(e,t){return e.filter(t)[0]}function a(e,t){if(void 0===t&&(t=[]),null===e||"object"!==typeof e)return e;var i=s(t,(function(t){return t.original===e}));if(i)return i.copy;var n=Array.isArray(e)?[]:{};return t.push({original:e,copy:n}),Object.keys(e).forEach((function(i){n[i]=a(e[i],t)})),n}function l(e,t){Object.keys(e).forEach((function(i){return t(e[i],i)}))}function c(e){return null!==e&&"object"===typeof e}function u(e){return e&&"function"===typeof e.then}function h(e,t){return function(){return e(t)}}var d=function(e,t){this.runtime=t,this._children=Object.create(null),this._rawModule=e;var i=e.state;this.state=("function"===typeof i?i():i)||{}},g={namespaced:{configurable:!0}};g.namespaced.get=function(){return!!this._rawModule.namespaced},d.prototype.addChild=function(e,t){this._children[e]=t},d.prototype.removeChild=function(e){delete this._children[e]},d.prototype.getChild=function(e){return this._children[e]},d.prototype.hasChild=function(e){return e in this._children},d.prototype.update=function(e){this._rawModule.namespaced=e.namespaced,e.actions&&(this._rawModule.actions=e.actions),e.mutations&&(this._rawModule.mutations=e.mutations),e.getters&&(this._rawModule.getters=e.getters)},d.prototype.forEachChild=function(e){l(this._children,e)},d.prototype.forEachGetter=function(e){this._rawModule.getters&&l(this._rawModule.getters,e)},d.prototype.forEachAction=function(e){this._rawModule.actions&&l(this._rawModule.actions,e)},d.prototype.forEachMutation=function(e){this._rawModule.mutations&&l(this._rawModule.mutations,e)},Object.defineProperties(d.prototype,g);var p=function(e){this.register([],e,!1)};function f(e,t,i){if(t.update(i),i.modules)for(var n in i.modules){if(!t.getChild(n))return void 0;f(e.concat(n),t.getChild(n),i.modules[n])}}p.prototype.get=function(e){return e.reduce((function(e,t){return e.getChild(t)}),this.root)},p.prototype.getNamespace=function(e){var t=this.root;return e.reduce((function(e,i){return t=t.getChild(i),e+(t.namespaced?i+"/":"")}),"")},p.prototype.update=function(e){f([],this.root,e)},p.prototype.register=function(e,t,i){var n=this;void 0===i&&(i=!0);var r=new d(t,i);if(0===e.length)this.root=r;else{var o=this.get(e.slice(0,-1));o.addChild(e[e.length-1],r)}t.modules&&l(t.modules,(function(t,r){n.register(e.concat(r),t,i)}))},p.prototype.unregister=function(e){var t=this.get(e.slice(0,-1)),i=e[e.length-1],n=t.getChild(i);n&&n.runtime&&t.removeChild(i)},p.prototype.isRegistered=function(e){var t=this.get(e.slice(0,-1)),i=e[e.length-1];return!!t&&t.hasChild(i)};var m;var v=function(e){var t=this;void 0===e&&(e={}),!m&&"undefined"!==typeof window&&window.Vue&&E(window.Vue);var i=e.plugins;void 0===i&&(i=[]);var n=e.strict;void 0===n&&(n=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new p(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new m,this._makeLocalGettersCache=Object.create(null);var r=this,s=this,a=s.dispatch,l=s.commit;this.dispatch=function(e,t){return a.call(r,e,t)},this.commit=function(e,t,i){return l.call(r,e,t,i)},this.strict=n;var c=this._modules.root.state;A(this,c,[],this._modules.root),y(this,c),i.forEach((function(e){return e(t)}));var u=void 0!==e.devtools?e.devtools:m.config.devtools;u&&o(this)},C={state:{configurable:!0}};function b(e,t,i){return t.indexOf(e)<0&&(i&&i.prepend?t.unshift(e):t.push(e)),function(){var i=t.indexOf(e);i>-1&&t.splice(i,1)}}function I(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var i=e.state;A(e,i,[],e._modules.root,!0),y(e,i,t)}function y(e,t,i){var n=e._vm;e.getters={},e._makeLocalGettersCache=Object.create(null);var r=e._wrappedGetters,o={};l(r,(function(t,i){o[i]=h(t,e),Object.defineProperty(e.getters,i,{get:function(){return e._vm[i]},enumerable:!0})}));var s=m.config.silent;m.config.silent=!0,e._vm=new m({data:{$$state:t},computed:o}),m.config.silent=s,e.strict&&j(e),n&&(i&&e._withCommit((function(){n._data.$$state=null})),m.nextTick((function(){return n.$destroy()})))}function A(e,t,i,n,r){var o=!i.length,s=e._modules.getNamespace(i);if(n.namespaced&&(e._modulesNamespaceMap[s],e._modulesNamespaceMap[s]=n),!o&&!r){var a=O(t,i.slice(0,-1)),l=i[i.length-1];e._withCommit((function(){m.set(a,l,n.state)}))}var c=n.context=w(e,s,i);n.forEachMutation((function(t,i){var n=s+i;S(e,n,t,c)})),n.forEachAction((function(t,i){var n=t.root?i:s+i,r=t.handler||t;k(e,n,r,c)})),n.forEachGetter((function(t,i){var n=s+i;T(e,n,t,c)})),n.forEachChild((function(n,o){A(e,t,i.concat(o),n,r)}))}function w(e,t,i){var n=""===t,r={dispatch:n?e.dispatch:function(i,n,r){var o=M(i,n,r),s=o.payload,a=o.options,l=o.type;return a&&a.root||(l=t+l),e.dispatch(l,s)},commit:n?e.commit:function(i,n,r){var o=M(i,n,r),s=o.payload,a=o.options,l=o.type;a&&a.root||(l=t+l),e.commit(l,s,a)}};return Object.defineProperties(r,{getters:{get:n?function(){return e.getters}:function(){return x(e,t)}},state:{get:function(){return O(e.state,i)}}}),r}function x(e,t){if(!e._makeLocalGettersCache[t]){var i={},n=t.length;Object.keys(e.getters).forEach((function(r){if(r.slice(0,n)===t){var o=r.slice(n);Object.defineProperty(i,o,{get:function(){return e.getters[r]},enumerable:!0})}})),e._makeLocalGettersCache[t]=i}return e._makeLocalGettersCache[t]}function S(e,t,i,n){var r=e._mutations[t]||(e._mutations[t]=[]);r.push((function(t){i.call(e,n.state,t)}))}function k(e,t,i,n){var r=e._actions[t]||(e._actions[t]=[]);r.push((function(t){var r=i.call(e,{dispatch:n.dispatch,commit:n.commit,getters:n.getters,state:n.state,rootGetters:e.getters,rootState:e.state},t);return u(r)||(r=Promise.resolve(r)),e._devtoolHook?r.catch((function(t){throw e._devtoolHook.emit("vuex:error",t),t})):r}))}function T(e,t,i,n){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(e){return i(n.state,n.getters,e.state,e.getters)})}function j(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}function O(e,t){return t.reduce((function(e,t){return e[t]}),e)}function M(e,t,i){return c(e)&&e.type&&(i=t,t=e,e=e.type),{type:e,payload:t,options:i}}function E(e){m&&e===m||(m=e,i(m))}C.state.get=function(){return this._vm._data.$$state},C.state.set=function(e){0},v.prototype.commit=function(e,t,i){var n=this,r=M(e,t,i),o=r.type,s=r.payload,a=(r.options,{type:o,payload:s}),l=this._mutations[o];l&&(this._withCommit((function(){l.forEach((function(e){e(s)}))})),this._subscribers.slice().forEach((function(e){return e(a,n.state)})))},v.prototype.dispatch=function(e,t){var i=this,n=M(e,t),r=n.type,o=n.payload,s={type:r,payload:o},a=this._actions[r];if(a){try{this._actionSubscribers.slice().filter((function(e){return e.before})).forEach((function(e){return e.before(s,i.state)}))}catch(c){0}var l=a.length>1?Promise.all(a.map((function(e){return e(o)}))):a[0](o);return new Promise((function(e,t){l.then((function(t){try{i._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(s,i.state)}))}catch(c){0}e(t)}),(function(e){try{i._actionSubscribers.filter((function(e){return e.error})).forEach((function(t){return t.error(s,i.state,e)}))}catch(c){0}t(e)}))}))}},v.prototype.subscribe=function(e,t){return b(e,this._subscribers,t)},v.prototype.subscribeAction=function(e,t){var i="function"===typeof e?{before:e}:e;return b(i,this._actionSubscribers,t)},v.prototype.watch=function(e,t,i){var n=this;return this._watcherVM.$watch((function(){return e(n.state,n.getters)}),t,i)},v.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},v.prototype.registerModule=function(e,t,i){void 0===i&&(i={}),"string"===typeof e&&(e=[e]),this._modules.register(e,t),A(this,this.state,e,this._modules.get(e),i.preserveState),y(this,this.state)},v.prototype.unregisterModule=function(e){var t=this;"string"===typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var i=O(t.state,e.slice(0,-1));m.delete(i,e[e.length-1])})),I(this)},v.prototype.hasModule=function(e){return"string"===typeof e&&(e=[e]),this._modules.isRegistered(e)},v.prototype.hotUpdate=function(e){this._modules.update(e),I(this,!0)},v.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(v.prototype,C);var L=B((function(e,t){var i={};return D(t).forEach((function(t){var n=t.key,r=t.val;i[n]=function(){var t=this.$store.state,i=this.$store.getters;if(e){var n=W(this.$store,"mapState",e);if(!n)return;t=n.context.state,i=n.context.getters}return"function"===typeof r?r.call(this,t,i):t[r]},i[n].vuex=!0})),i})),N=B((function(e,t){var i={};return D(t).forEach((function(t){var n=t.key,r=t.val;i[n]=function(){var t=[],i=arguments.length;while(i--)t[i]=arguments[i];var n=this.$store.commit;if(e){var o=W(this.$store,"mapMutations",e);if(!o)return;n=o.context.commit}return"function"===typeof r?r.apply(this,[n].concat(t)):n.apply(this.$store,[r].concat(t))}})),i})),R=B((function(e,t){var i={};return D(t).forEach((function(t){var n=t.key,r=t.val;r=e+r,i[n]=function(){if(!e||W(this.$store,"mapGetters",e))return this.$store.getters[r]},i[n].vuex=!0})),i})),_=B((function(e,t){var i={};return D(t).forEach((function(t){var n=t.key,r=t.val;i[n]=function(){var t=[],i=arguments.length;while(i--)t[i]=arguments[i];var n=this.$store.dispatch;if(e){var o=W(this.$store,"mapActions",e);if(!o)return;n=o.context.dispatch}return"function"===typeof r?r.apply(this,[n].concat(t)):n.apply(this.$store,[r].concat(t))}})),i})),$=function(e){return{mapState:L.bind(null,e),mapGetters:R.bind(null,e),mapMutations:N.bind(null,e),mapActions:_.bind(null,e)}};function D(e){return Z(e)?Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}})):[]}function Z(e){return Array.isArray(e)||c(e)}function B(e){return function(t,i){return"string"!==typeof t?(i=t,t=""):"/"!==t.charAt(t.length-1)&&(t+="/"),e(t,i)}}function W(e,t,i){var n=e._modulesNamespaceMap[i];return n}function G(e){void 0===e&&(e={});var t=e.collapsed;void 0===t&&(t=!0);var i=e.filter;void 0===i&&(i=function(e,t,i){return!0});var n=e.transformer;void 0===n&&(n=function(e){return e});var r=e.mutationTransformer;void 0===r&&(r=function(e){return e});var o=e.actionFilter;void 0===o&&(o=function(e,t){return!0});var s=e.actionTransformer;void 0===s&&(s=function(e){return e});var l=e.logMutations;void 0===l&&(l=!0);var c=e.logActions;void 0===c&&(c=!0);var u=e.logger;return void 0===u&&(u=console),function(e){var h=a(e.state);"undefined"!==typeof u&&(l&&e.subscribe((function(e,o){var s=a(o);if(i(e,h,s)){var l=z(),c=r(e),d="mutation "+e.type+l;H(u,d,t),u.log("%c prev state","color: #9E9E9E; font-weight: bold",n(h)),u.log("%c mutation","color: #03A9F4; font-weight: bold",c),u.log("%c next state","color: #4CAF50; font-weight: bold",n(s)),P(u)}h=s})),c&&e.subscribeAction((function(e,i){if(o(e,i)){var n=z(),r=s(e),a="action "+e.type+n;H(u,a,t),u.log("%c action","color: #03A9F4; font-weight: bold",r),P(u)}})))}}function H(e,t,i){var n=i?e.groupCollapsed:e.group;try{n.call(e,t)}catch(r){e.log(t)}}function P(e){try{e.groupEnd()}catch(t){e.log("—— log end ——")}}function z(){var e=new Date;return" @ "+F(e.getHours(),2)+":"+F(e.getMinutes(),2)+":"+F(e.getSeconds(),2)+"."+F(e.getMilliseconds(),3)}function V(e,t){return new Array(t+1).join(e)}function F(e,t){return V("0",t-e.toString().length)+e}var K={Store:v,install:E,version:"3.6.0",mapState:L,mapMutations:N,mapGetters:R,mapActions:_,createNamespacedHelpers:$,createLogger:G};t["a"]=K}).call(this,i("c8ba"))},"2fa4":function(e,t,i){"use strict";i("20f6");var n=i("80d2");t["a"]=Object(n["g"])("spacer","div","v-spacer")},"30b5":function(e,t,i){"use strict";var n=i("c532");function r(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,i){if(!t)return e;var o;if(i)o=i(t);else if(n.isURLSearchParams(t))o=t.toString();else{var s=[];n.forEach(t,(function(e,t){null!==e&&"undefined"!==typeof e&&(n.isArray(e)?t+="[]":e=[e],n.forEach(e,(function(e){n.isDate(e)?e=e.toISOString():n.isObject(e)&&(e=JSON.stringify(e)),s.push(r(t)+"="+r(e))})))})),o=s.join("&")}if(o){var a=e.indexOf("#");-1!==a&&(e=e.slice(0,a)),e+=(-1===e.indexOf("?")?"?":"&")+o}return e}},3206:function(e,t,i){"use strict";i.d(t,"a",(function(){return a})),i.d(t,"b",(function(){return l}));i("99af");var n=i("ade3"),r=i("2b0e"),o=i("d9bd");function s(e,t){return function(){return Object(o["c"])("The ".concat(e," component must be used inside a ").concat(t))}}function a(e,t,i){var o=t&&i?{register:s(t,i),unregister:s(t,i)}:null;return r["a"].extend({name:"registrable-inject",inject:Object(n["a"])({},e,{default:o})})}function l(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return r["a"].extend({name:"registrable-provide",provide:function(){return Object(n["a"])({},e,t?this:{register:this.register,unregister:this.unregister})}})}},3408:function(e,t,i){},3410:function(e,t,i){var n=i("23e7"),r=i("d039"),o=i("7b0b"),s=i("e163"),a=i("e177"),l=r((function(){s(1)}));n({target:"Object",stat:!0,forced:l,sham:!a},{getPrototypeOf:function(e){return s(o(e))}})},"342f":function(e,t,i){var n=i("d066");e.exports=n("navigator","userAgent")||""},"34ef":function(e,t,i){"use strict";var n=i("cc20");t["a"]=n["a"]},"35a1":function(e,t,i){var n=i("f5df"),r=i("3f8c"),o=i("b622"),s=o("iterator");e.exports=function(e){if(void 0!=e)return e[s]||e["@@iterator"]||r[n(e)]}},"368e":function(e,t,i){},"36a7":function(e,t,i){},"37e8":function(e,t,i){var n=i("83ab"),r=i("9bf2"),o=i("825a"),s=i("df75");e.exports=n?Object.defineProperties:function(e,t){o(e);var i,n=s(t),a=n.length,l=0;while(a>l)r.f(e,i=n[l++],t[i]);return e}},3835:function(e,t,i){"use strict";function n(e){if(Array.isArray(e))return e}i.d(t,"a",(function(){return a}));i("a4d3"),i("e01a"),i("d28b"),i("d3b7"),i("3ca3"),i("ddb0");function r(e,t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e)){var i=[],n=!0,r=!1,o=void 0;try{for(var s,a=e[Symbol.iterator]();!(n=(s=a.next()).done);n=!0)if(i.push(s.value),t&&i.length===t)break}catch(l){r=!0,o=l}finally{try{n||null==a["return"]||a["return"]()}finally{if(r)throw o}}return i}}var o=i("06c5");function s(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(e,t){return n(e)||r(e,t)||Object(o["a"])(e,t)||s()}},"387f":function(e,t,i){"use strict";e.exports=function(e,t,i,n,r){return e.config=t,i&&(e.code=i),e.request=n,e.response=r,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},"38cb":function(e,t,i){"use strict";i("fb6a"),i("a9e3");var n=i("53ca"),r=i("a9ad"),o=i("7560"),s=i("3206"),a=i("80d2"),l=i("d9bd"),c=i("58df"),u=Object(c["a"])(r["a"],Object(s["a"])("form"),o["a"]);t["a"]=u.extend({name:"validatable",props:{disabled:Boolean,error:Boolean,errorCount:{type:[Number,String],default:1},errorMessages:{type:[String,Array],default:function(){return[]}},messages:{type:[String,Array],default:function(){return[]}},readonly:Boolean,rules:{type:Array,default:function(){return[]}},success:Boolean,successMessages:{type:[String,Array],default:function(){return[]}},validateOnBlur:Boolean,value:{required:!1}},data:function(){return{errorBucket:[],hasColor:!1,hasFocused:!1,hasInput:!1,isFocused:!1,isResetting:!1,lazyValue:this.value,valid:!1}},computed:{computedColor:function(){if(!this.isDisabled)return this.color?this.color:this.isDark&&!this.appIsDark?"white":"primary"},hasError:function(){return this.internalErrorMessages.length>0||this.errorBucket.length>0||this.error},hasSuccess:function(){return this.internalSuccessMessages.length>0||this.success},externalError:function(){return this.internalErrorMessages.length>0||this.error},hasMessages:function(){return this.validationTarget.length>0},hasState:function(){return!this.isDisabled&&(this.hasSuccess||this.shouldValidate&&this.hasError)},internalErrorMessages:function(){return this.genInternalMessages(this.errorMessages)},internalMessages:function(){return this.genInternalMessages(this.messages)},internalSuccessMessages:function(){return this.genInternalMessages(this.successMessages)},internalValue:{get:function(){return this.lazyValue},set:function(e){this.lazyValue=e,this.$emit("input",e)}},isDisabled:function(){return this.disabled||!!this.form&&this.form.disabled},isInteractive:function(){return!this.isDisabled&&!this.isReadonly},isReadonly:function(){return this.readonly||!!this.form&&this.form.readonly},shouldValidate:function(){return!!this.externalError||!this.isResetting&&(this.validateOnBlur?this.hasFocused&&!this.isFocused:this.hasInput||this.hasFocused)},validations:function(){return this.validationTarget.slice(0,Number(this.errorCount))},validationState:function(){if(!this.isDisabled)return this.hasError&&this.shouldValidate?"error":this.hasSuccess?"success":this.hasColor?this.computedColor:void 0},validationTarget:function(){return this.internalErrorMessages.length>0?this.internalErrorMessages:this.successMessages&&this.successMessages.length>0?this.internalSuccessMessages:this.messages&&this.messages.length>0?this.internalMessages:this.shouldValidate?this.errorBucket:[]}},watch:{rules:{handler:function(e,t){Object(a["h"])(e,t)||this.validate()},deep:!0},internalValue:function(){this.hasInput=!0,this.validateOnBlur||this.$nextTick(this.validate)},isFocused:function(e){e||this.isDisabled||(this.hasFocused=!0,this.validateOnBlur&&this.$nextTick(this.validate))},isResetting:function(){var e=this;setTimeout((function(){e.hasInput=!1,e.hasFocused=!1,e.isResetting=!1,e.validate()}),0)},hasError:function(e){this.shouldValidate&&this.$emit("update:error",e)},value:function(e){this.lazyValue=e}},beforeMount:function(){this.validate()},created:function(){this.form&&this.form.register(this)},beforeDestroy:function(){this.form&&this.form.unregister(this)},methods:{genInternalMessages:function(e){return e?Array.isArray(e)?e:[e]:[]},reset:function(){this.isResetting=!0,this.internalValue=Array.isArray(this.internalValue)?[]:void 0},resetValidation:function(){this.isResetting=!0},validate:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1?arguments[1]:void 0,i=[];t=t||this.internalValue,e&&(this.hasInput=this.hasFocused=!0);for(var r=0;r=i.length?{value:void 0,done:!0}:(e=n(i,r),t.index+=e.length,{value:e,done:!1})}))},"3ea3":function(e,t,i){var n=i("23e7"),r=i("f748"),o=Math.abs,s=Math.pow;n({target:"Math",stat:!0},{cbrt:function(e){return r(e=+e)*s(o(e),1/3)}})},"3f8c":function(e,t){e.exports={}},4069:function(e,t,i){var n=i("44d2");n("flat")},"408a":function(e,t,i){var n=i("c6b6");e.exports=function(e){if("number"!=typeof e&&"Number"!=n(e))throw TypeError("Incorrect invocation");return+e}},"40dc":function(e,t,i){"use strict";i("a9e3"),i("b680"),i("c7cd");var n=i("5530"),r=(i("8b0d"),i("71d9")),o=i("53ca");function s(e,t){var i=t.modifiers||{},n=i.self,r=void 0!==n&&n,s=t.value,a="object"===Object(o["a"])(s)&&s.options||{passive:!0},l="function"===typeof s||"handleEvent"in s?s:s.handler,c=r?e:t.arg?document.querySelector(t.arg):window;c&&(c.addEventListener("scroll",l,a),e._onScroll={handler:l,options:a,target:r?void 0:c})}function a(e){if(e._onScroll){var t=e._onScroll,i=t.handler,n=t.options,r=t.target,o=void 0===r?e:r;o.removeEventListener("scroll",i,n),delete e._onScroll}}var l={inserted:s,unbind:a},c=l,u=i("fe6c"),h=i("58df");function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return Object(h["a"])(Object(u["b"])(["absolute","fixed"])).extend({name:"applicationable",props:{app:Boolean},computed:{applicationProperty:function(){return e}},watch:{app:function(e,t){t?this.removeApplication(!0):this.callUpdate()},applicationProperty:function(e,t){this.$vuetify.application.unregister(this._uid,t)}},activated:function(){this.callUpdate()},created:function(){for(var e=0,i=t.length;e0&&void 0!==arguments[0]&&arguments[0];(e||this.app)&&this.$vuetify.application.unregister(this._uid,this.applicationProperty)},updateApplication:function(){return 0}}})}var g=i("d9bd"),p=i("2b0e"),f=p["a"].extend({name:"scrollable",directives:{Scroll:l},props:{scrollTarget:String,scrollThreshold:[String,Number]},data:function(){return{currentScroll:0,currentThreshold:0,isActive:!1,isScrollingUp:!1,previousScroll:0,savedScroll:0,target:null}},computed:{canScroll:function(){return"undefined"!==typeof window},computedScrollThreshold:function(){return this.scrollThreshold?Number(this.scrollThreshold):300}},watch:{isScrollingUp:function(){this.savedScroll=this.savedScroll||this.currentScroll},isActive:function(){this.savedScroll=0}},mounted:function(){this.scrollTarget&&(this.target=document.querySelector(this.scrollTarget),this.target||Object(g["c"])("Unable to locate element with identifier ".concat(this.scrollTarget),this))},methods:{onScroll:function(){var e=this;this.canScroll&&(this.previousScroll=this.currentScroll,this.currentScroll=this.target?this.target.scrollTop:window.pageYOffset,this.isScrollingUp=this.currentScrolle.computedScrollThreshold&&e.thresholdMet()})))},thresholdMet:function(){}}}),m=i("d10f"),v=i("f2e7"),C=i("80d2"),b=Object(h["a"])(r["a"],f,m["a"],v["a"],d("top",["clippedLeft","clippedRight","computedHeight","invertedScroll","isExtended","isProminent","value"]));t["a"]=b.extend({name:"v-app-bar",directives:{Scroll:c},props:{clippedLeft:Boolean,clippedRight:Boolean,collapseOnScroll:Boolean,elevateOnScroll:Boolean,fadeImgOnScroll:Boolean,hideOnScroll:Boolean,invertedScroll:Boolean,scrollOffScreen:Boolean,shrinkOnScroll:Boolean,value:{type:Boolean,default:!0}},data:function(){return{isActive:this.value}},computed:{applicationProperty:function(){return this.bottom?"bottom":"top"},canScroll:function(){return f.options.computed.canScroll.call(this)&&(this.invertedScroll||this.elevateOnScroll||this.hideOnScroll||this.collapseOnScroll||this.isBooted||!this.value)},classes:function(){return Object(n["a"])(Object(n["a"])({},r["a"].options.computed.classes.call(this)),{},{"v-toolbar--collapse":this.collapse||this.collapseOnScroll,"v-app-bar":!0,"v-app-bar--clipped":this.clippedLeft||this.clippedRight,"v-app-bar--fade-img-on-scroll":this.fadeImgOnScroll,"v-app-bar--elevate-on-scroll":this.elevateOnScroll,"v-app-bar--fixed":!this.absolute&&(this.app||this.fixed),"v-app-bar--hide-shadow":this.hideShadow,"v-app-bar--is-scrolled":this.currentScroll>0,"v-app-bar--shrink-on-scroll":this.shrinkOnScroll})},computedContentHeight:function(){if(!this.shrinkOnScroll)return r["a"].options.computed.computedContentHeight.call(this);var e=this.computedOriginalHeight,t=this.dense?48:56,i=e,n=i-t,o=n/this.computedScrollThreshold,s=this.currentScroll*o;return Math.max(t,i-s)},computedFontSize:function(){if(this.isProminent){var e=this.dense?96:128,t=e-this.computedContentHeight,i=.00347;return Number((1.5-t*i).toFixed(2))}},computedLeft:function(){return!this.app||this.clippedLeft?0:this.$vuetify.application.left},computedMarginTop:function(){return this.app?this.$vuetify.application.bar:0},computedOpacity:function(){if(this.fadeImgOnScroll){var e=Math.max((this.computedScrollThreshold-this.currentScroll)/this.computedScrollThreshold,0);return Number(parseFloat(e).toFixed(2))}},computedOriginalHeight:function(){var e=r["a"].options.computed.computedContentHeight.call(this);return this.isExtended&&(e+=parseInt(this.extensionHeight)),e},computedRight:function(){return!this.app||this.clippedRight?0:this.$vuetify.application.right},computedScrollThreshold:function(){return this.scrollThreshold?Number(this.scrollThreshold):this.computedOriginalHeight-(this.dense?48:56)},computedTransform:function(){if(!this.canScroll||this.elevateOnScroll&&0===this.currentScroll&&this.isActive)return 0;if(this.isActive)return 0;var e=this.scrollOffScreen?this.computedHeight:this.computedContentHeight;return this.bottom?e:-e},hideShadow:function(){return this.elevateOnScroll&&this.isExtended?this.currentScroll0:r["a"].options.computed.isCollapsed.call(this)},isProminent:function(){return r["a"].options.computed.isProminent.call(this)||this.shrinkOnScroll},styles:function(){return Object(n["a"])(Object(n["a"])({},r["a"].options.computed.styles.call(this)),{},{fontSize:Object(C["f"])(this.computedFontSize,"rem"),marginTop:Object(C["f"])(this.computedMarginTop),transform:"translateY(".concat(Object(C["f"])(this.computedTransform),")"),left:Object(C["f"])(this.computedLeft),right:Object(C["f"])(this.computedRight)})}},watch:{canScroll:"onScroll",computedTransform:function(){this.canScroll&&(this.clippedLeft||this.clippedRight)&&this.callUpdate()},invertedScroll:function(e){this.isActive=!e||0!==this.currentScroll}},created:function(){this.invertedScroll&&(this.isActive=!1)},methods:{genBackground:function(){var e=r["a"].options.methods.genBackground.call(this);return e.data=this._b(e.data||{},e.tag,{style:{opacity:this.computedOpacity}}),e},updateApplication:function(){return this.invertedScroll?0:this.computedHeight+this.computedTransform},thresholdMet:function(){this.invertedScroll?this.isActive=this.currentScroll>this.computedScrollThreshold:(this.hideOnScroll&&(this.isActive=this.isScrollingUp||this.currentScroll1?arguments[1]:void 0)}})},"466d":function(e,t,i){"use strict";var n=i("d784"),r=i("825a"),o=i("50c4"),s=i("1d80"),a=i("8aa5"),l=i("14c3");n("match",1,(function(e,t,i){return[function(t){var i=s(this),n=void 0==t?void 0:t[e];return void 0!==n?n.call(t,i):new RegExp(t)[e](String(i))},function(e){var n=i(t,e,this);if(n.done)return n.value;var s=r(e),c=String(this);if(!s.global)return l(s,c);var u=s.unicode;s.lastIndex=0;var h,d=[],g=0;while(null!==(h=l(s,c))){var p=String(h[0]);d[g]=p,""===p&&(s.lastIndex=a(c,o(s.lastIndex),u)),g++}return 0===g?null:d}]}))},"467f":function(e,t,i){"use strict";var n=i("2d83");e.exports=function(e,t,i){var r=i.config.validateStatus;i.status&&r&&!r(i.status)?t(n("Request failed with status code "+i.status,i.config,null,i.request,i)):e(i)}},4804:function(e,t,i){},"480e":function(e,t,i){"use strict";i("7db0");var n=i("7560");t["a"]=n["a"].extend({name:"v-theme-provider",props:{root:Boolean},computed:{isDark:function(){return this.root?this.rootIsDark:n["a"].options.computed.isDark.call(this)}},render:function(){return this.$slots.default&&this.$slots.default.find((function(e){return!e.isComment&&" "!==e.text}))}})},4840:function(e,t,i){var n=i("825a"),r=i("1c0b"),o=i("b622"),s=o("species");e.exports=function(e,t){var i,o=n(e).constructor;return void 0===o||void 0==(i=n(o)[s])?t:r(i)}},4930:function(e,t,i){var n=i("d039");e.exports=!!Object.getOwnPropertySymbols&&!n((function(){return!String(Symbol())}))},"498a":function(e,t,i){"use strict";var n=i("23e7"),r=i("58a8").trim,o=i("c8d2");n({target:"String",proto:!0,forced:o("trim")},{trim:function(){return r(this)}})},"4a7b":function(e,t,i){"use strict";var n=i("c532");e.exports=function(e,t){t=t||{};var i={},r=["url","method","data"],o=["headers","auth","proxy","params"],s=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],a=["validateStatus"];function l(e,t){return n.isPlainObject(e)&&n.isPlainObject(t)?n.merge(e,t):n.isPlainObject(t)?n.merge({},t):n.isArray(t)?t.slice():t}function c(r){n.isUndefined(t[r])?n.isUndefined(e[r])||(i[r]=l(void 0,e[r])):i[r]=l(e[r],t[r])}n.forEach(r,(function(e){n.isUndefined(t[e])||(i[e]=l(void 0,t[e]))})),n.forEach(o,c),n.forEach(s,(function(r){n.isUndefined(t[r])?n.isUndefined(e[r])||(i[r]=l(void 0,e[r])):i[r]=l(void 0,t[r])})),n.forEach(a,(function(n){n in t?i[n]=l(e[n],t[n]):n in e&&(i[n]=l(void 0,e[n]))}));var u=r.concat(o).concat(s).concat(a),h=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===u.indexOf(e)}));return n.forEach(h,c),i}},"4ad4":function(e,t,i){"use strict";i("caad"),i("45fc"),i("b0c0"),i("b64b");var n=i("53ca"),r=i("16b7"),o=i("f2e7"),s=i("58df"),a=i("80d2"),l=i("d9bd"),c=Object(s["a"])(r["a"],o["a"]);t["a"]=c.extend({name:"activatable",props:{activator:{default:null,validator:function(e){return["string","object"].includes(Object(n["a"])(e))}},disabled:Boolean,internalActivator:Boolean,openOnHover:Boolean,openOnFocus:Boolean},data:function(){return{activatorElement:null,activatorNode:[],events:["click","mouseenter","mouseleave","focus"],listeners:{}}},watch:{activator:"resetActivator",openOnFocus:"resetActivator",openOnHover:"resetActivator"},mounted:function(){var e=Object(a["o"])(this,"activator",!0);e&&["v-slot","normal"].includes(e)&&Object(l["b"])('The activator slot must be bound, try \'